blob: 69cb859cb777897a99be787191ce2f2ed4ffa930 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Nate Begeman1d4d4142005-09-01 00:19:25 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000016#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner00161a62008-01-25 07:20:16 +000017#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000019#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000020#include "llvm/Target/TargetData.h"
Chris Lattner1329cb82008-01-26 19:45:50 +000021#include "llvm/Target/TargetFrameInfo.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000022#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000024#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000025#include "llvm/ADT/SmallPtrSet.h"
26#include "llvm/ADT/Statistic.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000028#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000029#include "llvm/Support/Debug.h"
30#include "llvm/Support/MathExtras.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000031#include <algorithm>
Dan Gohmanee335e32008-05-23 20:40:06 +000032#include <set>
Nate Begeman1d4d4142005-09-01 00:19:25 +000033using namespace llvm;
34
Chris Lattnercd3245a2006-12-19 22:41:21 +000035STATISTIC(NodesCombined , "Number of dag nodes combined");
36STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
37STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
38
Nate Begeman1d4d4142005-09-01 00:19:25 +000039namespace {
Chris Lattner938ab022007-01-16 04:55:25 +000040#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
Jim Laskey71382342006-10-07 23:37:56 +000054 static cl::opt<bool>
55 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000056 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000057
Jim Laskey07a27092006-10-18 19:08:31 +000058 static cl::opt<bool>
59 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
60 cl::desc("Include global information in alias analysis"));
61
Jim Laskeybc588b82006-10-05 15:07:25 +000062//------------------------------ DAGCombiner ---------------------------------//
63
Jim Laskey71382342006-10-07 23:37:56 +000064 class VISIBILITY_HIDDEN DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000065 SelectionDAG &DAG;
66 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000067 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000068
69 // Worklist of all of the nodes that need to be simplified.
70 std::vector<SDNode*> WorkList;
71
Jim Laskeyc7c3f112006-10-16 20:52:31 +000072 // AA - Used for DAG load/store alias analysis.
73 AliasAnalysis &AA;
74
Nate Begeman1d4d4142005-09-01 00:19:25 +000075 /// 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();
Nate Begeman4ebd8052005-09-01 23:24:04 +000081 UI != UE; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +000082 AddToWorkList(UI->getUser());
Nate Begeman1d4d4142005-09-01 00:19:25 +000083 }
84
Dan Gohman389079b2007-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
Chris Lattner24664722006-03-01 04:53:38 +000089 public:
Jim Laskey6ff23e52006-10-04 16:53:27 +000090 /// AddToWorkList - Add to the work list making sure it's instance is at the
91 /// the back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +000092 void AddToWorkList(SDNode *N) {
Jim Laskey6ff23e52006-10-04 16:53:27 +000093 removeFromWorkList(N);
Chris Lattner5750df92006-03-01 04:03:14 +000094 WorkList.push_back(N);
95 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000096
Chris Lattnerf8dc0612008-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());
Chris Lattner01a22022005-10-10 22:04:48 +0000102 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000103
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000104 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
105 bool AddTo = true);
106
Jim Laskey274062c2006-10-13 23:32:28 +0000107 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
108 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000109 }
110
Jim Laskey274062c2006-10-13 23:32:28 +0000111 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
112 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000113 SDOperand To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000114 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000115 }
Chris Lattner0bd48932008-01-17 07:00:52 +0000116
Chris Lattner24664722006-03-01 04:53:38 +0000117 private:
118
Chris Lattner012f2412006-02-17 21:58:01 +0000119 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000120 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000121 /// propagation. If so, return true.
Dan Gohman7b8d4a92008-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);
Chris Lattner87514ca2005-10-10 22:31:19 +0000128
Chris Lattner448f2192006-11-11 00:39:41 +0000129 bool CombineToPreIndexedLoadStore(SDNode *N);
130 bool CombineToPostIndexedLoadStore(SDNode *N);
131
132
Dan Gohman389079b2007-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);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000137
138 // Visitation implementation - Implement dag node combining for different
139 // node types. The semantics are as follows:
140 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000141 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000142 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000143 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000144 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000145 SDOperand visitTokenFactor(SDNode *N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +0000146 SDOperand visitMERGE_VALUES(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000147 SDOperand visitADD(SDNode *N);
148 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000149 SDOperand visitADDC(SDNode *N);
150 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000151 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 Gohman389079b2007-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);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000162 SDOperand visitAND(SDNode *N);
163 SDOperand visitOR(SDNode *N);
164 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000165 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000166 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);
Nate Begeman452d7be2005-09-16 00:54:12 +0000172 SDOperand visitSELECT(SDNode *N);
173 SDOperand visitSELECT_CC(SDNode *N);
174 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000175 SDOperand visitSIGN_EXTEND(SDNode *N);
176 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000177 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000178 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
179 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000180 SDOperand visitBIT_CONVERT(SDNode *N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +0000181 SDOperand visitBUILD_PAIR(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +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);
Chris Lattner12d83032006-03-05 05:30:57 +0000187 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000188 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);
Nate Begeman452d7be2005-09-16 00:54:12 +0000197 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000198 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000199 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000200 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000201 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000202 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000203 SDOperand visitBUILD_VECTOR(SDNode *N);
204 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000205 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000206
Evan Cheng44f1f092006-04-20 08:56:16 +0000207 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000208 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
209
Chris Lattnere70da202007-12-06 07:33:36 +0000210 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
211
Chris Lattner40c62d52005-10-18 06:04:22 +0000212 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000213 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000214 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
215 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000216 SDOperand N3, ISD::CondCode CC,
217 bool NotExtCompare = false);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000218 SDOperand SimplifySetCC(MVT VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000219 ISD::CondCode Cond, bool foldBooleans = true);
Chris Lattner5eee4272008-01-26 01:09:19 +0000220 SDOperand SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
221 unsigned HiOp);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000222 SDOperand CombineConsecutiveLoads(SDNode *N, MVT VT);
223 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT);
Nate Begeman69575232005-10-20 02:15:44 +0000224 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000225 SDOperand BuildUDIV(SDNode *N);
226 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000227 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000228
Dan Gohman2e68b6f2008-02-25 21:11:39 +0000229 SDOperand GetDemandedBits(SDOperand V, const APInt &Mask);
Chris Lattner2b4c2792007-10-13 06:35:54 +0000230
Jim Laskey6ff23e52006-10-04 16:53:27 +0000231 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
232 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000233 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000234 SmallVector<SDOperand, 8> &Aliases);
235
Jim Laskey096c22e2006-10-18 12:29:57 +0000236 /// 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,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000241 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000242
Jim Laskey7ca56af2006-10-11 13:47:09 +0000243 /// FindAliasInfo - Extracts the relevant alias information from the memory
244 /// node. Returns true if the operand was a load.
245 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000246 SDOperand &Ptr, int64_t &Size,
247 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000248
Jim Laskey279f0532006-09-25 16:29:54 +0000249 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000250 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000251 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
252
Nate Begeman1d4d4142005-09-01 00:19:25 +0000253public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000254 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
255 : DAG(D),
256 TLI(D.getTargetLoweringInfo()),
257 AfterLegalize(false),
258 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000259
260 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000261 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000262 };
263}
264
Chris Lattnerf8dc0612008-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 Gohmanb5660dc2008-02-20 16:44:09 +0000273 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000274
275 virtual void NodeDeleted(SDNode *N) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000276 DC.removeFromWorkList(N);
277 }
278
279 virtual void NodeUpdated(SDNode *N) {
280 // Ignore updates.
281 }
282};
283}
284
Chris Lattner24664722006-03-01 04:53:38 +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) {
Chris Lattner3577e382006-08-11 17:56:38 +0000295 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000296}
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
Chris Lattner24664722006-03-01 04:53:38 +0000310//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000311// 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 Lattner0254e702008-02-26 07:04:54 +0000317static char isNegatibleForFree(SDOperand Op, bool AfterLegalize,
318 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000319 // No compile time optimizations on this type.
320 if (Op.getValueType() == MVT::ppcf128)
321 return 0;
322
Chris Lattner29446522007-05-14 22:04:50 +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
Chris Lattner3adf9512007-05-25 02:19:06 +0000329 // Don't recurse exponentially.
330 if (Depth > 6) return 0;
331
Chris Lattner29446522007-05-14 22:04:50 +0000332 switch (Op.getOpcode()) {
333 default: return false;
334 case ISD::ConstantFP:
Chris Lattner0254e702008-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;
Chris Lattner29446522007-05-14 22:04:50 +0000338 case ISD::FADD:
339 // FIXME: determine better conditions for this xform.
340 if (!UnsafeFPMath) return 0;
341
342 // -(A+B) -> -A - B
Chris Lattner0254e702008-02-26 07:04:54 +0000343 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000344 return V;
345 // -(A+B) -> -B - A
Chris Lattner0254e702008-02-26 07:04:54 +0000346 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +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 Lattner0254e702008-02-26 07:04:54 +0000359 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000360 return V;
361
Chris Lattner0254e702008-02-26 07:04:54 +0000362 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000363
364 case ISD::FP_EXTEND:
365 case ISD::FP_ROUND:
366 case ISD::FSIN:
Chris Lattner0254e702008-02-26 07:04:54 +0000367 return isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000368 }
369}
370
371/// GetNegatedExpression - If isNegatibleForFree returns true, this function
372/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000373static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
Chris Lattner0254e702008-02-26 07:04:54 +0000374 bool AfterLegalize, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +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
Chris Lattner3adf9512007-05-25 02:19:06 +0000381 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000382 switch (Op.getOpcode()) {
383 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-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 }
Chris Lattner29446522007-05-14 22:04:50 +0000389 case ISD::FADD:
390 // FIXME: determine better conditions for this xform.
391 assert(UnsafeFPMath);
392
393 // -(A+B) -> -A - B
Chris Lattner0254e702008-02-26 07:04:54 +0000394 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000395 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000396 GetNegatedExpression(Op.getOperand(0), DAG,
397 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000398 Op.getOperand(1));
399 // -(A+B) -> -B - A
400 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000401 GetNegatedExpression(Op.getOperand(1), DAG,
402 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +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);
Dan Gohman23ff1822007-07-02 15:48:56 +0000407
408 // -(0-B) -> B
409 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000410 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000411 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000412
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 Lattneraeecb6c2008-02-26 17:09:59 +0000422 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000423 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000424 GetNegatedExpression(Op.getOperand(0), DAG,
425 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000426 Op.getOperand(1));
427
428 // -(X*Y) -> X * -Y
429 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
430 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000431 GetNegatedExpression(Op.getOperand(1), DAG,
432 AfterLegalize, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000433
434 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000435 case ISD::FSIN:
436 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000437 GetNegatedExpression(Op.getOperand(0), DAG,
438 AfterLegalize, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000439 case ISD::FP_ROUND:
440 return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000441 GetNegatedExpression(Op.getOperand(0), DAG,
442 AfterLegalize, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000443 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000444 }
445}
Chris Lattner24664722006-03-01 04:53:38 +0000446
447
Nate Begeman4ebd8052005-09-01 23:24:04 +0000448// 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.
Nate Begeman646d7e22005-09-02 21:18:40 +0000450// 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);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000459 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000460 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000461 if (N.getOpcode() == ISD::SELECT_CC &&
462 N.getOperand(2).getOpcode() == ISD::Constant &&
463 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000464 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000465 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
466 LHS = N.getOperand(0);
467 RHS = N.getOperand(1);
468 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000469 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000470 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000471 return false;
472}
473
Nate Begeman99801192005-09-07 23:25:52 +0000474// 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) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000478 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000479 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000480 return true;
481 return false;
482}
483
Nate Begemancd4d58c2006-02-03 06:46:56 +0000484SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000485 MVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +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);
Chris Lattner5750df92006-03-01 04:03:14 +0000491 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000492 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);
Chris Lattner5750df92006-03-01 04:03:14 +0000495 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000496 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);
Chris Lattner5750df92006-03-01 04:03:14 +0000504 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000505 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);
Chris Lattner5750df92006-03-01 04:03:14 +0000508 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000509 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
510 }
511 }
512 return SDOperand();
513}
514
Chris Lattnerf8dc0612008-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 Gohman7b8d4a92008-02-27 00:25:32 +0000545bool DAGCombiner::SimplifyDemandedBits(SDOperand Op, const APInt &Demanded) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000546 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000547 APInt KnownZero, KnownOne;
Chris Lattnerf8dc0612008-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
Chris Lattner29446522007-05-14 22:04:50 +0000586//===----------------------------------------------------------------------===//
587// Main DAG Combiner implementation
588//===----------------------------------------------------------------------===//
589
Nate Begeman4ebd8052005-09-01 23:24:04 +0000590void DAGCombiner::Run(bool RunningAfterLegalize) {
591 // set the instance variable, so that the various visit routines may use it.
592 AfterLegalize = RunningAfterLegalize;
593
Nate Begeman646d7e22005-09-02 21:18:40 +0000594 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000595 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
596 E = DAG.allnodes_end(); I != E; ++I)
597 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000598
Chris Lattner95038592005-10-05 06:35:28 +0000599 // 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
Jim Laskey26f7fa72006-10-17 19:33:52 +0000604 // 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());
Chris Lattner24664722006-03-01 04:53:38 +0000607
Nate Begeman1d4d4142005-09-01 00:19:25 +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
Chris Lattner95038592005-10-05 06:35:28 +0000615 // 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) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000618 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000619 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000620
Chris Lattner95038592005-10-05 06:35:28 +0000621 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000622 continue;
623 }
624
Dan Gohman389079b2007-10-08 17:57:15 +0000625 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000626
Chris Lattner50d8e492008-01-25 23:34:24 +0000627 if (RV.Val == 0)
628 continue;
629
630 ++NodesCombined;
Chris Lattner5eee4272008-01-26 01:09:19 +0000631
Chris Lattner50d8e492008-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!");
Chris Lattner729c6d12006-05-27 00:43:02 +0000642
Chris Lattner50d8e492008-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 Lattnerf8dc0612008-02-03 06:49:24 +0000646 WorkListRemover DeadNodes(*this);
Chris Lattner50d8e492008-01-25 23:34:24 +0000647 if (N->getNumValues() == RV.Val->getNumValues())
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000648 DAG.ReplaceAllUsesWith(N, RV.Val, &DeadNodes);
Chris Lattner50d8e492008-01-25 23:34:24 +0000649 else {
Chris Lattner5eee4272008-01-26 01:09:19 +0000650 assert(N->getValueType(0) == RV.getValueType() &&
651 N->getNumValues() == 1 && "Type mismatch");
Chris Lattner50d8e492008-01-25 23:34:24 +0000652 SDOperand OpV = RV;
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000653 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000654 }
Chris Lattner50d8e492008-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 Lattner50d8e492008-01-25 23:34:24 +0000669
670 // Finally, since the node is now dead, remove it from the graph.
671 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000672 }
Chris Lattner95038592005-10-05 06:35:28 +0000673
674 // If the root changed (e.g. it was a dead load, update the root).
675 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000676}
677
Nate Begeman83e75ec2005-09-06 04:43:02 +0000678SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000679 switch(N->getOpcode()) {
680 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000681 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +0000682 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000683 case ISD::ADD: return visitADD(N);
684 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000685 case ISD::ADDC: return visitADDC(N);
686 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000687 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 Gohman389079b2007-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);
Nate Begeman646d7e22005-09-02 21:18:40 +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);
Nate Begeman452d7be2005-09-16 00:54:12 +0000707 case ISD::SELECT: return visitSELECT(N);
708 case ISD::SELECT_CC: return visitSELECT_CC(N);
709 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000710 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
711 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000712 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000713 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
714 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000715 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +0000716 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +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);
Chris Lattner12d83032006-03-05 05:30:57 +0000722 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000723 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);
Nate Begeman44728a72005-09-19 22:34:01 +0000732 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000733 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000734 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000735 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000736 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000737 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000738 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
739 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000740 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000741 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000742 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000743}
744
Dan Gohman389079b2007-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 Cheng08b11732008-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 Chengea100462008-03-24 23:55:16 +0000777 if (CSENode)
Evan Cheng08b11732008-03-22 01:55:50 +0000778 return SDOperand(CSENode, 0);
779 }
780 }
781
Dan Gohman389079b2007-10-08 17:57:15 +0000782 return RV;
783}
784
Chris Lattner6270f682006-10-08 22:57:01 +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
Nate Begeman83e75ec2005-09-06 04:43:02 +0000800SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000801 // 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
Chris Lattnerc76d4412007-05-16 06:37:59 +0000810 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.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000814
815 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000816 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000817
Jim Laskey71382342006-10-07 23:37:56 +0000818 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000819 // encountered.
820 for (unsigned i = 0; i < TFs.size(); ++i) {
821 SDNode *TF = TFs[i];
822
Jim Laskey6ff23e52006-10-04 16:53:27 +0000823 // Check each of the operands.
824 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
825 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000826
Jim Laskey6ff23e52006-10-04 16:53:27 +0000827 switch (Op.getOpcode()) {
828 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000829 // Entry tokens don't need to be added to the list. They are
830 // rededundant.
831 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000832 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000833
Jim Laskey6ff23e52006-10-04 16:53:27 +0000834 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000835 if ((CombinerAA || Op.hasOneUse()) &&
836 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000837 // 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;
Jim Laskey279f0532006-09-25 16:29:54 +0000843 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000844 // Fall thru
845
846 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000847 // Only add if it isn't already in the list.
848 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000849 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000850 else
851 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000852 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000853 }
854 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000855 }
856
857 SDOperand Result;
858
859 // If we've change things around then replace token factor.
860 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +0000861 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +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());
Nate Begemanded49632005-10-13 03:11:28 +0000867 }
Jim Laskey274062c2006-10-13 23:32:28 +0000868
869 // Don't add users to work list.
870 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000871 }
Jim Laskey279f0532006-09-25 16:29:54 +0000872
Jim Laskey6ff23e52006-10-04 16:53:27 +0000873 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000874}
875
Chris Lattnerfec42eb2008-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
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000888static
889SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000890 MVT VT = N0.getValueType();
Evan Cheng42d7ccf2007-01-19 17:51:44 +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
Evan Chengb13cdbd2007-06-21 07:39:16 +0000904static
905SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
906 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000907 MVT VT = N->getValueType(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +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 Lattner4626b252008-01-17 07:20:38 +0000932 SDOperand Op0 = Slct.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000933 bool isInt = (isSlctCC ? Op0.getValueType() :
934 Op0.getOperand(0).getValueType()).isInteger();
Evan Chengb13cdbd2007-06-21 07:39:16 +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
Nate Begeman83e75ec2005-09-06 04:43:02 +0000954SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000955 SDOperand N0 = N->getOperand(0);
956 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000957 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
958 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000959 MVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000960
961 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +0000962 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +0000963 SDOperand FoldedVOp = SimplifyVBinOp(N);
964 if (FoldedVOp.Val) return FoldedVOp;
965 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000966
Dan Gohman613e0d82007-07-03 14:03:57 +0000967 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000968 if (N0.getOpcode() == ISD::UNDEF)
969 return N0;
970 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000971 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000972 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000973 if (N0C && N1C)
Dan Gohman002e5d02008-03-13 22:13:53 +0000974 return DAG.getConstant(N0C->getAPIntValue() + N1C->getAPIntValue(), VT);
Nate Begeman99801192005-09-07 23:25:52 +0000975 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000976 if (N0C && !N1C)
977 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000978 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000979 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000980 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000981 // 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 Gohman002e5d02008-03-13 22:13:53 +0000985 DAG.getConstant(N1C->getAPIntValue()+
986 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000987 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000988 // reassociate add
989 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
990 if (RADD.Val != 0)
991 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000992 // fold ((0-A) + B) -> B-A
993 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
994 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000995 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000996 // fold (A + (0-B)) -> A-B
997 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
998 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000999 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001000 // fold (A+(B-A)) -> B
1001 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001002 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +00001003
Duncan Sands83ec4b62008-06-06 12:08:01 +00001004 if (!VT.isVector() && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001005 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +00001006
1007 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001008 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001009 APInt LHSZero, LHSOne;
1010 APInt RHSZero, RHSOne;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001011 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001012 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohman948d8ea2008-02-20 16:33:30 +00001013 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001014 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +00001015
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 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001023
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001024 // 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
Evan Chengb13cdbd2007-06-21 07:39:16 +00001034 // 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
Nate Begeman83e75ec2005-09-06 04:43:02 +00001044 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001045}
1046
Chris Lattner91153682007-03-04 20:03:15 +00001047SDOperand 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 Sands83ec4b62008-06-06 12:08:01 +00001052 MVT VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +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),
Chris Lattnerb6541762007-03-04 20:40:38 +00001057 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +00001058
1059 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +00001060 if (N0C && !N1C) {
1061 SDOperand Ops[] = { N1, N0 };
1062 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1063 }
Chris Lattner91153682007-03-04 20:03:15 +00001064
Chris Lattnerb6541762007-03-04 20:40:38 +00001065 // 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 Gohman948d8ea2008-02-20 16:33:30 +00001070 APInt LHSZero, LHSOne;
1071 APInt RHSZero, RHSOne;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001072 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001073 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohman948d8ea2008-02-20 16:33:30 +00001074 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001075 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +00001076
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 }
Chris Lattner91153682007-03-04 20:03:15 +00001084
1085 return SDOperand();
1086}
1087
1088SDOperand DAGCombiner::visitADDE(SDNode *N) {
1089 SDOperand N0 = N->getOperand(0);
1090 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001091 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001092 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1093 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001094 //MVT VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001095
1096 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001097 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001098 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001099 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1100 }
Chris Lattner91153682007-03-04 20:03:15 +00001101
Chris Lattnerb6541762007-03-04 20:40:38 +00001102 // 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 }
Chris Lattner91153682007-03-04 20:03:15 +00001107
1108 return SDOperand();
1109}
1110
1111
1112
Nate Begeman83e75ec2005-09-06 04:43:02 +00001113SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001114 SDOperand N0 = N->getOperand(0);
1115 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001116 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1117 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001118 MVT VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001119
Dan Gohman7f321562007-06-25 16:23:39 +00001120 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001121 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001122 SDOperand FoldedVOp = SimplifyVBinOp(N);
1123 if (FoldedVOp.Val) return FoldedVOp;
1124 }
Dan Gohman7f321562007-06-25 16:23:39 +00001125
Chris Lattner854077d2005-10-17 01:07:11 +00001126 // fold (sub x, x) -> 0
Evan Chengc8e3b142008-03-12 07:02:50 +00001127 if (N0 == N1)
Chris Lattner854077d2005-10-17 01:07:11 +00001128 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001129 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001130 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001131 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001132 // fold (sub x, c) -> (add x, -c)
1133 if (N1C)
Dan Gohman002e5d02008-03-13 22:13:53 +00001134 return DAG.getNode(ISD::ADD, VT, N0,
1135 DAG.getConstant(-N1C->getAPIntValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001136 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001137 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001138 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001139 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001140 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001141 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001142 // 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 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001147 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001148 if (N0.getOpcode() == ISD::UNDEF)
1149 return N0;
1150 if (N1.getOpcode() == ISD::UNDEF)
1151 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001152
Nate Begeman83e75ec2005-09-06 04:43:02 +00001153 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001154}
1155
Nate Begeman83e75ec2005-09-06 04:43:02 +00001156SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001157 SDOperand N0 = N->getOperand(0);
1158 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001159 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1160 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001161 MVT VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001162
Dan Gohman7f321562007-06-25 16:23:39 +00001163 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001164 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001165 SDOperand FoldedVOp = SimplifyVBinOp(N);
1166 if (FoldedVOp.Val) return FoldedVOp;
1167 }
Dan Gohman7f321562007-06-25 16:23:39 +00001168
Dan Gohman613e0d82007-07-03 14:03:57 +00001169 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001170 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001171 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001172 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001173 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001174 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001175 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001176 if (N0C && !N1C)
1177 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001178 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001179 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001180 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001181 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001182 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001183 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001184 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001185 if (N1C && N1C->getAPIntValue().isPowerOf2())
Chris Lattner3e6099b2005-10-30 06:41:49 +00001186 return DAG.getNode(ISD::SHL, VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001187 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001188 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001189 // 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 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001198
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001199 // (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));
Chris Lattner5750df92006-03-01 04:03:14 +00001203 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001204 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 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001224 // 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 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001231
Nate Begemancd4d58c2006-02-03 06:46:56 +00001232 // reassociate mul
1233 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1234 if (RMUL.Val != 0)
1235 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001236
Nate Begeman83e75ec2005-09-06 04:43:02 +00001237 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001238}
1239
Nate Begeman83e75ec2005-09-06 04:43:02 +00001240SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001241 SDOperand N0 = N->getOperand(0);
1242 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001243 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1244 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001245 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001246
Dan Gohman7f321562007-06-25 16:23:39 +00001247 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001248 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001249 SDOperand FoldedVOp = SimplifyVBinOp(N);
1250 if (FoldedVOp.Val) return FoldedVOp;
1251 }
Dan Gohman7f321562007-06-25 16:23:39 +00001252
Nate Begeman1d4d4142005-09-01 00:19:25 +00001253 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001254 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001255 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001256 // 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);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001262 // 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 Sands83ec4b62008-06-06 12:08:01 +00001264 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001265 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattnerf32aac32008-01-27 23:32:17 +00001266 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
1267 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001268 // fold (sdiv X, pow2) -> simple ops after legalize
Dan Gohman002e5d02008-03-13 22:13:53 +00001269 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +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;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001278 unsigned lg2 = Log2_64(abs2);
1279 // Splat the sign bit into the register
1280 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001281 DAG.getConstant(VT.getSizeInBits()-1,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001282 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001283 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001284 // Add (N0 < 0) ? abs2 - 1 : 0;
1285 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001286 DAG.getConstant(VT.getSizeInBits()-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001287 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001288 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001289 AddToWorkList(SRL.Val);
1290 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001291 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1292 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001293 // 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;
Chris Lattner5750df92006-03-01 04:03:14 +00001297 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001298 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1299 }
Nate Begeman69575232005-10-20 02:15:44 +00001300 // if integer divide is expensive and we satisfy the requirements, emit an
1301 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001302 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001303 !TLI.isIntDivCheap()) {
1304 SDOperand Op = BuildSDIV(N);
1305 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001306 }
Dan Gohman7f321562007-06-25 16:23:39 +00001307
Dan Gohman613e0d82007-07-03 14:03:57 +00001308 // 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;
Dan Gohman7f321562007-06-25 16:23:39 +00001314
Nate Begeman83e75ec2005-09-06 04:43:02 +00001315 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001316}
1317
Nate Begeman83e75ec2005-09-06 04:43:02 +00001318SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001319 SDOperand N0 = N->getOperand(0);
1320 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001321 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001323 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001324
Dan Gohman7f321562007-06-25 16:23:39 +00001325 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001326 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001327 SDOperand FoldedVOp = SimplifyVBinOp(N);
1328 if (FoldedVOp.Val) return FoldedVOp;
1329 }
Dan Gohman7f321562007-06-25 16:23:39 +00001330
Nate Begeman1d4d4142005-09-01 00:19:25 +00001331 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001332 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001333 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001334 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001335 if (N1C && N1C->getAPIntValue().isPowerOf2())
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001336 return DAG.getNode(ISD::SRL, VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001337 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001338 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001339 // 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 Gohman002e5d02008-03-13 22:13:53 +00001342 if (SHC->getAPIntValue().isPowerOf2()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001343 MVT ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001344 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
Dan Gohman002e5d02008-03-13 22:13:53 +00001345 DAG.getConstant(SHC->getAPIntValue()
1346 .logBase2(),
Nate Begemanc031e332006-02-05 07:36:48 +00001347 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001348 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001349 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001350 }
1351 }
1352 }
Nate Begeman69575232005-10-20 02:15:44 +00001353 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001354 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Chris Lattnere9936d12005-10-22 18:50:15 +00001355 SDOperand Op = BuildUDIV(N);
1356 if (Op.Val) return Op;
1357 }
Dan Gohman7f321562007-06-25 16:23:39 +00001358
Dan Gohman613e0d82007-07-03 14:03:57 +00001359 // 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;
Dan Gohman7f321562007-06-25 16:23:39 +00001365
Nate Begeman83e75ec2005-09-06 04:43:02 +00001366 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001367}
1368
Nate Begeman83e75ec2005-09-06 04:43:02 +00001369SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001370 SDOperand N0 = N->getOperand(0);
1371 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001372 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1373 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001374 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001375
1376 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001377 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001378 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001379 // 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 Sands83ec4b62008-06-06 12:08:01 +00001381 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001382 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattneree339f42008-01-27 23:21:58 +00001383 return DAG.getNode(ISD::UREM, VT, N0, N1);
1384 }
Chris Lattner26d29902006-10-12 20:58:32 +00001385
Dan Gohman77003042007-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.
Chris Lattner26d29902006-10-12 20:58:32 +00001388 if (N1C && !N1C->isNullValue()) {
1389 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Chris Lattner5eee4272008-01-26 01:09:19 +00001390 AddToWorkList(Div.Val);
Dan Gohman77003042007-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 }
Chris Lattner26d29902006-10-12 20:58:32 +00001398 }
1399
Dan Gohman613e0d82007-07-03 14:03:57 +00001400 // 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;
Dan Gohman7f321562007-06-25 16:23:39 +00001406
Nate Begeman83e75ec2005-09-06 04:43:02 +00001407 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408}
1409
Nate Begeman83e75ec2005-09-06 04:43:02 +00001410SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001411 SDOperand N0 = N->getOperand(0);
1412 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001413 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1414 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001415 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001416
1417 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001418 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001419 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001420 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-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));
Nate Begemanc031e332006-02-05 07:36:48 +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 Gohman002e5d02008-03-13 22:13:53 +00001427 if (SHC->getAPIntValue().isPowerOf2()) {
1428 SDOperand Add =
1429 DAG.getNode(ISD::ADD, VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001430 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00001431 VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001432 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001433 return DAG.getNode(ISD::AND, VT, N0, Add);
1434 }
1435 }
1436 }
Chris Lattner26d29902006-10-12 20:58:32 +00001437
Dan Gohman77003042007-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.
Chris Lattner26d29902006-10-12 20:58:32 +00001440 if (N1C && !N1C->isNullValue()) {
1441 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-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 }
Chris Lattner26d29902006-10-12 20:58:32 +00001449 }
1450
Dan Gohman613e0d82007-07-03 14:03:57 +00001451 // 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;
Dan Gohman7f321562007-06-25 16:23:39 +00001457
Nate Begeman83e75ec2005-09-06 04:43:02 +00001458 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001459}
1460
Nate Begeman83e75ec2005-09-06 04:43:02 +00001461SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001462 SDOperand N0 = N->getOperand(0);
1463 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001464 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001465 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001466
1467 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001468 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001469 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001470 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00001471 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001472 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001473 DAG.getConstant(N0.getValueType().getSizeInBits()-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001474 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001475 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001476 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001477 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001478
Nate Begeman83e75ec2005-09-06 04:43:02 +00001479 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001480}
1481
Nate Begeman83e75ec2005-09-06 04:43:02 +00001482SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001483 SDOperand N0 = N->getOperand(0);
1484 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001485 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001486 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001487
1488 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001489 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001490 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001491 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00001492 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001493 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001494 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001495 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001496 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001497
Nate Begeman83e75ec2005-09-06 04:43:02 +00001498 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001499}
1500
Dan Gohman389079b2007-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 Lattner5eee4272008-01-26 01:09:19 +00001505SDOperand DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
1506 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001507 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001508 bool HiExists = N->hasAnyUseOfValue(1);
1509 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001510 (!AfterLegalize ||
1511 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Chris Lattner5eee4272008-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 Gohman389079b2007-10-08 17:57:15 +00001515 }
1516
1517 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001518 bool LoExists = N->hasAnyUseOfValue(0);
1519 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001520 (!AfterLegalize ||
1521 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Chris Lattner5eee4272008-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 Gohman389079b2007-10-08 17:57:15 +00001525 }
1526
Evan Cheng44711942007-11-08 09:25:29 +00001527 // If both halves are used, return as it is.
1528 if (LoExists && HiExists)
Chris Lattner5eee4272008-01-26 01:09:19 +00001529 return SDOperand();
Evan Cheng44711942007-11-08 09:25:29 +00001530
1531 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00001532 if (LoExists) {
1533 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1534 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00001535 AddToWorkList(Lo.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001536 SDOperand LoOpt = combine(Lo.Val);
Chris Lattner5eee4272008-01-26 01:09:19 +00001537 if (LoOpt.Val && LoOpt.Val != Lo.Val &&
1538 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))
1539 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00001540 }
1541
Evan Cheng44711942007-11-08 09:25:29 +00001542 if (HiExists) {
1543 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1544 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00001545 AddToWorkList(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001546 SDOperand HiOpt = combine(Hi.Val);
1547 if (HiOpt.Val && HiOpt != Hi &&
Chris Lattner5eee4272008-01-26 01:09:19 +00001548 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))
1549 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00001550 }
Chris Lattner5eee4272008-01-26 01:09:19 +00001551 return SDOperand();
Dan Gohman389079b2007-10-08 17:57:15 +00001552}
1553
1554SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001555 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
1556 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001557
1558 return SDOperand();
1559}
1560
1561SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001562 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
1563 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001564
1565 return SDOperand();
1566}
1567
1568SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001569 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
1570 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001571
1572 return SDOperand();
1573}
1574
1575SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001576 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
1577 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001578
1579 return SDOperand();
1580}
1581
Chris Lattner35e5c142006-05-05 05:51:50 +00001582/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1583/// two operands of the same opcode, try to simplify it.
1584SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1585 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001586 MVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00001587 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1588
Chris Lattner540121f2006-05-05 06:31:05 +00001589 // For each of OP in AND/OR/XOR:
1590 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1591 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1592 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001593 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001594 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001595 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001596 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1597 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1598 N0.getOperand(0).getValueType(),
1599 N0.getOperand(0), N1.getOperand(0));
1600 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001601 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001602 }
1603
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001604 // For each of OP in SHL/SRL/SRA/AND...
1605 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1606 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1607 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001608 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001609 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001610 N0.getOperand(1) == N1.getOperand(1)) {
1611 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1612 N0.getOperand(0).getValueType(),
1613 N0.getOperand(0), N1.getOperand(0));
1614 AddToWorkList(ORNode.Val);
1615 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1616 }
1617
1618 return SDOperand();
1619}
1620
Nate Begeman83e75ec2005-09-06 04:43:02 +00001621SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001622 SDOperand N0 = N->getOperand(0);
1623 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001624 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001625 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1626 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001627 MVT VT = N1.getValueType();
1628 unsigned BitWidth = VT.getSizeInBits();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001629
Dan Gohman7f321562007-06-25 16:23:39 +00001630 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001631 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001632 SDOperand FoldedVOp = SimplifyVBinOp(N);
1633 if (FoldedVOp.Val) return FoldedVOp;
1634 }
Dan Gohman7f321562007-06-25 16:23:39 +00001635
Dan Gohman613e0d82007-07-03 14:03:57 +00001636 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001637 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001638 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001639 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001640 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001641 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001642 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001643 if (N0C && !N1C)
1644 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001645 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001646 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001647 return N0;
1648 // if (and x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001649 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
1650 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001651 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001652 // reassociate and
1653 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1654 if (RAND.Val != 0)
1655 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001656 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001657 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001658 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001659 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001660 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001661 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1662 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001663 SDOperand N0Op0 = N0.getOperand(0);
1664 APInt Mask = ~N1C->getAPIntValue();
1665 Mask.trunc(N0Op0.getValueSizeInBits());
1666 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001667 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001668 N0Op0);
Chris Lattner1ec05d12006-03-01 21:47:21 +00001669
1670 // Replace uses of the AND with uses of the Zero extend node.
1671 CombineTo(N, Zext);
1672
Chris Lattner3603cd62006-02-02 07:17:31 +00001673 // We actually want to replace all uses of the any_extend with the
1674 // zero_extend, to avoid duplicating things. This will later cause this
1675 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001676 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001677 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001678 }
1679 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001680 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1681 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1682 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1683 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1684
1685 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00001686 LL.getValueType().isInteger()) {
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001687 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00001688 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001689 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001690 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001691 return DAG.getSetCC(VT, ORNode, LR, Op1);
1692 }
1693 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1694 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1695 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001696 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001697 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1698 }
1699 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1700 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1701 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001702 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001703 return DAG.getSetCC(VT, ORNode, LR, Op1);
1704 }
1705 }
1706 // canonicalize equivalent to ll == rl
1707 if (LL == RR && LR == RL) {
1708 Op1 = ISD::getSetCCSwappedOperands(Op1);
1709 std::swap(RL, RR);
1710 }
1711 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001712 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001713 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1714 if (Result != ISD::SETCC_INVALID)
1715 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1716 }
1717 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001718
1719 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1720 if (N0.getOpcode() == N1.getOpcode()) {
1721 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1722 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001723 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001724
Nate Begemande996292006-02-03 22:24:05 +00001725 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1726 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001727 if (!VT.isVector() &&
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001728 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001729 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001730 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001731 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001732 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001733 MVT EVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001734 // If we zero all the possible extended bits, then we can turn this into
1735 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001736 unsigned BitWidth = N1.getValueSizeInBits();
1737 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001738 BitWidth - EVT.getSizeInBits())) &&
Evan Chengc5484282006-10-04 00:56:09 +00001739 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001740 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1741 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001742 LN0->getSrcValueOffset(), EVT,
1743 LN0->isVolatile(),
1744 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001745 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001746 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001747 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001748 }
1749 }
1750 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001751 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1752 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001753 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001754 MVT EVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001755 // If we zero all the possible extended bits, then we can turn this into
1756 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001757 unsigned BitWidth = N1.getValueSizeInBits();
1758 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001759 BitWidth - EVT.getSizeInBits())) &&
Evan Chengc5484282006-10-04 00:56:09 +00001760 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001761 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1762 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001763 LN0->getSrcValueOffset(), EVT,
1764 LN0->isVolatile(),
1765 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001766 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001767 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001768 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001769 }
1770 }
Chris Lattner15045b62006-02-28 06:35:35 +00001771
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001772 // fold (and (load x), 255) -> (zextload x, i8)
1773 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001774 if (N1C && N0.getOpcode() == ISD::LOAD) {
1775 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1776 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerddf89562008-01-17 19:59:44 +00001777 LN0->isUnindexed() && N0.hasOneUse()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001778 MVT EVT, LoadedVT;
Dan Gohman002e5d02008-03-13 22:13:53 +00001779 if (N1C->getAPIntValue() == 255)
Evan Cheng466685d2006-10-09 20:57:25 +00001780 EVT = MVT::i8;
Dan Gohman002e5d02008-03-13 22:13:53 +00001781 else if (N1C->getAPIntValue() == 65535)
Evan Cheng466685d2006-10-09 20:57:25 +00001782 EVT = MVT::i16;
Dan Gohman002e5d02008-03-13 22:13:53 +00001783 else if (N1C->getAPIntValue() == ~0U)
Evan Cheng466685d2006-10-09 20:57:25 +00001784 EVT = MVT::i32;
1785 else
1786 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001787
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001788 LoadedVT = LN0->getMemoryVT();
Duncan Sands8e4eb092008-06-08 20:54:56 +00001789 if (EVT != MVT::Other && LoadedVT.bitsGT(EVT) &&
Evan Cheng466685d2006-10-09 20:57:25 +00001790 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001791 MVT PtrType = N0.getOperand(1).getValueType();
Evan Cheng466685d2006-10-09 20:57:25 +00001792 // For big endian targets, we need to add an offset to the pointer to
1793 // load the correct bytes. For little endian systems, we merely need to
1794 // read fewer bytes from the same pointer.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001795 unsigned LVTStoreBytes = LoadedVT.getStoreSizeInBits()/8;
1796 unsigned EVTStoreBytes = EVT.getStoreSizeInBits()/8;
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001797 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001798 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001799 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sands0753fc12008-02-11 10:37:04 +00001800 if (TLI.isBigEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001801 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1802 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001803 Alignment = MinAlign(Alignment, PtrOff);
1804 }
Evan Cheng466685d2006-10-09 20:57:25 +00001805 AddToWorkList(NewPtr.Val);
1806 SDOperand Load =
1807 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001808 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001809 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001810 AddToWorkList(N);
1811 CombineTo(N0.Val, Load, Load.getValue(1));
1812 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1813 }
Chris Lattner15045b62006-02-28 06:35:35 +00001814 }
1815 }
1816
Nate Begeman83e75ec2005-09-06 04:43:02 +00001817 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001818}
1819
Nate Begeman83e75ec2005-09-06 04:43:02 +00001820SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001821 SDOperand N0 = N->getOperand(0);
1822 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001823 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001824 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1825 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001826 MVT VT = N1.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001827
Dan Gohman7f321562007-06-25 16:23:39 +00001828 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001829 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00001830 SDOperand FoldedVOp = SimplifyVBinOp(N);
1831 if (FoldedVOp.Val) return FoldedVOp;
1832 }
Dan Gohman7f321562007-06-25 16:23:39 +00001833
Dan Gohman613e0d82007-07-03 14:03:57 +00001834 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001835 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001836 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001837 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001838 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001839 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001840 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001841 if (N0C && !N1C)
1842 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001843 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001844 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001845 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001846 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001847 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001848 return N1;
1849 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001850 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001851 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001852 // reassociate or
1853 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1854 if (ROR.Val != 0)
1855 return ROR;
1856 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1857 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001858 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001859 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1860 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1861 N1),
Dan Gohman002e5d02008-03-13 22:13:53 +00001862 DAG.getConstant(N1C->getAPIntValue() |
1863 C1->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001864 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001865 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1866 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1867 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1868 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1869
1870 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00001871 LL.getValueType().isInteger()) {
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001872 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1873 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00001874 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001875 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1876 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001877 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001878 return DAG.getSetCC(VT, ORNode, LR, Op1);
1879 }
1880 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1881 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1882 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1883 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1884 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001885 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001886 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1887 }
1888 }
1889 // canonicalize equivalent to ll == rl
1890 if (LL == RR && LR == RL) {
1891 Op1 = ISD::getSetCCSwappedOperands(Op1);
1892 std::swap(RL, RR);
1893 }
1894 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001895 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001896 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1897 if (Result != ISD::SETCC_INVALID)
1898 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1899 }
1900 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001901
1902 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1903 if (N0.getOpcode() == N1.getOpcode()) {
1904 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1905 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001906 }
Chris Lattner516b9622006-09-14 20:50:57 +00001907
Chris Lattner1ec72732006-09-14 21:11:37 +00001908 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1909 if (N0.getOpcode() == ISD::AND &&
1910 N1.getOpcode() == ISD::AND &&
1911 N0.getOperand(1).getOpcode() == ISD::Constant &&
1912 N1.getOperand(1).getOpcode() == ISD::Constant &&
1913 // Don't increase # computations.
1914 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1915 // We can only do this xform if we know that bits from X that are set in C2
1916 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001917 const APInt &LHSMask =
1918 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
1919 const APInt &RHSMask =
1920 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Chris Lattner1ec72732006-09-14 21:11:37 +00001921
Dan Gohmanea859be2007-06-22 14:59:07 +00001922 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1923 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001924 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1925 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1926 }
1927 }
1928
1929
Chris Lattner516b9622006-09-14 20:50:57 +00001930 // See if this is some rotate idiom.
1931 if (SDNode *Rot = MatchRotate(N0, N1))
1932 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001933
Nate Begeman83e75ec2005-09-06 04:43:02 +00001934 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001935}
1936
Chris Lattner516b9622006-09-14 20:50:57 +00001937
1938/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1939static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1940 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001941 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001942 Mask = Op.getOperand(1);
1943 Op = Op.getOperand(0);
1944 } else {
1945 return false;
1946 }
1947 }
1948
1949 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1950 Shift = Op;
1951 return true;
1952 }
1953 return false;
1954}
1955
1956
1957// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1958// idioms for rotate, and if the target supports rotation instructions, generate
1959// a rot[lr].
1960SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1961 // Must be a legal type. Expanded an promoted things won't work with rotates.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001962 MVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00001963 if (!TLI.isTypeLegal(VT)) return 0;
1964
1965 // The target must have at least one rotate flavor.
1966 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1967 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1968 if (!HasROTL && !HasROTR) return 0;
1969
1970 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1971 SDOperand LHSShift; // The shift.
1972 SDOperand LHSMask; // AND value if any.
1973 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1974 return 0; // Not part of a rotate.
1975
1976 SDOperand RHSShift; // The shift.
1977 SDOperand RHSMask; // AND value if any.
1978 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1979 return 0; // Not part of a rotate.
1980
1981 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1982 return 0; // Not shifting the same value.
1983
1984 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1985 return 0; // Shifts must disagree.
1986
1987 // Canonicalize shl to left side in a shl/srl pair.
1988 if (RHSShift.getOpcode() == ISD::SHL) {
1989 std::swap(LHS, RHS);
1990 std::swap(LHSShift, RHSShift);
1991 std::swap(LHSMask , RHSMask );
1992 }
1993
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 unsigned OpSizeInBits = VT.getSizeInBits();
Scott Michelc9dc1142007-04-02 21:36:32 +00001995 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1996 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1997 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001998
1999 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
2000 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00002001 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
2002 RHSShiftAmt.getOpcode() == ISD::Constant) {
2003 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
2004 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00002005 if ((LShVal + RShVal) != OpSizeInBits)
2006 return 0;
2007
2008 SDOperand Rot;
2009 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002010 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00002011 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002012 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00002013
2014 // If there is an AND of either shifted operand, apply it to the result.
2015 if (LHSMask.Val || RHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002016 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Chris Lattner516b9622006-09-14 20:50:57 +00002017
2018 if (LHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002019 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
2020 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00002021 }
2022 if (RHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002023 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
2024 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00002025 }
2026
2027 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
2028 }
2029
2030 return Rot.Val;
2031 }
2032
2033 // If there is a mask here, and we have a variable shift, we can't be sure
2034 // that we're masking out the right stuff.
2035 if (LHSMask.Val || RHSMask.Val)
2036 return 0;
2037
2038 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
2039 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00002040 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
2041 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00002042 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00002043 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002044 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00002045 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002046 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00002047 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002048 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002049 }
Chris Lattner516b9622006-09-14 20:50:57 +00002050 }
2051 }
2052
2053 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
2054 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00002055 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
2056 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00002057 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00002058 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002059 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00002060 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002061 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00002062 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002063 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002064 }
Scott Michelc9dc1142007-04-02 21:36:32 +00002065 }
2066 }
2067
2068 // Look for sign/zext/any-extended cases:
2069 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2070 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2071 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
2072 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2073 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2074 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
2075 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
2076 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
2077 if (RExtOp0.getOpcode() == ISD::SUB &&
2078 RExtOp0.getOperand(1) == LExtOp0) {
2079 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2080 // (rotr x, y)
2081 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2082 // (rotl x, (sub 32, y))
2083 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002084 if (SUBC->getAPIntValue() == OpSizeInBits) {
Scott Michelc9dc1142007-04-02 21:36:32 +00002085 if (HasROTL)
2086 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2087 else
2088 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2089 }
2090 }
2091 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2092 RExtOp0 == LExtOp0.getOperand(1)) {
2093 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2094 // (rotl x, y)
2095 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2096 // (rotr x, (sub 32, y))
2097 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002098 if (SUBC->getAPIntValue() == OpSizeInBits) {
Scott Michelc9dc1142007-04-02 21:36:32 +00002099 if (HasROTL)
2100 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2101 else
2102 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2103 }
2104 }
Chris Lattner516b9622006-09-14 20:50:57 +00002105 }
2106 }
2107
2108 return 0;
2109}
2110
2111
Nate Begeman83e75ec2005-09-06 04:43:02 +00002112SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002113 SDOperand N0 = N->getOperand(0);
2114 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002115 SDOperand LHS, RHS, CC;
2116 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2117 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002118 MVT VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002119
Dan Gohman7f321562007-06-25 16:23:39 +00002120 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002121 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00002122 SDOperand FoldedVOp = SimplifyVBinOp(N);
2123 if (FoldedVOp.Val) return FoldedVOp;
2124 }
Dan Gohman7f321562007-06-25 16:23:39 +00002125
Evan Cheng26471c42008-03-25 20:08:07 +00002126 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
2127 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
2128 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00002129 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002130 if (N0.getOpcode() == ISD::UNDEF)
2131 return N0;
2132 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002133 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002134 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002135 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002136 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002137 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002138 if (N0C && !N1C)
2139 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002140 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002141 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002142 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002143 // reassociate xor
2144 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2145 if (RXOR.Val != 0)
2146 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002147 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00002148 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002149 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00002150 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2151 isInt);
2152 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002153 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002154 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002155 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002156 assert(0 && "Unhandled SetCC Equivalent!");
2157 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002158 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002159 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002160 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Chris Lattner61c5ff42007-09-10 21:39:07 +00002161 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2162 SDOperand V = N0.getOperand(0);
2163 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002164 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002165 AddToWorkList(V.Val);
2166 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2167 }
2168
Nate Begeman99801192005-09-07 23:25:52 +00002169 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Dan Gohman002e5d02008-03-13 22:13:53 +00002170 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002171 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002172 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002173 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2174 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002175 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2176 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002177 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002178 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002179 }
2180 }
Nate Begeman99801192005-09-07 23:25:52 +00002181 // fold !(x or y) -> (!x and !y) iff x or y are constants
2182 if (N1C && N1C->isAllOnesValue() &&
2183 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002184 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002185 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2186 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002187 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2188 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002189 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002190 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002191 }
2192 }
Nate Begeman223df222005-09-08 20:18:10 +00002193 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2194 if (N1C && N0.getOpcode() == ISD::XOR) {
2195 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2196 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2197 if (N00C)
2198 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
Dan Gohman002e5d02008-03-13 22:13:53 +00002199 DAG.getConstant(N1C->getAPIntValue()^
2200 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00002201 if (N01C)
2202 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
Dan Gohman002e5d02008-03-13 22:13:53 +00002203 DAG.getConstant(N1C->getAPIntValue()^
2204 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00002205 }
2206 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002207 if (N0 == N1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 if (!VT.isVector()) {
Chris Lattner4fbdd592006-03-28 19:11:05 +00002209 return DAG.getConstant(0, VT);
2210 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2211 // Produce a vector of zeros.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002212 SDOperand El = DAG.getConstant(0, VT.getVectorElementType());
2213 std::vector<SDOperand> Ops(VT.getVectorNumElements(), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002214 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002215 }
2216 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002217
2218 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2219 if (N0.getOpcode() == N1.getOpcode()) {
2220 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2221 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002222 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002223
Chris Lattner3e104b12006-04-08 04:15:24 +00002224 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002225 if (!VT.isVector() &&
Chris Lattner3e104b12006-04-08 04:15:24 +00002226 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002227 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002228
Nate Begeman83e75ec2005-09-06 04:43:02 +00002229 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002230}
2231
Chris Lattnere70da202007-12-06 07:33:36 +00002232/// visitShiftByConstant - Handle transforms common to the three shifts, when
2233/// the shift amount is a constant.
2234SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2235 SDNode *LHS = N->getOperand(0).Val;
2236 if (!LHS->hasOneUse()) return SDOperand();
2237
2238 // We want to pull some binops through shifts, so that we have (and (shift))
2239 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2240 // thing happens with address calculations, so it's important to canonicalize
2241 // it.
2242 bool HighBitSet = false; // Can we transform this if the high bit is set?
2243
2244 switch (LHS->getOpcode()) {
2245 default: return SDOperand();
2246 case ISD::OR:
2247 case ISD::XOR:
2248 HighBitSet = false; // We can only transform sra if the high bit is clear.
2249 break;
2250 case ISD::AND:
2251 HighBitSet = true; // We can only transform sra if the high bit is set.
2252 break;
2253 case ISD::ADD:
2254 if (N->getOpcode() != ISD::SHL)
2255 return SDOperand(); // only shl(add) not sr[al](add).
2256 HighBitSet = false; // We can only transform sra if the high bit is clear.
2257 break;
2258 }
2259
2260 // We require the RHS of the binop to be a constant as well.
2261 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2262 if (!BinOpCst) return SDOperand();
2263
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002264
2265 // FIXME: disable this for unless the input to the binop is a shift by a
2266 // constant. If it is not a shift, it pessimizes some common cases like:
2267 //
2268 //void foo(int *X, int i) { X[i & 1235] = 1; }
2269 //int bar(int *X, int i) { return X[i & 255]; }
2270 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2271 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2272 BinOpLHSVal->getOpcode() != ISD::SRA &&
2273 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2274 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2275 return SDOperand();
2276
Duncan Sands83ec4b62008-06-06 12:08:01 +00002277 MVT VT = N->getValueType(0);
Chris Lattnere70da202007-12-06 07:33:36 +00002278
2279 // If this is a signed shift right, and the high bit is modified
2280 // by the logical operation, do not perform the transformation.
2281 // The highBitSet boolean indicates the value of the high bit of
2282 // the constant which would cause it to be modified for this
2283 // operation.
2284 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00002285 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
2286 if (BinOpRHSSignSet != HighBitSet)
Chris Lattnere70da202007-12-06 07:33:36 +00002287 return SDOperand();
2288 }
2289
2290 // Fold the constants, shifting the binop RHS by the shift amount.
2291 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2292 LHS->getOperand(1), N->getOperand(1));
2293
2294 // Create the new shift.
2295 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2296 N->getOperand(1));
2297
2298 // Create the new binop.
2299 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2300}
2301
2302
Nate Begeman83e75ec2005-09-06 04:43:02 +00002303SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002304 SDOperand N0 = N->getOperand(0);
2305 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002306 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2307 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002308 MVT VT = N0.getValueType();
2309 unsigned OpSizeInBits = VT.getSizeInBits();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002310
2311 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002312 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002313 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002314 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002315 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002316 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002317 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002318 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002319 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002320 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002321 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002322 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002323 // if (shl x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002324 if (DAG.MaskedValueIsZero(SDOperand(N, 0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002325 APInt::getAllOnesValue(VT.getSizeInBits())))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002326 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002327 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002328 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002329 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002330 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002331 N0.getOperand(1).getOpcode() == ISD::Constant) {
2332 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002333 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002334 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002335 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002336 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002337 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002338 }
2339 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2340 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002341 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002342 N0.getOperand(1).getOpcode() == ISD::Constant) {
2343 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002344 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002345 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2346 DAG.getConstant(~0ULL << c1, VT));
2347 if (c2 > c1)
2348 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002349 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002350 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002351 return DAG.getNode(ISD::SRL, VT, Mask,
2352 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002353 }
2354 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002355 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002356 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002357 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002358
2359 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002360}
2361
Nate Begeman83e75ec2005-09-06 04:43:02 +00002362SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002363 SDOperand N0 = N->getOperand(0);
2364 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002365 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2366 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002367 MVT VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002368
2369 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002370 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002371 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002372 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002373 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002374 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002375 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002376 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002377 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002378 // fold (sra x, c >= size(x)) -> undef
Duncan Sands83ec4b62008-06-06 12:08:01 +00002379 if (N1C && N1C->getValue() >= VT.getSizeInBits())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002380 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002381 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002382 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002383 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002384 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2385 // sext_inreg.
2386 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002387 unsigned LowBits = VT.getSizeInBits() - (unsigned)N1C->getValue();
2388 MVT EVT;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002389 switch (LowBits) {
2390 default: EVT = MVT::Other; break;
2391 case 1: EVT = MVT::i1; break;
2392 case 8: EVT = MVT::i8; break;
2393 case 16: EVT = MVT::i16; break;
2394 case 32: EVT = MVT::i32; break;
2395 }
Duncan Sands8e4eb092008-06-08 20:54:56 +00002396 if (EVT != MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
Nate Begemanfb7217b2006-02-17 19:54:08 +00002397 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2398 DAG.getValueType(EVT));
2399 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002400
2401 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2402 if (N1C && N0.getOpcode() == ISD::SRA) {
2403 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2404 unsigned Sum = N1C->getValue() + C1->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 if (Sum >= VT.getSizeInBits()) Sum = VT.getSizeInBits()-1;
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002406 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2407 DAG.getConstant(Sum, N1C->getValueType(0)));
2408 }
2409 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00002410
2411 // fold sra (shl X, m), result_size - n
2412 // -> (sign_extend (trunc (shl X, result_size - n - m))) for
Christopher Lambb9b04282008-03-20 04:31:39 +00002413 // result_size - n != m.
2414 // If truncate is free for the target sext(shl) is likely to result in better
2415 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00002416 if (N0.getOpcode() == ISD::SHL) {
2417 // Get the two constanst of the shifts, CN0 = m, CN = n.
2418 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2419 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00002420 // Determine what the truncate's result bitsize and type would be.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002421 unsigned VTValSize = VT.getSizeInBits();
2422 MVT TruncVT =
2423 MVT::getIntegerVT(VTValSize - N1C->getValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00002424 // Determine the residual right-shift amount.
Christopher Lamb15cbde32008-03-19 08:30:06 +00002425 unsigned ShiftAmt = N1C->getValue() - N01C->getValue();
Christopher Lambb9b04282008-03-20 04:31:39 +00002426
2427 // If the shift is not a no-op (in which case this should be just a sign
2428 // extend already), the truncated to type is legal, sign_extend is legal
2429 // on that type, and the the truncate to that type is both legal and free,
2430 // perform the transform.
2431 if (ShiftAmt &&
2432 TLI.isTypeLegal(TruncVT) &&
2433 TLI.isOperationLegal(ISD::SIGN_EXTEND, TruncVT) &&
2434 TLI.isOperationLegal(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00002435 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00002436
2437 SDOperand Amt = DAG.getConstant(ShiftAmt, TLI.getShiftAmountTy());
2438 SDOperand Shift = DAG.getNode(ISD::SRL, VT, N0.getOperand(0), Amt);
2439 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, TruncVT, Shift);
2440 return DAG.getNode(ISD::SIGN_EXTEND, N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00002441 }
2442 }
2443 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002444
Chris Lattnera8504462006-05-08 20:51:54 +00002445 // Simplify, based on bits shifted out of the LHS.
2446 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2447 return SDOperand(N, 0);
2448
2449
Nate Begeman1d4d4142005-09-01 00:19:25 +00002450 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002451 if (DAG.SignBitIsZero(N0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002452 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002453
2454 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002455}
2456
Nate Begeman83e75ec2005-09-06 04:43:02 +00002457SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002458 SDOperand N0 = N->getOperand(0);
2459 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002460 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2461 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002462 MVT VT = N0.getValueType();
2463 unsigned OpSizeInBits = VT.getSizeInBits();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002464
2465 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002466 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002467 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002468 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002469 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002470 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002471 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002472 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002473 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002474 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002475 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002476 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002477 // if (srl x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002478 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
2479 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002480 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002481
Nate Begeman1d4d4142005-09-01 00:19:25 +00002482 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002483 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002484 N0.getOperand(1).getOpcode() == ISD::Constant) {
2485 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002486 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002487 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002488 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002489 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002490 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002491 }
Chris Lattner350bec02006-04-02 06:11:11 +00002492
Chris Lattner06afe072006-05-05 22:53:17 +00002493 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2494 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2495 // Shifting in all undef bits?
Duncan Sands83ec4b62008-06-06 12:08:01 +00002496 MVT SmallVT = N0.getOperand(0).getValueType();
2497 if (N1C->getValue() >= SmallVT.getSizeInBits())
Chris Lattner06afe072006-05-05 22:53:17 +00002498 return DAG.getNode(ISD::UNDEF, VT);
2499
2500 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2501 AddToWorkList(SmallShift.Val);
2502 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2503 }
2504
Chris Lattner3657ffe2006-10-12 20:23:19 +00002505 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2506 // bit, which is unmodified by sra.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002507 if (N1C && N1C->getValue()+1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00002508 if (N0.getOpcode() == ISD::SRA)
2509 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2510 }
2511
Chris Lattner350bec02006-04-02 06:11:11 +00002512 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2513 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002514 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00002515 APInt KnownZero, KnownOne;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002516 APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00002517 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002518
2519 // If any of the input bits are KnownOne, then the input couldn't be all
2520 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002521 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Chris Lattner350bec02006-04-02 06:11:11 +00002522
2523 // If all of the bits input the to ctlz node are known to be zero, then
2524 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002525 APInt UnknownBits = ~KnownZero & Mask;
Chris Lattner350bec02006-04-02 06:11:11 +00002526 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2527
2528 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2529 if ((UnknownBits & (UnknownBits-1)) == 0) {
2530 // Okay, we know that only that the single bit specified by UnknownBits
2531 // could be set on input to the CTLZ node. If this bit is set, the SRL
2532 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2533 // to an SRL,XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002534 unsigned ShAmt = UnknownBits.countTrailingZeros();
Chris Lattner350bec02006-04-02 06:11:11 +00002535 SDOperand Op = N0.getOperand(0);
2536 if (ShAmt) {
2537 Op = DAG.getNode(ISD::SRL, VT, Op,
2538 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2539 AddToWorkList(Op.Val);
2540 }
2541 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2542 }
2543 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002544
2545 // fold operands of srl based on knowledge that the low bits are not
2546 // demanded.
2547 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2548 return SDOperand(N, 0);
2549
Chris Lattnere70da202007-12-06 07:33:36 +00002550 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002551}
2552
Nate Begeman83e75ec2005-09-06 04:43:02 +00002553SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002554 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002555 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002556
2557 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002558 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002559 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002560 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002561}
2562
Nate Begeman83e75ec2005-09-06 04:43:02 +00002563SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002564 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002565 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002566
2567 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002568 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002569 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002570 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002571}
2572
Nate Begeman83e75ec2005-09-06 04:43:02 +00002573SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002574 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002575 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002576
2577 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002578 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002579 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002580 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002581}
2582
Nate Begeman452d7be2005-09-16 00:54:12 +00002583SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2584 SDOperand N0 = N->getOperand(0);
2585 SDOperand N1 = N->getOperand(1);
2586 SDOperand N2 = N->getOperand(2);
2587 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2588 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2589 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002590 MVT VT = N->getValueType(0);
2591 MVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002592
Nate Begeman452d7be2005-09-16 00:54:12 +00002593 // fold select C, X, X -> X
2594 if (N1 == N2)
2595 return N1;
2596 // fold select true, X, Y -> X
2597 if (N0C && !N0C->isNullValue())
2598 return N1;
2599 // fold select false, X, Y -> Y
2600 if (N0C && N0C->isNullValue())
2601 return N2;
2602 // fold select C, 1, X -> C | X
Duncan Sands83ec4b62008-06-06 12:08:01 +00002603 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002604 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002605 // fold select C, 0, 1 -> ~C
Duncan Sands83ec4b62008-06-06 12:08:01 +00002606 if (VT.isInteger() && VT0.isInteger() &&
Dan Gohman002e5d02008-03-13 22:13:53 +00002607 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Evan Cheng571c4782007-08-18 05:57:05 +00002608 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2609 if (VT == VT0)
2610 return XORNode;
2611 AddToWorkList(XORNode.Val);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002612 if (VT.bitsGT(VT0))
Evan Cheng571c4782007-08-18 05:57:05 +00002613 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2614 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2615 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002616 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002617 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2618 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002619 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002620 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2621 }
2622 // fold select C, X, 1 -> ~C | X
Dan Gohman002e5d02008-03-13 22:13:53 +00002623 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002624 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002625 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002626 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2627 }
2628 // fold select C, X, 0 -> C & X
2629 // FIXME: this should check for C type == X type, not i1?
Duncan Sands83ec4b62008-06-06 12:08:01 +00002630 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Nate Begeman452d7be2005-09-16 00:54:12 +00002631 return DAG.getNode(ISD::AND, VT, N0, N1);
2632 // fold X ? X : Y --> X ? 1 : Y --> X | Y
Duncan Sands83ec4b62008-06-06 12:08:01 +00002633 if (VT == MVT::i1 && N0 == N1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002634 return DAG.getNode(ISD::OR, VT, N0, N2);
2635 // fold X ? Y : X --> X ? Y : 0 --> X & Y
Duncan Sands83ec4b62008-06-06 12:08:01 +00002636 if (VT == MVT::i1 && N0 == N2)
Nate Begeman452d7be2005-09-16 00:54:12 +00002637 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002638
Chris Lattner40c62d52005-10-18 06:04:22 +00002639 // If we can fold this based on the true/false value, do so.
2640 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002641 return SDOperand(N, 0); // Don't revisit N.
2642
Nate Begeman44728a72005-09-19 22:34:01 +00002643 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002644 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002645 // FIXME:
2646 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2647 // having to say they don't support SELECT_CC on every type the DAG knows
2648 // about, since there is no way to mark an opcode illegal at all value types
2649 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2650 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2651 N1, N2, N0.getOperand(2));
2652 else
2653 return SimplifySelect(N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002654 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002655 return SDOperand();
2656}
2657
2658SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002659 SDOperand N0 = N->getOperand(0);
2660 SDOperand N1 = N->getOperand(1);
2661 SDOperand N2 = N->getOperand(2);
2662 SDOperand N3 = N->getOperand(3);
2663 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002664 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2665
Nate Begeman44728a72005-09-19 22:34:01 +00002666 // fold select_cc lhs, rhs, x, x, cc -> x
2667 if (N2 == N3)
2668 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002669
Chris Lattner5f42a242006-09-20 06:19:26 +00002670 // Determine if the condition we're dealing with is constant
Scott Michel5b8f82e2008-03-10 15:42:14 +00002671 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002672 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002673
2674 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002675 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00002676 return N2; // cond always true -> true val
2677 else
2678 return N3; // cond always false -> false val
2679 }
2680
2681 // Fold to a simpler select_cc
2682 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2683 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2684 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2685 SCC.getOperand(2));
2686
Chris Lattner40c62d52005-10-18 06:04:22 +00002687 // If we can fold this based on the true/false value, do so.
2688 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002689 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002690
Nate Begeman44728a72005-09-19 22:34:01 +00002691 // fold select_cc into other things, such as min/max/abs
2692 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002693}
2694
2695SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2696 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2697 cast<CondCodeSDNode>(N->getOperand(2))->get());
2698}
2699
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002700// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2701// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2702// transformation. Returns true if extension are possible and the above
2703// mentioned transformation is profitable.
2704static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2705 unsigned ExtOpc,
2706 SmallVector<SDNode*, 4> &ExtendNodes,
2707 TargetLowering &TLI) {
2708 bool HasCopyToRegUses = false;
2709 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2710 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2711 UI != UE; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00002712 SDNode *User = UI->getUser();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002713 if (User == N)
2714 continue;
2715 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2716 if (User->getOpcode() == ISD::SETCC) {
2717 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2718 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2719 // Sign bits will be lost after a zext.
2720 return false;
2721 bool Add = false;
2722 for (unsigned i = 0; i != 2; ++i) {
2723 SDOperand UseOp = User->getOperand(i);
2724 if (UseOp == N0)
2725 continue;
2726 if (!isa<ConstantSDNode>(UseOp))
2727 return false;
2728 Add = true;
2729 }
2730 if (Add)
2731 ExtendNodes.push_back(User);
2732 } else {
2733 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2734 SDOperand UseOp = User->getOperand(i);
2735 if (UseOp == N0) {
2736 // If truncate from extended type to original load type is free
2737 // on this target, then it's ok to extend a CopyToReg.
2738 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2739 HasCopyToRegUses = true;
2740 else
2741 return false;
2742 }
2743 }
2744 }
2745 }
2746
2747 if (HasCopyToRegUses) {
2748 bool BothLiveOut = false;
2749 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2750 UI != UE; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00002751 SDNode *User = UI->getUser();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002752 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2753 SDOperand UseOp = User->getOperand(i);
2754 if (UseOp.Val == N && UseOp.ResNo == 0) {
2755 BothLiveOut = true;
2756 break;
2757 }
2758 }
2759 }
2760 if (BothLiveOut)
2761 // Both unextended and extended values are live out. There had better be
2762 // good a reason for the transformation.
2763 return ExtendNodes.size();
2764 }
2765 return true;
2766}
2767
Nate Begeman83e75ec2005-09-06 04:43:02 +00002768SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002769 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002770 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002771
Nate Begeman1d4d4142005-09-01 00:19:25 +00002772 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002773 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002774 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002775
Nate Begeman1d4d4142005-09-01 00:19:25 +00002776 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002777 // fold (sext (aext x)) -> (sext x)
2778 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002779 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002780
Chris Lattner22558872007-02-26 03:13:59 +00002781 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00002782 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2783 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Evan Chengc88138f2007-03-22 01:54:19 +00002784 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002785 if (NarrowLoad.Val) {
2786 if (NarrowLoad.Val != N0.Val)
2787 CombineTo(N0.Val, NarrowLoad);
2788 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2789 }
Evan Chengc88138f2007-03-22 01:54:19 +00002790
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00002791 // See if the value being truncated is already sign extended. If so, just
2792 // eliminate the trunc/sext pair.
Chris Lattner6007b842006-09-21 06:00:20 +00002793 SDOperand Op = N0.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002794 unsigned OpBits = Op.getValueType().getSizeInBits();
2795 unsigned MidBits = N0.getValueType().getSizeInBits();
2796 unsigned DestBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002797 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002798
2799 if (OpBits == DestBits) {
2800 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2801 // bits, it is already ready.
2802 if (NumSignBits > DestBits-MidBits)
2803 return Op;
2804 } else if (OpBits < DestBits) {
2805 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2806 // bits, just sext from i32.
2807 if (NumSignBits > OpBits-MidBits)
2808 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2809 } else {
2810 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2811 // bits, just truncate to i32.
2812 if (NumSignBits > OpBits-MidBits)
2813 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002814 }
Chris Lattner22558872007-02-26 03:13:59 +00002815
2816 // fold (sext (truncate x)) -> (sextinreg x).
2817 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2818 N0.getValueType())) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00002819 if (Op.getValueType().bitsLT(VT))
Chris Lattner22558872007-02-26 03:13:59 +00002820 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002821 else if (Op.getValueType().bitsGT(VT))
Chris Lattner22558872007-02-26 03:13:59 +00002822 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2823 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2824 DAG.getValueType(N0.getValueType()));
2825 }
Chris Lattner6007b842006-09-21 06:00:20 +00002826 }
Chris Lattner310b5782006-05-06 23:06:26 +00002827
Evan Cheng110dec22005-12-14 02:19:23 +00002828 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002829 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002830 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002831 bool DoXform = true;
2832 SmallVector<SDNode*, 4> SetCCs;
2833 if (!N0.hasOneUse())
2834 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2835 if (DoXform) {
2836 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2837 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2838 LN0->getBasePtr(), LN0->getSrcValue(),
2839 LN0->getSrcValueOffset(),
2840 N0.getValueType(),
2841 LN0->isVolatile(),
2842 LN0->getAlignment());
2843 CombineTo(N, ExtLoad);
2844 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2845 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2846 // Extend SetCC uses if necessary.
2847 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2848 SDNode *SetCC = SetCCs[i];
2849 SmallVector<SDOperand, 4> Ops;
2850 for (unsigned j = 0; j != 2; ++j) {
2851 SDOperand SOp = SetCC->getOperand(j);
2852 if (SOp == Trunc)
2853 Ops.push_back(ExtLoad);
2854 else
2855 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2856 }
2857 Ops.push_back(SetCC->getOperand(2));
2858 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2859 &Ops[0], Ops.size()));
2860 }
2861 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2862 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002863 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002864
2865 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2866 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002867 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2868 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002869 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002870 MVT EVT = LN0->getMemoryVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002871 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2872 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2873 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002874 LN0->getSrcValueOffset(), EVT,
2875 LN0->isVolatile(),
2876 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002877 CombineTo(N, ExtLoad);
2878 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2879 ExtLoad.getValue(1));
2880 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2881 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002882 }
2883
Chris Lattner20a35c32007-04-11 05:32:27 +00002884 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2885 if (N0.getOpcode() == ISD::SETCC) {
2886 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002887 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2888 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2889 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2890 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002891 }
2892
Dan Gohman8f0ad582008-04-28 16:58:24 +00002893 // fold (sext x) -> (zext x) if the sign bit is known zero.
Dan Gohman187db7b2008-04-28 18:47:17 +00002894 if ((!AfterLegalize || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
2895 DAG.SignBitIsZero(N0))
Dan Gohman8f0ad582008-04-28 16:58:24 +00002896 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2897
Nate Begeman83e75ec2005-09-06 04:43:02 +00002898 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002899}
2900
Nate Begeman83e75ec2005-09-06 04:43:02 +00002901SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002902 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002903 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002904
Nate Begeman1d4d4142005-09-01 00:19:25 +00002905 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002906 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002907 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002908 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002909 // fold (zext (aext x)) -> (zext x)
2910 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002911 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002912
Evan Chengc88138f2007-03-22 01:54:19 +00002913 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2914 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002915 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002916 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002917 if (NarrowLoad.Val) {
2918 if (NarrowLoad.Val != N0.Val)
2919 CombineTo(N0.Val, NarrowLoad);
2920 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2921 }
Evan Chengc88138f2007-03-22 01:54:19 +00002922 }
2923
Chris Lattner6007b842006-09-21 06:00:20 +00002924 // fold (zext (truncate x)) -> (and x, mask)
2925 if (N0.getOpcode() == ISD::TRUNCATE &&
2926 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2927 SDOperand Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002928 if (Op.getValueType().bitsLT(VT)) {
Chris Lattner6007b842006-09-21 06:00:20 +00002929 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002930 } else if (Op.getValueType().bitsGT(VT)) {
Chris Lattner6007b842006-09-21 06:00:20 +00002931 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2932 }
2933 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2934 }
2935
Chris Lattner111c2282006-09-21 06:14:31 +00002936 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2937 if (N0.getOpcode() == ISD::AND &&
2938 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2939 N0.getOperand(1).getOpcode() == ISD::Constant) {
2940 SDOperand X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002941 if (X.getValueType().bitsLT(VT)) {
Chris Lattner111c2282006-09-21 06:14:31 +00002942 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00002943 } else if (X.getValueType().bitsGT(VT)) {
Chris Lattner111c2282006-09-21 06:14:31 +00002944 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2945 }
Dan Gohman220a8232008-03-03 23:51:38 +00002946 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002947 Mask.zext(VT.getSizeInBits());
Chris Lattner111c2282006-09-21 06:14:31 +00002948 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2949 }
2950
Evan Cheng110dec22005-12-14 02:19:23 +00002951 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002952 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002953 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-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 Chengde1631b2007-10-30 20:11:21 +00002978 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-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 }
Evan Cheng110dec22005-12-14 02:19:23 +00002986 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002987
2988 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2989 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002990 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2991 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002992 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002993 MVT EVT = LN0->getMemoryVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002994 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2995 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002996 LN0->getSrcValueOffset(), EVT,
2997 LN0->isVolatile(),
2998 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002999 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00003000 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3001 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003002 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00003003 }
Chris Lattner20a35c32007-04-11 05:32:27 +00003004
3005 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3006 if (N0.getOpcode() == ISD::SETCC) {
3007 SDOperand SCC =
3008 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3009 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00003010 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
3011 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00003012 }
3013
Nate Begeman83e75ec2005-09-06 04:43:02 +00003014 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003015}
3016
Chris Lattner5ffc0662006-05-05 05:58:59 +00003017SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
3018 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003019 MVT VT = N->getValueType(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00003020
3021 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003022 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00003023 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
3024 // fold (aext (aext x)) -> (aext x)
3025 // fold (aext (zext x)) -> (zext x)
3026 // fold (aext (sext x)) -> (sext x)
3027 if (N0.getOpcode() == ISD::ANY_EXTEND ||
3028 N0.getOpcode() == ISD::ZERO_EXTEND ||
3029 N0.getOpcode() == ISD::SIGN_EXTEND)
3030 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
3031
Evan Chengc88138f2007-03-22 01:54:19 +00003032 // fold (aext (truncate (load x))) -> (aext (smaller load x))
3033 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
3034 if (N0.getOpcode() == ISD::TRUNCATE) {
3035 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00003036 if (NarrowLoad.Val) {
3037 if (NarrowLoad.Val != N0.Val)
3038 CombineTo(N0.Val, NarrowLoad);
3039 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
3040 }
Evan Chengc88138f2007-03-22 01:54:19 +00003041 }
3042
Chris Lattner84750582006-09-20 06:29:17 +00003043 // fold (aext (truncate x))
3044 if (N0.getOpcode() == ISD::TRUNCATE) {
3045 SDOperand TruncOp = N0.getOperand(0);
3046 if (TruncOp.getValueType() == VT)
3047 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003048 if (TruncOp.getValueType().bitsGT(VT))
Chris Lattner84750582006-09-20 06:29:17 +00003049 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
3050 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
3051 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00003052
3053 // fold (aext (and (trunc x), cst)) -> (and x, cst).
3054 if (N0.getOpcode() == ISD::AND &&
3055 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
3056 N0.getOperand(1).getOpcode() == ISD::Constant) {
3057 SDOperand X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00003058 if (X.getValueType().bitsLT(VT)) {
Chris Lattner0e4b9222006-09-21 06:40:43 +00003059 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00003060 } else if (X.getValueType().bitsGT(VT)) {
Chris Lattner0e4b9222006-09-21 06:40:43 +00003061 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3062 }
Dan Gohman220a8232008-03-03 23:51:38 +00003063 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003064 Mask.zext(VT.getSizeInBits());
Chris Lattner0e4b9222006-09-21 06:40:43 +00003065 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
3066 }
3067
Chris Lattner5ffc0662006-05-05 05:58:59 +00003068 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00003069 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003070 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003071 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3072 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3073 LN0->getBasePtr(), LN0->getSrcValue(),
3074 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003075 N0.getValueType(),
3076 LN0->isVolatile(),
3077 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00003078 CombineTo(N, ExtLoad);
3079 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3080 ExtLoad.getValue(1));
3081 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3082 }
3083
3084 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
3085 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
3086 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00003087 if (N0.getOpcode() == ISD::LOAD &&
3088 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00003089 N0.hasOneUse()) {
3090 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003091 MVT EVT = LN0->getMemoryVT();
Evan Cheng466685d2006-10-09 20:57:25 +00003092 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
3093 LN0->getChain(), LN0->getBasePtr(),
3094 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003095 LN0->getSrcValueOffset(), EVT,
3096 LN0->isVolatile(),
3097 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00003098 CombineTo(N, ExtLoad);
3099 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3100 ExtLoad.getValue(1));
3101 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3102 }
Chris Lattner20a35c32007-04-11 05:32:27 +00003103
3104 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3105 if (N0.getOpcode() == ISD::SETCC) {
3106 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00003107 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3108 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00003109 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00003110 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00003111 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00003112 }
3113
Chris Lattner5ffc0662006-05-05 05:58:59 +00003114 return SDOperand();
3115}
3116
Chris Lattner2b4c2792007-10-13 06:35:54 +00003117/// GetDemandedBits - See if the specified operand can be simplified with the
3118/// knowledge that only the bits specified by Mask are used. If so, return the
3119/// simpler operand, otherwise return a null SDOperand.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003120SDOperand DAGCombiner::GetDemandedBits(SDOperand V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00003121 switch (V.getOpcode()) {
3122 default: break;
3123 case ISD::OR:
3124 case ISD::XOR:
3125 // If the LHS or RHS don't contribute bits to the or, drop them.
3126 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
3127 return V.getOperand(1);
3128 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
3129 return V.getOperand(0);
3130 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00003131 case ISD::SRL:
3132 // Only look at single-use SRLs.
3133 if (!V.Val->hasOneUse())
3134 break;
3135 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3136 // See if we can recursively simplify the LHS.
3137 unsigned Amt = RHSC->getValue();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003138 APInt NewMask = Mask << Amt;
3139 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Chris Lattnere33544c2007-10-13 06:58:48 +00003140 if (SimplifyLHS.Val) {
3141 return DAG.getNode(ISD::SRL, V.getValueType(),
3142 SimplifyLHS, V.getOperand(1));
3143 }
3144 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003145 }
3146 return SDOperand();
3147}
3148
Evan Chengc88138f2007-03-22 01:54:19 +00003149/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3150/// bits and then truncated to a narrower type and where N is a multiple
3151/// of number of bits of the narrower type, transform it to a narrower load
3152/// from address + N / num of bits of new type. If the result is to be
3153/// extended, also fold the extension to form a extending load.
3154SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3155 unsigned Opc = N->getOpcode();
3156 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3157 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003158 MVT VT = N->getValueType(0);
3159 MVT EVT = N->getValueType(0);
Evan Chengc88138f2007-03-22 01:54:19 +00003160
Evan Chenge177e302007-03-23 22:13:36 +00003161 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3162 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003163 if (Opc == ISD::SIGN_EXTEND_INREG) {
3164 ExtType = ISD::SEXTLOAD;
3165 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003166 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3167 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003168 }
3169
Duncan Sands83ec4b62008-06-06 12:08:01 +00003170 unsigned EVTBits = EVT.getSizeInBits();
Evan Chengc88138f2007-03-22 01:54:19 +00003171 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003172 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003173 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3174 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3175 ShAmt = N01->getValue();
3176 // Is the shift amount a multiple of size of VT?
3177 if ((ShAmt & (EVTBits-1)) == 0) {
3178 N0 = N0.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003179 if (N0.getValueType().getSizeInBits() <= EVTBits)
Evan Chengc88138f2007-03-22 01:54:19 +00003180 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003181 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003182 }
3183 }
3184 }
3185
3186 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3187 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3188 // zero extended form: by shrinking the load, we lose track of the fact
3189 // that it is already zero extended.
3190 // FIXME: This should be reevaluated.
3191 VT != MVT::i1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003192 assert(N0.getValueType().getSizeInBits() > EVTBits &&
Evan Chengc88138f2007-03-22 01:54:19 +00003193 "Cannot truncate to larger type!");
3194 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003195 MVT PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003196 // For big endian targets, we need to adjust the offset to the pointer to
3197 // load the correct bytes.
Duncan Sands0753fc12008-02-11 10:37:04 +00003198 if (TLI.isBigEndian()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003199 unsigned LVTStoreBits = N0.getValueType().getStoreSizeInBits();
3200 unsigned EVTStoreBits = EVT.getStoreSizeInBits();
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003201 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3202 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003203 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003204 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003205 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3206 DAG.getConstant(PtrOff, PtrType));
3207 AddToWorkList(NewPtr.Val);
3208 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3209 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003210 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003211 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003212 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003213 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003214 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003215 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003216 if (CombineSRL) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003217 WorkListRemover DeadNodes(*this);
3218 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
3219 &DeadNodes);
Evan Chengb37b80c2007-03-23 20:55:21 +00003220 CombineTo(N->getOperand(0).Val, Load);
3221 } else
3222 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003223 if (ShAmt) {
3224 if (Opc == ISD::SIGN_EXTEND_INREG)
3225 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3226 else
3227 return DAG.getNode(Opc, VT, Load);
3228 }
Evan Chengc88138f2007-03-22 01:54:19 +00003229 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3230 }
3231
3232 return SDOperand();
3233}
3234
Chris Lattner5ffc0662006-05-05 05:58:59 +00003235
Nate Begeman83e75ec2005-09-06 04:43:02 +00003236SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003237 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003238 SDOperand N1 = N->getOperand(1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003239 MVT VT = N->getValueType(0);
3240 MVT EVT = cast<VTSDNode>(N1)->getVT();
3241 unsigned VTBits = VT.getSizeInBits();
3242 unsigned EVTBits = EVT.getSizeInBits();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003243
Nate Begeman1d4d4142005-09-01 00:19:25 +00003244 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003245 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003246 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003247
Chris Lattner541a24f2006-05-06 22:43:44 +00003248 // If the input is already sign extended, just drop the extension.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003249 if (DAG.ComputeNumSignBits(N0) >= VT.getSizeInBits()-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003250 return N0;
3251
Nate Begeman646d7e22005-09-02 21:18:40 +00003252 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3253 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00003254 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003255 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003256 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003257
Chris Lattner95a5e052007-04-17 19:03:21 +00003258 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003259 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Nate Begemande996292006-02-03 22:24:05 +00003260 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003261
Chris Lattner95a5e052007-04-17 19:03:21 +00003262 // fold operands of sext_in_reg based on knowledge that the top bits are not
3263 // demanded.
3264 if (SimplifyDemandedBits(SDOperand(N, 0)))
3265 return SDOperand(N, 0);
3266
Evan Chengc88138f2007-03-22 01:54:19 +00003267 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3268 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3269 SDOperand NarrowLoad = ReduceLoadWidth(N);
3270 if (NarrowLoad.Val)
3271 return NarrowLoad;
3272
Chris Lattner4b37e872006-05-08 21:18:59 +00003273 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3274 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3275 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3276 if (N0.getOpcode() == ISD::SRL) {
3277 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Duncan Sands83ec4b62008-06-06 12:08:01 +00003278 if (ShAmt->getValue()+EVTBits <= VT.getSizeInBits()) {
Chris Lattner4b37e872006-05-08 21:18:59 +00003279 // We can turn this into an SRA iff the input to the SRL is already sign
3280 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003281 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003282 if (VT.getSizeInBits()-(ShAmt->getValue()+EVTBits) < InSignBits)
Chris Lattner4b37e872006-05-08 21:18:59 +00003283 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3284 }
3285 }
Evan Chengc88138f2007-03-22 01:54:19 +00003286
Nate Begemanded49632005-10-13 03:11:28 +00003287 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003288 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003289 ISD::isUNINDEXEDLoad(N0.Val) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003290 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003291 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003292 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3293 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3294 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003295 LN0->getSrcValueOffset(), EVT,
3296 LN0->isVolatile(),
3297 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003298 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003299 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003300 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003301 }
3302 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003303 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3304 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003305 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003306 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003307 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3308 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3309 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003310 LN0->getSrcValueOffset(), EVT,
3311 LN0->isVolatile(),
3312 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003313 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003314 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003315 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003316 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003317 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003318}
3319
Nate Begeman83e75ec2005-09-06 04:43:02 +00003320SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003321 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003322 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003323
3324 // noop truncate
3325 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003326 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003327 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003328 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003329 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003330 // fold (truncate (truncate x)) -> (truncate x)
3331 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003332 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003333 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003334 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3335 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00003336 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00003337 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003338 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00003339 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00003340 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003341 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003342 else
3343 // if the source and dest are the same type, we can drop both the extend
3344 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003345 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003346 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003347
Chris Lattner2b4c2792007-10-13 06:35:54 +00003348 // See if we can simplify the input to this truncate through knowledge that
3349 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3350 // -> trunc y
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003351 SDOperand Shorter =
3352 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +00003353 VT.getSizeInBits()));
Chris Lattner2b4c2792007-10-13 06:35:54 +00003354 if (Shorter.Val)
3355 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3356
Nate Begeman3df4d522005-10-12 20:40:40 +00003357 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003358 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003359 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003360}
3361
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003362static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
3363 SDOperand Elt = N->getOperand(i);
3364 if (Elt.getOpcode() != ISD::MERGE_VALUES)
3365 return Elt.Val;
3366 return Elt.getOperand(Elt.ResNo).Val;
3367}
3368
3369/// CombineConsecutiveLoads - build_pair (load, load) -> load
3370/// if load locations are consecutive.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003371SDOperand DAGCombiner::CombineConsecutiveLoads(SDNode *N, MVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003372 assert(N->getOpcode() == ISD::BUILD_PAIR);
3373
3374 SDNode *LD1 = getBuildPairElt(N, 0);
3375 if (!ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse())
3376 return SDOperand();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003377 MVT LD1VT = LD1->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003378 SDNode *LD2 = getBuildPairElt(N, 1);
3379 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3380 if (ISD::isNON_EXTLoad(LD2) &&
3381 LD2->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003382 TLI.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1, MFI)) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003383 LoadSDNode *LD = cast<LoadSDNode>(LD1);
3384 unsigned Align = LD->getAlignment();
3385 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00003386 getABITypeAlignment(VT.getTypeForMVT());
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003387 if ((!AfterLegalize || TLI.isTypeLegal(VT)) &&
3388 TLI.isOperationLegal(ISD::LOAD, VT) && NewAlign <= Align)
3389 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(),
3390 LD->getSrcValue(), LD->getSrcValueOffset(),
3391 LD->isVolatile(), Align);
3392 }
3393 return SDOperand();
3394}
3395
Chris Lattner94683772005-12-23 05:30:37 +00003396SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3397 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003398 MVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00003399
Dan Gohman7f321562007-06-25 16:23:39 +00003400 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3401 // Only do this before legalize, since afterward the target may be depending
3402 // on the bitconvert.
3403 // First check to see if this is all constant.
3404 if (!AfterLegalize &&
3405 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003406 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003407 bool isSimple = true;
3408 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3409 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3410 N0.getOperand(i).getOpcode() != ISD::Constant &&
3411 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3412 isSimple = false;
3413 break;
3414 }
3415
Duncan Sands83ec4b62008-06-06 12:08:01 +00003416 MVT DestEltVT = N->getValueType(0).getVectorElementType();
3417 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00003418 "Element type of vector ValueType must not be vector!");
3419 if (isSimple) {
3420 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3421 }
3422 }
3423
Chris Lattner94683772005-12-23 05:30:37 +00003424 // If the input is a constant, let getNode() fold it.
3425 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3426 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3427 if (Res.Val != N) return Res;
3428 }
3429
Chris Lattnerc8547d82005-12-23 05:37:50 +00003430 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3431 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003432
Chris Lattner57104102005-12-23 05:44:41 +00003433 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003434 // If the resultant load doesn't need a higher alignment than the original!
3435 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003436 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003437 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003438 unsigned Align = TLI.getTargetMachine().getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00003439 getABITypeAlignment(VT.getTypeForMVT());
Evan Cheng59d5b682007-05-07 21:27:48 +00003440 unsigned OrigAlign = LN0->getAlignment();
3441 if (Align <= OrigAlign) {
3442 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3443 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003444 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003445 AddToWorkList(N);
3446 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3447 Load.getValue(1));
3448 return Load;
3449 }
Chris Lattner57104102005-12-23 05:44:41 +00003450 }
3451
Chris Lattner3bd39d42008-01-27 17:42:27 +00003452 // Fold bitconvert(fneg(x)) -> xor(bitconvert(x), signbit)
3453 // Fold bitconvert(fabs(x)) -> and(bitconvert(x), ~signbit)
3454 // This often reduces constant pool loads.
3455 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003456 N0.Val->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003457 SDOperand NewConv = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3458 AddToWorkList(NewConv.Val);
3459
Duncan Sands83ec4b62008-06-06 12:08:01 +00003460 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00003461 if (N0.getOpcode() == ISD::FNEG)
3462 return DAG.getNode(ISD::XOR, VT, NewConv, DAG.getConstant(SignBit, VT));
3463 assert(N0.getOpcode() == ISD::FABS);
3464 return DAG.getNode(ISD::AND, VT, NewConv, DAG.getConstant(~SignBit, VT));
3465 }
3466
3467 // Fold bitconvert(fcopysign(cst, x)) -> bitconvert(x)&sign | cst&~sign'
3468 // Note that we don't handle copysign(x,cst) because this can always be folded
3469 // to an fneg or fabs.
3470 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00003471 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003472 VT.isInteger() && !VT.isVector()) {
3473 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
3474 SDOperand X = DAG.getNode(ISD::BIT_CONVERT,
3475 MVT::getIntegerVT(OrigXWidth),
Chris Lattner3bd39d42008-01-27 17:42:27 +00003476 N0.getOperand(1));
3477 AddToWorkList(X.Val);
3478
3479 // If X has a different width than the result/lhs, sext it or truncate it.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003480 unsigned VTWidth = VT.getSizeInBits();
Chris Lattner3bd39d42008-01-27 17:42:27 +00003481 if (OrigXWidth < VTWidth) {
3482 X = DAG.getNode(ISD::SIGN_EXTEND, VT, X);
3483 AddToWorkList(X.Val);
3484 } else if (OrigXWidth > VTWidth) {
3485 // To get the sign bit in the right place, we have to shift it right
3486 // before truncating.
3487 X = DAG.getNode(ISD::SRL, X.getValueType(), X,
3488 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
3489 AddToWorkList(X.Val);
3490 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3491 AddToWorkList(X.Val);
3492 }
3493
Duncan Sands83ec4b62008-06-06 12:08:01 +00003494 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00003495 X = DAG.getNode(ISD::AND, VT, X, DAG.getConstant(SignBit, VT));
3496 AddToWorkList(X.Val);
3497
3498 SDOperand Cst = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3499 Cst = DAG.getNode(ISD::AND, VT, Cst, DAG.getConstant(~SignBit, VT));
3500 AddToWorkList(Cst.Val);
3501
3502 return DAG.getNode(ISD::OR, VT, X, Cst);
3503 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003504
3505 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
3506 if (N0.getOpcode() == ISD::BUILD_PAIR) {
3507 SDOperand CombineLD = CombineConsecutiveLoads(N0.Val, VT);
3508 if (CombineLD.Val)
3509 return CombineLD;
3510 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00003511
Chris Lattner94683772005-12-23 05:30:37 +00003512 return SDOperand();
3513}
3514
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003515SDOperand DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003516 MVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00003517 return CombineConsecutiveLoads(N, VT);
3518}
3519
Dan Gohman7f321562007-06-25 16:23:39 +00003520/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003521/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3522/// destination element value type.
3523SDOperand DAGCombiner::
Duncan Sands83ec4b62008-06-06 12:08:01 +00003524ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT DstEltVT) {
3525 MVT SrcEltVT = BV->getOperand(0).getValueType();
Chris Lattner6258fb22006-04-02 02:53:43 +00003526
3527 // If this is already the right type, we're done.
3528 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3529
Duncan Sands83ec4b62008-06-06 12:08:01 +00003530 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
3531 unsigned DstBitSize = DstEltVT.getSizeInBits();
Chris Lattner6258fb22006-04-02 02:53:43 +00003532
3533 // If this is a conversion of N elements of one type to N elements of another
3534 // type, convert each element. This handles FP<->INT cases.
3535 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003536 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003537 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003538 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003539 AddToWorkList(Ops.back().Val);
3540 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003541 MVT VT = MVT::getVectorVT(DstEltVT,
3542 BV->getValueType(0).getVectorNumElements());
Dan Gohman7f321562007-06-25 16:23:39 +00003543 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003544 }
3545
3546 // Otherwise, we're growing or shrinking the elements. To avoid having to
3547 // handle annoying details of growing/shrinking FP values, we convert them to
3548 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003549 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003550 // Convert the input float vector to a int vector where the elements are the
3551 // same sizes.
3552 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003553 MVT IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003554 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003555 SrcEltVT = IntVT;
3556 }
3557
3558 // Now we know the input is an integer vector. If the output is a FP type,
3559 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003560 if (DstEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003561 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003562 MVT TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003563 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003564
3565 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003566 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003567 }
3568
3569 // Okay, we know the src/dst types are both integers of differing types.
3570 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003571 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00003572 if (SrcBitSize < DstBitSize) {
3573 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3574
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003575 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003576 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003577 i += NumInputsPerOutput) {
3578 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00003579 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00003580 bool EltIsUndef = true;
3581 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3582 // Shift the previously computed bits over.
3583 NewBits <<= SrcBitSize;
3584 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3585 if (Op.getOpcode() == ISD::UNDEF) continue;
3586 EltIsUndef = false;
3587
Dan Gohman220a8232008-03-03 23:51:38 +00003588 NewBits |=
3589 APInt(cast<ConstantSDNode>(Op)->getAPIntValue()).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003590 }
3591
3592 if (EltIsUndef)
3593 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3594 else
3595 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3596 }
3597
Duncan Sands83ec4b62008-06-06 12:08:01 +00003598 MVT VT = MVT::getVectorVT(DstEltVT, Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00003599 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003600 }
3601
3602 // Finally, this must be the case where we are shrinking elements: each input
3603 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00003604 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00003605 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003606 MVT VT = MVT::getVectorVT(DstEltVT, NumOutputsPerInput*BV->getNumOperands());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003607 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003608 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003609 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3610 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3611 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3612 continue;
3613 }
Dan Gohman220a8232008-03-03 23:51:38 +00003614 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getAPIntValue();
Chris Lattner6258fb22006-04-02 02:53:43 +00003615 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Dan Gohman220a8232008-03-03 23:51:38 +00003616 APInt ThisVal = APInt(OpVal).trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003617 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Dan Gohman220a8232008-03-03 23:51:38 +00003618 if (isS2V && i == 0 && j == 0 && APInt(ThisVal).zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00003619 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
3620 return DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00003621 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003622 }
3623
3624 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00003625 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00003626 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3627 }
Dan Gohman7f321562007-06-25 16:23:39 +00003628 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003629}
3630
3631
3632
Chris Lattner01b3d732005-09-28 22:28:18 +00003633SDOperand DAGCombiner::visitFADD(SDNode *N) {
3634 SDOperand N0 = N->getOperand(0);
3635 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003636 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3637 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003638 MVT VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003639
Dan Gohman7f321562007-06-25 16:23:39 +00003640 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003641 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00003642 SDOperand FoldedVOp = SimplifyVBinOp(N);
3643 if (FoldedVOp.Val) return FoldedVOp;
3644 }
Dan Gohman7f321562007-06-25 16:23:39 +00003645
Nate Begemana0e221d2005-10-18 00:28:13 +00003646 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003647 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003648 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003649 // canonicalize constant to RHS
3650 if (N0CFP && !N1CFP)
3651 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003652 // fold (A + (-B)) -> A-B
Chris Lattner0254e702008-02-26 07:04:54 +00003653 if (isNegatibleForFree(N1, AfterLegalize) == 2)
3654 return DAG.getNode(ISD::FSUB, VT, N0,
3655 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner01b3d732005-09-28 22:28:18 +00003656 // fold ((-A) + B) -> B-A
Chris Lattner0254e702008-02-26 07:04:54 +00003657 if (isNegatibleForFree(N0, AfterLegalize) == 2)
3658 return DAG.getNode(ISD::FSUB, VT, N1,
3659 GetNegatedExpression(N0, DAG, AfterLegalize));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003660
3661 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3662 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3663 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3664 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3665 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3666
Chris Lattner01b3d732005-09-28 22:28:18 +00003667 return SDOperand();
3668}
3669
3670SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3671 SDOperand N0 = N->getOperand(0);
3672 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003673 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3674 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003675 MVT VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003676
Dan Gohman7f321562007-06-25 16:23:39 +00003677 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003678 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00003679 SDOperand FoldedVOp = SimplifyVBinOp(N);
3680 if (FoldedVOp.Val) return FoldedVOp;
3681 }
Dan Gohman7f321562007-06-25 16:23:39 +00003682
Nate Begemana0e221d2005-10-18 00:28:13 +00003683 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003684 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003685 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003686 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003687 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Chris Lattner0254e702008-02-26 07:04:54 +00003688 if (isNegatibleForFree(N1, AfterLegalize))
3689 return GetNegatedExpression(N1, DAG, AfterLegalize);
Dan Gohman23ff1822007-07-02 15:48:56 +00003690 return DAG.getNode(ISD::FNEG, VT, N1);
3691 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003692 // fold (A-(-B)) -> A+B
Chris Lattner0254e702008-02-26 07:04:54 +00003693 if (isNegatibleForFree(N1, AfterLegalize))
3694 return DAG.getNode(ISD::FADD, VT, N0,
3695 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003696
Chris Lattner01b3d732005-09-28 22:28:18 +00003697 return SDOperand();
3698}
3699
3700SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3701 SDOperand N0 = N->getOperand(0);
3702 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003703 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3704 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003705 MVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003706
Dan Gohman7f321562007-06-25 16:23:39 +00003707 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003708 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00003709 SDOperand FoldedVOp = SimplifyVBinOp(N);
3710 if (FoldedVOp.Val) return FoldedVOp;
3711 }
Dan Gohman7f321562007-06-25 16:23:39 +00003712
Nate Begeman11af4ea2005-10-17 20:40:11 +00003713 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003714 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003715 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003716 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003717 if (N0CFP && !N1CFP)
3718 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003719 // fold (fmul X, 2.0) -> (fadd X, X)
3720 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3721 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003722 // fold (fmul X, -1.0) -> (fneg X)
3723 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3724 return DAG.getNode(ISD::FNEG, VT, N0);
3725
3726 // -X * -Y -> X*Y
Chris Lattner0254e702008-02-26 07:04:54 +00003727 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3728 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Chris Lattner29446522007-05-14 22:04:50 +00003729 // Both can be negated for free, check to see if at least one is cheaper
3730 // negated.
3731 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattner0254e702008-02-26 07:04:54 +00003732 return DAG.getNode(ISD::FMUL, VT,
3733 GetNegatedExpression(N0, DAG, AfterLegalize),
3734 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003735 }
3736 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003737
3738 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3739 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3740 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3741 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3742 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3743
Chris Lattner01b3d732005-09-28 22:28:18 +00003744 return SDOperand();
3745}
3746
3747SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3748 SDOperand N0 = N->getOperand(0);
3749 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003750 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3751 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003752 MVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003753
Dan Gohman7f321562007-06-25 16:23:39 +00003754 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003755 if (VT.isVector()) {
Dan Gohman05d92fe2007-07-13 20:03:40 +00003756 SDOperand FoldedVOp = SimplifyVBinOp(N);
3757 if (FoldedVOp.Val) return FoldedVOp;
3758 }
Dan Gohman7f321562007-06-25 16:23:39 +00003759
Nate Begemana148d982006-01-18 22:35:16 +00003760 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003761 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003762 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003763
3764
3765 // -X / -Y -> X*Y
Chris Lattner0254e702008-02-26 07:04:54 +00003766 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3767 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Chris Lattner29446522007-05-14 22:04:50 +00003768 // Both can be negated for free, check to see if at least one is cheaper
3769 // negated.
3770 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattner0254e702008-02-26 07:04:54 +00003771 return DAG.getNode(ISD::FDIV, VT,
3772 GetNegatedExpression(N0, DAG, AfterLegalize),
3773 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003774 }
3775 }
3776
Chris Lattner01b3d732005-09-28 22:28:18 +00003777 return SDOperand();
3778}
3779
3780SDOperand DAGCombiner::visitFREM(SDNode *N) {
3781 SDOperand N0 = N->getOperand(0);
3782 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003783 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3784 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003785 MVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003786
Nate Begemana148d982006-01-18 22:35:16 +00003787 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003788 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003789 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003790
Chris Lattner01b3d732005-09-28 22:28:18 +00003791 return SDOperand();
3792}
3793
Chris Lattner12d83032006-03-05 05:30:57 +00003794SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3795 SDOperand N0 = N->getOperand(0);
3796 SDOperand N1 = N->getOperand(1);
3797 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3798 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003799 MVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00003800
Dale Johannesendb44bf82007-10-16 23:38:29 +00003801 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003802 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3803
3804 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003805 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003806 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3807 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003808 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003809 return DAG.getNode(ISD::FABS, VT, N0);
3810 else
3811 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3812 }
3813
3814 // copysign(fabs(x), y) -> copysign(x, y)
3815 // copysign(fneg(x), y) -> copysign(x, y)
3816 // copysign(copysign(x,z), y) -> copysign(x, y)
3817 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3818 N0.getOpcode() == ISD::FCOPYSIGN)
3819 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3820
3821 // copysign(x, abs(y)) -> abs(x)
3822 if (N1.getOpcode() == ISD::FABS)
3823 return DAG.getNode(ISD::FABS, VT, N0);
3824
3825 // copysign(x, copysign(y,z)) -> copysign(x, z)
3826 if (N1.getOpcode() == ISD::FCOPYSIGN)
3827 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3828
3829 // copysign(x, fp_extend(y)) -> copysign(x, y)
3830 // copysign(x, fp_round(y)) -> copysign(x, y)
3831 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3832 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3833
3834 return SDOperand();
3835}
3836
3837
Chris Lattner01b3d732005-09-28 22:28:18 +00003838
Nate Begeman83e75ec2005-09-06 04:43:02 +00003839SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003840 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003841 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003842 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003843
3844 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003845 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003846 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003847 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003848}
3849
Nate Begeman83e75ec2005-09-06 04:43:02 +00003850SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003851 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003852 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003853 MVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00003854
Nate Begeman1d4d4142005-09-01 00:19:25 +00003855 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003856 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003857 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003858 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003859}
3860
Nate Begeman83e75ec2005-09-06 04:43:02 +00003861SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003862 SDOperand N0 = N->getOperand(0);
3863 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003864 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003865
3866 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003867 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003868 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003869 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003870}
3871
Nate Begeman83e75ec2005-09-06 04:43:02 +00003872SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003873 SDOperand N0 = N->getOperand(0);
3874 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003875 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003876
3877 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003878 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003879 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003880 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003881}
3882
Nate Begeman83e75ec2005-09-06 04:43:02 +00003883SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003884 SDOperand N0 = N->getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003885 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003886 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003887 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003888
3889 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003890 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner0bd48932008-01-17 07:00:52 +00003891 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003892
3893 // fold (fp_round (fp_extend x)) -> x
3894 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3895 return N0.getOperand(0);
3896
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00003897 // fold (fp_round (fp_round x)) -> (fp_round x)
3898 if (N0.getOpcode() == ISD::FP_ROUND) {
3899 // This is a value preserving truncation if both round's are.
3900 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3901 N0.Val->getConstantOperandVal(1) == 1;
3902 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3903 DAG.getIntPtrConstant(IsTrunc));
3904 }
3905
Chris Lattner79dbea52006-03-13 06:26:26 +00003906 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3907 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003908 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003909 AddToWorkList(Tmp.Val);
3910 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3911 }
3912
Nate Begeman83e75ec2005-09-06 04:43:02 +00003913 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003914}
3915
Nate Begeman83e75ec2005-09-06 04:43:02 +00003916SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003917 SDOperand N0 = N->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003918 MVT VT = N->getValueType(0);
3919 MVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003920 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003921
Nate Begeman1d4d4142005-09-01 00:19:25 +00003922 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003923 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003924 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003925 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003926 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003927 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003928}
3929
Nate Begeman83e75ec2005-09-06 04:43:02 +00003930SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003931 SDOperand N0 = N->getOperand(0);
3932 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003933 MVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003934
Chris Lattner5938bef2007-12-29 06:55:23 +00003935 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003936 if (N->hasOneUse() &&
3937 N->use_begin()->getSDOperand().getOpcode() == ISD::FP_ROUND)
Chris Lattner5938bef2007-12-29 06:55:23 +00003938 return SDOperand();
Chris Lattner0bd48932008-01-17 07:00:52 +00003939
Nate Begeman1d4d4142005-09-01 00:19:25 +00003940 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003941 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003942 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003943
3944 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3945 // value of X.
3946 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3947 SDOperand In = N0.getOperand(0);
3948 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00003949 if (VT.bitsLT(In.getValueType()))
Chris Lattner0bd48932008-01-17 07:00:52 +00003950 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3951 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3952 }
3953
3954 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003955 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003956 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003957 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3958 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3959 LN0->getBasePtr(), LN0->getSrcValue(),
3960 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003961 N0.getValueType(),
3962 LN0->isVolatile(),
3963 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003964 CombineTo(N, ExtLoad);
Chris Lattner0bd48932008-01-17 07:00:52 +00003965 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3966 DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00003967 ExtLoad.getValue(1));
3968 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3969 }
3970
3971
Nate Begeman83e75ec2005-09-06 04:43:02 +00003972 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003973}
3974
Nate Begeman83e75ec2005-09-06 04:43:02 +00003975SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003976 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003977
Chris Lattner0254e702008-02-26 07:04:54 +00003978 if (isNegatibleForFree(N0, AfterLegalize))
3979 return GetNegatedExpression(N0, DAG, AfterLegalize);
Dan Gohman23ff1822007-07-02 15:48:56 +00003980
Chris Lattner3bd39d42008-01-27 17:42:27 +00003981 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
3982 // constant pool values.
Chris Lattnerf32aac32008-01-27 23:32:17 +00003983 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003984 N0.getOperand(0).getValueType().isInteger() &&
3985 !N0.getOperand(0).getValueType().isVector()) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003986 SDOperand Int = N0.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003987 MVT IntVT = Int.getValueType();
3988 if (IntVT.isInteger() && !IntVT.isVector()) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003989 Int = DAG.getNode(ISD::XOR, IntVT, Int,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003990 DAG.getConstant(IntVT.getIntegerVTSignBit(), IntVT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00003991 AddToWorkList(Int.Val);
3992 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
3993 }
3994 }
3995
Nate Begeman83e75ec2005-09-06 04:43:02 +00003996 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003997}
3998
Nate Begeman83e75ec2005-09-06 04:43:02 +00003999SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00004000 SDOperand N0 = N->getOperand(0);
4001 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004002 MVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00004003
Nate Begeman1d4d4142005-09-01 00:19:25 +00004004 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00004005 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00004006 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004007 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00004008 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00004009 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004010 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00004011 // fold (fabs (fcopysign x, y)) -> (fabs x)
4012 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
4013 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
4014
Chris Lattner3bd39d42008-01-27 17:42:27 +00004015 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
4016 // constant pool values.
Chris Lattnerf32aac32008-01-27 23:32:17 +00004017 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00004018 N0.getOperand(0).getValueType().isInteger() &&
4019 !N0.getOperand(0).getValueType().isVector()) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00004020 SDOperand Int = N0.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004021 MVT IntVT = Int.getValueType();
4022 if (IntVT.isInteger() && !IntVT.isVector()) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00004023 Int = DAG.getNode(ISD::AND, IntVT, Int,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004024 DAG.getConstant(~IntVT.getIntegerVTSignBit(), IntVT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00004025 AddToWorkList(Int.Val);
4026 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
4027 }
4028 }
4029
Nate Begeman83e75ec2005-09-06 04:43:02 +00004030 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004031}
4032
Nate Begeman44728a72005-09-19 22:34:01 +00004033SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
4034 SDOperand Chain = N->getOperand(0);
4035 SDOperand N1 = N->getOperand(1);
4036 SDOperand N2 = N->getOperand(2);
4037 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4038
4039 // never taken branch, fold to chain
4040 if (N1C && N1C->isNullValue())
4041 return Chain;
4042 // unconditional branch
Dan Gohman002e5d02008-03-13 22:13:53 +00004043 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00004044 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004045 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
4046 // on the target.
4047 if (N1.getOpcode() == ISD::SETCC &&
4048 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
4049 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
4050 N1.getOperand(0), N1.getOperand(1), N2);
4051 }
Nate Begeman44728a72005-09-19 22:34:01 +00004052 return SDOperand();
4053}
4054
Chris Lattner3ea0b472005-10-05 06:47:48 +00004055// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
4056//
Nate Begeman44728a72005-09-19 22:34:01 +00004057SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00004058 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
4059 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
4060
4061 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00004062 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004063 if (Simp.Val) AddToWorkList(Simp.Val);
4064
Nate Begemane17daeb2005-10-05 21:43:42 +00004065 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
4066
4067 // fold br_cc true, dest -> br dest (unconditional branch)
Dan Gohman002e5d02008-03-13 22:13:53 +00004068 if (SCCC && !SCCC->isNullValue())
Nate Begemane17daeb2005-10-05 21:43:42 +00004069 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
4070 N->getOperand(4));
4071 // fold br_cc false, dest -> unconditional fall through
4072 if (SCCC && SCCC->isNullValue())
4073 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00004074
Nate Begemane17daeb2005-10-05 21:43:42 +00004075 // fold to a simpler setcc
4076 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
4077 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
4078 Simp.getOperand(2), Simp.getOperand(0),
4079 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00004080 return SDOperand();
4081}
4082
Chris Lattner448f2192006-11-11 00:39:41 +00004083
4084/// CombineToPreIndexedLoadStore - Try turning a load / store and a
4085/// pre-indexed load / store when the base pointer is a add or subtract
4086/// and it has other uses besides the load / store. After the
4087/// transformation, the new indexed load / store has effectively folded
4088/// the add / subtract in and all of its other uses are redirected to the
4089/// new load / store.
4090bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
4091 if (!AfterLegalize)
4092 return false;
4093
4094 bool isLoad = true;
4095 SDOperand Ptr;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004096 MVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00004097 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004098 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004099 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004100 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00004101 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00004102 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
4103 return false;
4104 Ptr = LD->getBasePtr();
4105 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004106 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004107 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004108 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004109 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
4110 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
4111 return false;
4112 Ptr = ST->getBasePtr();
4113 isLoad = false;
4114 } else
4115 return false;
4116
Chris Lattner9f1794e2006-11-11 00:56:29 +00004117 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
4118 // out. There is no reason to make this a preinc/predec.
4119 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
4120 Ptr.Val->hasOneUse())
4121 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00004122
Chris Lattner9f1794e2006-11-11 00:56:29 +00004123 // Ask the target to do addressing mode selection.
4124 SDOperand BasePtr;
4125 SDOperand Offset;
4126 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4127 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
4128 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00004129 // Don't create a indexed load / store with zero offset.
4130 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004131 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00004132 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00004133
Chris Lattner41e53fd2006-11-11 01:00:15 +00004134 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00004135 // 1) The new base ptr is a frame index.
4136 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattner9f1794e2006-11-11 00:56:29 +00004137 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00004138 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00004139 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00004140 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00004141
Chris Lattner41e53fd2006-11-11 01:00:15 +00004142 // Check #1. Preinc'ing a frame index would require copying the stack pointer
4143 // (plus the implicit offset) to a register to preinc anyway.
4144 if (isa<FrameIndexSDNode>(BasePtr))
4145 return false;
4146
4147 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00004148 if (!isLoad) {
4149 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Cheng917be682008-03-04 00:41:45 +00004150 if (Val == BasePtr || BasePtr.Val->isPredecessorOf(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004151 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00004152 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004153
Evan Chengc843abe2007-05-24 02:35:39 +00004154 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00004155 bool RealUse = false;
4156 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4157 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004158 SDNode *Use = I->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004159 if (Use == N)
4160 continue;
Evan Cheng917be682008-03-04 00:41:45 +00004161 if (Use->isPredecessorOf(N))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004162 return false;
4163
4164 if (!((Use->getOpcode() == ISD::LOAD &&
4165 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004166 (Use->getOpcode() == ISD::STORE &&
4167 cast<StoreSDNode>(Use)->getBasePtr() == Ptr)))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004168 RealUse = true;
4169 }
4170 if (!RealUse)
4171 return false;
4172
4173 SDOperand Result;
4174 if (isLoad)
4175 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
4176 else
4177 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4178 ++PreIndexedNodes;
4179 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004180 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004181 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4182 DOUT << '\n';
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004183 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004184 if (isLoad) {
4185 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004186 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004187 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004188 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004189 } else {
4190 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004191 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004192 }
4193
Chris Lattner9f1794e2006-11-11 00:56:29 +00004194 // Finally, since the node is now dead, remove it from the graph.
4195 DAG.DeleteNode(N);
4196
4197 // Replace the uses of Ptr with uses of the updated base value.
4198 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004199 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004200 removeFromWorkList(Ptr.Val);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004201 DAG.DeleteNode(Ptr.Val);
4202
4203 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004204}
4205
4206/// CombineToPostIndexedLoadStore - Try combine a load / store with a
4207/// add / sub of the base pointer node into a post-indexed load / store.
4208/// The transformation folded the add / subtract into the new indexed
4209/// load / store effectively and all of its uses are redirected to the
4210/// new load / store.
4211bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
4212 if (!AfterLegalize)
4213 return false;
4214
4215 bool isLoad = true;
4216 SDOperand Ptr;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004217 MVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00004218 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004219 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004220 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004221 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004222 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
4223 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
4224 return false;
4225 Ptr = LD->getBasePtr();
4226 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004227 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004228 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004229 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004230 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
4231 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
4232 return false;
4233 Ptr = ST->getBasePtr();
4234 isLoad = false;
4235 } else
4236 return false;
4237
Evan Chengcc470212006-11-16 00:08:20 +00004238 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00004239 return false;
4240
4241 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4242 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004243 SDNode *Op = I->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004244 if (Op == N ||
4245 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
4246 continue;
4247
4248 SDOperand BasePtr;
4249 SDOperand Offset;
4250 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4251 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
4252 if (Ptr == Offset)
4253 std::swap(BasePtr, Offset);
4254 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00004255 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00004256 // Don't create a indexed load / store with zero offset.
4257 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004258 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00004259 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004260
Chris Lattner9f1794e2006-11-11 00:56:29 +00004261 // Try turning it into a post-indexed load / store except when
4262 // 1) All uses are load / store ops that use it as base ptr.
4263 // 2) Op must be independent of N, i.e. Op is neither a predecessor
4264 // nor a successor of N. Otherwise, if Op is folded that would
4265 // create a cycle.
4266
4267 // Check for #1.
4268 bool TryNext = false;
4269 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
4270 EE = BasePtr.Val->use_end(); II != EE; ++II) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004271 SDNode *Use = II->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004272 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00004273 continue;
4274
Chris Lattner9f1794e2006-11-11 00:56:29 +00004275 // If all the uses are load / store addresses, then don't do the
4276 // transformation.
4277 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4278 bool RealUse = false;
4279 for (SDNode::use_iterator III = Use->use_begin(),
4280 EEE = Use->use_end(); III != EEE; ++III) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004281 SDNode *UseUse = III->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004282 if (!((UseUse->getOpcode() == ISD::LOAD &&
4283 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004284 (UseUse->getOpcode() == ISD::STORE &&
4285 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use)))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004286 RealUse = true;
4287 }
Chris Lattner448f2192006-11-11 00:39:41 +00004288
Chris Lattner9f1794e2006-11-11 00:56:29 +00004289 if (!RealUse) {
4290 TryNext = true;
4291 break;
Chris Lattner448f2192006-11-11 00:39:41 +00004292 }
4293 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004294 }
4295 if (TryNext)
4296 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004297
Chris Lattner9f1794e2006-11-11 00:56:29 +00004298 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00004299 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Chris Lattner9f1794e2006-11-11 00:56:29 +00004300 SDOperand Result = isLoad
4301 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4302 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4303 ++PostIndexedNodes;
4304 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004305 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004306 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4307 DOUT << '\n';
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004308 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004309 if (isLoad) {
4310 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004311 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004312 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004313 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004314 } else {
4315 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004316 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00004317 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004318
Chris Lattner9f1794e2006-11-11 00:56:29 +00004319 // Finally, since the node is now dead, remove it from the graph.
4320 DAG.DeleteNode(N);
4321
4322 // Replace the uses of Use with uses of the updated base value.
4323 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4324 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004325 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004326 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004327 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004328 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004329 }
4330 }
4331 }
4332 return false;
4333}
4334
Chris Lattner00161a62008-01-25 07:20:16 +00004335/// InferAlignment - If we can infer some alignment information from this
4336/// pointer, return it.
4337static unsigned InferAlignment(SDOperand Ptr, SelectionDAG &DAG) {
4338 // If this is a direct reference to a stack slot, use information about the
4339 // stack slot's alignment.
Chris Lattner1329cb82008-01-26 19:45:50 +00004340 int FrameIdx = 1 << 31;
4341 int64_t FrameOffset = 0;
Chris Lattner00161a62008-01-25 07:20:16 +00004342 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
Chris Lattner1329cb82008-01-26 19:45:50 +00004343 FrameIdx = FI->getIndex();
4344 } else if (Ptr.getOpcode() == ISD::ADD &&
4345 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4346 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4347 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4348 FrameOffset = Ptr.getConstantOperandVal(1);
Chris Lattner00161a62008-01-25 07:20:16 +00004349 }
Chris Lattner1329cb82008-01-26 19:45:50 +00004350
4351 if (FrameIdx != (1 << 31)) {
4352 // FIXME: Handle FI+CST.
4353 const MachineFrameInfo &MFI = *DAG.getMachineFunction().getFrameInfo();
4354 if (MFI.isFixedObjectIndex(FrameIdx)) {
4355 int64_t ObjectOffset = MFI.getObjectOffset(FrameIdx);
4356
4357 // The alignment of the frame index can be determined from its offset from
4358 // the incoming frame position. If the frame object is at offset 32 and
4359 // the stack is guaranteed to be 16-byte aligned, then we know that the
4360 // object is 16-byte aligned.
4361 unsigned StackAlign = DAG.getTarget().getFrameInfo()->getStackAlignment();
4362 unsigned Align = MinAlign(ObjectOffset, StackAlign);
4363
4364 // Finally, the frame object itself may have a known alignment. Factor
4365 // the alignment + offset into a new alignment. For example, if we know
4366 // the FI is 8 byte aligned, but the pointer is 4 off, we really have a
4367 // 4-byte alignment of the resultant pointer. Likewise align 4 + 4-byte
4368 // offset = 4-byte alignment, align 4 + 1-byte offset = align 1, etc.
4369 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
4370 FrameOffset);
4371 return std::max(Align, FIInfoAlign);
4372 }
4373 }
Chris Lattner00161a62008-01-25 07:20:16 +00004374
4375 return 0;
4376}
Chris Lattner448f2192006-11-11 00:39:41 +00004377
Chris Lattner01a22022005-10-10 22:04:48 +00004378SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004379 LoadSDNode *LD = cast<LoadSDNode>(N);
4380 SDOperand Chain = LD->getChain();
4381 SDOperand Ptr = LD->getBasePtr();
Chris Lattner00161a62008-01-25 07:20:16 +00004382
4383 // Try to infer better alignment information than the load already has.
4384 if (LD->isUnindexed()) {
4385 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4386 if (Align > LD->getAlignment())
4387 return DAG.getExtLoad(LD->getExtensionType(), LD->getValueType(0),
4388 Chain, Ptr, LD->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004389 LD->getSrcValueOffset(), LD->getMemoryVT(),
Chris Lattner00161a62008-01-25 07:20:16 +00004390 LD->isVolatile(), Align);
4391 }
4392 }
4393
Evan Cheng45a7ca92007-05-01 00:38:21 +00004394
4395 // If load is not volatile and there are no uses of the loaded value (and
4396 // the updated indexed value in case of indexed loads), change uses of the
4397 // chain value into uses of the chain input (i.e. delete the dead load).
4398 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004399 if (N->getValueType(1) == MVT::Other) {
4400 // Unindexed loads.
Evan Cheng02c42852008-01-16 23:11:54 +00004401 if (N->hasNUsesOfValue(0, 0)) {
4402 // It's not safe to use the two value CombineTo variant here. e.g.
4403 // v1, chain2 = load chain1, loc
4404 // v2, chain3 = load chain2, loc
4405 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00004406 // Now we replace use of chain2 with chain1. This makes the second load
4407 // isomorphic to the one we are deleting, and thus makes this load live.
Evan Cheng02c42852008-01-16 23:11:54 +00004408 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
Chris Lattner125991a2008-01-24 07:57:06 +00004409 DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4410 DOUT << "\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004411 WorkListRemover DeadNodes(*this);
4412 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &DeadNodes);
Chris Lattner125991a2008-01-24 07:57:06 +00004413 if (N->use_empty()) {
4414 removeFromWorkList(N);
4415 DAG.DeleteNode(N);
4416 }
Evan Cheng02c42852008-01-16 23:11:54 +00004417 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4418 }
Evan Cheng498f5592007-05-01 08:53:39 +00004419 } else {
4420 // Indexed loads.
4421 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4422 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Cheng02c42852008-01-16 23:11:54 +00004423 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4424 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4425 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4426 DOUT << " and 2 other values\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004427 WorkListRemover DeadNodes(*this);
4428 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00004429 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner4626b252008-01-17 07:20:38 +00004430 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004431 &DeadNodes);
4432 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00004433 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00004434 DAG.DeleteNode(N);
4435 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00004436 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004437 }
4438 }
Chris Lattner01a22022005-10-10 22:04:48 +00004439
4440 // If this load is directly stored, replace the load value with the stored
4441 // value.
4442 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004443 // TODO: Handle TRUNCSTORE/LOADEXT
Dan Gohmanb061c4b2008-03-31 20:32:52 +00004444 if (LD->getExtensionType() == ISD::NON_EXTLOAD &&
4445 !LD->isVolatile()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004446 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4447 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4448 if (PrevST->getBasePtr() == Ptr &&
4449 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004450 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004451 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004452 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004453
Jim Laskey7ca56af2006-10-11 13:47:09 +00004454 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004455 // Walk up chain skipping non-aliasing memory nodes.
4456 SDOperand BetterChain = FindBetterChain(N, Chain);
4457
Jim Laskey6ff23e52006-10-04 16:53:27 +00004458 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004459 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004460 SDOperand ReplLoad;
4461
Jim Laskey279f0532006-09-25 16:29:54 +00004462 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004463 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4464 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004465 LD->getSrcValue(), LD->getSrcValueOffset(),
4466 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004467 } else {
4468 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4469 LD->getValueType(0),
4470 BetterChain, Ptr, LD->getSrcValue(),
4471 LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004472 LD->getMemoryVT(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004473 LD->isVolatile(),
4474 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004475 }
Jim Laskey279f0532006-09-25 16:29:54 +00004476
Jim Laskey6ff23e52006-10-04 16:53:27 +00004477 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004478 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4479 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004480
Jim Laskey274062c2006-10-13 23:32:28 +00004481 // Replace uses with load result and token factor. Don't add users
4482 // to work list.
4483 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004484 }
4485 }
4486
Evan Cheng7fc033a2006-11-03 03:06:21 +00004487 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004488 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004489 return SDOperand(N, 0);
4490
Chris Lattner01a22022005-10-10 22:04:48 +00004491 return SDOperand();
4492}
4493
Chris Lattner07649d92008-01-08 23:08:06 +00004494
Chris Lattner87514ca2005-10-10 22:31:19 +00004495SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004496 StoreSDNode *ST = cast<StoreSDNode>(N);
4497 SDOperand Chain = ST->getChain();
4498 SDOperand Value = ST->getValue();
4499 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004500
Chris Lattner00161a62008-01-25 07:20:16 +00004501 // Try to infer better alignment information than the store already has.
4502 if (ST->isUnindexed()) {
4503 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4504 if (Align > ST->getAlignment())
4505 return DAG.getTruncStore(Chain, Value, Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004506 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner00161a62008-01-25 07:20:16 +00004507 ST->isVolatile(), Align);
4508 }
4509 }
4510
Evan Cheng59d5b682007-05-07 21:27:48 +00004511 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004512 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004513 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004514 ST->isUnindexed()) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004515 unsigned Align = ST->getAlignment();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004516 MVT SVT = Value.getOperand(0).getValueType();
Evan Cheng59d5b682007-05-07 21:27:48 +00004517 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00004518 getABITypeAlignment(SVT.getTypeForMVT());
Evan Chengc2cd2b22007-05-07 21:36:06 +00004519 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004520 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004521 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004522 }
4523
Nate Begeman2cbba892006-12-11 02:23:46 +00004524 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004525 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004526 if (Value.getOpcode() != ISD::TargetConstantFP) {
4527 SDOperand Tmp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004528 switch (CFP->getValueType(0).getSimpleVT()) {
Chris Lattner62be1a72006-12-12 04:16:14 +00004529 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004530 case MVT::f80: // We don't do this for these yet.
4531 case MVT::f128:
4532 case MVT::ppcf128:
4533 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004534 case MVT::f32:
4535 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004536 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4537 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004538 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004539 ST->getSrcValueOffset(), ST->isVolatile(),
4540 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004541 }
4542 break;
4543 case MVT::f64:
4544 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004545 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4546 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004547 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004548 ST->getSrcValueOffset(), ST->isVolatile(),
4549 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004550 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004551 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004552 // argument passing. Since this is so common, custom legalize the
4553 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004554 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004555 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4556 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00004557 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00004558
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004559 int SVOffset = ST->getSrcValueOffset();
4560 unsigned Alignment = ST->getAlignment();
4561 bool isVolatile = ST->isVolatile();
4562
Chris Lattner62be1a72006-12-12 04:16:14 +00004563 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004564 ST->getSrcValueOffset(),
4565 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004566 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4567 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004568 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004569 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004570 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004571 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004572 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4573 }
4574 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004575 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004576 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004577 }
4578
Jim Laskey279f0532006-09-25 16:29:54 +00004579 if (CombinerAA) {
4580 // Walk up chain skipping non-aliasing memory nodes.
4581 SDOperand BetterChain = FindBetterChain(N, Chain);
4582
Jim Laskey6ff23e52006-10-04 16:53:27 +00004583 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004584 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004585 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004586 SDOperand ReplStore;
4587 if (ST->isTruncatingStore()) {
4588 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004589 ST->getSrcValue(),ST->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004590 ST->getMemoryVT(),
Chris Lattner4626b252008-01-17 07:20:38 +00004591 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004592 } else {
4593 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004594 ST->getSrcValue(), ST->getSrcValueOffset(),
4595 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004596 }
4597
Jim Laskey279f0532006-09-25 16:29:54 +00004598 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004599 SDOperand Token =
4600 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4601
4602 // Don't add users to work list.
4603 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004604 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004605 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004606
Evan Cheng33dbedc2006-11-05 09:31:14 +00004607 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004608 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004609 return SDOperand(N, 0);
4610
Chris Lattner3c872852007-12-29 06:26:16 +00004611 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00004612 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00004613 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004614 // See if we can simplify the input to this truncstore with knowledge that
4615 // only the low bits are being used. For example:
4616 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4617 SDOperand Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004618 GetDemandedBits(Value,
4619 APInt::getLowBitsSet(Value.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +00004620 ST->getMemoryVT().getSizeInBits()));
Chris Lattner2b4c2792007-10-13 06:35:54 +00004621 AddToWorkList(Value.Val);
4622 if (Shorter.Val)
4623 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004624 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner2b4c2792007-10-13 06:35:54 +00004625 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004626
4627 // Otherwise, see if we can simplify the operation with
4628 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00004629 if (SimplifyDemandedBits(Value,
4630 APInt::getLowBitsSet(
4631 Value.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +00004632 ST->getMemoryVT().getSizeInBits())))
Chris Lattnere33544c2007-10-13 06:58:48 +00004633 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004634 }
4635
Chris Lattner3c872852007-12-29 06:26:16 +00004636 // If this is a load followed by a store to the same location, then the store
4637 // is dead/noop.
4638 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004639 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004640 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00004641 // There can't be any side effects between the load and store, such as
4642 // a call or store.
Chris Lattner572dee72008-01-16 05:49:24 +00004643 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00004644 // The store is dead, remove it.
4645 return Chain;
4646 }
4647 }
4648
Chris Lattnerddf89562008-01-17 19:59:44 +00004649 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4650 // truncating store. We can do this even if this is already a truncstore.
4651 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4652 && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4653 Value.Val->hasOneUse() && ST->isUnindexed() &&
4654 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004655 ST->getMemoryVT())) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004656 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004657 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattnerddf89562008-01-17 19:59:44 +00004658 ST->isVolatile(), ST->getAlignment());
4659 }
4660
Chris Lattner87514ca2005-10-10 22:31:19 +00004661 return SDOperand();
4662}
4663
Chris Lattnerca242442006-03-19 01:27:56 +00004664SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4665 SDOperand InVec = N->getOperand(0);
4666 SDOperand InVal = N->getOperand(1);
4667 SDOperand EltNo = N->getOperand(2);
4668
4669 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4670 // vector with the inserted element.
4671 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4672 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004673 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004674 if (Elt < Ops.size())
4675 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004676 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4677 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004678 }
4679
4680 return SDOperand();
4681}
4682
Evan Cheng513da432007-10-06 08:19:55 +00004683SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004684 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
4685 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
4686 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
4687
4688 // Perform only after legalization to ensure build_vector / vector_shuffle
4689 // optimizations have already been done.
4690 if (!AfterLegalize) return SDOperand();
4691
Evan Cheng513da432007-10-06 08:19:55 +00004692 SDOperand InVec = N->getOperand(0);
4693 SDOperand EltNo = N->getOperand(1);
4694
Evan Cheng513da432007-10-06 08:19:55 +00004695 if (isa<ConstantSDNode>(EltNo)) {
4696 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4697 bool NewLoad = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004698 MVT VT = InVec.getValueType();
4699 MVT EVT = VT.getVectorElementType();
4700 MVT LVT = EVT;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004701 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004702 MVT BCVT = InVec.getOperand(0).getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00004703 if (!BCVT.isVector() || EVT.bitsGT(BCVT.getVectorElementType()))
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004704 return SDOperand();
4705 InVec = InVec.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004706 EVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004707 NewLoad = true;
4708 }
Evan Cheng513da432007-10-06 08:19:55 +00004709
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004710 LoadSDNode *LN0 = NULL;
4711 if (ISD::isNormalLoad(InVec.Val))
4712 LN0 = cast<LoadSDNode>(InVec);
4713 else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4714 InVec.getOperand(0).getValueType() == EVT &&
4715 ISD::isNormalLoad(InVec.getOperand(0).Val)) {
4716 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4717 } else if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE) {
4718 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
4719 // =>
4720 // (load $addr+1*size)
4721 unsigned Idx = cast<ConstantSDNode>(InVec.getOperand(2).
4722 getOperand(Elt))->getValue();
4723 unsigned NumElems = InVec.getOperand(2).getNumOperands();
4724 InVec = (Idx < NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
4725 if (InVec.getOpcode() == ISD::BIT_CONVERT)
4726 InVec = InVec.getOperand(0);
4727 if (ISD::isNormalLoad(InVec.Val)) {
4728 LN0 = cast<LoadSDNode>(InVec);
4729 Elt = (Idx < NumElems) ? Idx : Idx - NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00004730 }
4731 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004732 if (!LN0 || !LN0->hasOneUse())
4733 return SDOperand();
4734
4735 unsigned Align = LN0->getAlignment();
4736 if (NewLoad) {
4737 // Check the resultant load doesn't need a higher alignment than the
4738 // original load.
4739 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00004740 getABITypeAlignment(LVT.getTypeForMVT());
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004741 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4742 return SDOperand();
4743 Align = NewAlign;
4744 }
4745
4746 SDOperand NewPtr = LN0->getBasePtr();
4747 if (Elt) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004748 unsigned PtrOff = LVT.getSizeInBits() * Elt / 8;
4749 MVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004750 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00004751 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00004752 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
4753 DAG.getConstant(PtrOff, PtrType));
4754 }
4755 return DAG.getLoad(LVT, LN0->getChain(), NewPtr,
4756 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4757 LN0->isVolatile(), Align);
Evan Cheng513da432007-10-06 08:19:55 +00004758 }
4759 return SDOperand();
4760}
4761
4762
Dan Gohman7f321562007-06-25 16:23:39 +00004763SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4764 unsigned NumInScalars = N->getNumOperands();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004765 MVT VT = N->getValueType(0);
4766 unsigned NumElts = VT.getVectorNumElements();
4767 MVT EltType = VT.getVectorElementType();
Chris Lattnerca242442006-03-19 01:27:56 +00004768
Dan Gohman7f321562007-06-25 16:23:39 +00004769 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4770 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4771 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004772 SDOperand VecIn1, VecIn2;
4773 for (unsigned i = 0; i != NumInScalars; ++i) {
4774 // Ignore undef inputs.
4775 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4776
Dan Gohman7f321562007-06-25 16:23:39 +00004777 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004778 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004779 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004780 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4781 VecIn1 = VecIn2 = SDOperand(0, 0);
4782 break;
4783 }
4784
Dan Gohman7f321562007-06-25 16:23:39 +00004785 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004786 // we can't make a shuffle.
4787 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004788 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004789 VecIn1 = VecIn2 = SDOperand(0, 0);
4790 break;
4791 }
4792
4793 // Otherwise, remember this. We allow up to two distinct input vectors.
4794 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4795 continue;
4796
4797 if (VecIn1.Val == 0) {
4798 VecIn1 = ExtractedFromVec;
4799 } else if (VecIn2.Val == 0) {
4800 VecIn2 = ExtractedFromVec;
4801 } else {
4802 // Too many inputs.
4803 VecIn1 = VecIn2 = SDOperand(0, 0);
4804 break;
4805 }
4806 }
4807
4808 // If everything is good, we can make a shuffle operation.
4809 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004810 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004811 for (unsigned i = 0; i != NumInScalars; ++i) {
4812 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004813 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004814 continue;
4815 }
4816
4817 SDOperand Extract = N->getOperand(i);
4818
4819 // If extracting from the first vector, just use the index directly.
4820 if (Extract.getOperand(0) == VecIn1) {
4821 BuildVecIndices.push_back(Extract.getOperand(1));
4822 continue;
4823 }
4824
4825 // Otherwise, use InIdx + VecSize
4826 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00004827 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004828 }
4829
4830 // Add count and size info.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004831 MVT BuildVecVT = MVT::getVectorVT(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004832
Dan Gohman7f321562007-06-25 16:23:39 +00004833 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004834 SDOperand Ops[5];
4835 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004836 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004837 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004838 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004839 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004840 std::vector<SDOperand> UnOps(NumInScalars,
4841 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004842 EltType));
4843 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004844 &UnOps[0], UnOps.size());
4845 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004846 }
Dan Gohman7f321562007-06-25 16:23:39 +00004847 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004848 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004849 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004850 }
4851
4852 return SDOperand();
4853}
4854
Dan Gohman7f321562007-06-25 16:23:39 +00004855SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4856 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4857 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4858 // inputs come from at most two distinct vectors, turn this into a shuffle
4859 // node.
4860
4861 // If we only have one input vector, we don't need to do any concatenation.
4862 if (N->getNumOperands() == 1) {
4863 return N->getOperand(0);
4864 }
4865
4866 return SDOperand();
4867}
4868
Chris Lattner66445d32006-03-28 22:11:53 +00004869SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004870 SDOperand ShufMask = N->getOperand(2);
4871 unsigned NumElts = ShufMask.getNumOperands();
4872
4873 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4874 bool isIdentity = true;
4875 for (unsigned i = 0; i != NumElts; ++i) {
4876 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4877 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4878 isIdentity = false;
4879 break;
4880 }
4881 }
4882 if (isIdentity) return N->getOperand(0);
4883
4884 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4885 isIdentity = true;
4886 for (unsigned i = 0; i != NumElts; ++i) {
4887 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4888 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4889 isIdentity = false;
4890 break;
4891 }
4892 }
4893 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004894
4895 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4896 // needed at all.
4897 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004898 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004899 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004900 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004901 for (unsigned i = 0; i != NumElts; ++i)
4902 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4903 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4904 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004905 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004906 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004907 BaseIdx = Idx;
4908 } else {
4909 if (BaseIdx != Idx)
4910 isSplat = false;
4911 if (VecNum != V) {
4912 isUnary = false;
4913 break;
4914 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004915 }
4916 }
4917
4918 SDOperand N0 = N->getOperand(0);
4919 SDOperand N1 = N->getOperand(1);
4920 // Normalize unary shuffle so the RHS is undef.
4921 if (isUnary && VecNum == 1)
4922 std::swap(N0, N1);
4923
Evan Cheng917ec982006-07-21 08:25:53 +00004924 // If it is a splat, check if the argument vector is a build_vector with
4925 // all scalar elements the same.
4926 if (isSplat) {
4927 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004928
Dan Gohman7f321562007-06-25 16:23:39 +00004929 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004930 // not the number of vector elements, look through it. Be careful not to
4931 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004932 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004933 SDOperand ConvInput = V->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004934 if (ConvInput.getValueType().getVectorNumElements() == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004935 V = ConvInput.Val;
4936 }
4937
Dan Gohman7f321562007-06-25 16:23:39 +00004938 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4939 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004940 if (NumElems > BaseIdx) {
4941 SDOperand Base;
4942 bool AllSame = true;
4943 for (unsigned i = 0; i != NumElems; ++i) {
4944 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4945 Base = V->getOperand(i);
4946 break;
4947 }
4948 }
4949 // Splat of <u, u, u, u>, return <u, u, u, u>
4950 if (!Base.Val)
4951 return N0;
4952 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004953 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004954 AllSame = false;
4955 break;
4956 }
4957 }
4958 // Splat of <x, x, x, x>, return <x, x, x, x>
4959 if (AllSame)
4960 return N0;
4961 }
4962 }
4963 }
4964
Evan Chenge7bec0d2006-07-20 22:44:41 +00004965 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4966 // into an undef.
4967 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004968 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4969 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004970 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004971 for (unsigned i = 0; i != NumElts; ++i) {
4972 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4973 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4974 MappedOps.push_back(ShufMask.getOperand(i));
4975 } else {
4976 unsigned NewIdx =
4977 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4978 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4979 }
4980 }
Dan Gohman7f321562007-06-25 16:23:39 +00004981 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004982 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004983 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004984 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4985 N0,
4986 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4987 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004988 }
Dan Gohman7f321562007-06-25 16:23:39 +00004989
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004990 return SDOperand();
4991}
4992
Evan Cheng44f1f092006-04-20 08:56:16 +00004993/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004994/// an AND to a vector_shuffle with the destination vector and a zero vector.
4995/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004996/// vector_shuffle V, Zero, <0, 4, 2, 4>
4997SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4998 SDOperand LHS = N->getOperand(0);
4999 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00005000 if (N->getOpcode() == ISD::AND) {
5001 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00005002 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00005003 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00005004 std::vector<SDOperand> IdxOps;
5005 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00005006 unsigned NumElts = NumOps;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005007 MVT EVT = RHS.getValueType().getVectorElementType();
Evan Cheng44f1f092006-04-20 08:56:16 +00005008 for (unsigned i = 0; i != NumElts; ++i) {
5009 SDOperand Elt = RHS.getOperand(i);
5010 if (!isa<ConstantSDNode>(Elt))
5011 return SDOperand();
5012 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
5013 IdxOps.push_back(DAG.getConstant(i, EVT));
5014 else if (cast<ConstantSDNode>(Elt)->isNullValue())
5015 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
5016 else
5017 return SDOperand();
5018 }
5019
5020 // Let's see if the target supports this vector_shuffle.
5021 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
5022 return SDOperand();
5023
Dan Gohman7f321562007-06-25 16:23:39 +00005024 // Return the new VECTOR_SHUFFLE node.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005025 MVT VT = MVT::getVectorVT(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00005026 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005027 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00005028 Ops.push_back(LHS);
5029 AddToWorkList(LHS.Val);
5030 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00005031 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005032 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00005033 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005034 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00005035 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005036 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00005037 if (VT != LHS.getValueType()) {
5038 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00005039 }
5040 return Result;
5041 }
5042 }
5043 return SDOperand();
5044}
5045
Dan Gohman7f321562007-06-25 16:23:39 +00005046/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
5047SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
5048 // After legalize, the target may be depending on adds and other
5049 // binary ops to provide legal ways to construct constants or other
5050 // things. Simplifying them may result in a loss of legality.
5051 if (AfterLegalize) return SDOperand();
5052
Duncan Sands83ec4b62008-06-06 12:08:01 +00005053 MVT VT = N->getValueType(0);
5054 assert(VT.isVector() && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00005055
Duncan Sands83ec4b62008-06-06 12:08:01 +00005056 MVT EltType = VT.getVectorElementType();
Chris Lattneredab1b92006-04-02 03:25:57 +00005057 SDOperand LHS = N->getOperand(0);
5058 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00005059 SDOperand Shuffle = XformToShuffleWithZero(N);
5060 if (Shuffle.Val) return Shuffle;
5061
Dan Gohman7f321562007-06-25 16:23:39 +00005062 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00005063 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00005064 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
5065 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005066 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005067 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00005068 SDOperand LHSOp = LHS.getOperand(i);
5069 SDOperand RHSOp = RHS.getOperand(i);
5070 // If these two elements can't be folded, bail out.
5071 if ((LHSOp.getOpcode() != ISD::UNDEF &&
5072 LHSOp.getOpcode() != ISD::Constant &&
5073 LHSOp.getOpcode() != ISD::ConstantFP) ||
5074 (RHSOp.getOpcode() != ISD::UNDEF &&
5075 RHSOp.getOpcode() != ISD::Constant &&
5076 RHSOp.getOpcode() != ISD::ConstantFP))
5077 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00005078 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00005079 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
5080 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00005081 if ((RHSOp.getOpcode() == ISD::Constant &&
5082 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
5083 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00005084 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00005085 break;
5086 }
Dan Gohman7f321562007-06-25 16:23:39 +00005087 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00005088 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00005089 assert((Ops.back().getOpcode() == ISD::UNDEF ||
5090 Ops.back().getOpcode() == ISD::Constant ||
5091 Ops.back().getOpcode() == ISD::ConstantFP) &&
5092 "Scalar binop didn't fold!");
5093 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00005094
Dan Gohman7f321562007-06-25 16:23:39 +00005095 if (Ops.size() == LHS.getNumOperands()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005096 MVT VT = LHS.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00005097 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00005098 }
Chris Lattneredab1b92006-04-02 03:25:57 +00005099 }
5100
5101 return SDOperand();
5102}
5103
Nate Begeman44728a72005-09-19 22:34:01 +00005104SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00005105 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
5106
5107 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
5108 cast<CondCodeSDNode>(N0.getOperand(2))->get());
5109 // If we got a simplified select_cc node back from SimplifySelectCC, then
5110 // break it down into a new SETCC node, and a new SELECT node, and then return
5111 // the SELECT node, since we were called with a SELECT node.
5112 if (SCC.Val) {
5113 // Check to see if we got a select_cc back (to turn into setcc/select).
5114 // Otherwise, just return whatever node we got back, like fabs.
5115 if (SCC.getOpcode() == ISD::SELECT_CC) {
5116 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
5117 SCC.getOperand(0), SCC.getOperand(1),
5118 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00005119 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005120 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
5121 SCC.getOperand(3), SETCC);
5122 }
5123 return SCC;
5124 }
Nate Begeman44728a72005-09-19 22:34:01 +00005125 return SDOperand();
5126}
5127
Chris Lattner40c62d52005-10-18 06:04:22 +00005128/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
5129/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00005130/// select. Callers of this should assume that TheSelect is deleted if this
5131/// returns true. As such, they should return the appropriate thing (e.g. the
5132/// node) back to the top-level of the DAG combiner loop to avoid it being
5133/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00005134///
5135bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
5136 SDOperand RHS) {
5137
5138 // If this is a select from two identical things, try to pull the operation
5139 // through the select.
5140 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00005141 // If this is a load and the token chain is identical, replace the select
5142 // of two loads with a load through a select of the address to load from.
5143 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
5144 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00005145 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00005146 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00005147 LHS.getOperand(0) == RHS.getOperand(0)) {
5148 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
5149 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
5150
5151 // If this is an EXTLOAD, the VT's must match.
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005152 if (LLD->getMemoryVT() == RLD->getMemoryVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00005153 // FIXME: this conflates two src values, discarding one. This is not
5154 // the right thing to do, but nothing uses srcvalues now. When they do,
5155 // turn SrcValue into a list of locations.
5156 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005157 if (TheSelect->getOpcode() == ISD::SELECT) {
5158 // Check that the condition doesn't reach either load. If so, folding
5159 // this will induce a cycle into the DAG.
Evan Cheng917be682008-03-04 00:41:45 +00005160 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5161 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val)) {
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005162 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
5163 TheSelect->getOperand(0), LLD->getBasePtr(),
5164 RLD->getBasePtr());
5165 }
5166 } else {
5167 // Check that the condition doesn't reach either load. If so, folding
5168 // this will induce a cycle into the DAG.
Evan Cheng917be682008-03-04 00:41:45 +00005169 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5170 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5171 !LLD->isPredecessorOf(TheSelect->getOperand(1).Val) &&
5172 !RLD->isPredecessorOf(TheSelect->getOperand(1).Val)) {
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005173 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00005174 TheSelect->getOperand(0),
5175 TheSelect->getOperand(1),
5176 LLD->getBasePtr(), RLD->getBasePtr(),
5177 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005178 }
Evan Cheng466685d2006-10-09 20:57:25 +00005179 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005180
5181 if (Addr.Val) {
5182 SDOperand Load;
5183 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
5184 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
5185 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00005186 LLD->getSrcValueOffset(),
5187 LLD->isVolatile(),
5188 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005189 else {
5190 Load = DAG.getExtLoad(LLD->getExtensionType(),
5191 TheSelect->getValueType(0),
5192 LLD->getChain(), Addr, LLD->getSrcValue(),
5193 LLD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005194 LLD->getMemoryVT(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00005195 LLD->isVolatile(),
5196 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005197 }
5198 // Users of the select now use the result of the load.
5199 CombineTo(TheSelect, Load);
5200
5201 // Users of the old loads now use the new load's chain. We know the
5202 // old-load value is dead now.
5203 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
5204 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
5205 return true;
5206 }
Evan Chengc5484282006-10-04 00:56:09 +00005207 }
Chris Lattner40c62d52005-10-18 06:04:22 +00005208 }
5209 }
5210
5211 return false;
5212}
5213
Nate Begeman44728a72005-09-19 22:34:01 +00005214SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
5215 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00005216 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00005217
Duncan Sands83ec4b62008-06-06 12:08:01 +00005218 MVT VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00005219 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
5220 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
5221 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
5222
5223 // Determine if the condition we're dealing with is constant
Scott Michel5b8f82e2008-03-10 15:42:14 +00005224 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00005225 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005226 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
5227
5228 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00005229 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00005230 return N2;
5231 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00005232 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00005233 return N3;
5234
5235 // Check to see if we can simplify the select into an fabs node
5236 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
5237 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00005238 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00005239 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
5240 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
5241 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
5242 N2 == N3.getOperand(0))
5243 return DAG.getNode(ISD::FABS, VT, N0);
5244
5245 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
5246 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
5247 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
5248 N2.getOperand(0) == N3)
5249 return DAG.getNode(ISD::FABS, VT, N3);
5250 }
5251 }
5252
5253 // Check to see if we can perform the "gzip trick", transforming
5254 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00005255 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005256 N0.getValueType().isInteger() &&
5257 N2.getValueType().isInteger() &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005258 (N1C->isNullValue() || // (a < 0) ? b : 0
5259 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Duncan Sands83ec4b62008-06-06 12:08:01 +00005260 MVT XType = N0.getValueType();
5261 MVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00005262 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00005263 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00005264 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00005265 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
5266 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005267 ShCtV = XType.getSizeInBits()-ShCtV-1;
Nate Begemanf845b452005-10-08 00:29:44 +00005268 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
5269 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00005270 AddToWorkList(Shift.Val);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005271 if (XType.bitsGT(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00005272 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005273 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005274 }
5275 return DAG.getNode(ISD::AND, AType, Shift, N2);
5276 }
5277 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005278 DAG.getConstant(XType.getSizeInBits()-1,
Nate Begemanf845b452005-10-08 00:29:44 +00005279 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00005280 AddToWorkList(Shift.Val);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005281 if (XType.bitsGT(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00005282 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005283 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005284 }
5285 return DAG.getNode(ISD::AND, AType, Shift, N2);
5286 }
5287 }
Nate Begeman07ed4172005-10-10 21:26:48 +00005288
5289 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00005290 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Nate Begeman07ed4172005-10-10 21:26:48 +00005291 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00005292
5293 // If the caller doesn't want us to simplify this into a zext of a compare,
5294 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00005295 if (NotExtCompare && N2C->getAPIntValue() == 1)
Chris Lattner1eba01e2007-04-11 06:50:51 +00005296 return SDOperand();
5297
Nate Begeman07ed4172005-10-10 21:26:48 +00005298 // Get a SetCC of the condition
5299 // FIXME: Should probably make sure that setcc is legal if we ever have a
5300 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00005301 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00005302 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00005303 if (AfterLegalize) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00005304 SCC = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005305 if (N2.getValueType().bitsLT(SCC.getValueType()))
Chris Lattner555d8d62006-12-07 22:36:47 +00005306 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
5307 else
5308 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00005309 } else {
5310 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00005311 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00005312 }
Chris Lattner5750df92006-03-01 04:03:14 +00005313 AddToWorkList(SCC.Val);
5314 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005315
Dan Gohman002e5d02008-03-13 22:13:53 +00005316 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005317 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00005318 // shl setcc result by log2 n2c
5319 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00005320 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Nate Begeman07ed4172005-10-10 21:26:48 +00005321 TLI.getShiftAmountTy()));
5322 }
5323
Nate Begemanf845b452005-10-08 00:29:44 +00005324 // Check to see if this is the equivalent of setcc
5325 // FIXME: Turn all of these into setcc if setcc if setcc is legal
5326 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00005327 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005328 MVT XType = N0.getValueType();
Scott Michel5b8f82e2008-03-10 15:42:14 +00005329 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(N0))) {
5330 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00005331 if (Res.getValueType() != VT)
5332 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
5333 return Res;
5334 }
5335
5336 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
5337 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
5338 TLI.isOperationLegal(ISD::CTLZ, XType)) {
5339 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
5340 return DAG.getNode(ISD::SRL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005341 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Nate Begemanf845b452005-10-08 00:29:44 +00005342 TLI.getShiftAmountTy()));
5343 }
5344 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
5345 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
5346 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
5347 N0);
5348 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
5349 DAG.getConstant(~0ULL, XType));
5350 return DAG.getNode(ISD::SRL, XType,
5351 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00005352 DAG.getConstant(XType.getSizeInBits()-1,
Nate Begemanf845b452005-10-08 00:29:44 +00005353 TLI.getShiftAmountTy()));
5354 }
5355 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5356 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5357 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005358 DAG.getConstant(XType.getSizeInBits()-1,
Nate Begemanf845b452005-10-08 00:29:44 +00005359 TLI.getShiftAmountTy()));
5360 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5361 }
5362 }
5363
5364 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5365 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5366 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00005367 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005368 N2.getOperand(0) == N1 && N0.getValueType().isInteger()) {
5369 MVT XType = N0.getValueType();
Chris Lattner1982ef22007-04-11 05:11:38 +00005370 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005371 DAG.getConstant(XType.getSizeInBits()-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005372 TLI.getShiftAmountTy()));
5373 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5374 AddToWorkList(Shift.Val);
5375 AddToWorkList(Add.Val);
5376 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5377 }
5378 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5379 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5380 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5381 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5382 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005383 MVT XType = N0.getValueType();
5384 if (SubC->isNullValue() && XType.isInteger()) {
Nate Begemanf845b452005-10-08 00:29:44 +00005385 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005386 DAG.getConstant(XType.getSizeInBits()-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005387 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00005388 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005389 AddToWorkList(Shift.Val);
5390 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005391 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5392 }
5393 }
5394 }
Chris Lattner1982ef22007-04-11 05:11:38 +00005395
Nate Begeman44728a72005-09-19 22:34:01 +00005396 return SDOperand();
5397}
5398
Evan Chengfa1eb272007-02-08 22:13:59 +00005399/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005400SDOperand DAGCombiner::SimplifySetCC(MVT VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00005401 SDOperand N1, ISD::CondCode Cond,
5402 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00005403 TargetLowering::DAGCombinerInfo
5404 DagCombineInfo(DAG, !AfterLegalize, false, this);
5405 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00005406}
5407
Nate Begeman69575232005-10-20 02:15:44 +00005408/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5409/// return a DAG expression to select that will generate the same value by
5410/// multiplying by a magic number. See:
5411/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5412SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005413 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005414 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5415
Andrew Lenharth232c9102006-06-12 16:07:18 +00005416 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005417 ii != ee; ++ii)
5418 AddToWorkList(*ii);
5419 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005420}
5421
5422/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5423/// return a DAG expression to select that will generate the same value by
5424/// multiplying by a magic number. See:
5425/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5426SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005427 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005428 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005429
Andrew Lenharth232c9102006-06-12 16:07:18 +00005430 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005431 ii != ee; ++ii)
5432 AddToWorkList(*ii);
5433 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005434}
5435
Jim Laskey71382342006-10-07 23:37:56 +00005436/// FindBaseOffset - Return true if base is known not to alias with anything
5437/// but itself. Provides base object and offset as results.
5438static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5439 // Assume it is a primitive operation.
5440 Base = Ptr; Offset = 0;
5441
5442 // If it's an adding a simple constant then integrate the offset.
5443 if (Base.getOpcode() == ISD::ADD) {
5444 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5445 Base = Base.getOperand(0);
5446 Offset += C->getValue();
5447 }
5448 }
5449
5450 // If it's any of the following then it can't alias with anything but itself.
5451 return isa<FrameIndexSDNode>(Base) ||
5452 isa<ConstantPoolSDNode>(Base) ||
5453 isa<GlobalAddressSDNode>(Base);
5454}
5455
5456/// isAlias - Return true if there is any possibility that the two addresses
5457/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005458bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5459 const Value *SrcValue1, int SrcValueOffset1,
5460 SDOperand Ptr2, int64_t Size2,
5461 const Value *SrcValue2, int SrcValueOffset2)
5462{
Jim Laskey71382342006-10-07 23:37:56 +00005463 // If they are the same then they must be aliases.
5464 if (Ptr1 == Ptr2) return true;
5465
5466 // Gather base node and offset information.
5467 SDOperand Base1, Base2;
5468 int64_t Offset1, Offset2;
5469 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5470 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5471
5472 // If they have a same base address then...
5473 if (Base1 == Base2) {
5474 // Check to see if the addresses overlap.
5475 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5476 }
5477
Jim Laskey096c22e2006-10-18 12:29:57 +00005478 // If we know both bases then they can't alias.
5479 if (KnownBase1 && KnownBase2) return false;
5480
Jim Laskey07a27092006-10-18 19:08:31 +00005481 if (CombinerGlobalAA) {
5482 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005483 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5484 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5485 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005486 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005487 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005488 if (AAResult == AliasAnalysis::NoAlias)
5489 return false;
5490 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005491
5492 // Otherwise we have to assume they alias.
5493 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005494}
5495
5496/// FindAliasInfo - Extracts the relevant alias information from the memory
5497/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005498bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005499 SDOperand &Ptr, int64_t &Size,
5500 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005501 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5502 Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005503 Size = LD->getMemoryVT().getSizeInBits() >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005504 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005505 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005506 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005507 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005508 Ptr = ST->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005509 Size = ST->getMemoryVT().getSizeInBits() >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005510 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005511 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005512 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005513 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005514 }
5515
5516 return false;
5517}
5518
Jim Laskey6ff23e52006-10-04 16:53:27 +00005519/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5520/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005521void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005522 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005523 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005524 std::set<SDNode *> Visited; // Visited node set.
5525
Jim Laskey279f0532006-09-25 16:29:54 +00005526 // Get alias information for node.
5527 SDOperand Ptr;
5528 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005529 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005530 int SrcValueOffset;
5531 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005532
Jim Laskey6ff23e52006-10-04 16:53:27 +00005533 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005534 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005535
Jim Laskeybc588b82006-10-05 15:07:25 +00005536 // Look at each chain and determine if it is an alias. If so, add it to the
5537 // aliases list. If not, then continue up the chain looking for the next
5538 // candidate.
5539 while (!Chains.empty()) {
5540 SDOperand Chain = Chains.back();
5541 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005542
Jim Laskeybc588b82006-10-05 15:07:25 +00005543 // Don't bother if we've been before.
5544 if (Visited.find(Chain.Val) != Visited.end()) continue;
5545 Visited.insert(Chain.Val);
5546
5547 switch (Chain.getOpcode()) {
5548 case ISD::EntryToken:
5549 // Entry token is ideal chain operand, but handled in FindBetterChain.
5550 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005551
Jim Laskeybc588b82006-10-05 15:07:25 +00005552 case ISD::LOAD:
5553 case ISD::STORE: {
5554 // Get alias information for Chain.
5555 SDOperand OpPtr;
5556 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005557 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005558 int OpSrcValueOffset;
5559 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5560 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005561
5562 // If chain is alias then stop here.
5563 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005564 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5565 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005566 Aliases.push_back(Chain);
5567 } else {
5568 // Look further up the chain.
5569 Chains.push_back(Chain.getOperand(0));
5570 // Clean up old chain.
5571 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005572 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005573 break;
5574 }
5575
5576 case ISD::TokenFactor:
5577 // We have to check each of the operands of the token factor, so we queue
5578 // then up. Adding the operands to the queue (stack) in reverse order
5579 // maintains the original order and increases the likelihood that getNode
5580 // will find a matching token factor (CSE.)
5581 for (unsigned n = Chain.getNumOperands(); n;)
5582 Chains.push_back(Chain.getOperand(--n));
5583 // Eliminate the token factor if we can.
5584 AddToWorkList(Chain.Val);
5585 break;
5586
5587 default:
5588 // For all other instructions we will just have to take what we can get.
5589 Aliases.push_back(Chain);
5590 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005591 }
5592 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005593}
5594
5595/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5596/// for a better chain (aliasing node.)
5597SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5598 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005599
Jim Laskey6ff23e52006-10-04 16:53:27 +00005600 // Accumulate all the aliases to this node.
5601 GatherAllAliases(N, OldChain, Aliases);
5602
5603 if (Aliases.size() == 0) {
5604 // If no operands then chain to entry token.
5605 return DAG.getEntryNode();
5606 } else if (Aliases.size() == 1) {
5607 // If a single operand then chain to it. We don't need to revisit it.
5608 return Aliases[0];
5609 }
5610
5611 // Construct a custom tailored token factor.
5612 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5613 &Aliases[0], Aliases.size());
5614
5615 // Make sure the old chain gets cleaned up.
5616 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5617
5618 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005619}
5620
Nate Begeman1d4d4142005-09-01 00:19:25 +00005621// SelectionDAG::Combine - This is the entry point for the file.
5622//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005623void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005624 if (!RunningAfterLegalize && ViewDAGCombine1)
5625 viewGraph();
5626 if (RunningAfterLegalize && ViewDAGCombine2)
5627 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005628 /// run - This is the main entry point to this class.
5629 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005630 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005631}