blob: 28f32d3d3b967deb4ee38aacc9c7e87669217b7f [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>
Nate Begeman1d4d4142005-09-01 00:19:25 +000032using namespace llvm;
33
Chris Lattnercd3245a2006-12-19 22:41:21 +000034STATISTIC(NodesCombined , "Number of dag nodes combined");
35STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
36STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
37
Nate Begeman1d4d4142005-09-01 00:19:25 +000038namespace {
Chris Lattner938ab022007-01-16 04:55:25 +000039#ifndef NDEBUG
40 static cl::opt<bool>
41 ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
42 cl::desc("Pop up a window to show dags before the first "
43 "dag combine pass"));
44 static cl::opt<bool>
45 ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
46 cl::desc("Pop up a window to show dags before the second "
47 "dag combine pass"));
48#else
49 static const bool ViewDAGCombine1 = false;
50 static const bool ViewDAGCombine2 = false;
51#endif
52
Jim Laskey71382342006-10-07 23:37:56 +000053 static cl::opt<bool>
54 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000055 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000056
Jim Laskey07a27092006-10-18 19:08:31 +000057 static cl::opt<bool>
58 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
59 cl::desc("Include global information in alias analysis"));
60
Jim Laskeybc588b82006-10-05 15:07:25 +000061//------------------------------ DAGCombiner ---------------------------------//
62
Jim Laskey71382342006-10-07 23:37:56 +000063 class VISIBILITY_HIDDEN DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000064 SelectionDAG &DAG;
65 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000066 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000067
68 // Worklist of all of the nodes that need to be simplified.
69 std::vector<SDNode*> WorkList;
70
Jim Laskeyc7c3f112006-10-16 20:52:31 +000071 // AA - Used for DAG load/store alias analysis.
72 AliasAnalysis &AA;
73
Nate Begeman1d4d4142005-09-01 00:19:25 +000074 /// AddUsersToWorkList - When an instruction is simplified, add all users of
75 /// the instruction to the work lists because they might get more simplified
76 /// now.
77 ///
78 void AddUsersToWorkList(SDNode *N) {
79 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000080 UI != UE; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +000081 AddToWorkList(UI->getUser());
Nate Begeman1d4d4142005-09-01 00:19:25 +000082 }
83
Dan Gohman389079b2007-10-08 17:57:15 +000084 /// visit - call the node-specific routine that knows how to fold each
85 /// particular type of node.
86 SDOperand visit(SDNode *N);
87
Chris Lattner24664722006-03-01 04:53:38 +000088 public:
Jim Laskey6ff23e52006-10-04 16:53:27 +000089 /// AddToWorkList - Add to the work list making sure it's instance is at the
90 /// the back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +000091 void AddToWorkList(SDNode *N) {
Jim Laskey6ff23e52006-10-04 16:53:27 +000092 removeFromWorkList(N);
Chris Lattner5750df92006-03-01 04:03:14 +000093 WorkList.push_back(N);
94 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000095
Chris Lattnerf8dc0612008-02-03 06:49:24 +000096 /// removeFromWorkList - remove all instances of N from the worklist.
97 ///
98 void removeFromWorkList(SDNode *N) {
99 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
100 WorkList.end());
Chris Lattner01a22022005-10-10 22:04:48 +0000101 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000102
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000103 SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
104 bool AddTo = true);
105
Jim Laskey274062c2006-10-13 23:32:28 +0000106 SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
107 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000108 }
109
Jim Laskey274062c2006-10-13 23:32:28 +0000110 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
111 bool AddTo = true) {
Chris Lattner3577e382006-08-11 17:56:38 +0000112 SDOperand To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000113 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000114 }
Chris Lattner0bd48932008-01-17 07:00:52 +0000115
Chris Lattner24664722006-03-01 04:53:38 +0000116 private:
117
Chris Lattner012f2412006-02-17 21:58:01 +0000118 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000119 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000120 /// propagation. If so, return true.
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000121 bool SimplifyDemandedBits(SDOperand Op) {
122 APInt Demanded = APInt::getAllOnesValue(Op.getValueSizeInBits());
123 return SimplifyDemandedBits(Op, Demanded);
124 }
125
126 bool SimplifyDemandedBits(SDOperand Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000127
Chris Lattner448f2192006-11-11 00:39:41 +0000128 bool CombineToPreIndexedLoadStore(SDNode *N);
129 bool CombineToPostIndexedLoadStore(SDNode *N);
130
131
Dan Gohman389079b2007-10-08 17:57:15 +0000132 /// combine - call the node-specific routine that knows how to fold each
133 /// particular type of node. If that doesn't do anything, try the
134 /// target-specific DAG combines.
135 SDOperand combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000136
137 // Visitation implementation - Implement dag node combining for different
138 // node types. The semantics are as follows:
139 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000140 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000141 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000142 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000143 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000144 SDOperand visitTokenFactor(SDNode *N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +0000145 SDOperand visitMERGE_VALUES(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000146 SDOperand visitADD(SDNode *N);
147 SDOperand visitSUB(SDNode *N);
Chris Lattner91153682007-03-04 20:03:15 +0000148 SDOperand visitADDC(SDNode *N);
149 SDOperand visitADDE(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000150 SDOperand visitMUL(SDNode *N);
151 SDOperand visitSDIV(SDNode *N);
152 SDOperand visitUDIV(SDNode *N);
153 SDOperand visitSREM(SDNode *N);
154 SDOperand visitUREM(SDNode *N);
155 SDOperand visitMULHU(SDNode *N);
156 SDOperand visitMULHS(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000157 SDOperand visitSMUL_LOHI(SDNode *N);
158 SDOperand visitUMUL_LOHI(SDNode *N);
159 SDOperand visitSDIVREM(SDNode *N);
160 SDOperand visitUDIVREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000161 SDOperand visitAND(SDNode *N);
162 SDOperand visitOR(SDNode *N);
163 SDOperand visitXOR(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000164 SDOperand SimplifyVBinOp(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000165 SDOperand visitSHL(SDNode *N);
166 SDOperand visitSRA(SDNode *N);
167 SDOperand visitSRL(SDNode *N);
168 SDOperand visitCTLZ(SDNode *N);
169 SDOperand visitCTTZ(SDNode *N);
170 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000171 SDOperand visitSELECT(SDNode *N);
172 SDOperand visitSELECT_CC(SDNode *N);
173 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000174 SDOperand visitSIGN_EXTEND(SDNode *N);
175 SDOperand visitZERO_EXTEND(SDNode *N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000176 SDOperand visitANY_EXTEND(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000177 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
178 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000179 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000180 SDOperand visitFADD(SDNode *N);
181 SDOperand visitFSUB(SDNode *N);
182 SDOperand visitFMUL(SDNode *N);
183 SDOperand visitFDIV(SDNode *N);
184 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000185 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000186 SDOperand visitSINT_TO_FP(SDNode *N);
187 SDOperand visitUINT_TO_FP(SDNode *N);
188 SDOperand visitFP_TO_SINT(SDNode *N);
189 SDOperand visitFP_TO_UINT(SDNode *N);
190 SDOperand visitFP_ROUND(SDNode *N);
191 SDOperand visitFP_ROUND_INREG(SDNode *N);
192 SDOperand visitFP_EXTEND(SDNode *N);
193 SDOperand visitFNEG(SDNode *N);
194 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000195 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000196 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000197 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000198 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000199 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
Evan Cheng513da432007-10-06 08:19:55 +0000200 SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
Dan Gohman7f321562007-06-25 16:23:39 +0000201 SDOperand visitBUILD_VECTOR(SDNode *N);
202 SDOperand visitCONCAT_VECTORS(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000203 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000204
Evan Cheng44f1f092006-04-20 08:56:16 +0000205 SDOperand XformToShuffleWithZero(SDNode *N);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000206 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
207
Chris Lattnere70da202007-12-06 07:33:36 +0000208 SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
209
Chris Lattner40c62d52005-10-18 06:04:22 +0000210 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Chris Lattner35e5c142006-05-05 05:51:50 +0000211 SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000212 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
213 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
Chris Lattner1eba01e2007-04-11 06:50:51 +0000214 SDOperand N3, ISD::CondCode CC,
215 bool NotExtCompare = false);
Nate Begeman452d7be2005-09-16 00:54:12 +0000216 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000217 ISD::CondCode Cond, bool foldBooleans = true);
Chris Lattner5eee4272008-01-26 01:09:19 +0000218 SDOperand SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
219 unsigned HiOp);
Dan Gohman7f321562007-06-25 16:23:39 +0000220 SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000221 SDOperand BuildSDIV(SDNode *N);
Chris Lattner516b9622006-09-14 20:50:57 +0000222 SDOperand BuildUDIV(SDNode *N);
223 SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
Evan Chengc88138f2007-03-22 01:54:19 +0000224 SDOperand ReduceLoadWidth(SDNode *N);
Jim Laskey279f0532006-09-25 16:29:54 +0000225
Dan Gohman2e68b6f2008-02-25 21:11:39 +0000226 SDOperand GetDemandedBits(SDOperand V, const APInt &Mask);
Chris Lattner2b4c2792007-10-13 06:35:54 +0000227
Jim Laskey6ff23e52006-10-04 16:53:27 +0000228 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
229 /// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +0000230 void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000231 SmallVector<SDOperand, 8> &Aliases);
232
Jim Laskey096c22e2006-10-18 12:29:57 +0000233 /// isAlias - Return true if there is any possibility that the two addresses
234 /// overlap.
235 bool isAlias(SDOperand Ptr1, int64_t Size1,
236 const Value *SrcValue1, int SrcValueOffset1,
237 SDOperand Ptr2, int64_t Size2,
Jeff Cohend41b30d2006-11-05 19:31:28 +0000238 const Value *SrcValue2, int SrcValueOffset2);
Jim Laskey096c22e2006-10-18 12:29:57 +0000239
Jim Laskey7ca56af2006-10-11 13:47:09 +0000240 /// FindAliasInfo - Extracts the relevant alias information from the memory
241 /// node. Returns true if the operand was a load.
242 bool FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +0000243 SDOperand &Ptr, int64_t &Size,
244 const Value *&SrcValue, int &SrcValueOffset);
Jim Laskey7ca56af2006-10-11 13:47:09 +0000245
Jim Laskey279f0532006-09-25 16:29:54 +0000246 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000247 /// looking for a better chain (aliasing node.)
Jim Laskey279f0532006-09-25 16:29:54 +0000248 SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
249
Nate Begeman1d4d4142005-09-01 00:19:25 +0000250public:
Jim Laskeyc7c3f112006-10-16 20:52:31 +0000251 DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
252 : DAG(D),
253 TLI(D.getTargetLoweringInfo()),
254 AfterLegalize(false),
255 AA(A) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000256
257 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000258 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000259 };
260}
261
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000262
263namespace {
264/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
265/// nodes from the worklist.
266class VISIBILITY_HIDDEN WorkListRemover :
267 public SelectionDAG::DAGUpdateListener {
268 DAGCombiner &DC;
269public:
Dan Gohmanb5660dc2008-02-20 16:44:09 +0000270 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000271
272 virtual void NodeDeleted(SDNode *N) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000273 DC.removeFromWorkList(N);
274 }
275
276 virtual void NodeUpdated(SDNode *N) {
277 // Ignore updates.
278 }
279};
280}
281
Chris Lattner24664722006-03-01 04:53:38 +0000282//===----------------------------------------------------------------------===//
283// TargetLowering::DAGCombinerInfo implementation
284//===----------------------------------------------------------------------===//
285
286void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
287 ((DAGCombiner*)DC)->AddToWorkList(N);
288}
289
290SDOperand TargetLowering::DAGCombinerInfo::
291CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner3577e382006-08-11 17:56:38 +0000292 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
Chris Lattner24664722006-03-01 04:53:38 +0000293}
294
295SDOperand TargetLowering::DAGCombinerInfo::
296CombineTo(SDNode *N, SDOperand Res) {
297 return ((DAGCombiner*)DC)->CombineTo(N, Res);
298}
299
300
301SDOperand TargetLowering::DAGCombinerInfo::
302CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
303 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
304}
305
306
Chris Lattner24664722006-03-01 04:53:38 +0000307//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000308// Helper Functions
309//===----------------------------------------------------------------------===//
310
311/// isNegatibleForFree - Return 1 if we can compute the negated form of the
312/// specified expression for the same cost as the expression itself, or 2 if we
313/// can compute the negated form more cheaply than the expression itself.
Chris Lattner0254e702008-02-26 07:04:54 +0000314static char isNegatibleForFree(SDOperand Op, bool AfterLegalize,
315 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000316 // No compile time optimizations on this type.
317 if (Op.getValueType() == MVT::ppcf128)
318 return 0;
319
Chris Lattner29446522007-05-14 22:04:50 +0000320 // fneg is removable even if it has multiple uses.
321 if (Op.getOpcode() == ISD::FNEG) return 2;
322
323 // Don't allow anything with multiple uses.
324 if (!Op.hasOneUse()) return 0;
325
Chris Lattner3adf9512007-05-25 02:19:06 +0000326 // Don't recurse exponentially.
327 if (Depth > 6) return 0;
328
Chris Lattner29446522007-05-14 22:04:50 +0000329 switch (Op.getOpcode()) {
330 default: return false;
331 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000332 // Don't invert constant FP values after legalize. The negated constant
333 // isn't necessarily legal.
334 return AfterLegalize ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000335 case ISD::FADD:
336 // FIXME: determine better conditions for this xform.
337 if (!UnsafeFPMath) return 0;
338
339 // -(A+B) -> -A - B
Chris Lattner0254e702008-02-26 07:04:54 +0000340 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000341 return V;
342 // -(A+B) -> -B - A
Chris Lattner0254e702008-02-26 07:04:54 +0000343 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000344 case ISD::FSUB:
345 // We can't turn -(A-B) into B-A when we honor signed zeros.
346 if (!UnsafeFPMath) return 0;
347
348 // -(A-B) -> B-A
349 return 1;
350
351 case ISD::FMUL:
352 case ISD::FDIV:
353 if (HonorSignDependentRoundingFPMath()) return 0;
354
355 // -(X*Y) -> (-X * Y) or (X*-Y)
Chris Lattner0254e702008-02-26 07:04:54 +0000356 if (char V = isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000357 return V;
358
Chris Lattner0254e702008-02-26 07:04:54 +0000359 return isNegatibleForFree(Op.getOperand(1), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000360
361 case ISD::FP_EXTEND:
362 case ISD::FP_ROUND:
363 case ISD::FSIN:
Chris Lattner0254e702008-02-26 07:04:54 +0000364 return isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1);
Chris Lattner29446522007-05-14 22:04:50 +0000365 }
366}
367
368/// GetNegatedExpression - If isNegatibleForFree returns true, this function
369/// returns the newly negated expression.
Chris Lattner3adf9512007-05-25 02:19:06 +0000370static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
Chris Lattner0254e702008-02-26 07:04:54 +0000371 bool AfterLegalize, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000372 // fneg is removable even if it has multiple uses.
373 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
374
375 // Don't allow anything with multiple uses.
376 assert(Op.hasOneUse() && "Unknown reuse!");
377
Chris Lattner3adf9512007-05-25 02:19:06 +0000378 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000379 switch (Op.getOpcode()) {
380 default: assert(0 && "Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000381 case ISD::ConstantFP: {
382 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
383 V.changeSign();
384 return DAG.getConstantFP(V, Op.getValueType());
385 }
Chris Lattner29446522007-05-14 22:04:50 +0000386 case ISD::FADD:
387 // FIXME: determine better conditions for this xform.
388 assert(UnsafeFPMath);
389
390 // -(A+B) -> -A - B
Chris Lattner0254e702008-02-26 07:04:54 +0000391 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000392 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000393 GetNegatedExpression(Op.getOperand(0), DAG,
394 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000395 Op.getOperand(1));
396 // -(A+B) -> -B - A
397 return DAG.getNode(ISD::FSUB, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000398 GetNegatedExpression(Op.getOperand(1), DAG,
399 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000400 Op.getOperand(0));
401 case ISD::FSUB:
402 // We can't turn -(A-B) into B-A when we honor signed zeros.
403 assert(UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000404
405 // -(0-B) -> B
406 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000407 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000408 return Op.getOperand(1);
Chris Lattner29446522007-05-14 22:04:50 +0000409
410 // -(A-B) -> B-A
411 return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
412 Op.getOperand(0));
413
414 case ISD::FMUL:
415 case ISD::FDIV:
416 assert(!HonorSignDependentRoundingFPMath());
417
418 // -(X*Y) -> -X * Y
Chris Lattneraeecb6c2008-02-26 17:09:59 +0000419 if (isNegatibleForFree(Op.getOperand(0), AfterLegalize, Depth+1))
Chris Lattner29446522007-05-14 22:04:50 +0000420 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000421 GetNegatedExpression(Op.getOperand(0), DAG,
422 AfterLegalize, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000423 Op.getOperand(1));
424
425 // -(X*Y) -> X * -Y
426 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
427 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000428 GetNegatedExpression(Op.getOperand(1), DAG,
429 AfterLegalize, Depth+1));
Chris Lattner29446522007-05-14 22:04:50 +0000430
431 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000432 case ISD::FSIN:
433 return DAG.getNode(Op.getOpcode(), Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000434 GetNegatedExpression(Op.getOperand(0), DAG,
435 AfterLegalize, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000436 case ISD::FP_ROUND:
437 return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
Chris Lattner0254e702008-02-26 07:04:54 +0000438 GetNegatedExpression(Op.getOperand(0), DAG,
439 AfterLegalize, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000440 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000441 }
442}
Chris Lattner24664722006-03-01 04:53:38 +0000443
444
Nate Begeman4ebd8052005-09-01 23:24:04 +0000445// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
446// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000447// Also, set the incoming LHS, RHS, and CC references to the appropriate
448// nodes based on the type of node we are checking. This simplifies life a
449// bit for the callers.
450static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
451 SDOperand &CC) {
452 if (N.getOpcode() == ISD::SETCC) {
453 LHS = N.getOperand(0);
454 RHS = N.getOperand(1);
455 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000456 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000457 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000458 if (N.getOpcode() == ISD::SELECT_CC &&
459 N.getOperand(2).getOpcode() == ISD::Constant &&
460 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000461 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000462 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
463 LHS = N.getOperand(0);
464 RHS = N.getOperand(1);
465 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000466 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000467 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000468 return false;
469}
470
Nate Begeman99801192005-09-07 23:25:52 +0000471// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
472// one use. If this is true, it allows the users to invert the operation for
473// free when it is profitable to do so.
474static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000475 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000476 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000477 return true;
478 return false;
479}
480
Nate Begemancd4d58c2006-02-03 06:46:56 +0000481SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
482 MVT::ValueType VT = N0.getValueType();
483 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
484 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
485 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
486 if (isa<ConstantSDNode>(N1)) {
487 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000488 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000489 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
490 } else if (N0.hasOneUse()) {
491 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000492 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000493 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
494 }
495 }
496 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
497 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
498 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
499 if (isa<ConstantSDNode>(N0)) {
500 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000501 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000502 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
503 } else if (N1.hasOneUse()) {
504 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000505 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000506 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
507 }
508 }
509 return SDOperand();
510}
511
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000512SDOperand DAGCombiner::CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
513 bool AddTo) {
514 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
515 ++NodesCombined;
516 DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
517 DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
518 DOUT << " and " << NumTo-1 << " other values\n";
519 WorkListRemover DeadNodes(*this);
520 DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
521
522 if (AddTo) {
523 // Push the new nodes and any users onto the worklist
524 for (unsigned i = 0, e = NumTo; i != e; ++i) {
525 AddToWorkList(To[i].Val);
526 AddUsersToWorkList(To[i].Val);
527 }
528 }
529
530 // Nodes can be reintroduced into the worklist. Make sure we do not
531 // process a node that has been replaced.
532 removeFromWorkList(N);
533
534 // Finally, since the node is now dead, remove it from the graph.
535 DAG.DeleteNode(N);
536 return SDOperand(N, 0);
537}
538
539/// SimplifyDemandedBits - Check the specified integer node value to see if
540/// it can be simplified or if things it uses can be simplified by bit
541/// propagation. If so, return true.
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000542bool DAGCombiner::SimplifyDemandedBits(SDOperand Op, const APInt &Demanded) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000543 TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000544 APInt KnownZero, KnownOne;
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000545 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
546 return false;
547
548 // Revisit the node.
549 AddToWorkList(Op.Val);
550
551 // Replace the old value with the new one.
552 ++NodesCombined;
553 DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
554 DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
555 DOUT << '\n';
556
557 // Replace all uses. If any nodes become isomorphic to other nodes and
558 // are deleted, make sure to remove them from our worklist.
559 WorkListRemover DeadNodes(*this);
560 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
561
562 // Push the new node and any (possibly new) users onto the worklist.
563 AddToWorkList(TLO.New.Val);
564 AddUsersToWorkList(TLO.New.Val);
565
566 // Finally, if the node is now dead, remove it from the graph. The node
567 // may not be dead if the replacement process recursively simplified to
568 // something else needing this node.
569 if (TLO.Old.Val->use_empty()) {
570 removeFromWorkList(TLO.Old.Val);
571
572 // If the operands of this node are only used by the node, they will now
573 // be dead. Make sure to visit them first to delete dead nodes early.
574 for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
575 if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
576 AddToWorkList(TLO.Old.Val->getOperand(i).Val);
577
578 DAG.DeleteNode(TLO.Old.Val);
579 }
580 return true;
581}
582
Chris Lattner29446522007-05-14 22:04:50 +0000583//===----------------------------------------------------------------------===//
584// Main DAG Combiner implementation
585//===----------------------------------------------------------------------===//
586
Nate Begeman4ebd8052005-09-01 23:24:04 +0000587void DAGCombiner::Run(bool RunningAfterLegalize) {
588 // set the instance variable, so that the various visit routines may use it.
589 AfterLegalize = RunningAfterLegalize;
590
Nate Begeman646d7e22005-09-02 21:18:40 +0000591 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000592 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
593 E = DAG.allnodes_end(); I != E; ++I)
594 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000595
Chris Lattner95038592005-10-05 06:35:28 +0000596 // Create a dummy node (which is not added to allnodes), that adds a reference
597 // to the root node, preventing it from being deleted, and tracking any
598 // changes of the root.
599 HandleSDNode Dummy(DAG.getRoot());
600
Jim Laskey26f7fa72006-10-17 19:33:52 +0000601 // The root of the dag may dangle to deleted nodes until the dag combiner is
602 // done. Set it to null to avoid confusion.
603 DAG.setRoot(SDOperand());
Chris Lattner24664722006-03-01 04:53:38 +0000604
Nate Begeman1d4d4142005-09-01 00:19:25 +0000605 // while the worklist isn't empty, inspect the node on the end of it and
606 // try and combine it.
607 while (!WorkList.empty()) {
608 SDNode *N = WorkList.back();
609 WorkList.pop_back();
610
611 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000612 // N is deleted from the DAG, since they too may now be dead or may have a
613 // reduced number of uses, allowing other xforms.
614 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000615 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jim Laskey6ff23e52006-10-04 16:53:27 +0000616 AddToWorkList(N->getOperand(i).Val);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000617
Chris Lattner95038592005-10-05 06:35:28 +0000618 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000619 continue;
620 }
621
Dan Gohman389079b2007-10-08 17:57:15 +0000622 SDOperand RV = combine(N);
Chris Lattner24664722006-03-01 04:53:38 +0000623
Chris Lattner50d8e492008-01-25 23:34:24 +0000624 if (RV.Val == 0)
625 continue;
626
627 ++NodesCombined;
Chris Lattner5eee4272008-01-26 01:09:19 +0000628
Chris Lattner50d8e492008-01-25 23:34:24 +0000629 // If we get back the same node we passed in, rather than a new node or
630 // zero, we know that the node must have defined multiple values and
631 // CombineTo was used. Since CombineTo takes care of the worklist
632 // mechanics for us, we have no work to do in this case.
633 if (RV.Val == N)
634 continue;
635
636 assert(N->getOpcode() != ISD::DELETED_NODE &&
637 RV.Val->getOpcode() != ISD::DELETED_NODE &&
638 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +0000639
Chris Lattner50d8e492008-01-25 23:34:24 +0000640 DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
641 DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
642 DOUT << '\n';
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643 WorkListRemover DeadNodes(*this);
Chris Lattner50d8e492008-01-25 23:34:24 +0000644 if (N->getNumValues() == RV.Val->getNumValues())
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000645 DAG.ReplaceAllUsesWith(N, RV.Val, &DeadNodes);
Chris Lattner50d8e492008-01-25 23:34:24 +0000646 else {
Chris Lattner5eee4272008-01-26 01:09:19 +0000647 assert(N->getValueType(0) == RV.getValueType() &&
648 N->getNumValues() == 1 && "Type mismatch");
Chris Lattner50d8e492008-01-25 23:34:24 +0000649 SDOperand OpV = RV;
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000650 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000651 }
Chris Lattner50d8e492008-01-25 23:34:24 +0000652
653 // Push the new node and any users onto the worklist
654 AddToWorkList(RV.Val);
655 AddUsersToWorkList(RV.Val);
656
657 // Add any uses of the old node to the worklist in case this node is the
658 // last one that uses them. They may become dead after this node is
659 // deleted.
660 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
661 AddToWorkList(N->getOperand(i).Val);
662
663 // Nodes can be reintroduced into the worklist. Make sure we do not
664 // process a node that has been replaced.
665 removeFromWorkList(N);
Chris Lattner50d8e492008-01-25 23:34:24 +0000666
667 // Finally, since the node is now dead, remove it from the graph.
668 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000669 }
Chris Lattner95038592005-10-05 06:35:28 +0000670
671 // If the root changed (e.g. it was a dead load, update the root).
672 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000673}
674
Nate Begeman83e75ec2005-09-06 04:43:02 +0000675SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000676 switch(N->getOpcode()) {
677 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000678 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +0000679 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000680 case ISD::ADD: return visitADD(N);
681 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +0000682 case ISD::ADDC: return visitADDC(N);
683 case ISD::ADDE: return visitADDE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000684 case ISD::MUL: return visitMUL(N);
685 case ISD::SDIV: return visitSDIV(N);
686 case ISD::UDIV: return visitUDIV(N);
687 case ISD::SREM: return visitSREM(N);
688 case ISD::UREM: return visitUREM(N);
689 case ISD::MULHU: return visitMULHU(N);
690 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +0000691 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
692 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
693 case ISD::SDIVREM: return visitSDIVREM(N);
694 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000695 case ISD::AND: return visitAND(N);
696 case ISD::OR: return visitOR(N);
697 case ISD::XOR: return visitXOR(N);
698 case ISD::SHL: return visitSHL(N);
699 case ISD::SRA: return visitSRA(N);
700 case ISD::SRL: return visitSRL(N);
701 case ISD::CTLZ: return visitCTLZ(N);
702 case ISD::CTTZ: return visitCTTZ(N);
703 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000704 case ISD::SELECT: return visitSELECT(N);
705 case ISD::SELECT_CC: return visitSELECT_CC(N);
706 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000707 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
708 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +0000709 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000710 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
711 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000712 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000713 case ISD::FADD: return visitFADD(N);
714 case ISD::FSUB: return visitFSUB(N);
715 case ISD::FMUL: return visitFMUL(N);
716 case ISD::FDIV: return visitFDIV(N);
717 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000718 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000719 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
720 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
721 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
722 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
723 case ISD::FP_ROUND: return visitFP_ROUND(N);
724 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
725 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
726 case ISD::FNEG: return visitFNEG(N);
727 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000728 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000729 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000730 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000731 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000732 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +0000733 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +0000734 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
735 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000736 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000737 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000738 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000739}
740
Dan Gohman389079b2007-10-08 17:57:15 +0000741SDOperand DAGCombiner::combine(SDNode *N) {
742
743 SDOperand RV = visit(N);
744
745 // If nothing happened, try a target-specific DAG combine.
746 if (RV.Val == 0) {
747 assert(N->getOpcode() != ISD::DELETED_NODE &&
748 "Node was deleted but visit returned NULL!");
749
750 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
751 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
752
753 // Expose the DAG combiner to the target combiner impls.
754 TargetLowering::DAGCombinerInfo
755 DagCombineInfo(DAG, !AfterLegalize, false, this);
756
757 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
758 }
759 }
760
Evan Cheng08b11732008-03-22 01:55:50 +0000761 // If N is a commutative binary node, try commuting it to enable more
762 // sdisel CSE.
763 if (RV.Val == 0 &&
764 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
765 N->getNumValues() == 1) {
766 SDOperand N0 = N->getOperand(0);
767 SDOperand N1 = N->getOperand(1);
768 // Constant operands are canonicalized to RHS.
769 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
770 SDOperand Ops[] = { N1, N0 };
771 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
772 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +0000773 if (CSENode)
Evan Cheng08b11732008-03-22 01:55:50 +0000774 return SDOperand(CSENode, 0);
775 }
776 }
777
Dan Gohman389079b2007-10-08 17:57:15 +0000778 return RV;
779}
780
Chris Lattner6270f682006-10-08 22:57:01 +0000781/// getInputChainForNode - Given a node, return its input chain if it has one,
782/// otherwise return a null sd operand.
783static SDOperand getInputChainForNode(SDNode *N) {
784 if (unsigned NumOps = N->getNumOperands()) {
785 if (N->getOperand(0).getValueType() == MVT::Other)
786 return N->getOperand(0);
787 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
788 return N->getOperand(NumOps-1);
789 for (unsigned i = 1; i < NumOps-1; ++i)
790 if (N->getOperand(i).getValueType() == MVT::Other)
791 return N->getOperand(i);
792 }
793 return SDOperand(0, 0);
794}
795
Nate Begeman83e75ec2005-09-06 04:43:02 +0000796SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +0000797 // If N has two operands, where one has an input chain equal to the other,
798 // the 'other' chain is redundant.
799 if (N->getNumOperands() == 2) {
800 if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
801 return N->getOperand(0);
802 if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
803 return N->getOperand(1);
804 }
805
Chris Lattnerc76d4412007-05-16 06:37:59 +0000806 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
807 SmallVector<SDOperand, 8> Ops; // Ops for replacing token factor.
808 SmallPtrSet<SDNode*, 16> SeenOps;
809 bool Changed = false; // If we should replace this token factor.
Jim Laskey6ff23e52006-10-04 16:53:27 +0000810
811 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +0000812 TFs.push_back(N);
Jim Laskey279f0532006-09-25 16:29:54 +0000813
Jim Laskey71382342006-10-07 23:37:56 +0000814 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +0000815 // encountered.
816 for (unsigned i = 0; i < TFs.size(); ++i) {
817 SDNode *TF = TFs[i];
818
Jim Laskey6ff23e52006-10-04 16:53:27 +0000819 // Check each of the operands.
820 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
821 SDOperand Op = TF->getOperand(i);
Jim Laskey279f0532006-09-25 16:29:54 +0000822
Jim Laskey6ff23e52006-10-04 16:53:27 +0000823 switch (Op.getOpcode()) {
824 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +0000825 // Entry tokens don't need to be added to the list. They are
826 // rededundant.
827 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000828 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000829
Jim Laskey6ff23e52006-10-04 16:53:27 +0000830 case ISD::TokenFactor:
Jim Laskeybc588b82006-10-05 15:07:25 +0000831 if ((CombinerAA || Op.hasOneUse()) &&
832 std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000833 // Queue up for processing.
834 TFs.push_back(Op.Val);
835 // Clean up in case the token factor is removed.
836 AddToWorkList(Op.Val);
837 Changed = true;
838 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000839 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000840 // Fall thru
841
842 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +0000843 // Only add if it isn't already in the list.
844 if (SeenOps.insert(Op.Val))
Jim Laskeybc588b82006-10-05 15:07:25 +0000845 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +0000846 else
847 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +0000848 break;
Jim Laskey279f0532006-09-25 16:29:54 +0000849 }
850 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000851 }
852
853 SDOperand Result;
854
855 // If we've change things around then replace token factor.
856 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +0000857 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +0000858 // The entry token is the only possible outcome.
859 Result = DAG.getEntryNode();
860 } else {
861 // New and improved token factor.
862 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +0000863 }
Jim Laskey274062c2006-10-13 23:32:28 +0000864
865 // Don't add users to work list.
866 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +0000867 }
Jim Laskey279f0532006-09-25 16:29:54 +0000868
Jim Laskey6ff23e52006-10-04 16:53:27 +0000869 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000870}
871
Chris Lattnerfec42eb2008-02-13 07:25:05 +0000872/// MERGE_VALUES can always be eliminated.
873SDOperand DAGCombiner::visitMERGE_VALUES(SDNode *N) {
874 WorkListRemover DeadNodes(*this);
875 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
876 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, i), N->getOperand(i),
877 &DeadNodes);
878 removeFromWorkList(N);
879 DAG.DeleteNode(N);
880 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
881}
882
883
Evan Cheng42d7ccf2007-01-19 17:51:44 +0000884static
885SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
886 MVT::ValueType VT = N0.getValueType();
887 SDOperand N00 = N0.getOperand(0);
888 SDOperand N01 = N0.getOperand(1);
889 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
890 if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
891 isa<ConstantSDNode>(N00.getOperand(1))) {
892 N0 = DAG.getNode(ISD::ADD, VT,
893 DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
894 DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
895 return DAG.getNode(ISD::ADD, VT, N0, N1);
896 }
897 return SDOperand();
898}
899
Evan Chengb13cdbd2007-06-21 07:39:16 +0000900static
901SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
902 SelectionDAG &DAG) {
903 MVT::ValueType VT = N->getValueType(0);
904 unsigned Opc = N->getOpcode();
905 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
906 SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
907 SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
908 ISD::CondCode CC = ISD::SETCC_INVALID;
909 if (isSlctCC)
910 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
911 else {
912 SDOperand CCOp = Slct.getOperand(0);
913 if (CCOp.getOpcode() == ISD::SETCC)
914 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
915 }
916
917 bool DoXform = false;
918 bool InvCC = false;
919 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
920 "Bad input!");
921 if (LHS.getOpcode() == ISD::Constant &&
922 cast<ConstantSDNode>(LHS)->isNullValue())
923 DoXform = true;
924 else if (CC != ISD::SETCC_INVALID &&
925 RHS.getOpcode() == ISD::Constant &&
926 cast<ConstantSDNode>(RHS)->isNullValue()) {
927 std::swap(LHS, RHS);
Chris Lattner4626b252008-01-17 07:20:38 +0000928 SDOperand Op0 = Slct.getOperand(0);
929 bool isInt = MVT::isInteger(isSlctCC ? Op0.getValueType()
930 : Op0.getOperand(0).getValueType());
Evan Chengb13cdbd2007-06-21 07:39:16 +0000931 CC = ISD::getSetCCInverse(CC, isInt);
932 DoXform = true;
933 InvCC = true;
934 }
935
936 if (DoXform) {
937 SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
938 if (isSlctCC)
939 return DAG.getSelectCC(OtherOp, Result,
940 Slct.getOperand(0), Slct.getOperand(1), CC);
941 SDOperand CCOp = Slct.getOperand(0);
942 if (InvCC)
943 CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
944 CCOp.getOperand(1), CC);
945 return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
946 }
947 return SDOperand();
948}
949
Nate Begeman83e75ec2005-09-06 04:43:02 +0000950SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000951 SDOperand N0 = N->getOperand(0);
952 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000953 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
954 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000955 MVT::ValueType VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000956
957 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +0000958 if (MVT::isVector(VT)) {
959 SDOperand FoldedVOp = SimplifyVBinOp(N);
960 if (FoldedVOp.Val) return FoldedVOp;
961 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000962
Dan Gohman613e0d82007-07-03 14:03:57 +0000963 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +0000964 if (N0.getOpcode() == ISD::UNDEF)
965 return N0;
966 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +0000967 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000968 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000969 if (N0C && N1C)
Dan Gohman002e5d02008-03-13 22:13:53 +0000970 return DAG.getConstant(N0C->getAPIntValue() + N1C->getAPIntValue(), VT);
Nate Begeman99801192005-09-07 23:25:52 +0000971 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000972 if (N0C && !N1C)
973 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000974 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000975 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000976 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000977 // fold ((c1-A)+c2) -> (c1+c2)-A
978 if (N1C && N0.getOpcode() == ISD::SUB)
979 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
980 return DAG.getNode(ISD::SUB, VT,
Dan Gohman002e5d02008-03-13 22:13:53 +0000981 DAG.getConstant(N1C->getAPIntValue()+
982 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000983 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000984 // reassociate add
985 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
986 if (RADD.Val != 0)
987 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000988 // fold ((0-A) + B) -> B-A
989 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
990 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000991 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000992 // fold (A + (0-B)) -> A-B
993 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
994 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000995 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000996 // fold (A+(B-A)) -> B
997 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000998 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000999
Evan Cheng860771d2006-03-01 01:09:54 +00001000 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001001 return SDOperand(N, 0);
Chris Lattner947c2892006-03-13 06:51:27 +00001002
1003 // fold (a+b) -> (a|b) iff a and b share no bits.
1004 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001005 APInt LHSZero, LHSOne;
1006 APInt RHSZero, RHSOne;
1007 APInt Mask = APInt::getAllOnesValue(MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001008 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohman948d8ea2008-02-20 16:33:30 +00001009 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001010 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattner947c2892006-03-13 06:51:27 +00001011
1012 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1013 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1014 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1015 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1016 return DAG.getNode(ISD::OR, VT, N0, N1);
1017 }
1018 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001019
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001020 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1021 if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
1022 SDOperand Result = combineShlAddConstant(N0, N1, DAG);
1023 if (Result.Val) return Result;
1024 }
1025 if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
1026 SDOperand Result = combineShlAddConstant(N1, N0, DAG);
1027 if (Result.Val) return Result;
1028 }
1029
Evan Chengb13cdbd2007-06-21 07:39:16 +00001030 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
1031 if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
1032 SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
1033 if (Result.Val) return Result;
1034 }
1035 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1036 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1037 if (Result.Val) return Result;
1038 }
1039
Nate Begeman83e75ec2005-09-06 04:43:02 +00001040 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001041}
1042
Chris Lattner91153682007-03-04 20:03:15 +00001043SDOperand DAGCombiner::visitADDC(SDNode *N) {
1044 SDOperand N0 = N->getOperand(0);
1045 SDOperand N1 = N->getOperand(1);
1046 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1047 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1048 MVT::ValueType VT = N0.getValueType();
1049
1050 // If the flag result is dead, turn this into an ADD.
1051 if (N->hasNUsesOfValue(0, 1))
1052 return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
Chris Lattnerb6541762007-03-04 20:40:38 +00001053 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
Chris Lattner91153682007-03-04 20:03:15 +00001054
1055 // canonicalize constant to RHS.
Chris Lattnerbcf24842007-03-04 20:08:45 +00001056 if (N0C && !N1C) {
1057 SDOperand Ops[] = { N1, N0 };
1058 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1059 }
Chris Lattner91153682007-03-04 20:03:15 +00001060
Chris Lattnerb6541762007-03-04 20:40:38 +00001061 // fold (addc x, 0) -> x + no carry out
1062 if (N1C && N1C->isNullValue())
1063 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1064
1065 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001066 APInt LHSZero, LHSOne;
1067 APInt RHSZero, RHSOne;
1068 APInt Mask = APInt::getAllOnesValue(MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001069 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Dan Gohman948d8ea2008-02-20 16:33:30 +00001070 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001071 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Chris Lattnerb6541762007-03-04 20:40:38 +00001072
1073 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1074 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1075 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1076 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1077 return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1078 DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1079 }
Chris Lattner91153682007-03-04 20:03:15 +00001080
1081 return SDOperand();
1082}
1083
1084SDOperand DAGCombiner::visitADDE(SDNode *N) {
1085 SDOperand N0 = N->getOperand(0);
1086 SDOperand N1 = N->getOperand(1);
Chris Lattnerb6541762007-03-04 20:40:38 +00001087 SDOperand CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001088 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1089 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Chris Lattnerbcf24842007-03-04 20:08:45 +00001090 //MVT::ValueType VT = N0.getValueType();
Chris Lattner91153682007-03-04 20:03:15 +00001091
1092 // canonicalize constant to RHS
Chris Lattnerbcf24842007-03-04 20:08:45 +00001093 if (N0C && !N1C) {
Chris Lattnerb6541762007-03-04 20:40:38 +00001094 SDOperand Ops[] = { N1, N0, CarryIn };
Chris Lattnerbcf24842007-03-04 20:08:45 +00001095 return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1096 }
Chris Lattner91153682007-03-04 20:03:15 +00001097
Chris Lattnerb6541762007-03-04 20:40:38 +00001098 // fold (adde x, y, false) -> (addc x, y)
1099 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1100 SDOperand Ops[] = { N1, N0 };
1101 return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1102 }
Chris Lattner91153682007-03-04 20:03:15 +00001103
1104 return SDOperand();
1105}
1106
1107
1108
Nate Begeman83e75ec2005-09-06 04:43:02 +00001109SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001110 SDOperand N0 = N->getOperand(0);
1111 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001112 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1113 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001114 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001115
Dan Gohman7f321562007-06-25 16:23:39 +00001116 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001117 if (MVT::isVector(VT)) {
1118 SDOperand FoldedVOp = SimplifyVBinOp(N);
1119 if (FoldedVOp.Val) return FoldedVOp;
1120 }
Dan Gohman7f321562007-06-25 16:23:39 +00001121
Chris Lattner854077d2005-10-17 01:07:11 +00001122 // fold (sub x, x) -> 0
Evan Chengc8e3b142008-03-12 07:02:50 +00001123 if (N0 == N1)
Chris Lattner854077d2005-10-17 01:07:11 +00001124 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001125 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001126 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001127 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +00001128 // fold (sub x, c) -> (add x, -c)
1129 if (N1C)
Dan Gohman002e5d02008-03-13 22:13:53 +00001130 return DAG.getNode(ISD::ADD, VT, N0,
1131 DAG.getConstant(-N1C->getAPIntValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001132 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001133 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001134 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001135 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001136 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001137 return N0.getOperand(0);
Evan Chengb13cdbd2007-06-21 07:39:16 +00001138 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1139 if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1140 SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1141 if (Result.Val) return Result;
1142 }
Dan Gohman613e0d82007-07-03 14:03:57 +00001143 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001144 if (N0.getOpcode() == ISD::UNDEF)
1145 return N0;
1146 if (N1.getOpcode() == ISD::UNDEF)
1147 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001148
Nate Begeman83e75ec2005-09-06 04:43:02 +00001149 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001150}
1151
Nate Begeman83e75ec2005-09-06 04:43:02 +00001152SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001153 SDOperand N0 = N->getOperand(0);
1154 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001155 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1156 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +00001157 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001158
Dan Gohman7f321562007-06-25 16:23:39 +00001159 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001160 if (MVT::isVector(VT)) {
1161 SDOperand FoldedVOp = SimplifyVBinOp(N);
1162 if (FoldedVOp.Val) return FoldedVOp;
1163 }
Dan Gohman7f321562007-06-25 16:23:39 +00001164
Dan Gohman613e0d82007-07-03 14:03:57 +00001165 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001166 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001167 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001168 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001169 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001170 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001171 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001172 if (N0C && !N1C)
1173 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001174 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001175 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001176 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001177 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001178 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001179 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001180 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001181 if (N1C && N1C->getAPIntValue().isPowerOf2())
Chris Lattner3e6099b2005-10-30 06:41:49 +00001182 return DAG.getNode(ISD::SHL, VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001183 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001184 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001185 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1186 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1187 // FIXME: If the input is something that is easily negated (e.g. a
1188 // single-use add), we should put the negate there.
1189 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1190 DAG.getNode(ISD::SHL, VT, N0,
1191 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1192 TLI.getShiftAmountTy())));
1193 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +00001194
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001195 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1196 if (N1C && N0.getOpcode() == ISD::SHL &&
1197 isa<ConstantSDNode>(N0.getOperand(1))) {
1198 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +00001199 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001200 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1201 }
1202
1203 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1204 // use.
1205 {
1206 SDOperand Sh(0,0), Y(0,0);
1207 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1208 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1209 N0.Val->hasOneUse()) {
1210 Sh = N0; Y = N1;
1211 } else if (N1.getOpcode() == ISD::SHL &&
1212 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1213 Sh = N1; Y = N0;
1214 }
1215 if (Sh.Val) {
1216 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1217 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1218 }
1219 }
Chris Lattnera1deca32006-03-04 23:33:26 +00001220 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1221 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1222 isa<ConstantSDNode>(N0.getOperand(1))) {
1223 return DAG.getNode(ISD::ADD, VT,
1224 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1225 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1226 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001227
Nate Begemancd4d58c2006-02-03 06:46:56 +00001228 // reassociate mul
1229 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1230 if (RMUL.Val != 0)
1231 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001232
Nate Begeman83e75ec2005-09-06 04:43:02 +00001233 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001234}
1235
Nate Begeman83e75ec2005-09-06 04:43:02 +00001236SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001237 SDOperand N0 = N->getOperand(0);
1238 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001239 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1240 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001241 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001242
Dan Gohman7f321562007-06-25 16:23:39 +00001243 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001244 if (MVT::isVector(VT)) {
1245 SDOperand FoldedVOp = SimplifyVBinOp(N);
1246 if (FoldedVOp.Val) return FoldedVOp;
1247 }
Dan Gohman7f321562007-06-25 16:23:39 +00001248
Nate Begeman1d4d4142005-09-01 00:19:25 +00001249 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001250 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001251 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001252 // fold (sdiv X, 1) -> X
1253 if (N1C && N1C->getSignExtended() == 1LL)
1254 return N0;
1255 // fold (sdiv X, -1) -> 0-X
1256 if (N1C && N1C->isAllOnesValue())
1257 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001258 // If we know the sign bits of both operands are zero, strength reduce to a
1259 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Chris Lattnerf32aac32008-01-27 23:32:17 +00001260 if (!MVT::isVector(VT)) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001261 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattnerf32aac32008-01-27 23:32:17 +00001262 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
1263 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001264 // fold (sdiv X, pow2) -> simple ops after legalize
Dan Gohman002e5d02008-03-13 22:13:53 +00001265 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +00001266 (isPowerOf2_64(N1C->getSignExtended()) ||
1267 isPowerOf2_64(-N1C->getSignExtended()))) {
1268 // If dividing by powers of two is cheap, then don't perform the following
1269 // fold.
1270 if (TLI.isPow2DivCheap())
1271 return SDOperand();
1272 int64_t pow2 = N1C->getSignExtended();
1273 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +00001274 unsigned lg2 = Log2_64(abs2);
1275 // Splat the sign bit into the register
1276 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001277 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1278 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00001279 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +00001280 // Add (N0 < 0) ? abs2 - 1 : 0;
1281 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1282 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +00001283 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +00001284 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +00001285 AddToWorkList(SRL.Val);
1286 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +00001287 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1288 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +00001289 // If we're dividing by a positive value, we're done. Otherwise, we must
1290 // negate the result.
1291 if (pow2 > 0)
1292 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +00001293 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001294 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1295 }
Nate Begeman69575232005-10-20 02:15:44 +00001296 // if integer divide is expensive and we satisfy the requirements, emit an
1297 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +00001298 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +00001299 !TLI.isIntDivCheap()) {
1300 SDOperand Op = BuildSDIV(N);
1301 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001302 }
Dan Gohman7f321562007-06-25 16:23:39 +00001303
Dan Gohman613e0d82007-07-03 14:03:57 +00001304 // undef / X -> 0
1305 if (N0.getOpcode() == ISD::UNDEF)
1306 return DAG.getConstant(0, VT);
1307 // X / undef -> undef
1308 if (N1.getOpcode() == ISD::UNDEF)
1309 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001310
Nate Begeman83e75ec2005-09-06 04:43:02 +00001311 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001312}
1313
Nate Begeman83e75ec2005-09-06 04:43:02 +00001314SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001315 SDOperand N0 = N->getOperand(0);
1316 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001317 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1318 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +00001319 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001320
Dan Gohman7f321562007-06-25 16:23:39 +00001321 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001322 if (MVT::isVector(VT)) {
1323 SDOperand FoldedVOp = SimplifyVBinOp(N);
1324 if (FoldedVOp.Val) return FoldedVOp;
1325 }
Dan Gohman7f321562007-06-25 16:23:39 +00001326
Nate Begeman1d4d4142005-09-01 00:19:25 +00001327 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001328 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001329 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001330 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001331 if (N1C && N1C->getAPIntValue().isPowerOf2())
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001332 return DAG.getNode(ISD::SRL, VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001333 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001334 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001335 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1336 if (N1.getOpcode() == ISD::SHL) {
1337 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001338 if (SHC->getAPIntValue().isPowerOf2()) {
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001339 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +00001340 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
Dan Gohman002e5d02008-03-13 22:13:53 +00001341 DAG.getConstant(SHC->getAPIntValue()
1342 .logBase2(),
Nate Begemanc031e332006-02-05 07:36:48 +00001343 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +00001344 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001345 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001346 }
1347 }
1348 }
Nate Begeman69575232005-10-20 02:15:44 +00001349 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001350 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Chris Lattnere9936d12005-10-22 18:50:15 +00001351 SDOperand Op = BuildUDIV(N);
1352 if (Op.Val) return Op;
1353 }
Dan Gohman7f321562007-06-25 16:23:39 +00001354
Dan Gohman613e0d82007-07-03 14:03:57 +00001355 // undef / X -> 0
1356 if (N0.getOpcode() == ISD::UNDEF)
1357 return DAG.getConstant(0, VT);
1358 // X / undef -> undef
1359 if (N1.getOpcode() == ISD::UNDEF)
1360 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001361
Nate Begeman83e75ec2005-09-06 04:43:02 +00001362 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001363}
1364
Nate Begeman83e75ec2005-09-06 04:43:02 +00001365SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001366 SDOperand N0 = N->getOperand(0);
1367 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001368 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1369 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001370 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001371
1372 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001373 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001374 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001375 // If we know the sign bits of both operands are zero, strength reduce to a
1376 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Chris Lattneree339f42008-01-27 23:21:58 +00001377 if (!MVT::isVector(VT)) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001378 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Chris Lattneree339f42008-01-27 23:21:58 +00001379 return DAG.getNode(ISD::UREM, VT, N0, N1);
1380 }
Chris Lattner26d29902006-10-12 20:58:32 +00001381
Dan Gohman77003042007-11-26 23:46:11 +00001382 // If X/C can be simplified by the division-by-constant logic, lower
1383 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001384 if (N1C && !N1C->isNullValue()) {
1385 SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
Chris Lattner5eee4272008-01-26 01:09:19 +00001386 AddToWorkList(Div.Val);
Dan Gohman77003042007-11-26 23:46:11 +00001387 SDOperand OptimizedDiv = combine(Div.Val);
1388 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1389 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1390 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1391 AddToWorkList(Mul.Val);
1392 return Sub;
1393 }
Chris Lattner26d29902006-10-12 20:58:32 +00001394 }
1395
Dan Gohman613e0d82007-07-03 14:03:57 +00001396 // undef % X -> 0
1397 if (N0.getOpcode() == ISD::UNDEF)
1398 return DAG.getConstant(0, VT);
1399 // X % undef -> undef
1400 if (N1.getOpcode() == ISD::UNDEF)
1401 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001402
Nate Begeman83e75ec2005-09-06 04:43:02 +00001403 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001404}
1405
Nate Begeman83e75ec2005-09-06 04:43:02 +00001406SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001407 SDOperand N0 = N->getOperand(0);
1408 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001409 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1410 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001411 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001412
1413 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001414 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001415 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001416 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00001417 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
1418 return DAG.getNode(ISD::AND, VT, N0,
1419 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001420 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1421 if (N1.getOpcode() == ISD::SHL) {
1422 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001423 if (SHC->getAPIntValue().isPowerOf2()) {
1424 SDOperand Add =
1425 DAG.getNode(ISD::ADD, VT, N1,
1426 DAG.getConstant(APInt::getAllOnesValue(MVT::getSizeInBits(VT)),
1427 VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001428 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001429 return DAG.getNode(ISD::AND, VT, N0, Add);
1430 }
1431 }
1432 }
Chris Lattner26d29902006-10-12 20:58:32 +00001433
Dan Gohman77003042007-11-26 23:46:11 +00001434 // If X/C can be simplified by the division-by-constant logic, lower
1435 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001436 if (N1C && !N1C->isNullValue()) {
1437 SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
Dan Gohman77003042007-11-26 23:46:11 +00001438 SDOperand OptimizedDiv = combine(Div.Val);
1439 if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1440 SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1441 SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1442 AddToWorkList(Mul.Val);
1443 return Sub;
1444 }
Chris Lattner26d29902006-10-12 20:58:32 +00001445 }
1446
Dan Gohman613e0d82007-07-03 14:03:57 +00001447 // undef % X -> 0
1448 if (N0.getOpcode() == ISD::UNDEF)
1449 return DAG.getConstant(0, VT);
1450 // X % undef -> undef
1451 if (N1.getOpcode() == ISD::UNDEF)
1452 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001453
Nate Begeman83e75ec2005-09-06 04:43:02 +00001454 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001455}
1456
Nate Begeman83e75ec2005-09-06 04:43:02 +00001457SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001458 SDOperand N0 = N->getOperand(0);
1459 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001460 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001461 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001462
1463 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001464 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001465 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001466 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00001467 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001468 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1469 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001470 TLI.getShiftAmountTy()));
Dan Gohman613e0d82007-07-03 14:03:57 +00001471 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001472 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001473 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001474
Nate Begeman83e75ec2005-09-06 04:43:02 +00001475 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001476}
1477
Nate Begeman83e75ec2005-09-06 04:43:02 +00001478SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001479 SDOperand N0 = N->getOperand(0);
1480 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001481 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Dan Gohman7f321562007-06-25 16:23:39 +00001482 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001483
1484 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001485 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001486 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001487 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00001488 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001489 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00001490 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001491 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001492 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00001493
Nate Begeman83e75ec2005-09-06 04:43:02 +00001494 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001495}
1496
Dan Gohman389079b2007-10-08 17:57:15 +00001497/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1498/// compute two values. LoOp and HiOp give the opcodes for the two computations
1499/// that are being performed. Return true if a simplification was made.
1500///
Chris Lattner5eee4272008-01-26 01:09:19 +00001501SDOperand DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
1502 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00001503 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00001504 bool HiExists = N->hasAnyUseOfValue(1);
1505 if (!HiExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001506 (!AfterLegalize ||
1507 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001508 SDOperand Res = DAG.getNode(LoOp, N->getValueType(0), N->op_begin(),
1509 N->getNumOperands());
1510 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00001511 }
1512
1513 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00001514 bool LoExists = N->hasAnyUseOfValue(0);
1515 if (!LoExists &&
Dan Gohman389079b2007-10-08 17:57:15 +00001516 (!AfterLegalize ||
1517 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001518 SDOperand Res = DAG.getNode(HiOp, N->getValueType(1), N->op_begin(),
1519 N->getNumOperands());
1520 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00001521 }
1522
Evan Cheng44711942007-11-08 09:25:29 +00001523 // If both halves are used, return as it is.
1524 if (LoExists && HiExists)
Chris Lattner5eee4272008-01-26 01:09:19 +00001525 return SDOperand();
Evan Cheng44711942007-11-08 09:25:29 +00001526
1527 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00001528 if (LoExists) {
1529 SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1530 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00001531 AddToWorkList(Lo.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001532 SDOperand LoOpt = combine(Lo.Val);
Chris Lattner5eee4272008-01-26 01:09:19 +00001533 if (LoOpt.Val && LoOpt.Val != Lo.Val &&
1534 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))
1535 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00001536 }
1537
Evan Cheng44711942007-11-08 09:25:29 +00001538 if (HiExists) {
1539 SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1540 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00001541 AddToWorkList(Hi.Val);
Evan Cheng44711942007-11-08 09:25:29 +00001542 SDOperand HiOpt = combine(Hi.Val);
1543 if (HiOpt.Val && HiOpt != Hi &&
Chris Lattner5eee4272008-01-26 01:09:19 +00001544 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))
1545 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00001546 }
Chris Lattner5eee4272008-01-26 01:09:19 +00001547 return SDOperand();
Dan Gohman389079b2007-10-08 17:57:15 +00001548}
1549
1550SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001551 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
1552 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001553
1554 return SDOperand();
1555}
1556
1557SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001558 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
1559 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001560
1561 return SDOperand();
1562}
1563
1564SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001565 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
1566 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001567
1568 return SDOperand();
1569}
1570
1571SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
Chris Lattner5eee4272008-01-26 01:09:19 +00001572 SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
1573 if (Res.Val) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00001574
1575 return SDOperand();
1576}
1577
Chris Lattner35e5c142006-05-05 05:51:50 +00001578/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1579/// two operands of the same opcode, try to simplify it.
1580SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1581 SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1582 MVT::ValueType VT = N0.getValueType();
1583 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1584
Chris Lattner540121f2006-05-05 06:31:05 +00001585 // For each of OP in AND/OR/XOR:
1586 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1587 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1588 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Chris Lattner0d8dae72006-05-05 06:32:04 +00001589 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
Chris Lattner540121f2006-05-05 06:31:05 +00001590 if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
Chris Lattner0d8dae72006-05-05 06:32:04 +00001591 N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001592 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1593 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1594 N0.getOperand(0).getValueType(),
1595 N0.getOperand(0), N1.getOperand(0));
1596 AddToWorkList(ORNode.Val);
Chris Lattner540121f2006-05-05 06:31:05 +00001597 return DAG.getNode(N0.getOpcode(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00001598 }
1599
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001600 // For each of OP in SHL/SRL/SRA/AND...
1601 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1602 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
1603 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00001604 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00001605 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00001606 N0.getOperand(1) == N1.getOperand(1)) {
1607 SDOperand ORNode = DAG.getNode(N->getOpcode(),
1608 N0.getOperand(0).getValueType(),
1609 N0.getOperand(0), N1.getOperand(0));
1610 AddToWorkList(ORNode.Val);
1611 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1612 }
1613
1614 return SDOperand();
1615}
1616
Nate Begeman83e75ec2005-09-06 04:43:02 +00001617SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001618 SDOperand N0 = N->getOperand(0);
1619 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001620 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001621 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1622 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001623 MVT::ValueType VT = N1.getValueType();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001624 unsigned BitWidth = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001625
Dan Gohman7f321562007-06-25 16:23:39 +00001626 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001627 if (MVT::isVector(VT)) {
1628 SDOperand FoldedVOp = SimplifyVBinOp(N);
1629 if (FoldedVOp.Val) return FoldedVOp;
1630 }
Dan Gohman7f321562007-06-25 16:23:39 +00001631
Dan Gohman613e0d82007-07-03 14:03:57 +00001632 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001633 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001634 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001635 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001636 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001637 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001638 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001639 if (N0C && !N1C)
1640 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001641 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001642 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001643 return N0;
1644 // if (and x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001645 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
1646 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001647 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001648 // reassociate and
1649 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1650 if (RAND.Val != 0)
1651 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001652 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001653 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001654 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001655 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001656 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001657 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1658 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001659 SDOperand N0Op0 = N0.getOperand(0);
1660 APInt Mask = ~N1C->getAPIntValue();
1661 Mask.trunc(N0Op0.getValueSizeInBits());
1662 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001663 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001664 N0Op0);
Chris Lattner1ec05d12006-03-01 21:47:21 +00001665
1666 // Replace uses of the AND with uses of the Zero extend node.
1667 CombineTo(N, Zext);
1668
Chris Lattner3603cd62006-02-02 07:17:31 +00001669 // We actually want to replace all uses of the any_extend with the
1670 // zero_extend, to avoid duplicating things. This will later cause this
1671 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001672 CombineTo(N0.Val, Zext);
Chris Lattnerfedced72006-04-20 23:55:59 +00001673 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00001674 }
1675 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001676 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1677 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1678 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1679 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1680
1681 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1682 MVT::isInteger(LL.getValueType())) {
1683 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00001684 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001685 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001686 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001687 return DAG.getSetCC(VT, ORNode, LR, Op1);
1688 }
1689 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1690 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1691 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001692 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001693 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1694 }
1695 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1696 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1697 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001698 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001699 return DAG.getSetCC(VT, ORNode, LR, Op1);
1700 }
1701 }
1702 // canonicalize equivalent to ll == rl
1703 if (LL == RR && LR == RL) {
1704 Op1 = ISD::getSetCCSwappedOperands(Op1);
1705 std::swap(RL, RR);
1706 }
1707 if (LL == RL && LR == RR) {
1708 bool isInteger = MVT::isInteger(LL.getValueType());
1709 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1710 if (Result != ISD::SETCC_INVALID)
1711 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1712 }
1713 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001714
1715 // Simplify: and (op x...), (op y...) -> (op (and x, y))
1716 if (N0.getOpcode() == N1.getOpcode()) {
1717 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1718 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001719 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001720
Nate Begemande996292006-02-03 22:24:05 +00001721 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1722 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001723 if (!MVT::isVector(VT) &&
1724 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00001725 return SDOperand(N, 0);
Nate Begemanded49632005-10-13 03:11:28 +00001726 // fold (zext_inreg (extload x)) -> (zextload x)
Evan Cheng83060c52007-03-07 08:07:03 +00001727 if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
Evan Cheng466685d2006-10-09 20:57:25 +00001728 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001729 MVT::ValueType EVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001730 // If we zero all the possible extended bits, then we can turn this into
1731 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001732 unsigned BitWidth = N1.getValueSizeInBits();
1733 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
1734 BitWidth - MVT::getSizeInBits(EVT))) &&
Evan Chengc5484282006-10-04 00:56:09 +00001735 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001736 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1737 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001738 LN0->getSrcValueOffset(), EVT,
1739 LN0->isVolatile(),
1740 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001741 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001742 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001743 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001744 }
1745 }
1746 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00001747 if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1748 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001749 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001750 MVT::ValueType EVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001751 // If we zero all the possible extended bits, then we can turn this into
1752 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001753 unsigned BitWidth = N1.getValueSizeInBits();
1754 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
1755 BitWidth - MVT::getSizeInBits(EVT))) &&
Evan Chengc5484282006-10-04 00:56:09 +00001756 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00001757 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1758 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00001759 LN0->getSrcValueOffset(), EVT,
1760 LN0->isVolatile(),
1761 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00001762 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001763 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00001764 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00001765 }
1766 }
Chris Lattner15045b62006-02-28 06:35:35 +00001767
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001768 // fold (and (load x), 255) -> (zextload x, i8)
1769 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Cheng466685d2006-10-09 20:57:25 +00001770 if (N1C && N0.getOpcode() == ISD::LOAD) {
1771 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1772 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerddf89562008-01-17 19:59:44 +00001773 LN0->isUnindexed() && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001774 MVT::ValueType EVT, LoadedVT;
Dan Gohman002e5d02008-03-13 22:13:53 +00001775 if (N1C->getAPIntValue() == 255)
Evan Cheng466685d2006-10-09 20:57:25 +00001776 EVT = MVT::i8;
Dan Gohman002e5d02008-03-13 22:13:53 +00001777 else if (N1C->getAPIntValue() == 65535)
Evan Cheng466685d2006-10-09 20:57:25 +00001778 EVT = MVT::i16;
Dan Gohman002e5d02008-03-13 22:13:53 +00001779 else if (N1C->getAPIntValue() == ~0U)
Evan Cheng466685d2006-10-09 20:57:25 +00001780 EVT = MVT::i32;
1781 else
1782 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001783
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001784 LoadedVT = LN0->getMemoryVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001785 if (EVT != MVT::Other && LoadedVT > EVT &&
1786 (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1787 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1788 // For big endian targets, we need to add an offset to the pointer to
1789 // load the correct bytes. For little endian systems, we merely need to
1790 // read fewer bytes from the same pointer.
Duncan Sandsc6fa1702007-11-09 08:57:19 +00001791 unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1792 unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1793 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Duncan Sandsdc846502007-10-28 12:59:45 +00001794 unsigned Alignment = LN0->getAlignment();
Evan Cheng466685d2006-10-09 20:57:25 +00001795 SDOperand NewPtr = LN0->getBasePtr();
Duncan Sands0753fc12008-02-11 10:37:04 +00001796 if (TLI.isBigEndian()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001797 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1798 DAG.getConstant(PtrOff, PtrType));
Duncan Sandsdc846502007-10-28 12:59:45 +00001799 Alignment = MinAlign(Alignment, PtrOff);
1800 }
Evan Cheng466685d2006-10-09 20:57:25 +00001801 AddToWorkList(NewPtr.Val);
1802 SDOperand Load =
1803 DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001804 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00001805 LN0->isVolatile(), Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00001806 AddToWorkList(N);
1807 CombineTo(N0.Val, Load, Load.getValue(1));
1808 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
1809 }
Chris Lattner15045b62006-02-28 06:35:35 +00001810 }
1811 }
1812
Nate Begeman83e75ec2005-09-06 04:43:02 +00001813 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001814}
1815
Nate Begeman83e75ec2005-09-06 04:43:02 +00001816SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001817 SDOperand N0 = N->getOperand(0);
1818 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001819 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001820 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1821 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001822 MVT::ValueType VT = N1.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001823
Dan Gohman7f321562007-06-25 16:23:39 +00001824 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00001825 if (MVT::isVector(VT)) {
1826 SDOperand FoldedVOp = SimplifyVBinOp(N);
1827 if (FoldedVOp.Val) return FoldedVOp;
1828 }
Dan Gohman7f321562007-06-25 16:23:39 +00001829
Dan Gohman613e0d82007-07-03 14:03:57 +00001830 // fold (or x, undef) -> -1
Dan Gohmand595b5f2007-07-10 14:20:37 +00001831 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Chris Lattnere094f542007-07-09 16:16:34 +00001832 return DAG.getConstant(~0ULL, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001833 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001834 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001835 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001836 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001837 if (N0C && !N1C)
1838 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001839 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001840 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001841 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001842 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001843 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001844 return N1;
1845 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001846 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001847 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001848 // reassociate or
1849 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1850 if (ROR.Val != 0)
1851 return ROR;
1852 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1853 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001854 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001855 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1856 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1857 N1),
Dan Gohman002e5d02008-03-13 22:13:53 +00001858 DAG.getConstant(N1C->getAPIntValue() |
1859 C1->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001860 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001861 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1862 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1863 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1864 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1865
1866 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1867 MVT::isInteger(LL.getValueType())) {
1868 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1869 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00001870 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001871 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1872 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001873 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001874 return DAG.getSetCC(VT, ORNode, LR, Op1);
1875 }
1876 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1877 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1878 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1879 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1880 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001881 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001882 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1883 }
1884 }
1885 // canonicalize equivalent to ll == rl
1886 if (LL == RR && LR == RL) {
1887 Op1 = ISD::getSetCCSwappedOperands(Op1);
1888 std::swap(RL, RR);
1889 }
1890 if (LL == RL && LR == RR) {
1891 bool isInteger = MVT::isInteger(LL.getValueType());
1892 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1893 if (Result != ISD::SETCC_INVALID)
1894 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1895 }
1896 }
Chris Lattner35e5c142006-05-05 05:51:50 +00001897
1898 // Simplify: or (op x...), (op y...) -> (op (or x, y))
1899 if (N0.getOpcode() == N1.getOpcode()) {
1900 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1901 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001902 }
Chris Lattner516b9622006-09-14 20:50:57 +00001903
Chris Lattner1ec72732006-09-14 21:11:37 +00001904 // (X & C1) | (Y & C2) -> (X|Y) & C3 if possible.
1905 if (N0.getOpcode() == ISD::AND &&
1906 N1.getOpcode() == ISD::AND &&
1907 N0.getOperand(1).getOpcode() == ISD::Constant &&
1908 N1.getOperand(1).getOpcode() == ISD::Constant &&
1909 // Don't increase # computations.
1910 (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1911 // We can only do this xform if we know that bits from X that are set in C2
1912 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001913 const APInt &LHSMask =
1914 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
1915 const APInt &RHSMask =
1916 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Chris Lattner1ec72732006-09-14 21:11:37 +00001917
Dan Gohmanea859be2007-06-22 14:59:07 +00001918 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1919 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Chris Lattner1ec72732006-09-14 21:11:37 +00001920 SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1921 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1922 }
1923 }
1924
1925
Chris Lattner516b9622006-09-14 20:50:57 +00001926 // See if this is some rotate idiom.
1927 if (SDNode *Rot = MatchRotate(N0, N1))
1928 return SDOperand(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00001929
Nate Begeman83e75ec2005-09-06 04:43:02 +00001930 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001931}
1932
Chris Lattner516b9622006-09-14 20:50:57 +00001933
1934/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1935static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1936 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00001937 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00001938 Mask = Op.getOperand(1);
1939 Op = Op.getOperand(0);
1940 } else {
1941 return false;
1942 }
1943 }
1944
1945 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1946 Shift = Op;
1947 return true;
1948 }
1949 return false;
1950}
1951
1952
1953// MatchRotate - Handle an 'or' of two operands. If this is one of the many
1954// idioms for rotate, and if the target supports rotation instructions, generate
1955// a rot[lr].
1956SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1957 // Must be a legal type. Expanded an promoted things won't work with rotates.
1958 MVT::ValueType VT = LHS.getValueType();
1959 if (!TLI.isTypeLegal(VT)) return 0;
1960
1961 // The target must have at least one rotate flavor.
1962 bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1963 bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1964 if (!HasROTL && !HasROTR) return 0;
1965
1966 // Match "(X shl/srl V1) & V2" where V2 may not be present.
1967 SDOperand LHSShift; // The shift.
1968 SDOperand LHSMask; // AND value if any.
1969 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1970 return 0; // Not part of a rotate.
1971
1972 SDOperand RHSShift; // The shift.
1973 SDOperand RHSMask; // AND value if any.
1974 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1975 return 0; // Not part of a rotate.
1976
1977 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1978 return 0; // Not shifting the same value.
1979
1980 if (LHSShift.getOpcode() == RHSShift.getOpcode())
1981 return 0; // Shifts must disagree.
1982
1983 // Canonicalize shl to left side in a shl/srl pair.
1984 if (RHSShift.getOpcode() == ISD::SHL) {
1985 std::swap(LHS, RHS);
1986 std::swap(LHSShift, RHSShift);
1987 std::swap(LHSMask , RHSMask );
1988 }
1989
1990 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Scott Michelc9dc1142007-04-02 21:36:32 +00001991 SDOperand LHSShiftArg = LHSShift.getOperand(0);
1992 SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1993 SDOperand RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00001994
1995 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1996 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00001997 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1998 RHSShiftAmt.getOpcode() == ISD::Constant) {
1999 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
2000 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
Chris Lattner516b9622006-09-14 20:50:57 +00002001 if ((LShVal + RShVal) != OpSizeInBits)
2002 return 0;
2003
2004 SDOperand Rot;
2005 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002006 Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00002007 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002008 Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00002009
2010 // If there is an AND of either shifted operand, apply it to the result.
2011 if (LHSMask.Val || RHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002012 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Chris Lattner516b9622006-09-14 20:50:57 +00002013
2014 if (LHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002015 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
2016 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00002017 }
2018 if (RHSMask.Val) {
Dan Gohman220a8232008-03-03 23:51:38 +00002019 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
2020 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00002021 }
2022
2023 Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
2024 }
2025
2026 return Rot.Val;
2027 }
2028
2029 // If there is a mask here, and we have a variable shift, we can't be sure
2030 // that we're masking out the right stuff.
2031 if (LHSMask.Val || RHSMask.Val)
2032 return 0;
2033
2034 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
2035 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00002036 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
2037 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00002038 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00002039 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002040 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00002041 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002042 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00002043 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002044 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002045 }
Chris Lattner516b9622006-09-14 20:50:57 +00002046 }
2047 }
2048
2049 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
2050 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00002051 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
2052 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Chris Lattner516b9622006-09-14 20:50:57 +00002053 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00002054 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002055 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00002056 if (HasROTL)
Scott Michelc9dc1142007-04-02 21:36:32 +00002057 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
Chris Lattner516b9622006-09-14 20:50:57 +00002058 else
Scott Michelc9dc1142007-04-02 21:36:32 +00002059 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002060 }
Scott Michelc9dc1142007-04-02 21:36:32 +00002061 }
2062 }
2063
2064 // Look for sign/zext/any-extended cases:
2065 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2066 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2067 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
2068 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
2069 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
2070 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
2071 SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
2072 SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
2073 if (RExtOp0.getOpcode() == ISD::SUB &&
2074 RExtOp0.getOperand(1) == LExtOp0) {
2075 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2076 // (rotr x, y)
2077 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
2078 // (rotl x, (sub 32, y))
2079 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002080 if (SUBC->getAPIntValue() == OpSizeInBits) {
Scott Michelc9dc1142007-04-02 21:36:32 +00002081 if (HasROTL)
2082 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2083 else
2084 return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2085 }
2086 }
2087 } else if (LExtOp0.getOpcode() == ISD::SUB &&
2088 RExtOp0 == LExtOp0.getOperand(1)) {
2089 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2090 // (rotl x, y)
2091 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2092 // (rotr x, (sub 32, y))
2093 if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002094 if (SUBC->getAPIntValue() == OpSizeInBits) {
Scott Michelc9dc1142007-04-02 21:36:32 +00002095 if (HasROTL)
2096 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2097 else
2098 return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2099 }
2100 }
Chris Lattner516b9622006-09-14 20:50:57 +00002101 }
2102 }
2103
2104 return 0;
2105}
2106
2107
Nate Begeman83e75ec2005-09-06 04:43:02 +00002108SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002109 SDOperand N0 = N->getOperand(0);
2110 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002111 SDOperand LHS, RHS, CC;
2112 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2113 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002114 MVT::ValueType VT = N0.getValueType();
2115
Dan Gohman7f321562007-06-25 16:23:39 +00002116 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00002117 if (MVT::isVector(VT)) {
2118 SDOperand FoldedVOp = SimplifyVBinOp(N);
2119 if (FoldedVOp.Val) return FoldedVOp;
2120 }
Dan Gohman7f321562007-06-25 16:23:39 +00002121
Evan Cheng26471c42008-03-25 20:08:07 +00002122 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
2123 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
2124 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00002125 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00002126 if (N0.getOpcode() == ISD::UNDEF)
2127 return N0;
2128 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002129 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002130 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002131 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002132 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00002133 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002134 if (N0C && !N1C)
2135 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002136 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002137 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002138 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00002139 // reassociate xor
2140 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2141 if (RXOR.Val != 0)
2142 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002143 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00002144 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Nate Begeman646d7e22005-09-02 21:18:40 +00002145 bool isInt = MVT::isInteger(LHS.getValueType());
2146 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2147 isInt);
2148 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002149 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002150 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002151 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00002152 assert(0 && "Unhandled SetCC Equivalent!");
2153 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002154 }
Chris Lattner61c5ff42007-09-10 21:39:07 +00002155 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002156 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Chris Lattner61c5ff42007-09-10 21:39:07 +00002157 N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2158 SDOperand V = N0.getOperand(0);
2159 V = DAG.getNode(ISD::XOR, V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00002160 DAG.getConstant(1, V.getValueType()));
Chris Lattner61c5ff42007-09-10 21:39:07 +00002161 AddToWorkList(V.Val);
2162 return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2163 }
2164
Nate Begeman99801192005-09-07 23:25:52 +00002165 // fold !(x or y) -> (!x and !y) iff x or y are setcc
Dan Gohman002e5d02008-03-13 22:13:53 +00002166 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00002167 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002168 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002169 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2170 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002171 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2172 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002173 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002174 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002175 }
2176 }
Nate Begeman99801192005-09-07 23:25:52 +00002177 // fold !(x or y) -> (!x and !y) iff x or y are constants
2178 if (N1C && N1C->isAllOnesValue() &&
2179 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002180 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00002181 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2182 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002183 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
2184 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00002185 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00002186 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002187 }
2188 }
Nate Begeman223df222005-09-08 20:18:10 +00002189 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2190 if (N1C && N0.getOpcode() == ISD::XOR) {
2191 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2192 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2193 if (N00C)
2194 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
Dan Gohman002e5d02008-03-13 22:13:53 +00002195 DAG.getConstant(N1C->getAPIntValue()^
2196 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00002197 if (N01C)
2198 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
Dan Gohman002e5d02008-03-13 22:13:53 +00002199 DAG.getConstant(N1C->getAPIntValue()^
2200 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00002201 }
2202 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00002203 if (N0 == N1) {
2204 if (!MVT::isVector(VT)) {
2205 return DAG.getConstant(0, VT);
2206 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2207 // Produce a vector of zeros.
Dan Gohman51eaa862007-06-14 22:58:02 +00002208 SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
Chris Lattner4fbdd592006-03-28 19:11:05 +00002209 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002210 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4fbdd592006-03-28 19:11:05 +00002211 }
2212 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002213
2214 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
2215 if (N0.getOpcode() == N1.getOpcode()) {
2216 SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2217 if (Tmp.Val) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002218 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002219
Chris Lattner3e104b12006-04-08 04:15:24 +00002220 // Simplify the expression using non-local knowledge.
2221 if (!MVT::isVector(VT) &&
2222 SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002223 return SDOperand(N, 0);
Chris Lattner3e104b12006-04-08 04:15:24 +00002224
Nate Begeman83e75ec2005-09-06 04:43:02 +00002225 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002226}
2227
Chris Lattnere70da202007-12-06 07:33:36 +00002228/// visitShiftByConstant - Handle transforms common to the three shifts, when
2229/// the shift amount is a constant.
2230SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2231 SDNode *LHS = N->getOperand(0).Val;
2232 if (!LHS->hasOneUse()) return SDOperand();
2233
2234 // We want to pull some binops through shifts, so that we have (and (shift))
2235 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
2236 // thing happens with address calculations, so it's important to canonicalize
2237 // it.
2238 bool HighBitSet = false; // Can we transform this if the high bit is set?
2239
2240 switch (LHS->getOpcode()) {
2241 default: return SDOperand();
2242 case ISD::OR:
2243 case ISD::XOR:
2244 HighBitSet = false; // We can only transform sra if the high bit is clear.
2245 break;
2246 case ISD::AND:
2247 HighBitSet = true; // We can only transform sra if the high bit is set.
2248 break;
2249 case ISD::ADD:
2250 if (N->getOpcode() != ISD::SHL)
2251 return SDOperand(); // only shl(add) not sr[al](add).
2252 HighBitSet = false; // We can only transform sra if the high bit is clear.
2253 break;
2254 }
2255
2256 // We require the RHS of the binop to be a constant as well.
2257 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2258 if (!BinOpCst) return SDOperand();
2259
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00002260
2261 // FIXME: disable this for unless the input to the binop is a shift by a
2262 // constant. If it is not a shift, it pessimizes some common cases like:
2263 //
2264 //void foo(int *X, int i) { X[i & 1235] = 1; }
2265 //int bar(int *X, int i) { return X[i & 255]; }
2266 SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2267 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
2268 BinOpLHSVal->getOpcode() != ISD::SRA &&
2269 BinOpLHSVal->getOpcode() != ISD::SRL) ||
2270 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2271 return SDOperand();
2272
Chris Lattnere70da202007-12-06 07:33:36 +00002273 MVT::ValueType VT = N->getValueType(0);
2274
2275 // If this is a signed shift right, and the high bit is modified
2276 // by the logical operation, do not perform the transformation.
2277 // The highBitSet boolean indicates the value of the high bit of
2278 // the constant which would cause it to be modified for this
2279 // operation.
2280 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00002281 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
2282 if (BinOpRHSSignSet != HighBitSet)
Chris Lattnere70da202007-12-06 07:33:36 +00002283 return SDOperand();
2284 }
2285
2286 // Fold the constants, shifting the binop RHS by the shift amount.
2287 SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2288 LHS->getOperand(1), N->getOperand(1));
2289
2290 // Create the new shift.
2291 SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2292 N->getOperand(1));
2293
2294 // Create the new binop.
2295 return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2296}
2297
2298
Nate Begeman83e75ec2005-09-06 04:43:02 +00002299SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002300 SDOperand N0 = N->getOperand(0);
2301 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002302 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2303 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002304 MVT::ValueType VT = N0.getValueType();
2305 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2306
2307 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002308 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002309 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002310 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002311 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002312 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002313 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002314 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002315 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002316 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002317 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002318 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002319 // if (shl x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002320 if (DAG.MaskedValueIsZero(SDOperand(N, 0),
2321 APInt::getAllOnesValue(MVT::getSizeInBits(VT))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002322 return DAG.getConstant(0, VT);
Chris Lattner61a4c072007-04-18 03:06:49 +00002323 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
Chris Lattneref027f92006-04-21 15:32:26 +00002324 return SDOperand(N, 0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002325 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002326 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002327 N0.getOperand(1).getOpcode() == ISD::Constant) {
2328 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002329 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002330 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002331 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002332 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002333 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002334 }
2335 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2336 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002337 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002338 N0.getOperand(1).getOpcode() == ISD::Constant) {
2339 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002340 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002341 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2342 DAG.getConstant(~0ULL << c1, VT));
2343 if (c2 > c1)
2344 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00002345 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002346 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00002347 return DAG.getNode(ISD::SRL, VT, Mask,
2348 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002349 }
2350 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002351 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00002352 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002353 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnere70da202007-12-06 07:33:36 +00002354
2355 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002356}
2357
Nate Begeman83e75ec2005-09-06 04:43:02 +00002358SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002359 SDOperand N0 = N->getOperand(0);
2360 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002361 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2362 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002363 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002364
2365 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002366 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002367 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002368 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002369 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002370 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002371 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002372 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002373 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002374 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00002375 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002376 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002377 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002378 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002379 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00002380 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2381 // sext_inreg.
2382 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2383 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2384 MVT::ValueType EVT;
2385 switch (LowBits) {
2386 default: EVT = MVT::Other; break;
2387 case 1: EVT = MVT::i1; break;
2388 case 8: EVT = MVT::i8; break;
2389 case 16: EVT = MVT::i16; break;
2390 case 32: EVT = MVT::i32; break;
2391 }
2392 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2393 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2394 DAG.getValueType(EVT));
2395 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002396
2397 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2398 if (N1C && N0.getOpcode() == ISD::SRA) {
2399 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2400 unsigned Sum = N1C->getValue() + C1->getValue();
2401 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2402 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2403 DAG.getConstant(Sum, N1C->getValueType(0)));
2404 }
2405 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00002406
2407 // fold sra (shl X, m), result_size - n
2408 // -> (sign_extend (trunc (shl X, result_size - n - m))) for
Christopher Lambb9b04282008-03-20 04:31:39 +00002409 // result_size - n != m.
2410 // If truncate is free for the target sext(shl) is likely to result in better
2411 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00002412 if (N0.getOpcode() == ISD::SHL) {
2413 // Get the two constanst of the shifts, CN0 = m, CN = n.
2414 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2415 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00002416 // Determine what the truncate's result bitsize and type would be.
Christopher Lamb15cbde32008-03-19 08:30:06 +00002417 unsigned VTValSize = MVT::getSizeInBits(VT);
2418 MVT::ValueType TruncVT = MVT::getIntegerType(VTValSize - N1C->getValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00002419 // Determine the residual right-shift amount.
Christopher Lamb15cbde32008-03-19 08:30:06 +00002420 unsigned ShiftAmt = N1C->getValue() - N01C->getValue();
Christopher Lambb9b04282008-03-20 04:31:39 +00002421
2422 // If the shift is not a no-op (in which case this should be just a sign
2423 // extend already), the truncated to type is legal, sign_extend is legal
2424 // on that type, and the the truncate to that type is both legal and free,
2425 // perform the transform.
2426 if (ShiftAmt &&
2427 TLI.isTypeLegal(TruncVT) &&
2428 TLI.isOperationLegal(ISD::SIGN_EXTEND, TruncVT) &&
2429 TLI.isOperationLegal(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00002430 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00002431
2432 SDOperand Amt = DAG.getConstant(ShiftAmt, TLI.getShiftAmountTy());
2433 SDOperand Shift = DAG.getNode(ISD::SRL, VT, N0.getOperand(0), Amt);
2434 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, TruncVT, Shift);
2435 return DAG.getNode(ISD::SIGN_EXTEND, N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00002436 }
2437 }
2438 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00002439
Chris Lattnera8504462006-05-08 20:51:54 +00002440 // Simplify, based on bits shifted out of the LHS.
2441 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2442 return SDOperand(N, 0);
2443
2444
Nate Begeman1d4d4142005-09-01 00:19:25 +00002445 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002446 if (DAG.SignBitIsZero(N0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002447 return DAG.getNode(ISD::SRL, VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00002448
2449 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002450}
2451
Nate Begeman83e75ec2005-09-06 04:43:02 +00002452SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002453 SDOperand N0 = N->getOperand(0);
2454 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002455 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2456 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002457 MVT::ValueType VT = N0.getValueType();
2458 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2459
2460 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002461 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00002462 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002463 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002464 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002465 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002466 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00002467 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002468 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002469 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002470 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002471 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002472 // if (srl x, c) is known to be zero, return 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002473 if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0),
2474 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002475 return DAG.getConstant(0, VT);
Chris Lattnerec06e9a2007-04-18 03:05:22 +00002476
Nate Begeman1d4d4142005-09-01 00:19:25 +00002477 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00002478 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00002479 N0.getOperand(1).getOpcode() == ISD::Constant) {
2480 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00002481 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002482 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002483 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002484 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00002485 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00002486 }
Chris Lattner350bec02006-04-02 06:11:11 +00002487
Chris Lattner06afe072006-05-05 22:53:17 +00002488 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2489 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2490 // Shifting in all undef bits?
2491 MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2492 if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2493 return DAG.getNode(ISD::UNDEF, VT);
2494
2495 SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2496 AddToWorkList(SmallShift.Val);
2497 return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2498 }
2499
Chris Lattner3657ffe2006-10-12 20:23:19 +00002500 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
2501 // bit, which is unmodified by sra.
2502 if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2503 if (N0.getOpcode() == ISD::SRA)
2504 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2505 }
2506
Chris Lattner350bec02006-04-02 06:11:11 +00002507 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
2508 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Dan Gohman002e5d02008-03-13 22:13:53 +00002509 N1C->getAPIntValue() == Log2_32(MVT::getSizeInBits(VT))) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00002510 APInt KnownZero, KnownOne;
2511 APInt Mask = APInt::getAllOnesValue(MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00002512 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Chris Lattner350bec02006-04-02 06:11:11 +00002513
2514 // If any of the input bits are KnownOne, then the input couldn't be all
2515 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002516 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Chris Lattner350bec02006-04-02 06:11:11 +00002517
2518 // If all of the bits input the to ctlz node are known to be zero, then
2519 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002520 APInt UnknownBits = ~KnownZero & Mask;
Chris Lattner350bec02006-04-02 06:11:11 +00002521 if (UnknownBits == 0) return DAG.getConstant(1, VT);
2522
2523 // Otherwise, check to see if there is exactly one bit input to the ctlz.
2524 if ((UnknownBits & (UnknownBits-1)) == 0) {
2525 // Okay, we know that only that the single bit specified by UnknownBits
2526 // could be set on input to the CTLZ node. If this bit is set, the SRL
2527 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
2528 // to an SRL,XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00002529 unsigned ShAmt = UnknownBits.countTrailingZeros();
Chris Lattner350bec02006-04-02 06:11:11 +00002530 SDOperand Op = N0.getOperand(0);
2531 if (ShAmt) {
2532 Op = DAG.getNode(ISD::SRL, VT, Op,
2533 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2534 AddToWorkList(Op.Val);
2535 }
2536 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2537 }
2538 }
Chris Lattner61a4c072007-04-18 03:06:49 +00002539
2540 // fold operands of srl based on knowledge that the low bits are not
2541 // demanded.
2542 if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2543 return SDOperand(N, 0);
2544
Chris Lattnere70da202007-12-06 07:33:36 +00002545 return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002546}
2547
Nate Begeman83e75ec2005-09-06 04:43:02 +00002548SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002549 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002550 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002551
2552 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002553 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002554 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002555 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002556}
2557
Nate Begeman83e75ec2005-09-06 04:43:02 +00002558SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002559 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002560 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002561
2562 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002563 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002564 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002565 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002566}
2567
Nate Begeman83e75ec2005-09-06 04:43:02 +00002568SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002569 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00002570 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002571
2572 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00002573 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002574 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002575 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002576}
2577
Nate Begeman452d7be2005-09-16 00:54:12 +00002578SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2579 SDOperand N0 = N->getOperand(0);
2580 SDOperand N1 = N->getOperand(1);
2581 SDOperand N2 = N->getOperand(2);
2582 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2583 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2584 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2585 MVT::ValueType VT = N->getValueType(0);
Evan Cheng571c4782007-08-18 05:57:05 +00002586 MVT::ValueType VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00002587
Nate Begeman452d7be2005-09-16 00:54:12 +00002588 // fold select C, X, X -> X
2589 if (N1 == N2)
2590 return N1;
2591 // fold select true, X, Y -> X
2592 if (N0C && !N0C->isNullValue())
2593 return N1;
2594 // fold select false, X, Y -> Y
2595 if (N0C && N0C->isNullValue())
2596 return N2;
2597 // fold select C, 1, X -> C | X
Dan Gohman002e5d02008-03-13 22:13:53 +00002598 if (MVT::i1 == VT && N1C && N1C->getAPIntValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00002599 return DAG.getNode(ISD::OR, VT, N0, N2);
Evan Cheng571c4782007-08-18 05:57:05 +00002600 // fold select C, 0, 1 -> ~C
2601 if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00002602 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Evan Cheng571c4782007-08-18 05:57:05 +00002603 SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2604 if (VT == VT0)
2605 return XORNode;
2606 AddToWorkList(XORNode.Val);
2607 if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2608 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2609 return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2610 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002611 // fold select C, 0, X -> ~C & X
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002612 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2613 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002614 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002615 return DAG.getNode(ISD::AND, VT, XORNode, N2);
2616 }
2617 // fold select C, X, 1 -> ~C | X
Dan Gohman002e5d02008-03-13 22:13:53 +00002618 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Dale Johannesene0e6fac2007-12-06 17:53:31 +00002619 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00002620 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00002621 return DAG.getNode(ISD::OR, VT, XORNode, N1);
2622 }
2623 // fold select C, X, 0 -> C & X
2624 // FIXME: this should check for C type == X type, not i1?
2625 if (MVT::i1 == VT && N2C && N2C->isNullValue())
2626 return DAG.getNode(ISD::AND, VT, N0, N1);
2627 // fold X ? X : Y --> X ? 1 : Y --> X | Y
2628 if (MVT::i1 == VT && N0 == N1)
2629 return DAG.getNode(ISD::OR, VT, N0, N2);
2630 // fold X ? Y : X --> X ? Y : 0 --> X & Y
2631 if (MVT::i1 == VT && N0 == N2)
2632 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner729c6d12006-05-27 00:43:02 +00002633
Chris Lattner40c62d52005-10-18 06:04:22 +00002634 // If we can fold this based on the true/false value, do so.
2635 if (SimplifySelectOps(N, N1, N2))
Chris Lattner729c6d12006-05-27 00:43:02 +00002636 return SDOperand(N, 0); // Don't revisit N.
2637
Nate Begeman44728a72005-09-19 22:34:01 +00002638 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002639 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002640 // FIXME:
2641 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2642 // having to say they don't support SELECT_CC on every type the DAG knows
2643 // about, since there is no way to mark an opcode illegal at all value types
2644 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2645 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2646 N1, N2, N0.getOperand(2));
2647 else
2648 return SimplifySelect(N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002649 }
Nate Begeman452d7be2005-09-16 00:54:12 +00002650 return SDOperand();
2651}
2652
2653SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00002654 SDOperand N0 = N->getOperand(0);
2655 SDOperand N1 = N->getOperand(1);
2656 SDOperand N2 = N->getOperand(2);
2657 SDOperand N3 = N->getOperand(3);
2658 SDOperand N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00002659 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2660
Nate Begeman44728a72005-09-19 22:34:01 +00002661 // fold select_cc lhs, rhs, x, x, cc -> x
2662 if (N2 == N3)
2663 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00002664
Chris Lattner5f42a242006-09-20 06:19:26 +00002665 // Determine if the condition we're dealing with is constant
Scott Michel5b8f82e2008-03-10 15:42:14 +00002666 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00002667 if (SCC.Val) AddToWorkList(SCC.Val);
Chris Lattner5f42a242006-09-20 06:19:26 +00002668
2669 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002670 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00002671 return N2; // cond always true -> true val
2672 else
2673 return N3; // cond always false -> false val
2674 }
2675
2676 // Fold to a simpler select_cc
2677 if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2678 return DAG.getNode(ISD::SELECT_CC, N2.getValueType(),
2679 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
2680 SCC.getOperand(2));
2681
Chris Lattner40c62d52005-10-18 06:04:22 +00002682 // If we can fold this based on the true/false value, do so.
2683 if (SimplifySelectOps(N, N2, N3))
Chris Lattner729c6d12006-05-27 00:43:02 +00002684 return SDOperand(N, 0); // Don't revisit N.
Chris Lattner40c62d52005-10-18 06:04:22 +00002685
Nate Begeman44728a72005-09-19 22:34:01 +00002686 // fold select_cc into other things, such as min/max/abs
2687 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00002688}
2689
2690SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2691 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2692 cast<CondCodeSDNode>(N->getOperand(2))->get());
2693}
2694
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002695// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2696// "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2697// transformation. Returns true if extension are possible and the above
2698// mentioned transformation is profitable.
2699static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2700 unsigned ExtOpc,
2701 SmallVector<SDNode*, 4> &ExtendNodes,
2702 TargetLowering &TLI) {
2703 bool HasCopyToRegUses = false;
2704 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2705 for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2706 UI != UE; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00002707 SDNode *User = UI->getUser();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002708 if (User == N)
2709 continue;
2710 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2711 if (User->getOpcode() == ISD::SETCC) {
2712 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2713 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2714 // Sign bits will be lost after a zext.
2715 return false;
2716 bool Add = false;
2717 for (unsigned i = 0; i != 2; ++i) {
2718 SDOperand UseOp = User->getOperand(i);
2719 if (UseOp == N0)
2720 continue;
2721 if (!isa<ConstantSDNode>(UseOp))
2722 return false;
2723 Add = true;
2724 }
2725 if (Add)
2726 ExtendNodes.push_back(User);
2727 } else {
2728 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2729 SDOperand UseOp = User->getOperand(i);
2730 if (UseOp == N0) {
2731 // If truncate from extended type to original load type is free
2732 // on this target, then it's ok to extend a CopyToReg.
2733 if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2734 HasCopyToRegUses = true;
2735 else
2736 return false;
2737 }
2738 }
2739 }
2740 }
2741
2742 if (HasCopyToRegUses) {
2743 bool BothLiveOut = false;
2744 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2745 UI != UE; ++UI) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00002746 SDNode *User = UI->getUser();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002747 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2748 SDOperand UseOp = User->getOperand(i);
2749 if (UseOp.Val == N && UseOp.ResNo == 0) {
2750 BothLiveOut = true;
2751 break;
2752 }
2753 }
2754 }
2755 if (BothLiveOut)
2756 // Both unextended and extended values are live out. There had better be
2757 // good a reason for the transformation.
2758 return ExtendNodes.size();
2759 }
2760 return true;
2761}
2762
Nate Begeman83e75ec2005-09-06 04:43:02 +00002763SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002764 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002765 MVT::ValueType VT = N->getValueType(0);
2766
Nate Begeman1d4d4142005-09-01 00:19:25 +00002767 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002768 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002769 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Chris Lattner310b5782006-05-06 23:06:26 +00002770
Nate Begeman1d4d4142005-09-01 00:19:25 +00002771 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002772 // fold (sext (aext x)) -> (sext x)
2773 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002774 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattner310b5782006-05-06 23:06:26 +00002775
Evan Chengc88138f2007-03-22 01:54:19 +00002776 // fold (sext (truncate (load x))) -> (sext (smaller load x))
2777 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Chris Lattner22558872007-02-26 03:13:59 +00002778 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002779 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002780 if (NarrowLoad.Val) {
2781 if (NarrowLoad.Val != N0.Val)
2782 CombineTo(N0.Val, NarrowLoad);
2783 return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2784 }
Evan Chengc88138f2007-03-22 01:54:19 +00002785 }
2786
2787 // See if the value being truncated is already sign extended. If so, just
2788 // eliminate the trunc/sext pair.
2789 if (N0.getOpcode() == ISD::TRUNCATE) {
Chris Lattner6007b842006-09-21 06:00:20 +00002790 SDOperand Op = N0.getOperand(0);
Chris Lattner22558872007-02-26 03:13:59 +00002791 unsigned OpBits = MVT::getSizeInBits(Op.getValueType());
2792 unsigned MidBits = MVT::getSizeInBits(N0.getValueType());
2793 unsigned DestBits = MVT::getSizeInBits(VT);
Dan Gohmanea859be2007-06-22 14:59:07 +00002794 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Chris Lattner22558872007-02-26 03:13:59 +00002795
2796 if (OpBits == DestBits) {
2797 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
2798 // bits, it is already ready.
2799 if (NumSignBits > DestBits-MidBits)
2800 return Op;
2801 } else if (OpBits < DestBits) {
2802 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
2803 // bits, just sext from i32.
2804 if (NumSignBits > OpBits-MidBits)
2805 return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2806 } else {
2807 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
2808 // bits, just truncate to i32.
2809 if (NumSignBits > OpBits-MidBits)
2810 return DAG.getNode(ISD::TRUNCATE, VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00002811 }
Chris Lattner22558872007-02-26 03:13:59 +00002812
2813 // fold (sext (truncate x)) -> (sextinreg x).
2814 if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2815 N0.getValueType())) {
2816 if (Op.getValueType() < VT)
2817 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2818 else if (Op.getValueType() > VT)
2819 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2820 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2821 DAG.getValueType(N0.getValueType()));
2822 }
Chris Lattner6007b842006-09-21 06:00:20 +00002823 }
Chris Lattner310b5782006-05-06 23:06:26 +00002824
Evan Cheng110dec22005-12-14 02:19:23 +00002825 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002826 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002827 (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002828 bool DoXform = true;
2829 SmallVector<SDNode*, 4> SetCCs;
2830 if (!N0.hasOneUse())
2831 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2832 if (DoXform) {
2833 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2834 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2835 LN0->getBasePtr(), LN0->getSrcValue(),
2836 LN0->getSrcValueOffset(),
2837 N0.getValueType(),
2838 LN0->isVolatile(),
2839 LN0->getAlignment());
2840 CombineTo(N, ExtLoad);
2841 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2842 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2843 // Extend SetCC uses if necessary.
2844 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2845 SDNode *SetCC = SetCCs[i];
2846 SmallVector<SDOperand, 4> Ops;
2847 for (unsigned j = 0; j != 2; ++j) {
2848 SDOperand SOp = SetCC->getOperand(j);
2849 if (SOp == Trunc)
2850 Ops.push_back(ExtLoad);
2851 else
2852 Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2853 }
2854 Ops.push_back(SetCC->getOperand(2));
2855 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2856 &Ops[0], Ops.size()));
2857 }
2858 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2859 }
Nate Begeman3df4d522005-10-12 20:40:40 +00002860 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002861
2862 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2863 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002864 if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2865 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002866 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002867 MVT::ValueType EVT = LN0->getMemoryVT();
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002868 if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2869 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2870 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002871 LN0->getSrcValueOffset(), EVT,
2872 LN0->isVolatile(),
2873 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00002874 CombineTo(N, ExtLoad);
2875 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2876 ExtLoad.getValue(1));
2877 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2878 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002879 }
2880
Chris Lattner20a35c32007-04-11 05:32:27 +00002881 // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2882 if (N0.getOpcode() == ISD::SETCC) {
2883 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00002884 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2885 DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2886 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2887 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00002888 }
2889
Dan Gohman8f0ad582008-04-28 16:58:24 +00002890 // fold (sext x) -> (zext x) if the sign bit is known zero.
Dan Gohman187db7b2008-04-28 18:47:17 +00002891 if ((!AfterLegalize || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
2892 DAG.SignBitIsZero(N0))
Dan Gohman8f0ad582008-04-28 16:58:24 +00002893 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2894
Nate Begeman83e75ec2005-09-06 04:43:02 +00002895 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002896}
2897
Nate Begeman83e75ec2005-09-06 04:43:02 +00002898SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002899 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002900 MVT::ValueType VT = N->getValueType(0);
2901
Nate Begeman1d4d4142005-09-01 00:19:25 +00002902 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00002903 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00002904 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002905 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00002906 // fold (zext (aext x)) -> (zext x)
2907 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002908 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00002909
Evan Chengc88138f2007-03-22 01:54:19 +00002910 // fold (zext (truncate (load x))) -> (zext (smaller load x))
2911 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00002912 if (N0.getOpcode() == ISD::TRUNCATE) {
Evan Chengc88138f2007-03-22 01:54:19 +00002913 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00002914 if (NarrowLoad.Val) {
2915 if (NarrowLoad.Val != N0.Val)
2916 CombineTo(N0.Val, NarrowLoad);
2917 return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2918 }
Evan Chengc88138f2007-03-22 01:54:19 +00002919 }
2920
Chris Lattner6007b842006-09-21 06:00:20 +00002921 // fold (zext (truncate x)) -> (and x, mask)
2922 if (N0.getOpcode() == ISD::TRUNCATE &&
2923 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2924 SDOperand Op = N0.getOperand(0);
2925 if (Op.getValueType() < VT) {
2926 Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2927 } else if (Op.getValueType() > VT) {
2928 Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2929 }
2930 return DAG.getZeroExtendInReg(Op, N0.getValueType());
2931 }
2932
Chris Lattner111c2282006-09-21 06:14:31 +00002933 // fold (zext (and (trunc x), cst)) -> (and x, cst).
2934 if (N0.getOpcode() == ISD::AND &&
2935 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2936 N0.getOperand(1).getOpcode() == ISD::Constant) {
2937 SDOperand X = N0.getOperand(0).getOperand(0);
2938 if (X.getValueType() < VT) {
2939 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2940 } else if (X.getValueType() > VT) {
2941 X = DAG.getNode(ISD::TRUNCATE, VT, X);
2942 }
Dan Gohman220a8232008-03-03 23:51:38 +00002943 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
2944 Mask.zext(MVT::getSizeInBits(VT));
Chris Lattner111c2282006-09-21 06:14:31 +00002945 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2946 }
2947
Evan Cheng110dec22005-12-14 02:19:23 +00002948 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002949 if (ISD::isNON_EXTLoad(N0.Val) &&
Evan Chengc5484282006-10-04 00:56:09 +00002950 (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002951 bool DoXform = true;
2952 SmallVector<SDNode*, 4> SetCCs;
2953 if (!N0.hasOneUse())
2954 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2955 if (DoXform) {
2956 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2957 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2958 LN0->getBasePtr(), LN0->getSrcValue(),
2959 LN0->getSrcValueOffset(),
2960 N0.getValueType(),
2961 LN0->isVolatile(),
2962 LN0->getAlignment());
2963 CombineTo(N, ExtLoad);
2964 SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2965 CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2966 // Extend SetCC uses if necessary.
2967 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2968 SDNode *SetCC = SetCCs[i];
2969 SmallVector<SDOperand, 4> Ops;
2970 for (unsigned j = 0; j != 2; ++j) {
2971 SDOperand SOp = SetCC->getOperand(j);
2972 if (SOp == Trunc)
2973 Ops.push_back(ExtLoad);
2974 else
Evan Chengde1631b2007-10-30 20:11:21 +00002975 Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
Evan Cheng3c3ddb32007-10-29 19:58:20 +00002976 }
2977 Ops.push_back(SetCC->getOperand(2));
2978 CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2979 &Ops[0], Ops.size()));
2980 }
2981 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
2982 }
Evan Cheng110dec22005-12-14 02:19:23 +00002983 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002984
2985 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2986 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00002987 if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2988 ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002989 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002990 MVT::ValueType EVT = LN0->getMemoryVT();
Evan Cheng466685d2006-10-09 20:57:25 +00002991 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2992 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00002993 LN0->getSrcValueOffset(), EVT,
2994 LN0->isVolatile(),
2995 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00002996 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00002997 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2998 ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00002999 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerad25d4e2005-12-14 19:05:06 +00003000 }
Chris Lattner20a35c32007-04-11 05:32:27 +00003001
3002 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3003 if (N0.getOpcode() == ISD::SETCC) {
3004 SDOperand SCC =
3005 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3006 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00003007 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
3008 if (SCC.Val) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00003009 }
3010
Nate Begeman83e75ec2005-09-06 04:43:02 +00003011 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003012}
3013
Chris Lattner5ffc0662006-05-05 05:58:59 +00003014SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
3015 SDOperand N0 = N->getOperand(0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00003016 MVT::ValueType VT = N->getValueType(0);
3017
3018 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003019 if (isa<ConstantSDNode>(N0))
Chris Lattner5ffc0662006-05-05 05:58:59 +00003020 return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
3021 // fold (aext (aext x)) -> (aext x)
3022 // fold (aext (zext x)) -> (zext x)
3023 // fold (aext (sext x)) -> (sext x)
3024 if (N0.getOpcode() == ISD::ANY_EXTEND ||
3025 N0.getOpcode() == ISD::ZERO_EXTEND ||
3026 N0.getOpcode() == ISD::SIGN_EXTEND)
3027 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
3028
Evan Chengc88138f2007-03-22 01:54:19 +00003029 // fold (aext (truncate (load x))) -> (aext (smaller load x))
3030 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
3031 if (N0.getOpcode() == ISD::TRUNCATE) {
3032 SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
Evan Cheng0b063de2007-03-23 02:16:52 +00003033 if (NarrowLoad.Val) {
3034 if (NarrowLoad.Val != N0.Val)
3035 CombineTo(N0.Val, NarrowLoad);
3036 return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
3037 }
Evan Chengc88138f2007-03-22 01:54:19 +00003038 }
3039
Chris Lattner84750582006-09-20 06:29:17 +00003040 // fold (aext (truncate x))
3041 if (N0.getOpcode() == ISD::TRUNCATE) {
3042 SDOperand TruncOp = N0.getOperand(0);
3043 if (TruncOp.getValueType() == VT)
3044 return TruncOp; // x iff x size == zext size.
3045 if (TruncOp.getValueType() > VT)
3046 return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
3047 return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
3048 }
Chris Lattner0e4b9222006-09-21 06:40:43 +00003049
3050 // fold (aext (and (trunc x), cst)) -> (and x, cst).
3051 if (N0.getOpcode() == ISD::AND &&
3052 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
3053 N0.getOperand(1).getOpcode() == ISD::Constant) {
3054 SDOperand X = N0.getOperand(0).getOperand(0);
3055 if (X.getValueType() < VT) {
3056 X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
3057 } else if (X.getValueType() > VT) {
3058 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3059 }
Dan Gohman220a8232008-03-03 23:51:38 +00003060 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3061 Mask.zext(MVT::getSizeInBits(VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00003062 return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
3063 }
3064
Chris Lattner5ffc0662006-05-05 05:58:59 +00003065 // fold (aext (load x)) -> (aext (truncate (extload x)))
Evan Cheng466685d2006-10-09 20:57:25 +00003066 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003067 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003068 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3069 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3070 LN0->getBasePtr(), LN0->getSrcValue(),
3071 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003072 N0.getValueType(),
3073 LN0->isVolatile(),
3074 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00003075 CombineTo(N, ExtLoad);
3076 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3077 ExtLoad.getValue(1));
3078 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3079 }
3080
3081 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
3082 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
3083 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00003084 if (N0.getOpcode() == ISD::LOAD &&
3085 !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
Evan Cheng466685d2006-10-09 20:57:25 +00003086 N0.hasOneUse()) {
3087 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003088 MVT::ValueType EVT = LN0->getMemoryVT();
Evan Cheng466685d2006-10-09 20:57:25 +00003089 SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
3090 LN0->getChain(), LN0->getBasePtr(),
3091 LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003092 LN0->getSrcValueOffset(), EVT,
3093 LN0->isVolatile(),
3094 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00003095 CombineTo(N, ExtLoad);
3096 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
3097 ExtLoad.getValue(1));
3098 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3099 }
Chris Lattner20a35c32007-04-11 05:32:27 +00003100
3101 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
3102 if (N0.getOpcode() == ISD::SETCC) {
3103 SDOperand SCC =
Chris Lattner1eba01e2007-04-11 06:50:51 +00003104 SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
3105 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00003106 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Chris Lattner1eba01e2007-04-11 06:50:51 +00003107 if (SCC.Val)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00003108 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00003109 }
3110
Chris Lattner5ffc0662006-05-05 05:58:59 +00003111 return SDOperand();
3112}
3113
Chris Lattner2b4c2792007-10-13 06:35:54 +00003114/// GetDemandedBits - See if the specified operand can be simplified with the
3115/// knowledge that only the bits specified by Mask are used. If so, return the
3116/// simpler operand, otherwise return a null SDOperand.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003117SDOperand DAGCombiner::GetDemandedBits(SDOperand V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00003118 switch (V.getOpcode()) {
3119 default: break;
3120 case ISD::OR:
3121 case ISD::XOR:
3122 // If the LHS or RHS don't contribute bits to the or, drop them.
3123 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
3124 return V.getOperand(1);
3125 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
3126 return V.getOperand(0);
3127 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00003128 case ISD::SRL:
3129 // Only look at single-use SRLs.
3130 if (!V.Val->hasOneUse())
3131 break;
3132 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3133 // See if we can recursively simplify the LHS.
3134 unsigned Amt = RHSC->getValue();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003135 APInt NewMask = Mask << Amt;
3136 SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Chris Lattnere33544c2007-10-13 06:58:48 +00003137 if (SimplifyLHS.Val) {
3138 return DAG.getNode(ISD::SRL, V.getValueType(),
3139 SimplifyLHS, V.getOperand(1));
3140 }
3141 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00003142 }
3143 return SDOperand();
3144}
3145
Evan Chengc88138f2007-03-22 01:54:19 +00003146/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3147/// bits and then truncated to a narrower type and where N is a multiple
3148/// of number of bits of the narrower type, transform it to a narrower load
3149/// from address + N / num of bits of new type. If the result is to be
3150/// extended, also fold the extension to form a extending load.
3151SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3152 unsigned Opc = N->getOpcode();
3153 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3154 SDOperand N0 = N->getOperand(0);
3155 MVT::ValueType VT = N->getValueType(0);
3156 MVT::ValueType EVT = N->getValueType(0);
3157
Evan Chenge177e302007-03-23 22:13:36 +00003158 // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3159 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00003160 if (Opc == ISD::SIGN_EXTEND_INREG) {
3161 ExtType = ISD::SEXTLOAD;
3162 EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Evan Chenge177e302007-03-23 22:13:36 +00003163 if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3164 return SDOperand();
Evan Chengc88138f2007-03-22 01:54:19 +00003165 }
3166
3167 unsigned EVTBits = MVT::getSizeInBits(EVT);
3168 unsigned ShAmt = 0;
Evan Chengb37b80c2007-03-23 20:55:21 +00003169 bool CombineSRL = false;
Evan Chengc88138f2007-03-22 01:54:19 +00003170 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3171 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3172 ShAmt = N01->getValue();
3173 // Is the shift amount a multiple of size of VT?
3174 if ((ShAmt & (EVTBits-1)) == 0) {
3175 N0 = N0.getOperand(0);
3176 if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3177 return SDOperand();
Evan Chengb37b80c2007-03-23 20:55:21 +00003178 CombineSRL = true;
Evan Chengc88138f2007-03-22 01:54:19 +00003179 }
3180 }
3181 }
3182
3183 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3184 // Do not allow folding to i1 here. i1 is implicitly stored in memory in
3185 // zero extended form: by shrinking the load, we lose track of the fact
3186 // that it is already zero extended.
3187 // FIXME: This should be reevaluated.
3188 VT != MVT::i1) {
3189 assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3190 "Cannot truncate to larger type!");
3191 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3192 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Evan Chengdae54ce2007-03-24 00:02:43 +00003193 // For big endian targets, we need to adjust the offset to the pointer to
3194 // load the correct bytes.
Duncan Sands0753fc12008-02-11 10:37:04 +00003195 if (TLI.isBigEndian()) {
Duncan Sandsc6fa1702007-11-09 08:57:19 +00003196 unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3197 unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3198 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3199 }
Evan Chengdae54ce2007-03-24 00:02:43 +00003200 uint64_t PtrOff = ShAmt / 8;
Duncan Sandsdc846502007-10-28 12:59:45 +00003201 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
Evan Chengc88138f2007-03-22 01:54:19 +00003202 SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3203 DAG.getConstant(PtrOff, PtrType));
3204 AddToWorkList(NewPtr.Val);
3205 SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3206 ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003207 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Duncan Sandsdc846502007-10-28 12:59:45 +00003208 LN0->isVolatile(), NewAlign)
Evan Chengc88138f2007-03-22 01:54:19 +00003209 : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003210 LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
Duncan Sandsdc846502007-10-28 12:59:45 +00003211 LN0->isVolatile(), NewAlign);
Evan Chengc88138f2007-03-22 01:54:19 +00003212 AddToWorkList(N);
Evan Chengb37b80c2007-03-23 20:55:21 +00003213 if (CombineSRL) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003214 WorkListRemover DeadNodes(*this);
3215 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
3216 &DeadNodes);
Evan Chengb37b80c2007-03-23 20:55:21 +00003217 CombineTo(N->getOperand(0).Val, Load);
3218 } else
3219 CombineTo(N0.Val, Load, Load.getValue(1));
Evan Cheng15213b72007-03-26 07:12:51 +00003220 if (ShAmt) {
3221 if (Opc == ISD::SIGN_EXTEND_INREG)
3222 return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3223 else
3224 return DAG.getNode(Opc, VT, Load);
3225 }
Evan Chengc88138f2007-03-22 01:54:19 +00003226 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3227 }
3228
3229 return SDOperand();
3230}
3231
Chris Lattner5ffc0662006-05-05 05:58:59 +00003232
Nate Begeman83e75ec2005-09-06 04:43:02 +00003233SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003234 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003235 SDOperand N1 = N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003236 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003237 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003238 unsigned VTBits = MVT::getSizeInBits(VT);
Nate Begeman07ed4172005-10-10 21:26:48 +00003239 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003240
Nate Begeman1d4d4142005-09-01 00:19:25 +00003241 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00003242 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Chris Lattner310b5782006-05-06 23:06:26 +00003243 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
Chris Lattneree4ea922006-05-06 09:30:03 +00003244
Chris Lattner541a24f2006-05-06 22:43:44 +00003245 // If the input is already sign extended, just drop the extension.
Dan Gohmanea859be2007-06-22 14:59:07 +00003246 if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00003247 return N0;
3248
Nate Begeman646d7e22005-09-02 21:18:40 +00003249 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3250 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3251 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00003252 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003253 }
Chris Lattner4b37e872006-05-08 21:18:59 +00003254
Chris Lattner95a5e052007-04-17 19:03:21 +00003255 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003256 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Nate Begemande996292006-02-03 22:24:05 +00003257 return DAG.getZeroExtendInReg(N0, EVT);
Chris Lattner4b37e872006-05-08 21:18:59 +00003258
Chris Lattner95a5e052007-04-17 19:03:21 +00003259 // fold operands of sext_in_reg based on knowledge that the top bits are not
3260 // demanded.
3261 if (SimplifyDemandedBits(SDOperand(N, 0)))
3262 return SDOperand(N, 0);
3263
Evan Chengc88138f2007-03-22 01:54:19 +00003264 // fold (sext_in_reg (load x)) -> (smaller sextload x)
3265 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3266 SDOperand NarrowLoad = ReduceLoadWidth(N);
3267 if (NarrowLoad.Val)
3268 return NarrowLoad;
3269
Chris Lattner4b37e872006-05-08 21:18:59 +00003270 // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3271 // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3272 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3273 if (N0.getOpcode() == ISD::SRL) {
3274 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3275 if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3276 // We can turn this into an SRA iff the input to the SRL is already sign
3277 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00003278 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Chris Lattner4b37e872006-05-08 21:18:59 +00003279 if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3280 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3281 }
3282 }
Evan Chengc88138f2007-03-22 01:54:19 +00003283
Nate Begemanded49632005-10-13 03:11:28 +00003284 // fold (sext_inreg (extload x)) -> (sextload x)
Evan Chengc5484282006-10-04 00:56:09 +00003285 if (ISD::isEXTLoad(N0.Val) &&
Evan Cheng83060c52007-03-07 08:07:03 +00003286 ISD::isUNINDEXEDLoad(N0.Val) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003287 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003288 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003289 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3290 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3291 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003292 LN0->getSrcValueOffset(), EVT,
3293 LN0->isVolatile(),
3294 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003295 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003296 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003297 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003298 }
3299 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Evan Cheng83060c52007-03-07 08:07:03 +00003300 if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3301 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003302 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Evan Chengc5484282006-10-04 00:56:09 +00003303 (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003304 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3305 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3306 LN0->getBasePtr(), LN0->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003307 LN0->getSrcValueOffset(), EVT,
3308 LN0->isVolatile(),
3309 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00003310 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00003311 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Chris Lattnerfedced72006-04-20 23:55:59 +00003312 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00003313 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003314 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003315}
3316
Nate Begeman83e75ec2005-09-06 04:43:02 +00003317SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003318 SDOperand N0 = N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003319 MVT::ValueType VT = N->getValueType(0);
3320
3321 // noop truncate
3322 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003323 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003324 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00003325 if (isa<ConstantSDNode>(N0))
Nate Begemana148d982006-01-18 22:35:16 +00003326 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003327 // fold (truncate (truncate x)) -> (truncate x)
3328 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003329 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003330 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattnerb72773b2006-05-05 22:56:26 +00003331 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3332 N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003333 if (N0.getOperand(0).getValueType() < VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003334 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00003335 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Chris Lattner32ba1aa2006-11-20 18:05:46 +00003336 else if (N0.getOperand(0).getValueType() > VT)
Nate Begeman1d4d4142005-09-01 00:19:25 +00003337 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003338 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003339 else
3340 // if the source and dest are the same type, we can drop both the extend
3341 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00003342 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003343 }
Evan Cheng007b69e2007-03-21 20:14:05 +00003344
Chris Lattner2b4c2792007-10-13 06:35:54 +00003345 // See if we can simplify the input to this truncate through knowledge that
3346 // only the low bits are being used. For example "trunc (or (shl x, 8), y)"
3347 // -> trunc y
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003348 SDOperand Shorter =
3349 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
3350 MVT::getSizeInBits(VT)));
Chris Lattner2b4c2792007-10-13 06:35:54 +00003351 if (Shorter.Val)
3352 return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3353
Nate Begeman3df4d522005-10-12 20:40:40 +00003354 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00003355 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Evan Chengc88138f2007-03-22 01:54:19 +00003356 return ReduceLoadWidth(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003357}
3358
Chris Lattner94683772005-12-23 05:30:37 +00003359SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3360 SDOperand N0 = N->getOperand(0);
3361 MVT::ValueType VT = N->getValueType(0);
3362
Dan Gohman7f321562007-06-25 16:23:39 +00003363 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3364 // Only do this before legalize, since afterward the target may be depending
3365 // on the bitconvert.
3366 // First check to see if this is all constant.
3367 if (!AfterLegalize &&
3368 N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3369 MVT::isVector(VT)) {
3370 bool isSimple = true;
3371 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3372 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3373 N0.getOperand(i).getOpcode() != ISD::Constant &&
3374 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3375 isSimple = false;
3376 break;
3377 }
3378
3379 MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3380 assert(!MVT::isVector(DestEltVT) &&
3381 "Element type of vector ValueType must not be vector!");
3382 if (isSimple) {
3383 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3384 }
3385 }
3386
Chris Lattner94683772005-12-23 05:30:37 +00003387 // If the input is a constant, let getNode() fold it.
3388 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3389 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3390 if (Res.Val != N) return Res;
3391 }
3392
Chris Lattnerc8547d82005-12-23 05:37:50 +00003393 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
3394 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00003395
Chris Lattner57104102005-12-23 05:44:41 +00003396 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00003397 // If the resultant load doesn't need a higher alignment than the original!
3398 if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
Evan Cheng59d5b682007-05-07 21:27:48 +00003399 TLI.isOperationLegal(ISD::LOAD, VT)) {
Evan Cheng466685d2006-10-09 20:57:25 +00003400 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Evan Cheng59d5b682007-05-07 21:27:48 +00003401 unsigned Align = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00003402 getABITypeAlignment(MVT::getTypeForValueType(VT));
Evan Cheng59d5b682007-05-07 21:27:48 +00003403 unsigned OrigAlign = LN0->getAlignment();
3404 if (Align <= OrigAlign) {
3405 SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3406 LN0->getSrcValue(), LN0->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003407 LN0->isVolatile(), Align);
Evan Cheng59d5b682007-05-07 21:27:48 +00003408 AddToWorkList(N);
3409 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3410 Load.getValue(1));
3411 return Load;
3412 }
Chris Lattner57104102005-12-23 05:44:41 +00003413 }
3414
Chris Lattner3bd39d42008-01-27 17:42:27 +00003415 // Fold bitconvert(fneg(x)) -> xor(bitconvert(x), signbit)
3416 // Fold bitconvert(fabs(x)) -> and(bitconvert(x), ~signbit)
3417 // This often reduces constant pool loads.
3418 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
3419 N0.Val->hasOneUse() && MVT::isInteger(VT) && !MVT::isVector(VT)) {
3420 SDOperand NewConv = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3421 AddToWorkList(NewConv.Val);
3422
Dan Gohman220a8232008-03-03 23:51:38 +00003423 APInt SignBit = APInt::getSignBit(MVT::getSizeInBits(VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00003424 if (N0.getOpcode() == ISD::FNEG)
3425 return DAG.getNode(ISD::XOR, VT, NewConv, DAG.getConstant(SignBit, VT));
3426 assert(N0.getOpcode() == ISD::FABS);
3427 return DAG.getNode(ISD::AND, VT, NewConv, DAG.getConstant(~SignBit, VT));
3428 }
3429
3430 // Fold bitconvert(fcopysign(cst, x)) -> bitconvert(x)&sign | cst&~sign'
3431 // Note that we don't handle copysign(x,cst) because this can always be folded
3432 // to an fneg or fabs.
3433 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00003434 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
3435 MVT::isInteger(VT) && !MVT::isVector(VT)) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003436 unsigned OrigXWidth = MVT::getSizeInBits(N0.getOperand(1).getValueType());
3437 SDOperand X = DAG.getNode(ISD::BIT_CONVERT, MVT::getIntegerType(OrigXWidth),
3438 N0.getOperand(1));
3439 AddToWorkList(X.Val);
3440
3441 // If X has a different width than the result/lhs, sext it or truncate it.
3442 unsigned VTWidth = MVT::getSizeInBits(VT);
3443 if (OrigXWidth < VTWidth) {
3444 X = DAG.getNode(ISD::SIGN_EXTEND, VT, X);
3445 AddToWorkList(X.Val);
3446 } else if (OrigXWidth > VTWidth) {
3447 // To get the sign bit in the right place, we have to shift it right
3448 // before truncating.
3449 X = DAG.getNode(ISD::SRL, X.getValueType(), X,
3450 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
3451 AddToWorkList(X.Val);
3452 X = DAG.getNode(ISD::TRUNCATE, VT, X);
3453 AddToWorkList(X.Val);
3454 }
3455
Dan Gohman220a8232008-03-03 23:51:38 +00003456 APInt SignBit = APInt::getSignBit(MVT::getSizeInBits(VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00003457 X = DAG.getNode(ISD::AND, VT, X, DAG.getConstant(SignBit, VT));
3458 AddToWorkList(X.Val);
3459
3460 SDOperand Cst = DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3461 Cst = DAG.getNode(ISD::AND, VT, Cst, DAG.getConstant(~SignBit, VT));
3462 AddToWorkList(Cst.Val);
3463
3464 return DAG.getNode(ISD::OR, VT, X, Cst);
3465 }
3466
Chris Lattner94683772005-12-23 05:30:37 +00003467 return SDOperand();
3468}
3469
Dan Gohman7f321562007-06-25 16:23:39 +00003470/// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
Chris Lattner6258fb22006-04-02 02:53:43 +00003471/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
3472/// destination element value type.
3473SDOperand DAGCombiner::
Dan Gohman7f321562007-06-25 16:23:39 +00003474ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003475 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3476
3477 // If this is already the right type, we're done.
3478 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3479
3480 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3481 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3482
3483 // If this is a conversion of N elements of one type to N elements of another
3484 // type, convert each element. This handles FP<->INT cases.
3485 if (SrcBitSize == DstBitSize) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003486 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003487 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003488 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
Chris Lattner3e104b12006-04-08 04:15:24 +00003489 AddToWorkList(Ops.back().Val);
3490 }
Dan Gohman7f321562007-06-25 16:23:39 +00003491 MVT::ValueType VT =
3492 MVT::getVectorType(DstEltVT,
3493 MVT::getVectorNumElements(BV->getValueType(0)));
3494 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003495 }
3496
3497 // Otherwise, we're growing or shrinking the elements. To avoid having to
3498 // handle annoying details of growing/shrinking FP values, we convert them to
3499 // int first.
3500 if (MVT::isFloatingPoint(SrcEltVT)) {
3501 // Convert the input float vector to a int vector where the elements are the
3502 // same sizes.
3503 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3504 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003505 BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003506 SrcEltVT = IntVT;
3507 }
3508
3509 // Now we know the input is an integer vector. If the output is a FP type,
3510 // convert to integer first, then to FP of the right size.
3511 if (MVT::isFloatingPoint(DstEltVT)) {
3512 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3513 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman7f321562007-06-25 16:23:39 +00003514 SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
Chris Lattner6258fb22006-04-02 02:53:43 +00003515
3516 // Next, convert to FP elements of the same size.
Dan Gohman7f321562007-06-25 16:23:39 +00003517 return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00003518 }
3519
3520 // Okay, we know the src/dst types are both integers of differing types.
3521 // Handling growing first.
3522 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3523 if (SrcBitSize < DstBitSize) {
3524 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3525
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003526 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003527 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00003528 i += NumInputsPerOutput) {
3529 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00003530 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00003531 bool EltIsUndef = true;
3532 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3533 // Shift the previously computed bits over.
3534 NewBits <<= SrcBitSize;
3535 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3536 if (Op.getOpcode() == ISD::UNDEF) continue;
3537 EltIsUndef = false;
3538
Dan Gohman220a8232008-03-03 23:51:38 +00003539 NewBits |=
3540 APInt(cast<ConstantSDNode>(Op)->getAPIntValue()).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003541 }
3542
3543 if (EltIsUndef)
3544 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3545 else
3546 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3547 }
3548
Evan Chengefec7512008-02-18 23:04:32 +00003549 MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00003550 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003551 }
3552
3553 // Finally, this must be the case where we are shrinking elements: each input
3554 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00003555 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00003556 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Evan Chengefec7512008-02-18 23:04:32 +00003557 MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3558 NumOutputsPerInput * BV->getNumOperands());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003559 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00003560 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00003561 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3562 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3563 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3564 continue;
3565 }
Dan Gohman220a8232008-03-03 23:51:38 +00003566 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getAPIntValue();
Chris Lattner6258fb22006-04-02 02:53:43 +00003567 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Dan Gohman220a8232008-03-03 23:51:38 +00003568 APInt ThisVal = APInt(OpVal).trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003569 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Dan Gohman220a8232008-03-03 23:51:38 +00003570 if (isS2V && i == 0 && j == 0 && APInt(ThisVal).zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00003571 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
3572 return DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00003573 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00003574 }
3575
3576 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00003577 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00003578 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3579 }
Dan Gohman7f321562007-06-25 16:23:39 +00003580 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00003581}
3582
3583
3584
Chris Lattner01b3d732005-09-28 22:28:18 +00003585SDOperand DAGCombiner::visitFADD(SDNode *N) {
3586 SDOperand N0 = N->getOperand(0);
3587 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003588 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3589 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003590 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003591
Dan Gohman7f321562007-06-25 16:23:39 +00003592 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003593 if (MVT::isVector(VT)) {
3594 SDOperand FoldedVOp = SimplifyVBinOp(N);
3595 if (FoldedVOp.Val) return FoldedVOp;
3596 }
Dan Gohman7f321562007-06-25 16:23:39 +00003597
Nate Begemana0e221d2005-10-18 00:28:13 +00003598 // fold (fadd c1, c2) -> c1+c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003599 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003600 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003601 // canonicalize constant to RHS
3602 if (N0CFP && !N1CFP)
3603 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00003604 // fold (A + (-B)) -> A-B
Chris Lattner0254e702008-02-26 07:04:54 +00003605 if (isNegatibleForFree(N1, AfterLegalize) == 2)
3606 return DAG.getNode(ISD::FSUB, VT, N0,
3607 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner01b3d732005-09-28 22:28:18 +00003608 // fold ((-A) + B) -> B-A
Chris Lattner0254e702008-02-26 07:04:54 +00003609 if (isNegatibleForFree(N0, AfterLegalize) == 2)
3610 return DAG.getNode(ISD::FSUB, VT, N1,
3611 GetNegatedExpression(N0, DAG, AfterLegalize));
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003612
3613 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3614 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3615 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3616 return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3617 DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3618
Chris Lattner01b3d732005-09-28 22:28:18 +00003619 return SDOperand();
3620}
3621
3622SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3623 SDOperand N0 = N->getOperand(0);
3624 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00003625 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3626 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003627 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00003628
Dan Gohman7f321562007-06-25 16:23:39 +00003629 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003630 if (MVT::isVector(VT)) {
3631 SDOperand FoldedVOp = SimplifyVBinOp(N);
3632 if (FoldedVOp.Val) return FoldedVOp;
3633 }
Dan Gohman7f321562007-06-25 16:23:39 +00003634
Nate Begemana0e221d2005-10-18 00:28:13 +00003635 // fold (fsub c1, c2) -> c1-c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003636 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003637 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00003638 // fold (0-B) -> -B
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003639 if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
Chris Lattner0254e702008-02-26 07:04:54 +00003640 if (isNegatibleForFree(N1, AfterLegalize))
3641 return GetNegatedExpression(N1, DAG, AfterLegalize);
Dan Gohman23ff1822007-07-02 15:48:56 +00003642 return DAG.getNode(ISD::FNEG, VT, N1);
3643 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003644 // fold (A-(-B)) -> A+B
Chris Lattner0254e702008-02-26 07:04:54 +00003645 if (isNegatibleForFree(N1, AfterLegalize))
3646 return DAG.getNode(ISD::FADD, VT, N0,
3647 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003648
Chris Lattner01b3d732005-09-28 22:28:18 +00003649 return SDOperand();
3650}
3651
3652SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3653 SDOperand N0 = N->getOperand(0);
3654 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003655 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3656 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003657 MVT::ValueType VT = N->getValueType(0);
3658
Dan Gohman7f321562007-06-25 16:23:39 +00003659 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003660 if (MVT::isVector(VT)) {
3661 SDOperand FoldedVOp = SimplifyVBinOp(N);
3662 if (FoldedVOp.Val) return FoldedVOp;
3663 }
Dan Gohman7f321562007-06-25 16:23:39 +00003664
Nate Begeman11af4ea2005-10-17 20:40:11 +00003665 // fold (fmul c1, c2) -> c1*c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003666 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003667 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003668 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003669 if (N0CFP && !N1CFP)
3670 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00003671 // fold (fmul X, 2.0) -> (fadd X, X)
3672 if (N1CFP && N1CFP->isExactlyValue(+2.0))
3673 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner29446522007-05-14 22:04:50 +00003674 // fold (fmul X, -1.0) -> (fneg X)
3675 if (N1CFP && N1CFP->isExactlyValue(-1.0))
3676 return DAG.getNode(ISD::FNEG, VT, N0);
3677
3678 // -X * -Y -> X*Y
Chris Lattner0254e702008-02-26 07:04:54 +00003679 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3680 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Chris Lattner29446522007-05-14 22:04:50 +00003681 // Both can be negated for free, check to see if at least one is cheaper
3682 // negated.
3683 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattner0254e702008-02-26 07:04:54 +00003684 return DAG.getNode(ISD::FMUL, VT,
3685 GetNegatedExpression(N0, DAG, AfterLegalize),
3686 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003687 }
3688 }
Chris Lattnerddae4bd2007-01-08 23:04:05 +00003689
3690 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3691 if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3692 N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3693 return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3694 DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3695
Chris Lattner01b3d732005-09-28 22:28:18 +00003696 return SDOperand();
3697}
3698
3699SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3700 SDOperand N0 = N->getOperand(0);
3701 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003702 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3703 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003704 MVT::ValueType VT = N->getValueType(0);
3705
Dan Gohman7f321562007-06-25 16:23:39 +00003706 // fold vector ops
Dan Gohman05d92fe2007-07-13 20:03:40 +00003707 if (MVT::isVector(VT)) {
3708 SDOperand FoldedVOp = SimplifyVBinOp(N);
3709 if (FoldedVOp.Val) return FoldedVOp;
3710 }
Dan Gohman7f321562007-06-25 16:23:39 +00003711
Nate Begemana148d982006-01-18 22:35:16 +00003712 // fold (fdiv c1, c2) -> c1/c2
Dale Johannesendb44bf82007-10-16 23:38:29 +00003713 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003714 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner29446522007-05-14 22:04:50 +00003715
3716
3717 // -X / -Y -> X*Y
Chris Lattner0254e702008-02-26 07:04:54 +00003718 if (char LHSNeg = isNegatibleForFree(N0, AfterLegalize)) {
3719 if (char RHSNeg = isNegatibleForFree(N1, AfterLegalize)) {
Chris Lattner29446522007-05-14 22:04:50 +00003720 // Both can be negated for free, check to see if at least one is cheaper
3721 // negated.
3722 if (LHSNeg == 2 || RHSNeg == 2)
Chris Lattner0254e702008-02-26 07:04:54 +00003723 return DAG.getNode(ISD::FDIV, VT,
3724 GetNegatedExpression(N0, DAG, AfterLegalize),
3725 GetNegatedExpression(N1, DAG, AfterLegalize));
Chris Lattner29446522007-05-14 22:04:50 +00003726 }
3727 }
3728
Chris Lattner01b3d732005-09-28 22:28:18 +00003729 return SDOperand();
3730}
3731
3732SDOperand DAGCombiner::visitFREM(SDNode *N) {
3733 SDOperand N0 = N->getOperand(0);
3734 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003735 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3736 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00003737 MVT::ValueType VT = N->getValueType(0);
3738
Nate Begemana148d982006-01-18 22:35:16 +00003739 // fold (frem c1, c2) -> fmod(c1,c2)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003740 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003741 return DAG.getNode(ISD::FREM, VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00003742
Chris Lattner01b3d732005-09-28 22:28:18 +00003743 return SDOperand();
3744}
3745
Chris Lattner12d83032006-03-05 05:30:57 +00003746SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3747 SDOperand N0 = N->getOperand(0);
3748 SDOperand N1 = N->getOperand(1);
3749 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3750 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3751 MVT::ValueType VT = N->getValueType(0);
3752
Dale Johannesendb44bf82007-10-16 23:38:29 +00003753 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Chris Lattner12d83032006-03-05 05:30:57 +00003754 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3755
3756 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00003757 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00003758 // copysign(x, c1) -> fabs(x) iff ispos(c1)
3759 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dale Johannesen87503a62007-08-25 22:10:57 +00003760 if (!V.isNegative())
Chris Lattner12d83032006-03-05 05:30:57 +00003761 return DAG.getNode(ISD::FABS, VT, N0);
3762 else
3763 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3764 }
3765
3766 // copysign(fabs(x), y) -> copysign(x, y)
3767 // copysign(fneg(x), y) -> copysign(x, y)
3768 // copysign(copysign(x,z), y) -> copysign(x, y)
3769 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3770 N0.getOpcode() == ISD::FCOPYSIGN)
3771 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3772
3773 // copysign(x, abs(y)) -> abs(x)
3774 if (N1.getOpcode() == ISD::FABS)
3775 return DAG.getNode(ISD::FABS, VT, N0);
3776
3777 // copysign(x, copysign(y,z)) -> copysign(x, z)
3778 if (N1.getOpcode() == ISD::FCOPYSIGN)
3779 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3780
3781 // copysign(x, fp_extend(y)) -> copysign(x, y)
3782 // copysign(x, fp_round(y)) -> copysign(x, y)
3783 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3784 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3785
3786 return SDOperand();
3787}
3788
3789
Chris Lattner01b3d732005-09-28 22:28:18 +00003790
Nate Begeman83e75ec2005-09-06 04:43:02 +00003791SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003792 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003793 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003794 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003795
3796 // fold (sint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003797 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003798 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003799 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003800}
3801
Nate Begeman83e75ec2005-09-06 04:43:02 +00003802SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003803 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00003804 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00003805 MVT::ValueType VT = N->getValueType(0);
3806
Nate Begeman1d4d4142005-09-01 00:19:25 +00003807 // fold (uint_to_fp c1) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003808 if (N0C && N0.getValueType() != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003809 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003810 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003811}
3812
Nate Begeman83e75ec2005-09-06 04:43:02 +00003813SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003814 SDOperand N0 = N->getOperand(0);
3815 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3816 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003817
3818 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00003819 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00003820 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003821 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003822}
3823
Nate Begeman83e75ec2005-09-06 04:43:02 +00003824SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003825 SDOperand N0 = N->getOperand(0);
3826 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3827 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003828
3829 // fold (fp_to_uint c1fp) -> c1
Dale Johannesendb44bf82007-10-16 23:38:29 +00003830 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003831 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003832 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003833}
3834
Nate Begeman83e75ec2005-09-06 04:43:02 +00003835SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003836 SDOperand N0 = N->getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003837 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00003838 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3839 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003840
3841 // fold (fp_round c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003842 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Chris Lattner0bd48932008-01-17 07:00:52 +00003843 return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003844
3845 // fold (fp_round (fp_extend x)) -> x
3846 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3847 return N0.getOperand(0);
3848
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00003849 // fold (fp_round (fp_round x)) -> (fp_round x)
3850 if (N0.getOpcode() == ISD::FP_ROUND) {
3851 // This is a value preserving truncation if both round's are.
3852 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3853 N0.Val->getConstantOperandVal(1) == 1;
3854 return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3855 DAG.getIntPtrConstant(IsTrunc));
3856 }
3857
Chris Lattner79dbea52006-03-13 06:26:26 +00003858 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3859 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003860 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
Chris Lattner79dbea52006-03-13 06:26:26 +00003861 AddToWorkList(Tmp.Val);
3862 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3863 }
3864
Nate Begeman83e75ec2005-09-06 04:43:02 +00003865 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003866}
3867
Nate Begeman83e75ec2005-09-06 04:43:02 +00003868SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003869 SDOperand N0 = N->getOperand(0);
3870 MVT::ValueType VT = N->getValueType(0);
3871 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00003872 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003873
Nate Begeman1d4d4142005-09-01 00:19:25 +00003874 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00003875 if (N0CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003876 SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00003877 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003878 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00003879 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003880}
3881
Nate Begeman83e75ec2005-09-06 04:43:02 +00003882SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003883 SDOperand N0 = N->getOperand(0);
3884 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3885 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003886
Chris Lattner5938bef2007-12-29 06:55:23 +00003887 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003888 if (N->hasOneUse() &&
3889 N->use_begin()->getSDOperand().getOpcode() == ISD::FP_ROUND)
Chris Lattner5938bef2007-12-29 06:55:23 +00003890 return SDOperand();
Chris Lattner0bd48932008-01-17 07:00:52 +00003891
Nate Begeman1d4d4142005-09-01 00:19:25 +00003892 // fold (fp_extend c1fp) -> c1fp
Dale Johannesendb44bf82007-10-16 23:38:29 +00003893 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003894 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00003895
3896 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3897 // value of X.
3898 if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3899 SDOperand In = N0.getOperand(0);
3900 if (In.getValueType() == VT) return In;
3901 if (VT < In.getValueType())
3902 return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3903 return DAG.getNode(ISD::FP_EXTEND, VT, In);
3904 }
3905
3906 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Dale Johannesenb6210fc2007-10-19 20:29:00 +00003907 if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
Evan Chengc5484282006-10-04 00:56:09 +00003908 (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00003909 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3910 SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3911 LN0->getBasePtr(), LN0->getSrcValue(),
3912 LN0->getSrcValueOffset(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00003913 N0.getValueType(),
3914 LN0->isVolatile(),
3915 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00003916 CombineTo(N, ExtLoad);
Chris Lattner0bd48932008-01-17 07:00:52 +00003917 CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3918 DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00003919 ExtLoad.getValue(1));
3920 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
3921 }
3922
3923
Nate Begeman83e75ec2005-09-06 04:43:02 +00003924 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003925}
3926
Nate Begeman83e75ec2005-09-06 04:43:02 +00003927SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003928 SDOperand N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00003929
Chris Lattner0254e702008-02-26 07:04:54 +00003930 if (isNegatibleForFree(N0, AfterLegalize))
3931 return GetNegatedExpression(N0, DAG, AfterLegalize);
Dan Gohman23ff1822007-07-02 15:48:56 +00003932
Chris Lattner3bd39d42008-01-27 17:42:27 +00003933 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
3934 // constant pool values.
Chris Lattnerf32aac32008-01-27 23:32:17 +00003935 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
3936 MVT::isInteger(N0.getOperand(0).getValueType()) &&
3937 !MVT::isVector(N0.getOperand(0).getValueType())) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003938 SDOperand Int = N0.getOperand(0);
3939 MVT::ValueType IntVT = Int.getValueType();
3940 if (MVT::isInteger(IntVT) && !MVT::isVector(IntVT)) {
3941 Int = DAG.getNode(ISD::XOR, IntVT, Int,
3942 DAG.getConstant(MVT::getIntVTSignBit(IntVT), IntVT));
3943 AddToWorkList(Int.Val);
3944 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
3945 }
3946 }
3947
Nate Begeman83e75ec2005-09-06 04:43:02 +00003948 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003949}
3950
Nate Begeman83e75ec2005-09-06 04:43:02 +00003951SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00003952 SDOperand N0 = N->getOperand(0);
3953 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3954 MVT::ValueType VT = N->getValueType(0);
3955
Nate Begeman1d4d4142005-09-01 00:19:25 +00003956 // fold (fabs c1) -> fabs(c1)
Dale Johannesendb44bf82007-10-16 23:38:29 +00003957 if (N0CFP && VT != MVT::ppcf128)
Nate Begemana148d982006-01-18 22:35:16 +00003958 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003959 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003960 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003961 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003962 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00003963 // fold (fabs (fcopysign x, y)) -> (fabs x)
3964 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3965 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3966
Chris Lattner3bd39d42008-01-27 17:42:27 +00003967 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
3968 // constant pool values.
Chris Lattnerf32aac32008-01-27 23:32:17 +00003969 if (N0.getOpcode() == ISD::BIT_CONVERT && N0.Val->hasOneUse() &&
3970 MVT::isInteger(N0.getOperand(0).getValueType()) &&
3971 !MVT::isVector(N0.getOperand(0).getValueType())) {
Chris Lattner3bd39d42008-01-27 17:42:27 +00003972 SDOperand Int = N0.getOperand(0);
3973 MVT::ValueType IntVT = Int.getValueType();
3974 if (MVT::isInteger(IntVT) && !MVT::isVector(IntVT)) {
3975 Int = DAG.getNode(ISD::AND, IntVT, Int,
3976 DAG.getConstant(~MVT::getIntVTSignBit(IntVT), IntVT));
3977 AddToWorkList(Int.Val);
3978 return DAG.getNode(ISD::BIT_CONVERT, N->getValueType(0), Int);
3979 }
3980 }
3981
Nate Begeman83e75ec2005-09-06 04:43:02 +00003982 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003983}
3984
Nate Begeman44728a72005-09-19 22:34:01 +00003985SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3986 SDOperand Chain = N->getOperand(0);
3987 SDOperand N1 = N->getOperand(1);
3988 SDOperand N2 = N->getOperand(2);
3989 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3990
3991 // never taken branch, fold to chain
3992 if (N1C && N1C->isNullValue())
3993 return Chain;
3994 // unconditional branch
Dan Gohman002e5d02008-03-13 22:13:53 +00003995 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00003996 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003997 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3998 // on the target.
3999 if (N1.getOpcode() == ISD::SETCC &&
4000 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
4001 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
4002 N1.getOperand(0), N1.getOperand(1), N2);
4003 }
Nate Begeman44728a72005-09-19 22:34:01 +00004004 return SDOperand();
4005}
4006
Chris Lattner3ea0b472005-10-05 06:47:48 +00004007// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
4008//
Nate Begeman44728a72005-09-19 22:34:01 +00004009SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00004010 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
4011 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
4012
4013 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00004014 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
Chris Lattner30f73e72006-10-14 03:52:46 +00004015 if (Simp.Val) AddToWorkList(Simp.Val);
4016
Nate Begemane17daeb2005-10-05 21:43:42 +00004017 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
4018
4019 // fold br_cc true, dest -> br dest (unconditional branch)
Dan Gohman002e5d02008-03-13 22:13:53 +00004020 if (SCCC && !SCCC->isNullValue())
Nate Begemane17daeb2005-10-05 21:43:42 +00004021 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
4022 N->getOperand(4));
4023 // fold br_cc false, dest -> unconditional fall through
4024 if (SCCC && SCCC->isNullValue())
4025 return N->getOperand(0);
Chris Lattner30f73e72006-10-14 03:52:46 +00004026
Nate Begemane17daeb2005-10-05 21:43:42 +00004027 // fold to a simpler setcc
4028 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
4029 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
4030 Simp.getOperand(2), Simp.getOperand(0),
4031 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00004032 return SDOperand();
4033}
4034
Chris Lattner448f2192006-11-11 00:39:41 +00004035
4036/// CombineToPreIndexedLoadStore - Try turning a load / store and a
4037/// pre-indexed load / store when the base pointer is a add or subtract
4038/// and it has other uses besides the load / store. After the
4039/// transformation, the new indexed load / store has effectively folded
4040/// the add / subtract in and all of its other uses are redirected to the
4041/// new load / store.
4042bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
4043 if (!AfterLegalize)
4044 return false;
4045
4046 bool isLoad = true;
4047 SDOperand Ptr;
4048 MVT::ValueType VT;
4049 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004050 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004051 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004052 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00004053 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00004054 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
4055 return false;
4056 Ptr = LD->getBasePtr();
4057 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004058 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004059 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004060 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004061 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
4062 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
4063 return false;
4064 Ptr = ST->getBasePtr();
4065 isLoad = false;
4066 } else
4067 return false;
4068
Chris Lattner9f1794e2006-11-11 00:56:29 +00004069 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
4070 // out. There is no reason to make this a preinc/predec.
4071 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
4072 Ptr.Val->hasOneUse())
4073 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00004074
Chris Lattner9f1794e2006-11-11 00:56:29 +00004075 // Ask the target to do addressing mode selection.
4076 SDOperand BasePtr;
4077 SDOperand Offset;
4078 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4079 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
4080 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00004081 // Don't create a indexed load / store with zero offset.
4082 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004083 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00004084 return false;
Chris Lattner9f1794e2006-11-11 00:56:29 +00004085
Chris Lattner41e53fd2006-11-11 01:00:15 +00004086 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00004087 // 1) The new base ptr is a frame index.
4088 // 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 +00004089 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00004090 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00004091 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00004092 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00004093
Chris Lattner41e53fd2006-11-11 01:00:15 +00004094 // Check #1. Preinc'ing a frame index would require copying the stack pointer
4095 // (plus the implicit offset) to a register to preinc anyway.
4096 if (isa<FrameIndexSDNode>(BasePtr))
4097 return false;
4098
4099 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00004100 if (!isLoad) {
4101 SDOperand Val = cast<StoreSDNode>(N)->getValue();
Evan Cheng917be682008-03-04 00:41:45 +00004102 if (Val == BasePtr || BasePtr.Val->isPredecessorOf(Val.Val))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004103 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00004104 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004105
Evan Chengc843abe2007-05-24 02:35:39 +00004106 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00004107 bool RealUse = false;
4108 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4109 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004110 SDNode *Use = I->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004111 if (Use == N)
4112 continue;
Evan Cheng917be682008-03-04 00:41:45 +00004113 if (Use->isPredecessorOf(N))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004114 return false;
4115
4116 if (!((Use->getOpcode() == ISD::LOAD &&
4117 cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004118 (Use->getOpcode() == ISD::STORE &&
4119 cast<StoreSDNode>(Use)->getBasePtr() == Ptr)))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004120 RealUse = true;
4121 }
4122 if (!RealUse)
4123 return false;
4124
4125 SDOperand Result;
4126 if (isLoad)
4127 Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
4128 else
4129 Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4130 ++PreIndexedNodes;
4131 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004132 DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004133 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4134 DOUT << '\n';
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004135 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004136 if (isLoad) {
4137 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004138 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004139 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004140 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004141 } else {
4142 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004143 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004144 }
4145
Chris Lattner9f1794e2006-11-11 00:56:29 +00004146 // Finally, since the node is now dead, remove it from the graph.
4147 DAG.DeleteNode(N);
4148
4149 // Replace the uses of Ptr with uses of the updated base value.
4150 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004151 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004152 removeFromWorkList(Ptr.Val);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004153 DAG.DeleteNode(Ptr.Val);
4154
4155 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004156}
4157
4158/// CombineToPostIndexedLoadStore - Try combine a load / store with a
4159/// add / sub of the base pointer node into a post-indexed load / store.
4160/// The transformation folded the add / subtract into the new indexed
4161/// load / store effectively and all of its uses are redirected to the
4162/// new load / store.
4163bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
4164 if (!AfterLegalize)
4165 return false;
4166
4167 bool isLoad = true;
4168 SDOperand Ptr;
4169 MVT::ValueType VT;
4170 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004171 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004172 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004173 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004174 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
4175 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
4176 return false;
4177 Ptr = LD->getBasePtr();
4178 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004179 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00004180 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004181 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00004182 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
4183 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
4184 return false;
4185 Ptr = ST->getBasePtr();
4186 isLoad = false;
4187 } else
4188 return false;
4189
Evan Chengcc470212006-11-16 00:08:20 +00004190 if (Ptr.Val->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00004191 return false;
4192
4193 for (SDNode::use_iterator I = Ptr.Val->use_begin(),
4194 E = Ptr.Val->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004195 SDNode *Op = I->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004196 if (Op == N ||
4197 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
4198 continue;
4199
4200 SDOperand BasePtr;
4201 SDOperand Offset;
4202 ISD::MemIndexedMode AM = ISD::UNINDEXED;
4203 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
4204 if (Ptr == Offset)
4205 std::swap(BasePtr, Offset);
4206 if (Ptr != BasePtr)
Chris Lattner448f2192006-11-11 00:39:41 +00004207 continue;
Evan Chenga7d4a042007-05-03 23:52:19 +00004208 // Don't create a indexed load / store with zero offset.
4209 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004210 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00004211 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004212
Chris Lattner9f1794e2006-11-11 00:56:29 +00004213 // Try turning it into a post-indexed load / store except when
4214 // 1) All uses are load / store ops that use it as base ptr.
4215 // 2) Op must be independent of N, i.e. Op is neither a predecessor
4216 // nor a successor of N. Otherwise, if Op is folded that would
4217 // create a cycle.
4218
4219 // Check for #1.
4220 bool TryNext = false;
4221 for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
4222 EE = BasePtr.Val->use_end(); II != EE; ++II) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004223 SDNode *Use = II->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004224 if (Use == Ptr.Val)
Chris Lattner448f2192006-11-11 00:39:41 +00004225 continue;
4226
Chris Lattner9f1794e2006-11-11 00:56:29 +00004227 // If all the uses are load / store addresses, then don't do the
4228 // transformation.
4229 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4230 bool RealUse = false;
4231 for (SDNode::use_iterator III = Use->use_begin(),
4232 EEE = Use->use_end(); III != EEE; ++III) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004233 SDNode *UseUse = III->getUser();
Chris Lattner9f1794e2006-11-11 00:56:29 +00004234 if (!((UseUse->getOpcode() == ISD::LOAD &&
4235 cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004236 (UseUse->getOpcode() == ISD::STORE &&
4237 cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use)))
Chris Lattner9f1794e2006-11-11 00:56:29 +00004238 RealUse = true;
4239 }
Chris Lattner448f2192006-11-11 00:39:41 +00004240
Chris Lattner9f1794e2006-11-11 00:56:29 +00004241 if (!RealUse) {
4242 TryNext = true;
4243 break;
Chris Lattner448f2192006-11-11 00:39:41 +00004244 }
4245 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004246 }
4247 if (TryNext)
4248 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00004249
Chris Lattner9f1794e2006-11-11 00:56:29 +00004250 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00004251 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Chris Lattner9f1794e2006-11-11 00:56:29 +00004252 SDOperand Result = isLoad
4253 ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4254 : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4255 ++PostIndexedNodes;
4256 ++NodesCombined;
Dan Gohmanb5bec2b2007-06-19 14:13:56 +00004257 DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
Bill Wendling832171c2006-12-07 20:04:42 +00004258 DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4259 DOUT << '\n';
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004260 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004261 if (isLoad) {
4262 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004263 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004264 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004265 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004266 } else {
4267 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004268 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00004269 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00004270
Chris Lattner9f1794e2006-11-11 00:56:29 +00004271 // Finally, since the node is now dead, remove it from the graph.
4272 DAG.DeleteNode(N);
4273
4274 // Replace the uses of Use with uses of the updated base value.
4275 DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4276 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004277 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004278 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004279 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00004280 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00004281 }
4282 }
4283 }
4284 return false;
4285}
4286
Chris Lattner00161a62008-01-25 07:20:16 +00004287/// InferAlignment - If we can infer some alignment information from this
4288/// pointer, return it.
4289static unsigned InferAlignment(SDOperand Ptr, SelectionDAG &DAG) {
4290 // If this is a direct reference to a stack slot, use information about the
4291 // stack slot's alignment.
Chris Lattner1329cb82008-01-26 19:45:50 +00004292 int FrameIdx = 1 << 31;
4293 int64_t FrameOffset = 0;
Chris Lattner00161a62008-01-25 07:20:16 +00004294 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
Chris Lattner1329cb82008-01-26 19:45:50 +00004295 FrameIdx = FI->getIndex();
4296 } else if (Ptr.getOpcode() == ISD::ADD &&
4297 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4298 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4299 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4300 FrameOffset = Ptr.getConstantOperandVal(1);
Chris Lattner00161a62008-01-25 07:20:16 +00004301 }
Chris Lattner1329cb82008-01-26 19:45:50 +00004302
4303 if (FrameIdx != (1 << 31)) {
4304 // FIXME: Handle FI+CST.
4305 const MachineFrameInfo &MFI = *DAG.getMachineFunction().getFrameInfo();
4306 if (MFI.isFixedObjectIndex(FrameIdx)) {
4307 int64_t ObjectOffset = MFI.getObjectOffset(FrameIdx);
4308
4309 // The alignment of the frame index can be determined from its offset from
4310 // the incoming frame position. If the frame object is at offset 32 and
4311 // the stack is guaranteed to be 16-byte aligned, then we know that the
4312 // object is 16-byte aligned.
4313 unsigned StackAlign = DAG.getTarget().getFrameInfo()->getStackAlignment();
4314 unsigned Align = MinAlign(ObjectOffset, StackAlign);
4315
4316 // Finally, the frame object itself may have a known alignment. Factor
4317 // the alignment + offset into a new alignment. For example, if we know
4318 // the FI is 8 byte aligned, but the pointer is 4 off, we really have a
4319 // 4-byte alignment of the resultant pointer. Likewise align 4 + 4-byte
4320 // offset = 4-byte alignment, align 4 + 1-byte offset = align 1, etc.
4321 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
4322 FrameOffset);
4323 return std::max(Align, FIInfoAlign);
4324 }
4325 }
Chris Lattner00161a62008-01-25 07:20:16 +00004326
4327 return 0;
4328}
Chris Lattner448f2192006-11-11 00:39:41 +00004329
Chris Lattner01a22022005-10-10 22:04:48 +00004330SDOperand DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00004331 LoadSDNode *LD = cast<LoadSDNode>(N);
4332 SDOperand Chain = LD->getChain();
4333 SDOperand Ptr = LD->getBasePtr();
Chris Lattner00161a62008-01-25 07:20:16 +00004334
4335 // Try to infer better alignment information than the load already has.
4336 if (LD->isUnindexed()) {
4337 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4338 if (Align > LD->getAlignment())
4339 return DAG.getExtLoad(LD->getExtensionType(), LD->getValueType(0),
4340 Chain, Ptr, LD->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004341 LD->getSrcValueOffset(), LD->getMemoryVT(),
Chris Lattner00161a62008-01-25 07:20:16 +00004342 LD->isVolatile(), Align);
4343 }
4344 }
4345
Evan Cheng45a7ca92007-05-01 00:38:21 +00004346
4347 // If load is not volatile and there are no uses of the loaded value (and
4348 // the updated indexed value in case of indexed loads), change uses of the
4349 // chain value into uses of the chain input (i.e. delete the dead load).
4350 if (!LD->isVolatile()) {
Evan Cheng498f5592007-05-01 08:53:39 +00004351 if (N->getValueType(1) == MVT::Other) {
4352 // Unindexed loads.
Evan Cheng02c42852008-01-16 23:11:54 +00004353 if (N->hasNUsesOfValue(0, 0)) {
4354 // It's not safe to use the two value CombineTo variant here. e.g.
4355 // v1, chain2 = load chain1, loc
4356 // v2, chain3 = load chain2, loc
4357 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00004358 // Now we replace use of chain2 with chain1. This makes the second load
4359 // isomorphic to the one we are deleting, and thus makes this load live.
Evan Cheng02c42852008-01-16 23:11:54 +00004360 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
Chris Lattner125991a2008-01-24 07:57:06 +00004361 DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4362 DOUT << "\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004363 WorkListRemover DeadNodes(*this);
4364 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &DeadNodes);
Chris Lattner125991a2008-01-24 07:57:06 +00004365 if (N->use_empty()) {
4366 removeFromWorkList(N);
4367 DAG.DeleteNode(N);
4368 }
Evan Cheng02c42852008-01-16 23:11:54 +00004369 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
4370 }
Evan Cheng498f5592007-05-01 08:53:39 +00004371 } else {
4372 // Indexed loads.
4373 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4374 if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
Evan Cheng02c42852008-01-16 23:11:54 +00004375 SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4376 DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4377 DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4378 DOUT << " and 2 other values\n";
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004379 WorkListRemover DeadNodes(*this);
4380 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00004381 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
Chris Lattner4626b252008-01-17 07:20:38 +00004382 DAG.getNode(ISD::UNDEF, N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004383 &DeadNodes);
4384 DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00004385 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00004386 DAG.DeleteNode(N);
4387 return SDOperand(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00004388 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00004389 }
4390 }
Chris Lattner01a22022005-10-10 22:04:48 +00004391
4392 // If this load is directly stored, replace the load value with the stored
4393 // value.
4394 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004395 // TODO: Handle TRUNCSTORE/LOADEXT
Dan Gohmanb061c4b2008-03-31 20:32:52 +00004396 if (LD->getExtensionType() == ISD::NON_EXTLOAD &&
4397 !LD->isVolatile()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004398 if (ISD::isNON_TRUNCStore(Chain.Val)) {
4399 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4400 if (PrevST->getBasePtr() == Ptr &&
4401 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004402 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00004403 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004404 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00004405
Jim Laskey7ca56af2006-10-11 13:47:09 +00004406 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00004407 // Walk up chain skipping non-aliasing memory nodes.
4408 SDOperand BetterChain = FindBetterChain(N, Chain);
4409
Jim Laskey6ff23e52006-10-04 16:53:27 +00004410 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004411 if (Chain != BetterChain) {
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004412 SDOperand ReplLoad;
4413
Jim Laskey279f0532006-09-25 16:29:54 +00004414 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004415 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4416 ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
Duncan Sandsdc846502007-10-28 12:59:45 +00004417 LD->getSrcValue(), LD->getSrcValueOffset(),
4418 LD->isVolatile(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004419 } else {
4420 ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4421 LD->getValueType(0),
4422 BetterChain, Ptr, LD->getSrcValue(),
4423 LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004424 LD->getMemoryVT(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00004425 LD->isVolatile(),
4426 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00004427 }
Jim Laskey279f0532006-09-25 16:29:54 +00004428
Jim Laskey6ff23e52006-10-04 16:53:27 +00004429 // Create token factor to keep old chain connected.
Jim Laskey288af5e2006-09-25 19:32:58 +00004430 SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4431 Chain, ReplLoad.getValue(1));
Jim Laskey6ff23e52006-10-04 16:53:27 +00004432
Jim Laskey274062c2006-10-13 23:32:28 +00004433 // Replace uses with load result and token factor. Don't add users
4434 // to work list.
4435 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004436 }
4437 }
4438
Evan Cheng7fc033a2006-11-03 03:06:21 +00004439 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004440 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng7fc033a2006-11-03 03:06:21 +00004441 return SDOperand(N, 0);
4442
Chris Lattner01a22022005-10-10 22:04:48 +00004443 return SDOperand();
4444}
4445
Chris Lattner07649d92008-01-08 23:08:06 +00004446
Chris Lattner87514ca2005-10-10 22:31:19 +00004447SDOperand DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00004448 StoreSDNode *ST = cast<StoreSDNode>(N);
4449 SDOperand Chain = ST->getChain();
4450 SDOperand Value = ST->getValue();
4451 SDOperand Ptr = ST->getBasePtr();
Jim Laskey7aed46c2006-10-11 18:55:16 +00004452
Chris Lattner00161a62008-01-25 07:20:16 +00004453 // Try to infer better alignment information than the store already has.
4454 if (ST->isUnindexed()) {
4455 if (unsigned Align = InferAlignment(Ptr, DAG)) {
4456 if (Align > ST->getAlignment())
4457 return DAG.getTruncStore(Chain, Value, Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004458 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner00161a62008-01-25 07:20:16 +00004459 ST->isVolatile(), Align);
4460 }
4461 }
4462
Evan Cheng59d5b682007-05-07 21:27:48 +00004463 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00004464 // resultant store does not need a higher alignment than the original.
Dale Johannesen98a6c622007-05-16 22:45:30 +00004465 if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004466 ST->isUnindexed()) {
Evan Cheng59d5b682007-05-07 21:27:48 +00004467 unsigned Align = ST->getAlignment();
4468 MVT::ValueType SVT = Value.getOperand(0).getValueType();
4469 unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
Dan Gohmanfcc4dd92007-05-18 18:41:29 +00004470 getABITypeAlignment(MVT::getTypeForValueType(SVT));
Evan Chengc2cd2b22007-05-07 21:36:06 +00004471 if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
Evan Cheng59d5b682007-05-07 21:27:48 +00004472 return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004473 ST->getSrcValueOffset(), ST->isVolatile(), Align);
Jim Laskey279f0532006-09-25 16:29:54 +00004474 }
4475
Nate Begeman2cbba892006-12-11 02:23:46 +00004476 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00004477 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Evan Cheng25ece662006-12-11 17:25:19 +00004478 if (Value.getOpcode() != ISD::TargetConstantFP) {
4479 SDOperand Tmp;
Chris Lattner62be1a72006-12-12 04:16:14 +00004480 switch (CFP->getValueType(0)) {
4481 default: assert(0 && "Unknown FP type");
Dale Johannesenc7b21d52007-09-18 18:36:59 +00004482 case MVT::f80: // We don't do this for these yet.
4483 case MVT::f128:
4484 case MVT::ppcf128:
4485 break;
Chris Lattner62be1a72006-12-12 04:16:14 +00004486 case MVT::f32:
4487 if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004488 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4489 convertToAPInt().getZExtValue(), MVT::i32);
Chris Lattner62be1a72006-12-12 04:16:14 +00004490 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004491 ST->getSrcValueOffset(), ST->isVolatile(),
4492 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004493 }
4494 break;
4495 case MVT::f64:
4496 if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004497 Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4498 getZExtValue(), MVT::i64);
Chris Lattner62be1a72006-12-12 04:16:14 +00004499 return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004500 ST->getSrcValueOffset(), ST->isVolatile(),
4501 ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004502 } else if (TLI.isTypeLegal(MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00004503 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00004504 // argument passing. Since this is so common, custom legalize the
4505 // 64-bit integer store into two 32-bit stores.
Dale Johannesen9d5f4562007-09-12 03:30:33 +00004506 uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner62be1a72006-12-12 04:16:14 +00004507 SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4508 SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00004509 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00004510
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004511 int SVOffset = ST->getSrcValueOffset();
4512 unsigned Alignment = ST->getAlignment();
4513 bool isVolatile = ST->isVolatile();
4514
Chris Lattner62be1a72006-12-12 04:16:14 +00004515 SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004516 ST->getSrcValueOffset(),
4517 isVolatile, ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00004518 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4519 DAG.getConstant(4, Ptr.getValueType()));
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004520 SVOffset += 4;
Duncan Sandsdc846502007-10-28 12:59:45 +00004521 Alignment = MinAlign(Alignment, 4U);
Chris Lattner62be1a72006-12-12 04:16:14 +00004522 SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004523 SVOffset, isVolatile, Alignment);
Chris Lattner62be1a72006-12-12 04:16:14 +00004524 return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4525 }
4526 break;
Evan Cheng25ece662006-12-11 17:25:19 +00004527 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004528 }
Nate Begeman2cbba892006-12-11 02:23:46 +00004529 }
4530
Jim Laskey279f0532006-09-25 16:29:54 +00004531 if (CombinerAA) {
4532 // Walk up chain skipping non-aliasing memory nodes.
4533 SDOperand BetterChain = FindBetterChain(N, Chain);
4534
Jim Laskey6ff23e52006-10-04 16:53:27 +00004535 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00004536 if (Chain != BetterChain) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00004537 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004538 SDOperand ReplStore;
4539 if (ST->isTruncatingStore()) {
4540 ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004541 ST->getSrcValue(),ST->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004542 ST->getMemoryVT(),
Chris Lattner4626b252008-01-17 07:20:38 +00004543 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004544 } else {
4545 ReplStore = DAG.getStore(BetterChain, Value, Ptr,
Chris Lattner4626b252008-01-17 07:20:38 +00004546 ST->getSrcValue(), ST->getSrcValueOffset(),
4547 ST->isVolatile(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00004548 }
4549
Jim Laskey279f0532006-09-25 16:29:54 +00004550 // Create token to keep both nodes around.
Jim Laskey274062c2006-10-13 23:32:28 +00004551 SDOperand Token =
4552 DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4553
4554 // Don't add users to work list.
4555 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00004556 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00004557 }
Chris Lattnerc33baaa2005-12-23 05:48:07 +00004558
Evan Cheng33dbedc2006-11-05 09:31:14 +00004559 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00004560 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Evan Cheng33dbedc2006-11-05 09:31:14 +00004561 return SDOperand(N, 0);
4562
Chris Lattner3c872852007-12-29 06:26:16 +00004563 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00004564 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Chris Lattner2b4c2792007-10-13 06:35:54 +00004565 MVT::isInteger(Value.getValueType())) {
4566 // See if we can simplify the input to this truncstore with knowledge that
4567 // only the low bits are being used. For example:
4568 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
4569 SDOperand Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004570 GetDemandedBits(Value,
4571 APInt::getLowBitsSet(Value.getValueSizeInBits(),
4572 MVT::getSizeInBits(ST->getMemoryVT())));
Chris Lattner2b4c2792007-10-13 06:35:54 +00004573 AddToWorkList(Value.Val);
4574 if (Shorter.Val)
4575 return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004576 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattner2b4c2792007-10-13 06:35:54 +00004577 ST->isVolatile(), ST->getAlignment());
Chris Lattnere33544c2007-10-13 06:58:48 +00004578
4579 // Otherwise, see if we can simplify the operation with
4580 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00004581 if (SimplifyDemandedBits(Value,
4582 APInt::getLowBitsSet(
4583 Value.getValueSizeInBits(),
4584 MVT::getSizeInBits(ST->getMemoryVT()))))
Chris Lattnere33544c2007-10-13 06:58:48 +00004585 return SDOperand(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00004586 }
4587
Chris Lattner3c872852007-12-29 06:26:16 +00004588 // If this is a load followed by a store to the same location, then the store
4589 // is dead/noop.
4590 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004591 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00004592 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00004593 // There can't be any side effects between the load and store, such as
4594 // a call or store.
Chris Lattner572dee72008-01-16 05:49:24 +00004595 Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00004596 // The store is dead, remove it.
4597 return Chain;
4598 }
4599 }
4600
Chris Lattnerddf89562008-01-17 19:59:44 +00004601 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4602 // truncating store. We can do this even if this is already a truncstore.
4603 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4604 && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4605 Value.Val->hasOneUse() && ST->isUnindexed() &&
4606 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004607 ST->getMemoryVT())) {
Chris Lattnerddf89562008-01-17 19:59:44 +00004608 return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004609 ST->getSrcValueOffset(), ST->getMemoryVT(),
Chris Lattnerddf89562008-01-17 19:59:44 +00004610 ST->isVolatile(), ST->getAlignment());
4611 }
4612
Chris Lattner87514ca2005-10-10 22:31:19 +00004613 return SDOperand();
4614}
4615
Chris Lattnerca242442006-03-19 01:27:56 +00004616SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4617 SDOperand InVec = N->getOperand(0);
4618 SDOperand InVal = N->getOperand(1);
4619 SDOperand EltNo = N->getOperand(2);
4620
4621 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4622 // vector with the inserted element.
4623 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4624 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004625 SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
Chris Lattnerca242442006-03-19 01:27:56 +00004626 if (Elt < Ops.size())
4627 Ops[Elt] = InVal;
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004628 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4629 &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00004630 }
4631
4632 return SDOperand();
4633}
4634
Evan Cheng513da432007-10-06 08:19:55 +00004635SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4636 SDOperand InVec = N->getOperand(0);
4637 SDOperand EltNo = N->getOperand(1);
4638
4639 // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4640 // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4641 if (isa<ConstantSDNode>(EltNo)) {
4642 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4643 bool NewLoad = false;
4644 if (Elt == 0) {
4645 MVT::ValueType VT = InVec.getValueType();
4646 MVT::ValueType EVT = MVT::getVectorElementType(VT);
4647 MVT::ValueType LVT = EVT;
4648 unsigned NumElts = MVT::getVectorNumElements(VT);
4649 if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4650 MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
Dan Gohman090b38a2007-10-29 20:44:42 +00004651 if (!MVT::isVector(BCVT) ||
4652 NumElts != MVT::getVectorNumElements(BCVT))
Evan Cheng513da432007-10-06 08:19:55 +00004653 return SDOperand();
4654 InVec = InVec.getOperand(0);
4655 EVT = MVT::getVectorElementType(BCVT);
4656 NewLoad = true;
4657 }
4658 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4659 InVec.getOperand(0).getValueType() == EVT &&
4660 ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4661 InVec.getOperand(0).hasOneUse()) {
4662 LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4663 unsigned Align = LN0->getAlignment();
4664 if (NewLoad) {
4665 // Check the resultant load doesn't need a higher alignment than the
4666 // original load.
4667 unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4668 getABITypeAlignment(MVT::getTypeForValueType(LVT));
4669 if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4670 return SDOperand();
4671 Align = NewAlign;
4672 }
4673
4674 return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4675 LN0->getSrcValue(), LN0->getSrcValueOffset(),
4676 LN0->isVolatile(), Align);
4677 }
4678 }
4679 }
4680 return SDOperand();
4681}
4682
4683
Dan Gohman7f321562007-06-25 16:23:39 +00004684SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4685 unsigned NumInScalars = N->getNumOperands();
4686 MVT::ValueType VT = N->getValueType(0);
4687 unsigned NumElts = MVT::getVectorNumElements(VT);
4688 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattnerca242442006-03-19 01:27:56 +00004689
Dan Gohman7f321562007-06-25 16:23:39 +00004690 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4691 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4692 // at most two distinct vectors, turn this into a shuffle node.
Chris Lattnerd7648c82006-03-28 20:28:38 +00004693 SDOperand VecIn1, VecIn2;
4694 for (unsigned i = 0; i != NumInScalars; ++i) {
4695 // Ignore undef inputs.
4696 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4697
Dan Gohman7f321562007-06-25 16:23:39 +00004698 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00004699 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00004700 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00004701 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4702 VecIn1 = VecIn2 = SDOperand(0, 0);
4703 break;
4704 }
4705
Dan Gohman7f321562007-06-25 16:23:39 +00004706 // If the input vector type disagrees with the result of the build_vector,
Chris Lattnerd7648c82006-03-28 20:28:38 +00004707 // we can't make a shuffle.
4708 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004709 if (ExtractedFromVec.getValueType() != VT) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00004710 VecIn1 = VecIn2 = SDOperand(0, 0);
4711 break;
4712 }
4713
4714 // Otherwise, remember this. We allow up to two distinct input vectors.
4715 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4716 continue;
4717
4718 if (VecIn1.Val == 0) {
4719 VecIn1 = ExtractedFromVec;
4720 } else if (VecIn2.Val == 0) {
4721 VecIn2 = ExtractedFromVec;
4722 } else {
4723 // Too many inputs.
4724 VecIn1 = VecIn2 = SDOperand(0, 0);
4725 break;
4726 }
4727 }
4728
4729 // If everything is good, we can make a shuffle operation.
4730 if (VecIn1.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004731 SmallVector<SDOperand, 8> BuildVecIndices;
Chris Lattnerd7648c82006-03-28 20:28:38 +00004732 for (unsigned i = 0; i != NumInScalars; ++i) {
4733 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Evan Cheng597a3bd2007-01-20 10:10:26 +00004734 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004735 continue;
4736 }
4737
4738 SDOperand Extract = N->getOperand(i);
4739
4740 // If extracting from the first vector, just use the index directly.
4741 if (Extract.getOperand(0) == VecIn1) {
4742 BuildVecIndices.push_back(Extract.getOperand(1));
4743 continue;
4744 }
4745
4746 // Otherwise, use InIdx + VecSize
4747 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00004748 BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
Chris Lattnerd7648c82006-03-28 20:28:38 +00004749 }
4750
4751 // Add count and size info.
Chris Lattner0bd48932008-01-17 07:00:52 +00004752 MVT::ValueType BuildVecVT = MVT::getVectorType(TLI.getPointerTy(), NumElts);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004753
Dan Gohman7f321562007-06-25 16:23:39 +00004754 // Return the new VECTOR_SHUFFLE node.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004755 SDOperand Ops[5];
4756 Ops[0] = VecIn1;
Chris Lattnercef896e2006-03-28 22:19:47 +00004757 if (VecIn2.Val) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004758 Ops[1] = VecIn2;
Chris Lattnercef896e2006-03-28 22:19:47 +00004759 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004760 // Use an undef build_vector as input for the second operand.
Chris Lattnercef896e2006-03-28 22:19:47 +00004761 std::vector<SDOperand> UnOps(NumInScalars,
4762 DAG.getNode(ISD::UNDEF,
Dan Gohman7f321562007-06-25 16:23:39 +00004763 EltType));
4764 Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004765 &UnOps[0], UnOps.size());
4766 AddToWorkList(Ops[1].Val);
Chris Lattnercef896e2006-03-28 22:19:47 +00004767 }
Dan Gohman7f321562007-06-25 16:23:39 +00004768 Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004769 &BuildVecIndices[0], BuildVecIndices.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004770 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
Chris Lattnerd7648c82006-03-28 20:28:38 +00004771 }
4772
4773 return SDOperand();
4774}
4775
Dan Gohman7f321562007-06-25 16:23:39 +00004776SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4777 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4778 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
4779 // inputs come from at most two distinct vectors, turn this into a shuffle
4780 // node.
4781
4782 // If we only have one input vector, we don't need to do any concatenation.
4783 if (N->getNumOperands() == 1) {
4784 return N->getOperand(0);
4785 }
4786
4787 return SDOperand();
4788}
4789
Chris Lattner66445d32006-03-28 22:11:53 +00004790SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004791 SDOperand ShufMask = N->getOperand(2);
4792 unsigned NumElts = ShufMask.getNumOperands();
4793
4794 // If the shuffle mask is an identity operation on the LHS, return the LHS.
4795 bool isIdentity = true;
4796 for (unsigned i = 0; i != NumElts; ++i) {
4797 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4798 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4799 isIdentity = false;
4800 break;
4801 }
4802 }
4803 if (isIdentity) return N->getOperand(0);
4804
4805 // If the shuffle mask is an identity operation on the RHS, return the RHS.
4806 isIdentity = true;
4807 for (unsigned i = 0; i != NumElts; ++i) {
4808 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4809 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4810 isIdentity = false;
4811 break;
4812 }
4813 }
4814 if (isIdentity) return N->getOperand(1);
Evan Chenge7bec0d2006-07-20 22:44:41 +00004815
4816 // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4817 // needed at all.
4818 bool isUnary = true;
Evan Cheng917ec982006-07-21 08:25:53 +00004819 bool isSplat = true;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004820 int VecNum = -1;
Reid Spencer9160a6a2006-07-25 20:44:41 +00004821 unsigned BaseIdx = 0;
Evan Chenge7bec0d2006-07-20 22:44:41 +00004822 for (unsigned i = 0; i != NumElts; ++i)
4823 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4824 unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4825 int V = (Idx < NumElts) ? 0 : 1;
Evan Cheng917ec982006-07-21 08:25:53 +00004826 if (VecNum == -1) {
Evan Chenge7bec0d2006-07-20 22:44:41 +00004827 VecNum = V;
Evan Cheng917ec982006-07-21 08:25:53 +00004828 BaseIdx = Idx;
4829 } else {
4830 if (BaseIdx != Idx)
4831 isSplat = false;
4832 if (VecNum != V) {
4833 isUnary = false;
4834 break;
4835 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00004836 }
4837 }
4838
4839 SDOperand N0 = N->getOperand(0);
4840 SDOperand N1 = N->getOperand(1);
4841 // Normalize unary shuffle so the RHS is undef.
4842 if (isUnary && VecNum == 1)
4843 std::swap(N0, N1);
4844
Evan Cheng917ec982006-07-21 08:25:53 +00004845 // If it is a splat, check if the argument vector is a build_vector with
4846 // all scalar elements the same.
4847 if (isSplat) {
4848 SDNode *V = N0.Val;
Evan Cheng917ec982006-07-21 08:25:53 +00004849
Dan Gohman7f321562007-06-25 16:23:39 +00004850 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00004851 // not the number of vector elements, look through it. Be careful not to
4852 // look though conversions that change things like v4f32 to v2f64.
Dan Gohman7f321562007-06-25 16:23:39 +00004853 if (V->getOpcode() == ISD::BIT_CONVERT) {
Evan Cheng59569222006-10-16 22:49:37 +00004854 SDOperand ConvInput = V->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004855 if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
Evan Cheng59569222006-10-16 22:49:37 +00004856 V = ConvInput.Val;
4857 }
4858
Dan Gohman7f321562007-06-25 16:23:39 +00004859 if (V->getOpcode() == ISD::BUILD_VECTOR) {
4860 unsigned NumElems = V->getNumOperands();
Evan Cheng917ec982006-07-21 08:25:53 +00004861 if (NumElems > BaseIdx) {
4862 SDOperand Base;
4863 bool AllSame = true;
4864 for (unsigned i = 0; i != NumElems; ++i) {
4865 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4866 Base = V->getOperand(i);
4867 break;
4868 }
4869 }
4870 // Splat of <u, u, u, u>, return <u, u, u, u>
4871 if (!Base.Val)
4872 return N0;
4873 for (unsigned i = 0; i != NumElems; ++i) {
Evan Chenge0480d22007-09-18 21:54:37 +00004874 if (V->getOperand(i) != Base) {
Evan Cheng917ec982006-07-21 08:25:53 +00004875 AllSame = false;
4876 break;
4877 }
4878 }
4879 // Splat of <x, x, x, x>, return <x, x, x, x>
4880 if (AllSame)
4881 return N0;
4882 }
4883 }
4884 }
4885
Evan Chenge7bec0d2006-07-20 22:44:41 +00004886 // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4887 // into an undef.
4888 if (isUnary || N0 == N1) {
Chris Lattner17614ea2006-04-08 05:34:25 +00004889 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4890 // first operand.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004891 SmallVector<SDOperand, 8> MappedOps;
Chris Lattner17614ea2006-04-08 05:34:25 +00004892 for (unsigned i = 0; i != NumElts; ++i) {
4893 if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4894 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4895 MappedOps.push_back(ShufMask.getOperand(i));
4896 } else {
4897 unsigned NewIdx =
4898 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4899 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4900 }
4901 }
Dan Gohman7f321562007-06-25 16:23:39 +00004902 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004903 &MappedOps[0], MappedOps.size());
Chris Lattner17614ea2006-04-08 05:34:25 +00004904 AddToWorkList(ShufMask.Val);
Dan Gohman7f321562007-06-25 16:23:39 +00004905 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4906 N0,
4907 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4908 ShufMask);
Chris Lattner17614ea2006-04-08 05:34:25 +00004909 }
Dan Gohman7f321562007-06-25 16:23:39 +00004910
Chris Lattnerf1d0c622006-03-31 22:16:43 +00004911 return SDOperand();
4912}
4913
Evan Cheng44f1f092006-04-20 08:56:16 +00004914/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00004915/// an AND to a vector_shuffle with the destination vector and a zero vector.
4916/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00004917/// vector_shuffle V, Zero, <0, 4, 2, 4>
4918SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4919 SDOperand LHS = N->getOperand(0);
4920 SDOperand RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00004921 if (N->getOpcode() == ISD::AND) {
4922 if (RHS.getOpcode() == ISD::BIT_CONVERT)
Evan Cheng44f1f092006-04-20 08:56:16 +00004923 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004924 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Evan Cheng44f1f092006-04-20 08:56:16 +00004925 std::vector<SDOperand> IdxOps;
4926 unsigned NumOps = RHS.getNumOperands();
Dan Gohman7f321562007-06-25 16:23:39 +00004927 unsigned NumElts = NumOps;
4928 MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
Evan Cheng44f1f092006-04-20 08:56:16 +00004929 for (unsigned i = 0; i != NumElts; ++i) {
4930 SDOperand Elt = RHS.getOperand(i);
4931 if (!isa<ConstantSDNode>(Elt))
4932 return SDOperand();
4933 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4934 IdxOps.push_back(DAG.getConstant(i, EVT));
4935 else if (cast<ConstantSDNode>(Elt)->isNullValue())
4936 IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4937 else
4938 return SDOperand();
4939 }
4940
4941 // Let's see if the target supports this vector_shuffle.
4942 if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4943 return SDOperand();
4944
Dan Gohman7f321562007-06-25 16:23:39 +00004945 // Return the new VECTOR_SHUFFLE node.
4946 MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00004947 std::vector<SDOperand> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004948 LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
Evan Cheng44f1f092006-04-20 08:56:16 +00004949 Ops.push_back(LHS);
4950 AddToWorkList(LHS.Val);
4951 std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
Dan Gohman7f321562007-06-25 16:23:39 +00004952 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004953 &ZeroOps[0], ZeroOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004954 Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004955 &IdxOps[0], IdxOps.size()));
Dan Gohman7f321562007-06-25 16:23:39 +00004956 SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004957 &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00004958 if (VT != LHS.getValueType()) {
4959 Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
Evan Cheng44f1f092006-04-20 08:56:16 +00004960 }
4961 return Result;
4962 }
4963 }
4964 return SDOperand();
4965}
4966
Dan Gohman7f321562007-06-25 16:23:39 +00004967/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4968SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4969 // After legalize, the target may be depending on adds and other
4970 // binary ops to provide legal ways to construct constants or other
4971 // things. Simplifying them may result in a loss of legality.
4972 if (AfterLegalize) return SDOperand();
4973
4974 MVT::ValueType VT = N->getValueType(0);
Dan Gohman05d92fe2007-07-13 20:03:40 +00004975 assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00004976
4977 MVT::ValueType EltType = MVT::getVectorElementType(VT);
Chris Lattneredab1b92006-04-02 03:25:57 +00004978 SDOperand LHS = N->getOperand(0);
4979 SDOperand RHS = N->getOperand(1);
Evan Cheng44f1f092006-04-20 08:56:16 +00004980 SDOperand Shuffle = XformToShuffleWithZero(N);
4981 if (Shuffle.Val) return Shuffle;
4982
Dan Gohman7f321562007-06-25 16:23:39 +00004983 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00004984 // this operation.
Dan Gohman7f321562007-06-25 16:23:39 +00004985 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
4986 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004987 SmallVector<SDOperand, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00004988 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Chris Lattneredab1b92006-04-02 03:25:57 +00004989 SDOperand LHSOp = LHS.getOperand(i);
4990 SDOperand RHSOp = RHS.getOperand(i);
4991 // If these two elements can't be folded, bail out.
4992 if ((LHSOp.getOpcode() != ISD::UNDEF &&
4993 LHSOp.getOpcode() != ISD::Constant &&
4994 LHSOp.getOpcode() != ISD::ConstantFP) ||
4995 (RHSOp.getOpcode() != ISD::UNDEF &&
4996 RHSOp.getOpcode() != ISD::Constant &&
4997 RHSOp.getOpcode() != ISD::ConstantFP))
4998 break;
Evan Cheng7b336a82006-05-31 06:08:35 +00004999 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00005000 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
5001 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00005002 if ((RHSOp.getOpcode() == ISD::Constant &&
5003 cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
5004 (RHSOp.getOpcode() == ISD::ConstantFP &&
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00005005 cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00005006 break;
5007 }
Dan Gohman7f321562007-06-25 16:23:39 +00005008 Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
Chris Lattner3e104b12006-04-08 04:15:24 +00005009 AddToWorkList(Ops.back().Val);
Chris Lattneredab1b92006-04-02 03:25:57 +00005010 assert((Ops.back().getOpcode() == ISD::UNDEF ||
5011 Ops.back().getOpcode() == ISD::Constant ||
5012 Ops.back().getOpcode() == ISD::ConstantFP) &&
5013 "Scalar binop didn't fold!");
5014 }
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00005015
Dan Gohman7f321562007-06-25 16:23:39 +00005016 if (Ops.size() == LHS.getNumOperands()) {
5017 MVT::ValueType VT = LHS.getValueType();
5018 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattnera4c5d8c2006-04-03 17:21:50 +00005019 }
Chris Lattneredab1b92006-04-02 03:25:57 +00005020 }
5021
5022 return SDOperand();
5023}
5024
Nate Begeman44728a72005-09-19 22:34:01 +00005025SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00005026 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
5027
5028 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
5029 cast<CondCodeSDNode>(N0.getOperand(2))->get());
5030 // If we got a simplified select_cc node back from SimplifySelectCC, then
5031 // break it down into a new SETCC node, and a new SELECT node, and then return
5032 // the SELECT node, since we were called with a SELECT node.
5033 if (SCC.Val) {
5034 // Check to see if we got a select_cc back (to turn into setcc/select).
5035 // Otherwise, just return whatever node we got back, like fabs.
5036 if (SCC.getOpcode() == ISD::SELECT_CC) {
5037 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
5038 SCC.getOperand(0), SCC.getOperand(1),
5039 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00005040 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005041 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
5042 SCC.getOperand(3), SETCC);
5043 }
5044 return SCC;
5045 }
Nate Begeman44728a72005-09-19 22:34:01 +00005046 return SDOperand();
5047}
5048
Chris Lattner40c62d52005-10-18 06:04:22 +00005049/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
5050/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00005051/// select. Callers of this should assume that TheSelect is deleted if this
5052/// returns true. As such, they should return the appropriate thing (e.g. the
5053/// node) back to the top-level of the DAG combiner loop to avoid it being
5054/// looked at.
Chris Lattner40c62d52005-10-18 06:04:22 +00005055///
5056bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
5057 SDOperand RHS) {
5058
5059 // If this is a select from two identical things, try to pull the operation
5060 // through the select.
5061 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
Chris Lattner40c62d52005-10-18 06:04:22 +00005062 // If this is a load and the token chain is identical, replace the select
5063 // of two loads with a load through a select of the address to load from.
5064 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
5065 // constants have been dropped into the constant pool.
Evan Cheng466685d2006-10-09 20:57:25 +00005066 if (LHS.getOpcode() == ISD::LOAD &&
Chris Lattner40c62d52005-10-18 06:04:22 +00005067 // Token chains must be identical.
Evan Cheng466685d2006-10-09 20:57:25 +00005068 LHS.getOperand(0) == RHS.getOperand(0)) {
5069 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
5070 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
5071
5072 // If this is an EXTLOAD, the VT's must match.
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005073 if (LLD->getMemoryVT() == RLD->getMemoryVT()) {
Evan Cheng466685d2006-10-09 20:57:25 +00005074 // FIXME: this conflates two src values, discarding one. This is not
5075 // the right thing to do, but nothing uses srcvalues now. When they do,
5076 // turn SrcValue into a list of locations.
5077 SDOperand Addr;
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005078 if (TheSelect->getOpcode() == ISD::SELECT) {
5079 // Check that the condition doesn't reach either load. If so, folding
5080 // this will induce a cycle into the DAG.
Evan Cheng917be682008-03-04 00:41:45 +00005081 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5082 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val)) {
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005083 Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
5084 TheSelect->getOperand(0), LLD->getBasePtr(),
5085 RLD->getBasePtr());
5086 }
5087 } else {
5088 // Check that the condition doesn't reach either load. If so, folding
5089 // this will induce a cycle into the DAG.
Evan Cheng917be682008-03-04 00:41:45 +00005090 if (!LLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5091 !RLD->isPredecessorOf(TheSelect->getOperand(0).Val) &&
5092 !LLD->isPredecessorOf(TheSelect->getOperand(1).Val) &&
5093 !RLD->isPredecessorOf(TheSelect->getOperand(1).Val)) {
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005094 Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
Evan Cheng466685d2006-10-09 20:57:25 +00005095 TheSelect->getOperand(0),
5096 TheSelect->getOperand(1),
5097 LLD->getBasePtr(), RLD->getBasePtr(),
5098 TheSelect->getOperand(4));
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005099 }
Evan Cheng466685d2006-10-09 20:57:25 +00005100 }
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005101
5102 if (Addr.Val) {
5103 SDOperand Load;
5104 if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
5105 Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
5106 Addr,LLD->getSrcValue(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00005107 LLD->getSrcValueOffset(),
5108 LLD->isVolatile(),
5109 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005110 else {
5111 Load = DAG.getExtLoad(LLD->getExtensionType(),
5112 TheSelect->getValueType(0),
5113 LLD->getChain(), Addr, LLD->getSrcValue(),
5114 LLD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005115 LLD->getMemoryVT(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00005116 LLD->isVolatile(),
5117 LLD->getAlignment());
Chris Lattnerc4e664b2007-01-16 05:59:59 +00005118 }
5119 // Users of the select now use the result of the load.
5120 CombineTo(TheSelect, Load);
5121
5122 // Users of the old loads now use the new load's chain. We know the
5123 // old-load value is dead now.
5124 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
5125 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
5126 return true;
5127 }
Evan Chengc5484282006-10-04 00:56:09 +00005128 }
Chris Lattner40c62d52005-10-18 06:04:22 +00005129 }
5130 }
5131
5132 return false;
5133}
5134
Nate Begeman44728a72005-09-19 22:34:01 +00005135SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
5136 SDOperand N2, SDOperand N3,
Chris Lattner1eba01e2007-04-11 06:50:51 +00005137 ISD::CondCode CC, bool NotExtCompare) {
Nate Begemanf845b452005-10-08 00:29:44 +00005138
5139 MVT::ValueType VT = N2.getValueType();
Nate Begemanf845b452005-10-08 00:29:44 +00005140 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
5141 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
5142 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
5143
5144 // Determine if the condition we're dealing with is constant
Scott Michel5b8f82e2008-03-10 15:42:14 +00005145 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultType(N0), N0, N1, CC, false);
Chris Lattner30f73e72006-10-14 03:52:46 +00005146 if (SCC.Val) AddToWorkList(SCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005147 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
5148
5149 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00005150 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00005151 return N2;
5152 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00005153 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00005154 return N3;
5155
5156 // Check to see if we can simplify the select into an fabs node
5157 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
5158 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00005159 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00005160 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
5161 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
5162 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
5163 N2 == N3.getOperand(0))
5164 return DAG.getNode(ISD::FABS, VT, N0);
5165
5166 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
5167 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
5168 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
5169 N2.getOperand(0) == N3)
5170 return DAG.getNode(ISD::FABS, VT, N3);
5171 }
5172 }
5173
5174 // Check to see if we can perform the "gzip trick", transforming
5175 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
Chris Lattnere3152e52006-09-20 06:41:35 +00005176 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Nate Begemanf845b452005-10-08 00:29:44 +00005177 MVT::isInteger(N0.getValueType()) &&
Chris Lattnere3152e52006-09-20 06:41:35 +00005178 MVT::isInteger(N2.getValueType()) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005179 (N1C->isNullValue() || // (a < 0) ? b : 0
5180 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Nate Begemanf845b452005-10-08 00:29:44 +00005181 MVT::ValueType XType = N0.getValueType();
5182 MVT::ValueType AType = N2.getValueType();
5183 if (XType >= AType) {
5184 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00005185 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00005186 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
5187 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Nate Begemanf845b452005-10-08 00:29:44 +00005188 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
5189 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
5190 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00005191 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005192 if (XType > AType) {
5193 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005194 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005195 }
5196 return DAG.getNode(ISD::AND, AType, Shift, N2);
5197 }
5198 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5199 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5200 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00005201 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005202 if (XType > AType) {
5203 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005204 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005205 }
5206 return DAG.getNode(ISD::AND, AType, Shift, N2);
5207 }
5208 }
Nate Begeman07ed4172005-10-10 21:26:48 +00005209
5210 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00005211 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Nate Begeman07ed4172005-10-10 21:26:48 +00005212 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
Chris Lattner1eba01e2007-04-11 06:50:51 +00005213
5214 // If the caller doesn't want us to simplify this into a zext of a compare,
5215 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00005216 if (NotExtCompare && N2C->getAPIntValue() == 1)
Chris Lattner1eba01e2007-04-11 06:50:51 +00005217 return SDOperand();
5218
Nate Begeman07ed4172005-10-10 21:26:48 +00005219 // Get a SetCC of the condition
5220 // FIXME: Should probably make sure that setcc is legal if we ever have a
5221 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00005222 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00005223 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00005224 if (AfterLegalize) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00005225 SCC = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Chris Lattner555d8d62006-12-07 22:36:47 +00005226 if (N2.getValueType() < SCC.getValueType())
5227 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
5228 else
5229 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00005230 } else {
5231 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00005232 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00005233 }
Chris Lattner5750df92006-03-01 04:03:14 +00005234 AddToWorkList(SCC.Val);
5235 AddToWorkList(Temp.Val);
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005236
Dan Gohman002e5d02008-03-13 22:13:53 +00005237 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00005238 return Temp;
Nate Begeman07ed4172005-10-10 21:26:48 +00005239 // shl setcc result by log2 n2c
5240 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00005241 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Nate Begeman07ed4172005-10-10 21:26:48 +00005242 TLI.getShiftAmountTy()));
5243 }
5244
Nate Begemanf845b452005-10-08 00:29:44 +00005245 // Check to see if this is the equivalent of setcc
5246 // FIXME: Turn all of these into setcc if setcc if setcc is legal
5247 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00005248 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Nate Begemanf845b452005-10-08 00:29:44 +00005249 MVT::ValueType XType = N0.getValueType();
Scott Michel5b8f82e2008-03-10 15:42:14 +00005250 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(N0))) {
5251 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultType(N0), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00005252 if (Res.getValueType() != VT)
5253 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
5254 return Res;
5255 }
5256
5257 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
5258 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
5259 TLI.isOperationLegal(ISD::CTLZ, XType)) {
5260 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
5261 return DAG.getNode(ISD::SRL, XType, Ctlz,
5262 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
5263 TLI.getShiftAmountTy()));
5264 }
5265 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
5266 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
5267 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
5268 N0);
5269 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
5270 DAG.getConstant(~0ULL, XType));
5271 return DAG.getNode(ISD::SRL, XType,
5272 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
5273 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5274 TLI.getShiftAmountTy()));
5275 }
5276 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5277 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5278 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
5279 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5280 TLI.getShiftAmountTy()));
5281 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5282 }
5283 }
5284
5285 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5286 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5287 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
Chris Lattner1982ef22007-04-11 05:11:38 +00005288 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
5289 N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
5290 MVT::ValueType XType = N0.getValueType();
5291 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5292 DAG.getConstant(MVT::getSizeInBits(XType)-1,
5293 TLI.getShiftAmountTy()));
5294 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5295 AddToWorkList(Shift.Val);
5296 AddToWorkList(Add.Val);
5297 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5298 }
5299 // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5300 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5301 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5302 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5303 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
Nate Begemanf845b452005-10-08 00:29:44 +00005304 MVT::ValueType XType = N0.getValueType();
5305 if (SubC->isNullValue() && MVT::isInteger(XType)) {
5306 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5307 DAG.getConstant(MVT::getSizeInBits(XType)-1,
Chris Lattner1982ef22007-04-11 05:11:38 +00005308 TLI.getShiftAmountTy()));
Nate Begemanf845b452005-10-08 00:29:44 +00005309 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00005310 AddToWorkList(Shift.Val);
5311 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00005312 return DAG.getNode(ISD::XOR, XType, Add, Shift);
5313 }
5314 }
5315 }
Chris Lattner1982ef22007-04-11 05:11:38 +00005316
Nate Begeman44728a72005-09-19 22:34:01 +00005317 return SDOperand();
5318}
5319
Evan Chengfa1eb272007-02-08 22:13:59 +00005320/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Nate Begeman452d7be2005-09-16 00:54:12 +00005321SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00005322 SDOperand N1, ISD::CondCode Cond,
5323 bool foldBooleans) {
Evan Chengfa1eb272007-02-08 22:13:59 +00005324 TargetLowering::DAGCombinerInfo
5325 DagCombineInfo(DAG, !AfterLegalize, false, this);
5326 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
Nate Begeman452d7be2005-09-16 00:54:12 +00005327}
5328
Nate Begeman69575232005-10-20 02:15:44 +00005329/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5330/// return a DAG expression to select that will generate the same value by
5331/// multiplying by a magic number. See:
5332/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5333SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005334 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005335 SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5336
Andrew Lenharth232c9102006-06-12 16:07:18 +00005337 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005338 ii != ee; ++ii)
5339 AddToWorkList(*ii);
5340 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005341}
5342
5343/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5344/// return a DAG expression to select that will generate the same value by
5345/// multiplying by a magic number. See:
5346/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5347SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00005348 std::vector<SDNode*> Built;
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005349 SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00005350
Andrew Lenharth232c9102006-06-12 16:07:18 +00005351 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00005352 ii != ee; ++ii)
5353 AddToWorkList(*ii);
5354 return S;
Nate Begeman69575232005-10-20 02:15:44 +00005355}
5356
Jim Laskey71382342006-10-07 23:37:56 +00005357/// FindBaseOffset - Return true if base is known not to alias with anything
5358/// but itself. Provides base object and offset as results.
5359static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5360 // Assume it is a primitive operation.
5361 Base = Ptr; Offset = 0;
5362
5363 // If it's an adding a simple constant then integrate the offset.
5364 if (Base.getOpcode() == ISD::ADD) {
5365 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5366 Base = Base.getOperand(0);
5367 Offset += C->getValue();
5368 }
5369 }
5370
5371 // If it's any of the following then it can't alias with anything but itself.
5372 return isa<FrameIndexSDNode>(Base) ||
5373 isa<ConstantPoolSDNode>(Base) ||
5374 isa<GlobalAddressSDNode>(Base);
5375}
5376
5377/// isAlias - Return true if there is any possibility that the two addresses
5378/// overlap.
Jim Laskey096c22e2006-10-18 12:29:57 +00005379bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5380 const Value *SrcValue1, int SrcValueOffset1,
5381 SDOperand Ptr2, int64_t Size2,
5382 const Value *SrcValue2, int SrcValueOffset2)
5383{
Jim Laskey71382342006-10-07 23:37:56 +00005384 // If they are the same then they must be aliases.
5385 if (Ptr1 == Ptr2) return true;
5386
5387 // Gather base node and offset information.
5388 SDOperand Base1, Base2;
5389 int64_t Offset1, Offset2;
5390 bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5391 bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5392
5393 // If they have a same base address then...
5394 if (Base1 == Base2) {
5395 // Check to see if the addresses overlap.
5396 return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5397 }
5398
Jim Laskey096c22e2006-10-18 12:29:57 +00005399 // If we know both bases then they can't alias.
5400 if (KnownBase1 && KnownBase2) return false;
5401
Jim Laskey07a27092006-10-18 19:08:31 +00005402 if (CombinerGlobalAA) {
5403 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00005404 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5405 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5406 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Jim Laskey07a27092006-10-18 19:08:31 +00005407 AliasAnalysis::AliasResult AAResult =
Jim Laskey096c22e2006-10-18 12:29:57 +00005408 AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
Jim Laskey07a27092006-10-18 19:08:31 +00005409 if (AAResult == AliasAnalysis::NoAlias)
5410 return false;
5411 }
Jim Laskey096c22e2006-10-18 12:29:57 +00005412
5413 // Otherwise we have to assume they alias.
5414 return true;
Jim Laskey71382342006-10-07 23:37:56 +00005415}
5416
5417/// FindAliasInfo - Extracts the relevant alias information from the memory
5418/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00005419bool DAGCombiner::FindAliasInfo(SDNode *N,
Jim Laskey096c22e2006-10-18 12:29:57 +00005420 SDOperand &Ptr, int64_t &Size,
5421 const Value *&SrcValue, int &SrcValueOffset) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005422 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5423 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005424 Size = MVT::getSizeInBits(LD->getMemoryVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005425 SrcValue = LD->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005426 SrcValueOffset = LD->getSrcValueOffset();
Jim Laskey71382342006-10-07 23:37:56 +00005427 return true;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005428 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Jim Laskey7ca56af2006-10-11 13:47:09 +00005429 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005430 Size = MVT::getSizeInBits(ST->getMemoryVT()) >> 3;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005431 SrcValue = ST->getSrcValue();
Jim Laskey096c22e2006-10-18 12:29:57 +00005432 SrcValueOffset = ST->getSrcValueOffset();
Jim Laskey7ca56af2006-10-11 13:47:09 +00005433 } else {
Jim Laskey71382342006-10-07 23:37:56 +00005434 assert(0 && "FindAliasInfo expected a memory operand");
Jim Laskey71382342006-10-07 23:37:56 +00005435 }
5436
5437 return false;
5438}
5439
Jim Laskey6ff23e52006-10-04 16:53:27 +00005440/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5441/// looking for aliasing nodes and adding them to the Aliases vector.
Jim Laskeybc588b82006-10-05 15:07:25 +00005442void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
Jim Laskey6ff23e52006-10-04 16:53:27 +00005443 SmallVector<SDOperand, 8> &Aliases) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005444 SmallVector<SDOperand, 8> Chains; // List of chains to visit.
Jim Laskey6ff23e52006-10-04 16:53:27 +00005445 std::set<SDNode *> Visited; // Visited node set.
5446
Jim Laskey279f0532006-09-25 16:29:54 +00005447 // Get alias information for node.
5448 SDOperand Ptr;
5449 int64_t Size;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005450 const Value *SrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005451 int SrcValueOffset;
5452 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
Jim Laskey279f0532006-09-25 16:29:54 +00005453
Jim Laskey6ff23e52006-10-04 16:53:27 +00005454 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00005455 Chains.push_back(OriginalChain);
Jim Laskey6ff23e52006-10-04 16:53:27 +00005456
Jim Laskeybc588b82006-10-05 15:07:25 +00005457 // Look at each chain and determine if it is an alias. If so, add it to the
5458 // aliases list. If not, then continue up the chain looking for the next
5459 // candidate.
5460 while (!Chains.empty()) {
5461 SDOperand Chain = Chains.back();
5462 Chains.pop_back();
Jim Laskey6ff23e52006-10-04 16:53:27 +00005463
Jim Laskeybc588b82006-10-05 15:07:25 +00005464 // Don't bother if we've been before.
5465 if (Visited.find(Chain.Val) != Visited.end()) continue;
5466 Visited.insert(Chain.Val);
5467
5468 switch (Chain.getOpcode()) {
5469 case ISD::EntryToken:
5470 // Entry token is ideal chain operand, but handled in FindBetterChain.
5471 break;
Jim Laskey6ff23e52006-10-04 16:53:27 +00005472
Jim Laskeybc588b82006-10-05 15:07:25 +00005473 case ISD::LOAD:
5474 case ISD::STORE: {
5475 // Get alias information for Chain.
5476 SDOperand OpPtr;
5477 int64_t OpSize;
Jim Laskey7ca56af2006-10-11 13:47:09 +00005478 const Value *OpSrcValue;
Jim Laskey096c22e2006-10-18 12:29:57 +00005479 int OpSrcValueOffset;
5480 bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5481 OpSrcValue, OpSrcValueOffset);
Jim Laskeybc588b82006-10-05 15:07:25 +00005482
5483 // If chain is alias then stop here.
5484 if (!(IsLoad && IsOpLoad) &&
Jim Laskey096c22e2006-10-18 12:29:57 +00005485 isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5486 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00005487 Aliases.push_back(Chain);
5488 } else {
5489 // Look further up the chain.
5490 Chains.push_back(Chain.getOperand(0));
5491 // Clean up old chain.
5492 AddToWorkList(Chain.Val);
Jim Laskey279f0532006-09-25 16:29:54 +00005493 }
Jim Laskeybc588b82006-10-05 15:07:25 +00005494 break;
5495 }
5496
5497 case ISD::TokenFactor:
5498 // We have to check each of the operands of the token factor, so we queue
5499 // then up. Adding the operands to the queue (stack) in reverse order
5500 // maintains the original order and increases the likelihood that getNode
5501 // will find a matching token factor (CSE.)
5502 for (unsigned n = Chain.getNumOperands(); n;)
5503 Chains.push_back(Chain.getOperand(--n));
5504 // Eliminate the token factor if we can.
5505 AddToWorkList(Chain.Val);
5506 break;
5507
5508 default:
5509 // For all other instructions we will just have to take what we can get.
5510 Aliases.push_back(Chain);
5511 break;
Jim Laskey279f0532006-09-25 16:29:54 +00005512 }
5513 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00005514}
5515
5516/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5517/// for a better chain (aliasing node.)
5518SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5519 SmallVector<SDOperand, 8> Aliases; // Ops for replacing token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00005520
Jim Laskey6ff23e52006-10-04 16:53:27 +00005521 // Accumulate all the aliases to this node.
5522 GatherAllAliases(N, OldChain, Aliases);
5523
5524 if (Aliases.size() == 0) {
5525 // If no operands then chain to entry token.
5526 return DAG.getEntryNode();
5527 } else if (Aliases.size() == 1) {
5528 // If a single operand then chain to it. We don't need to revisit it.
5529 return Aliases[0];
5530 }
5531
5532 // Construct a custom tailored token factor.
5533 SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5534 &Aliases[0], Aliases.size());
5535
5536 // Make sure the old chain gets cleaned up.
5537 if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5538
5539 return NewChain;
Jim Laskey279f0532006-09-25 16:29:54 +00005540}
5541
Nate Begeman1d4d4142005-09-01 00:19:25 +00005542// SelectionDAG::Combine - This is the entry point for the file.
5543//
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005544void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
Chris Lattner938ab022007-01-16 04:55:25 +00005545 if (!RunningAfterLegalize && ViewDAGCombine1)
5546 viewGraph();
5547 if (RunningAfterLegalize && ViewDAGCombine2)
5548 viewGraph();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005549 /// run - This is the main entry point to this class.
5550 ///
Jim Laskeyc7c3f112006-10-16 20:52:31 +00005551 DAGCombiner(*this, AA).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005552}