blob: 6bb4ea23a529cc046defc14989cc06963e06e76d [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
12//
13// FIXME: Missing folds
14// sdiv, udiv, srem, urem (X, const) where X is an integer can be expanded into
15// a sequence of multiplies, shifts, and adds. This should be controlled by
16// some kind of hint from the target that int div is expensive.
17// various folds of mulh[s,u] by constants such as -1, powers of 2, etc.
18//
Nate Begeman44728a72005-09-19 22:34:01 +000019// FIXME: select C, pow2, pow2 -> something smart
20// FIXME: trunc(select X, Y, Z) -> select X, trunc(Y), trunc(Z)
Nate Begeman44728a72005-09-19 22:34:01 +000021// FIXME: Dead stores -> nuke
Chris Lattner40c62d52005-10-18 06:04:22 +000022// FIXME: shr X, (and Y,31) -> shr X, Y (TRICKY!)
Nate Begeman1d4d4142005-09-01 00:19:25 +000023// FIXME: mul (x, const) -> shifts + adds
Nate Begeman1d4d4142005-09-01 00:19:25 +000024// FIXME: undef values
Nate Begeman4ebd8052005-09-01 23:24:04 +000025// FIXME: make truncate see through SIGN_EXTEND and AND
Nate Begeman646d7e22005-09-02 21:18:40 +000026// FIXME: divide by zero is currently left unfolded. do we want to turn this
27// into an undef?
Nate Begemanf845b452005-10-08 00:29:44 +000028// FIXME: select ne (select cc, 1, 0), 0, true, false -> select cc, true, false
Nate Begeman1d4d4142005-09-01 00:19:25 +000029//
30//===----------------------------------------------------------------------===//
31
32#define DEBUG_TYPE "dagcombine"
33#include "llvm/ADT/Statistic.h"
34#include "llvm/CodeGen/SelectionDAG.h"
Nate Begeman2300f552005-09-07 00:15:36 +000035#include "llvm/Support/Debug.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000036#include "llvm/Support/MathExtras.h"
37#include "llvm/Target/TargetLowering.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000038#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000039#include <cmath>
Chris Lattner2c2c6c62006-01-22 23:41:00 +000040#include <iostream>
Nate Begeman1d4d4142005-09-01 00:19:25 +000041using namespace llvm;
42
43namespace {
44 Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined");
45
46 class DAGCombiner {
47 SelectionDAG &DAG;
48 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000049 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000050
51 // Worklist of all of the nodes that need to be simplified.
52 std::vector<SDNode*> WorkList;
53
54 /// AddUsersToWorkList - When an instruction is simplified, add all users of
55 /// the instruction to the work lists because they might get more simplified
56 /// now.
57 ///
58 void AddUsersToWorkList(SDNode *N) {
59 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000060 UI != UE; ++UI)
61 WorkList.push_back(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000062 }
63
64 /// removeFromWorkList - remove all instances of N from the worklist.
Chris Lattner5750df92006-03-01 04:03:14 +000065 ///
Nate Begeman1d4d4142005-09-01 00:19:25 +000066 void removeFromWorkList(SDNode *N) {
67 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
68 WorkList.end());
69 }
70
Chris Lattner24664722006-03-01 04:53:38 +000071 public:
Chris Lattner5750df92006-03-01 04:03:14 +000072 void AddToWorkList(SDNode *N) {
73 WorkList.push_back(N);
74 }
75
Chris Lattner01a22022005-10-10 22:04:48 +000076 SDOperand CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner87514ca2005-10-10 22:31:19 +000077 ++NodesCombined;
Chris Lattner01a22022005-10-10 22:04:48 +000078 DEBUG(std::cerr << "\nReplacing "; N->dump();
79 std::cerr << "\nWith: "; To[0].Val->dump();
80 std::cerr << " and " << To.size()-1 << " other values\n");
81 std::vector<SDNode*> NowDead;
82 DAG.ReplaceAllUsesWith(N, To, &NowDead);
83
84 // Push the new nodes and any users onto the worklist
85 for (unsigned i = 0, e = To.size(); i != e; ++i) {
86 WorkList.push_back(To[i].Val);
87 AddUsersToWorkList(To[i].Val);
88 }
89
90 // Nodes can end up on the worklist more than once. Make sure we do
91 // not process a node that has been replaced.
92 removeFromWorkList(N);
93 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
94 removeFromWorkList(NowDead[i]);
95
96 // Finally, since the node is now dead, remove it from the graph.
97 DAG.DeleteNode(N);
98 return SDOperand(N, 0);
99 }
Nate Begeman368e18d2006-02-16 21:11:51 +0000100
Chris Lattner24664722006-03-01 04:53:38 +0000101 SDOperand CombineTo(SDNode *N, SDOperand Res) {
102 std::vector<SDOperand> To;
103 To.push_back(Res);
104 return CombineTo(N, To);
105 }
106
107 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
108 std::vector<SDOperand> To;
109 To.push_back(Res0);
110 To.push_back(Res1);
111 return CombineTo(N, To);
112 }
113 private:
114
Chris Lattner012f2412006-02-17 21:58:01 +0000115 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000116 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000117 /// propagation. If so, return true.
118 bool SimplifyDemandedBits(SDOperand Op) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000119 TargetLowering::TargetLoweringOpt TLO(DAG);
120 uint64_t KnownZero, KnownOne;
Chris Lattner012f2412006-02-17 21:58:01 +0000121 uint64_t Demanded = MVT::getIntVTBitMask(Op.getValueType());
122 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
123 return false;
124
125 // Revisit the node.
126 WorkList.push_back(Op.Val);
127
128 // Replace the old value with the new one.
129 ++NodesCombined;
130 DEBUG(std::cerr << "\nReplacing "; TLO.Old.Val->dump();
131 std::cerr << "\nWith: "; TLO.New.Val->dump());
132
133 std::vector<SDNode*> NowDead;
134 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, NowDead);
135
Chris Lattner7d20d392006-02-20 06:51:04 +0000136 // Push the new node and any (possibly new) users onto the worklist.
Chris Lattner012f2412006-02-17 21:58:01 +0000137 WorkList.push_back(TLO.New.Val);
138 AddUsersToWorkList(TLO.New.Val);
139
140 // Nodes can end up on the worklist more than once. Make sure we do
141 // not process a node that has been replaced.
Chris Lattner012f2412006-02-17 21:58:01 +0000142 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
143 removeFromWorkList(NowDead[i]);
144
Chris Lattner7d20d392006-02-20 06:51:04 +0000145 // Finally, if the node is now dead, remove it from the graph. The node
146 // may not be dead if the replacement process recursively simplified to
147 // something else needing this node.
148 if (TLO.Old.Val->use_empty()) {
149 removeFromWorkList(TLO.Old.Val);
150 DAG.DeleteNode(TLO.Old.Val);
151 }
Chris Lattner012f2412006-02-17 21:58:01 +0000152 return true;
Nate Begeman368e18d2006-02-16 21:11:51 +0000153 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000154
Nate Begeman1d4d4142005-09-01 00:19:25 +0000155 /// visit - call the node-specific routine that knows how to fold each
156 /// particular type of node.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000157 SDOperand visit(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000158
159 // Visitation implementation - Implement dag node combining for different
160 // node types. The semantics are as follows:
161 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000162 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000163 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000164 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000165 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000166 SDOperand visitTokenFactor(SDNode *N);
167 SDOperand visitADD(SDNode *N);
168 SDOperand visitSUB(SDNode *N);
169 SDOperand visitMUL(SDNode *N);
170 SDOperand visitSDIV(SDNode *N);
171 SDOperand visitUDIV(SDNode *N);
172 SDOperand visitSREM(SDNode *N);
173 SDOperand visitUREM(SDNode *N);
174 SDOperand visitMULHU(SDNode *N);
175 SDOperand visitMULHS(SDNode *N);
176 SDOperand visitAND(SDNode *N);
177 SDOperand visitOR(SDNode *N);
178 SDOperand visitXOR(SDNode *N);
Chris Lattneredab1b92006-04-02 03:25:57 +0000179 SDOperand visitVBinOp(SDNode *N, ISD::NodeType IntOp, ISD::NodeType FPOp);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000180 SDOperand visitSHL(SDNode *N);
181 SDOperand visitSRA(SDNode *N);
182 SDOperand visitSRL(SDNode *N);
183 SDOperand visitCTLZ(SDNode *N);
184 SDOperand visitCTTZ(SDNode *N);
185 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000186 SDOperand visitSELECT(SDNode *N);
187 SDOperand visitSELECT_CC(SDNode *N);
188 SDOperand visitSETCC(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000189 SDOperand visitSIGN_EXTEND(SDNode *N);
190 SDOperand visitZERO_EXTEND(SDNode *N);
191 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
192 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000193 SDOperand visitBIT_CONVERT(SDNode *N);
Chris Lattner6258fb22006-04-02 02:53:43 +0000194 SDOperand visitVBIT_CONVERT(SDNode *N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000195 SDOperand visitFADD(SDNode *N);
196 SDOperand visitFSUB(SDNode *N);
197 SDOperand visitFMUL(SDNode *N);
198 SDOperand visitFDIV(SDNode *N);
199 SDOperand visitFREM(SDNode *N);
Chris Lattner12d83032006-03-05 05:30:57 +0000200 SDOperand visitFCOPYSIGN(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000201 SDOperand visitSINT_TO_FP(SDNode *N);
202 SDOperand visitUINT_TO_FP(SDNode *N);
203 SDOperand visitFP_TO_SINT(SDNode *N);
204 SDOperand visitFP_TO_UINT(SDNode *N);
205 SDOperand visitFP_ROUND(SDNode *N);
206 SDOperand visitFP_ROUND_INREG(SDNode *N);
207 SDOperand visitFP_EXTEND(SDNode *N);
208 SDOperand visitFNEG(SDNode *N);
209 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000210 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000211 SDOperand visitBR_CC(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000212 SDOperand visitLOAD(SDNode *N);
Chris Lattner29cd7db2006-03-31 18:10:41 +0000213 SDOperand visitXEXTLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000214 SDOperand visitSTORE(SDNode *N);
Chris Lattnerca242442006-03-19 01:27:56 +0000215 SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
216 SDOperand visitVINSERT_VECTOR_ELT(SDNode *N);
Chris Lattnerd7648c82006-03-28 20:28:38 +0000217 SDOperand visitVBUILD_VECTOR(SDNode *N);
Chris Lattner66445d32006-03-28 22:11:53 +0000218 SDOperand visitVECTOR_SHUFFLE(SDNode *N);
Chris Lattnerf1d0c622006-03-31 22:16:43 +0000219 SDOperand visitVVECTOR_SHUFFLE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000220
Nate Begemancd4d58c2006-02-03 06:46:56 +0000221 SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
222
Chris Lattner40c62d52005-10-18 06:04:22 +0000223 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Nate Begeman44728a72005-09-19 22:34:01 +0000224 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
225 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
226 SDOperand N3, ISD::CondCode CC);
Nate Begeman452d7be2005-09-16 00:54:12 +0000227 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000228 ISD::CondCode Cond, bool foldBooleans = true);
Chris Lattner6258fb22006-04-02 02:53:43 +0000229 SDOperand ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(SDNode *, MVT::ValueType);
Nate Begeman69575232005-10-20 02:15:44 +0000230 SDOperand BuildSDIV(SDNode *N);
231 SDOperand BuildUDIV(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000232public:
233 DAGCombiner(SelectionDAG &D)
Nate Begeman646d7e22005-09-02 21:18:40 +0000234 : DAG(D), TLI(D.getTargetLoweringInfo()), AfterLegalize(false) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000235
236 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000237 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000238 };
239}
240
Chris Lattner24664722006-03-01 04:53:38 +0000241//===----------------------------------------------------------------------===//
242// TargetLowering::DAGCombinerInfo implementation
243//===----------------------------------------------------------------------===//
244
245void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
246 ((DAGCombiner*)DC)->AddToWorkList(N);
247}
248
249SDOperand TargetLowering::DAGCombinerInfo::
250CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
251 return ((DAGCombiner*)DC)->CombineTo(N, To);
252}
253
254SDOperand TargetLowering::DAGCombinerInfo::
255CombineTo(SDNode *N, SDOperand Res) {
256 return ((DAGCombiner*)DC)->CombineTo(N, Res);
257}
258
259
260SDOperand TargetLowering::DAGCombinerInfo::
261CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
262 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
263}
264
265
266
267
268//===----------------------------------------------------------------------===//
269
270
Nate Begeman69575232005-10-20 02:15:44 +0000271struct ms {
272 int64_t m; // magic number
273 int64_t s; // shift amount
274};
275
276struct mu {
277 uint64_t m; // magic number
278 int64_t a; // add indicator
279 int64_t s; // shift amount
280};
281
282/// magic - calculate the magic numbers required to codegen an integer sdiv as
283/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
284/// or -1.
285static ms magic32(int32_t d) {
286 int32_t p;
287 uint32_t ad, anc, delta, q1, r1, q2, r2, t;
288 const uint32_t two31 = 0x80000000U;
289 struct ms mag;
290
291 ad = abs(d);
292 t = two31 + ((uint32_t)d >> 31);
293 anc = t - 1 - t%ad; // absolute value of nc
294 p = 31; // initialize p
295 q1 = two31/anc; // initialize q1 = 2p/abs(nc)
296 r1 = two31 - q1*anc; // initialize r1 = rem(2p,abs(nc))
297 q2 = two31/ad; // initialize q2 = 2p/abs(d)
298 r2 = two31 - q2*ad; // initialize r2 = rem(2p,abs(d))
299 do {
300 p = p + 1;
301 q1 = 2*q1; // update q1 = 2p/abs(nc)
302 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
303 if (r1 >= anc) { // must be unsigned comparison
304 q1 = q1 + 1;
305 r1 = r1 - anc;
306 }
307 q2 = 2*q2; // update q2 = 2p/abs(d)
308 r2 = 2*r2; // update r2 = rem(2p/abs(d))
309 if (r2 >= ad) { // must be unsigned comparison
310 q2 = q2 + 1;
311 r2 = r2 - ad;
312 }
313 delta = ad - r2;
314 } while (q1 < delta || (q1 == delta && r1 == 0));
315
316 mag.m = (int32_t)(q2 + 1); // make sure to sign extend
317 if (d < 0) mag.m = -mag.m; // resulting magic number
318 mag.s = p - 32; // resulting shift
319 return mag;
320}
321
322/// magicu - calculate the magic numbers required to codegen an integer udiv as
323/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
324static mu magicu32(uint32_t d) {
325 int32_t p;
326 uint32_t nc, delta, q1, r1, q2, r2;
327 struct mu magu;
328 magu.a = 0; // initialize "add" indicator
329 nc = - 1 - (-d)%d;
330 p = 31; // initialize p
331 q1 = 0x80000000/nc; // initialize q1 = 2p/nc
332 r1 = 0x80000000 - q1*nc; // initialize r1 = rem(2p,nc)
333 q2 = 0x7FFFFFFF/d; // initialize q2 = (2p-1)/d
334 r2 = 0x7FFFFFFF - q2*d; // initialize r2 = rem((2p-1),d)
335 do {
336 p = p + 1;
337 if (r1 >= nc - r1 ) {
338 q1 = 2*q1 + 1; // update q1
339 r1 = 2*r1 - nc; // update r1
340 }
341 else {
342 q1 = 2*q1; // update q1
343 r1 = 2*r1; // update r1
344 }
345 if (r2 + 1 >= d - r2) {
346 if (q2 >= 0x7FFFFFFF) magu.a = 1;
347 q2 = 2*q2 + 1; // update q2
348 r2 = 2*r2 + 1 - d; // update r2
349 }
350 else {
351 if (q2 >= 0x80000000) magu.a = 1;
352 q2 = 2*q2; // update q2
353 r2 = 2*r2 + 1; // update r2
354 }
355 delta = d - 1 - r2;
356 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
357 magu.m = q2 + 1; // resulting magic number
358 magu.s = p - 32; // resulting shift
359 return magu;
360}
361
362/// magic - calculate the magic numbers required to codegen an integer sdiv as
363/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
364/// or -1.
365static ms magic64(int64_t d) {
366 int64_t p;
367 uint64_t ad, anc, delta, q1, r1, q2, r2, t;
368 const uint64_t two63 = 9223372036854775808ULL; // 2^63
369 struct ms mag;
370
Chris Lattnerf75f2a02005-10-20 17:01:00 +0000371 ad = d >= 0 ? d : -d;
Nate Begeman69575232005-10-20 02:15:44 +0000372 t = two63 + ((uint64_t)d >> 63);
373 anc = t - 1 - t%ad; // absolute value of nc
374 p = 63; // initialize p
375 q1 = two63/anc; // initialize q1 = 2p/abs(nc)
376 r1 = two63 - q1*anc; // initialize r1 = rem(2p,abs(nc))
377 q2 = two63/ad; // initialize q2 = 2p/abs(d)
378 r2 = two63 - q2*ad; // initialize r2 = rem(2p,abs(d))
379 do {
380 p = p + 1;
381 q1 = 2*q1; // update q1 = 2p/abs(nc)
382 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
383 if (r1 >= anc) { // must be unsigned comparison
384 q1 = q1 + 1;
385 r1 = r1 - anc;
386 }
387 q2 = 2*q2; // update q2 = 2p/abs(d)
388 r2 = 2*r2; // update r2 = rem(2p/abs(d))
389 if (r2 >= ad) { // must be unsigned comparison
390 q2 = q2 + 1;
391 r2 = r2 - ad;
392 }
393 delta = ad - r2;
394 } while (q1 < delta || (q1 == delta && r1 == 0));
395
396 mag.m = q2 + 1;
397 if (d < 0) mag.m = -mag.m; // resulting magic number
398 mag.s = p - 64; // resulting shift
399 return mag;
400}
401
402/// magicu - calculate the magic numbers required to codegen an integer udiv as
403/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
404static mu magicu64(uint64_t d)
405{
406 int64_t p;
407 uint64_t nc, delta, q1, r1, q2, r2;
408 struct mu magu;
409 magu.a = 0; // initialize "add" indicator
410 nc = - 1 - (-d)%d;
411 p = 63; // initialize p
412 q1 = 0x8000000000000000ull/nc; // initialize q1 = 2p/nc
413 r1 = 0x8000000000000000ull - q1*nc; // initialize r1 = rem(2p,nc)
414 q2 = 0x7FFFFFFFFFFFFFFFull/d; // initialize q2 = (2p-1)/d
415 r2 = 0x7FFFFFFFFFFFFFFFull - q2*d; // initialize r2 = rem((2p-1),d)
416 do {
417 p = p + 1;
418 if (r1 >= nc - r1 ) {
419 q1 = 2*q1 + 1; // update q1
420 r1 = 2*r1 - nc; // update r1
421 }
422 else {
423 q1 = 2*q1; // update q1
424 r1 = 2*r1; // update r1
425 }
426 if (r2 + 1 >= d - r2) {
427 if (q2 >= 0x7FFFFFFFFFFFFFFFull) magu.a = 1;
428 q2 = 2*q2 + 1; // update q2
429 r2 = 2*r2 + 1 - d; // update r2
430 }
431 else {
432 if (q2 >= 0x8000000000000000ull) magu.a = 1;
433 q2 = 2*q2; // update q2
434 r2 = 2*r2 + 1; // update r2
435 }
436 delta = d - 1 - r2;
437 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
438 magu.m = q2 + 1; // resulting magic number
439 magu.s = p - 64; // resulting shift
440 return magu;
441}
442
Nate Begeman4ebd8052005-09-01 23:24:04 +0000443// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
444// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000445// Also, set the incoming LHS, RHS, and CC references to the appropriate
446// nodes based on the type of node we are checking. This simplifies life a
447// bit for the callers.
448static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
449 SDOperand &CC) {
450 if (N.getOpcode() == ISD::SETCC) {
451 LHS = N.getOperand(0);
452 RHS = N.getOperand(1);
453 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000454 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000455 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000456 if (N.getOpcode() == ISD::SELECT_CC &&
457 N.getOperand(2).getOpcode() == ISD::Constant &&
458 N.getOperand(3).getOpcode() == ISD::Constant &&
459 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000460 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
461 LHS = N.getOperand(0);
462 RHS = N.getOperand(1);
463 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000464 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000465 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000466 return false;
467}
468
Nate Begeman99801192005-09-07 23:25:52 +0000469// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
470// one use. If this is true, it allows the users to invert the operation for
471// free when it is profitable to do so.
472static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000473 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000474 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000475 return true;
476 return false;
477}
478
Nate Begeman452d7be2005-09-16 00:54:12 +0000479// FIXME: This should probably go in the ISD class rather than being duplicated
480// in several files.
481static bool isCommutativeBinOp(unsigned Opcode) {
482 switch (Opcode) {
483 case ISD::ADD:
484 case ISD::MUL:
485 case ISD::AND:
486 case ISD::OR:
487 case ISD::XOR: return true;
488 default: return false; // FIXME: Need commutative info for user ops!
489 }
490}
491
Nate Begemancd4d58c2006-02-03 06:46:56 +0000492SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
493 MVT::ValueType VT = N0.getValueType();
494 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
495 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
496 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
497 if (isa<ConstantSDNode>(N1)) {
498 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000499 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000500 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
501 } else if (N0.hasOneUse()) {
502 SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
Chris Lattner5750df92006-03-01 04:03:14 +0000503 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000504 return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
505 }
506 }
507 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
508 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
509 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
510 if (isa<ConstantSDNode>(N0)) {
511 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000512 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000513 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
514 } else if (N1.hasOneUse()) {
515 SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
Chris Lattner5750df92006-03-01 04:03:14 +0000516 AddToWorkList(OpNode.Val);
Nate Begemancd4d58c2006-02-03 06:46:56 +0000517 return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
518 }
519 }
520 return SDOperand();
521}
522
Nate Begeman4ebd8052005-09-01 23:24:04 +0000523void DAGCombiner::Run(bool RunningAfterLegalize) {
524 // set the instance variable, so that the various visit routines may use it.
525 AfterLegalize = RunningAfterLegalize;
526
Nate Begeman646d7e22005-09-02 21:18:40 +0000527 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000528 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
529 E = DAG.allnodes_end(); I != E; ++I)
530 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000531
Chris Lattner95038592005-10-05 06:35:28 +0000532 // Create a dummy node (which is not added to allnodes), that adds a reference
533 // to the root node, preventing it from being deleted, and tracking any
534 // changes of the root.
535 HandleSDNode Dummy(DAG.getRoot());
536
Chris Lattner24664722006-03-01 04:53:38 +0000537
538 /// DagCombineInfo - Expose the DAG combiner to the target combiner impls.
539 TargetLowering::DAGCombinerInfo
540 DagCombineInfo(DAG, !RunningAfterLegalize, this);
541
Nate Begeman1d4d4142005-09-01 00:19:25 +0000542 // while the worklist isn't empty, inspect the node on the end of it and
543 // try and combine it.
544 while (!WorkList.empty()) {
545 SDNode *N = WorkList.back();
546 WorkList.pop_back();
547
548 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000549 // N is deleted from the DAG, since they too may now be dead or may have a
550 // reduced number of uses, allowing other xforms.
551 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000552 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
553 WorkList.push_back(N->getOperand(i).Val);
554
Nate Begeman1d4d4142005-09-01 00:19:25 +0000555 removeFromWorkList(N);
Chris Lattner95038592005-10-05 06:35:28 +0000556 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000557 continue;
558 }
559
Nate Begeman83e75ec2005-09-06 04:43:02 +0000560 SDOperand RV = visit(N);
Chris Lattner24664722006-03-01 04:53:38 +0000561
562 // If nothing happened, try a target-specific DAG combine.
563 if (RV.Val == 0) {
564 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
565 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode()))
566 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
567 }
568
Nate Begeman83e75ec2005-09-06 04:43:02 +0000569 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000570 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000571 // If we get back the same node we passed in, rather than a new node or
572 // zero, we know that the node must have defined multiple values and
573 // CombineTo was used. Since CombineTo takes care of the worklist
574 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000575 if (RV.Val != N) {
Nate Begeman2300f552005-09-07 00:15:36 +0000576 DEBUG(std::cerr << "\nReplacing "; N->dump();
577 std::cerr << "\nWith: "; RV.Val->dump();
578 std::cerr << '\n');
Chris Lattner01a22022005-10-10 22:04:48 +0000579 std::vector<SDNode*> NowDead;
580 DAG.ReplaceAllUsesWith(N, std::vector<SDOperand>(1, RV), &NowDead);
Nate Begeman646d7e22005-09-02 21:18:40 +0000581
582 // Push the new node and any users onto the worklist
Nate Begeman83e75ec2005-09-06 04:43:02 +0000583 WorkList.push_back(RV.Val);
584 AddUsersToWorkList(RV.Val);
Nate Begeman646d7e22005-09-02 21:18:40 +0000585
586 // Nodes can end up on the worklist more than once. Make sure we do
587 // not process a node that has been replaced.
588 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000589 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
590 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000591
592 // Finally, since the node is now dead, remove it from the graph.
593 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000594 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000595 }
596 }
Chris Lattner95038592005-10-05 06:35:28 +0000597
598 // If the root changed (e.g. it was a dead load, update the root).
599 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000600}
601
Nate Begeman83e75ec2005-09-06 04:43:02 +0000602SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000603 switch(N->getOpcode()) {
604 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000605 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000606 case ISD::ADD: return visitADD(N);
607 case ISD::SUB: return visitSUB(N);
608 case ISD::MUL: return visitMUL(N);
609 case ISD::SDIV: return visitSDIV(N);
610 case ISD::UDIV: return visitUDIV(N);
611 case ISD::SREM: return visitSREM(N);
612 case ISD::UREM: return visitUREM(N);
613 case ISD::MULHU: return visitMULHU(N);
614 case ISD::MULHS: return visitMULHS(N);
615 case ISD::AND: return visitAND(N);
616 case ISD::OR: return visitOR(N);
617 case ISD::XOR: return visitXOR(N);
618 case ISD::SHL: return visitSHL(N);
619 case ISD::SRA: return visitSRA(N);
620 case ISD::SRL: return visitSRL(N);
621 case ISD::CTLZ: return visitCTLZ(N);
622 case ISD::CTTZ: return visitCTTZ(N);
623 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7be2005-09-16 00:54:12 +0000624 case ISD::SELECT: return visitSELECT(N);
625 case ISD::SELECT_CC: return visitSELECT_CC(N);
626 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000627 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
628 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
629 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
630 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000631 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner6258fb22006-04-02 02:53:43 +0000632 case ISD::VBIT_CONVERT: return visitVBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000633 case ISD::FADD: return visitFADD(N);
634 case ISD::FSUB: return visitFSUB(N);
635 case ISD::FMUL: return visitFMUL(N);
636 case ISD::FDIV: return visitFDIV(N);
637 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +0000638 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000639 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
640 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
641 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
642 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
643 case ISD::FP_ROUND: return visitFP_ROUND(N);
644 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
645 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
646 case ISD::FNEG: return visitFNEG(N);
647 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000648 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000649 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000650 case ISD::LOAD: return visitLOAD(N);
Chris Lattner29cd7db2006-03-31 18:10:41 +0000651 case ISD::EXTLOAD:
652 case ISD::SEXTLOAD:
653 case ISD::ZEXTLOAD: return visitXEXTLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000654 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +0000655 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
656 case ISD::VINSERT_VECTOR_ELT: return visitVINSERT_VECTOR_ELT(N);
Chris Lattnerd7648c82006-03-28 20:28:38 +0000657 case ISD::VBUILD_VECTOR: return visitVBUILD_VECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +0000658 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Chris Lattnerf1d0c622006-03-31 22:16:43 +0000659 case ISD::VVECTOR_SHUFFLE: return visitVVECTOR_SHUFFLE(N);
Chris Lattneredab1b92006-04-02 03:25:57 +0000660 case ISD::VADD: return visitVBinOp(N, ISD::ADD , ISD::FADD);
661 case ISD::VSUB: return visitVBinOp(N, ISD::SUB , ISD::FSUB);
662 case ISD::VMUL: return visitVBinOp(N, ISD::MUL , ISD::FMUL);
663 case ISD::VSDIV: return visitVBinOp(N, ISD::SDIV, ISD::FDIV);
664 case ISD::VUDIV: return visitVBinOp(N, ISD::UDIV, ISD::UDIV);
665 case ISD::VAND: return visitVBinOp(N, ISD::AND , ISD::AND);
666 case ISD::VOR: return visitVBinOp(N, ISD::OR , ISD::OR);
667 case ISD::VXOR: return visitVBinOp(N, ISD::XOR , ISD::XOR);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000668 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000669 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000670}
671
Nate Begeman83e75ec2005-09-06 04:43:02 +0000672SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Nate Begemanded49632005-10-13 03:11:28 +0000673 std::vector<SDOperand> Ops;
674 bool Changed = false;
675
Nate Begeman1d4d4142005-09-01 00:19:25 +0000676 // If the token factor has two operands and one is the entry token, replace
677 // the token factor with the other operand.
678 if (N->getNumOperands() == 2) {
679 if (N->getOperand(0).getOpcode() == ISD::EntryToken)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000680 return N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000681 if (N->getOperand(1).getOpcode() == ISD::EntryToken)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000682 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000683 }
Chris Lattner24edbb72005-10-13 22:10:05 +0000684
Nate Begemanded49632005-10-13 03:11:28 +0000685 // fold (tokenfactor (tokenfactor)) -> tokenfactor
686 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
687 SDOperand Op = N->getOperand(i);
688 if (Op.getOpcode() == ISD::TokenFactor && Op.hasOneUse()) {
Chris Lattnerac0f8f22006-03-13 18:37:30 +0000689 AddToWorkList(Op.Val); // Remove dead node.
Nate Begemanded49632005-10-13 03:11:28 +0000690 Changed = true;
691 for (unsigned j = 0, e = Op.getNumOperands(); j != e; ++j)
692 Ops.push_back(Op.getOperand(j));
693 } else {
694 Ops.push_back(Op);
695 }
696 }
697 if (Changed)
698 return DAG.getNode(ISD::TokenFactor, MVT::Other, Ops);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000699 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000700}
701
Nate Begeman83e75ec2005-09-06 04:43:02 +0000702SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000703 SDOperand N0 = N->getOperand(0);
704 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000705 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
706 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000707 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000708
709 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000710 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000711 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000712 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000713 if (N0C && !N1C)
714 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000715 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000716 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000717 return N0;
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000718 // fold ((c1-A)+c2) -> (c1+c2)-A
719 if (N1C && N0.getOpcode() == ISD::SUB)
720 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
721 return DAG.getNode(ISD::SUB, VT,
722 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
723 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000724 // reassociate add
725 SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
726 if (RADD.Val != 0)
727 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000728 // fold ((0-A) + B) -> B-A
729 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
730 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000731 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000732 // fold (A + (0-B)) -> A-B
733 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
734 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000735 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000736 // fold (A+(B-A)) -> B
737 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000738 return N1.getOperand(0);
Chris Lattner947c2892006-03-13 06:51:27 +0000739
Evan Cheng860771d2006-03-01 01:09:54 +0000740 if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
Nate Begemanb0d04a72006-02-18 02:40:58 +0000741 return SDOperand();
Chris Lattner947c2892006-03-13 06:51:27 +0000742
743 // fold (a+b) -> (a|b) iff a and b share no bits.
744 if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
745 uint64_t LHSZero, LHSOne;
746 uint64_t RHSZero, RHSOne;
747 uint64_t Mask = MVT::getIntVTBitMask(VT);
748 TLI.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
749 if (LHSZero) {
750 TLI.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
751
752 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
753 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
754 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
755 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
756 return DAG.getNode(ISD::OR, VT, N0, N1);
757 }
758 }
759
Nate Begeman83e75ec2005-09-06 04:43:02 +0000760 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000761}
762
Nate Begeman83e75ec2005-09-06 04:43:02 +0000763SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000764 SDOperand N0 = N->getOperand(0);
765 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000766 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
767 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000768 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000769
Chris Lattner854077d2005-10-17 01:07:11 +0000770 // fold (sub x, x) -> 0
771 if (N0 == N1)
772 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000773 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000774 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000775 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +0000776 // fold (sub x, c) -> (add x, -c)
777 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000778 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000779 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +0000780 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000781 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000782 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +0000783 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000784 return N0.getOperand(0);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000785 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000786}
787
Nate Begeman83e75ec2005-09-06 04:43:02 +0000788SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000789 SDOperand N0 = N->getOperand(0);
790 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000791 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
792 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +0000793 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000794
795 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000796 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000797 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000798 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000799 if (N0C && !N1C)
800 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000801 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +0000802 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000803 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000804 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +0000805 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +0000806 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000807 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +0000808 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +0000809 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +0000810 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +0000811 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +0000812 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
813 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
814 // FIXME: If the input is something that is easily negated (e.g. a
815 // single-use add), we should put the negate there.
816 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
817 DAG.getNode(ISD::SHL, VT, N0,
818 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
819 TLI.getShiftAmountTy())));
820 }
Andrew Lenharth50a0d422006-04-02 21:42:45 +0000821
822 //These two might be better as:
823 // mul x, ((1 << c) + cn) -> (x << c) + (x * cn)
824 // where TargetInfo tells us cn is a cheap constant to multiply by
825
826 // fold (mul x, (1 << c) + 1) -> (x << c) + x
827 //FIXME: there should be a target hint to allow other constants based on
828 // expense of mul
829 if (N1C && isPowerOf2_64(N1C->getSignExtended() - 1)) {
830 return DAG.getNode(ISD::ADD, VT,
831 DAG.getNode(ISD::SHL, VT, N0,
832 DAG.getConstant(Log2_64(N1C->getSignExtended() - 1),
833 TLI.getShiftAmountTy())),
834 N0);
835 }
836 // fold (mul x, (1 << c) - 1) -> (x << c) - x
837 //FIXME: there should be a target hint to allow other constants based on
838 // the expense of mul
839 if (N1C && isPowerOf2_64(N1C->getSignExtended() + 1)) {
840 return DAG.getNode(ISD::SUB, VT,
841 DAG.getNode(ISD::SHL, VT, N0,
842 DAG.getConstant(Log2_64(N1C->getSignExtended() + 1),
843 TLI.getShiftAmountTy())),
844 N0);
845 }
846
Chris Lattner0b1a85f2006-03-01 03:44:24 +0000847 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
848 if (N1C && N0.getOpcode() == ISD::SHL &&
849 isa<ConstantSDNode>(N0.getOperand(1))) {
850 SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
Chris Lattner5750df92006-03-01 04:03:14 +0000851 AddToWorkList(C3.Val);
Chris Lattner0b1a85f2006-03-01 03:44:24 +0000852 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
853 }
854
855 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
856 // use.
857 {
858 SDOperand Sh(0,0), Y(0,0);
859 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
860 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
861 N0.Val->hasOneUse()) {
862 Sh = N0; Y = N1;
863 } else if (N1.getOpcode() == ISD::SHL &&
864 isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
865 Sh = N1; Y = N0;
866 }
867 if (Sh.Val) {
868 SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
869 return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
870 }
871 }
Chris Lattnera1deca32006-03-04 23:33:26 +0000872 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
873 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
874 isa<ConstantSDNode>(N0.getOperand(1))) {
875 return DAG.getNode(ISD::ADD, VT,
876 DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
877 DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
878 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +0000879
Nate Begemancd4d58c2006-02-03 06:46:56 +0000880 // reassociate mul
881 SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
882 if (RMUL.Val != 0)
883 return RMUL;
Nate Begeman83e75ec2005-09-06 04:43:02 +0000884 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000885}
886
Nate Begeman83e75ec2005-09-06 04:43:02 +0000887SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000888 SDOperand N0 = N->getOperand(0);
889 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000890 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
891 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000892 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000893
894 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000895 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000896 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +0000897 // fold (sdiv X, 1) -> X
898 if (N1C && N1C->getSignExtended() == 1LL)
899 return N0;
900 // fold (sdiv X, -1) -> 0-X
901 if (N1C && N1C->isAllOnesValue())
902 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +0000903 // If we know the sign bits of both operands are zero, strength reduce to a
904 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
905 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000906 if (TLI.MaskedValueIsZero(N1, SignBit) &&
907 TLI.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +0000908 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begemancd6a6ed2006-02-17 07:26:20 +0000909 // fold (sdiv X, pow2) -> simple ops after legalize
Nate Begemanfb7217b2006-02-17 19:54:08 +0000910 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
Nate Begeman405e3ec2005-10-21 00:02:42 +0000911 (isPowerOf2_64(N1C->getSignExtended()) ||
912 isPowerOf2_64(-N1C->getSignExtended()))) {
913 // If dividing by powers of two is cheap, then don't perform the following
914 // fold.
915 if (TLI.isPow2DivCheap())
916 return SDOperand();
917 int64_t pow2 = N1C->getSignExtended();
918 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
Chris Lattner8f4880b2006-02-16 08:02:36 +0000919 unsigned lg2 = Log2_64(abs2);
920 // Splat the sign bit into the register
921 SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
Nate Begeman405e3ec2005-10-21 00:02:42 +0000922 DAG.getConstant(MVT::getSizeInBits(VT)-1,
923 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +0000924 AddToWorkList(SGN.Val);
Chris Lattner8f4880b2006-02-16 08:02:36 +0000925 // Add (N0 < 0) ? abs2 - 1 : 0;
926 SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
927 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
Nate Begeman405e3ec2005-10-21 00:02:42 +0000928 TLI.getShiftAmountTy()));
Chris Lattner8f4880b2006-02-16 08:02:36 +0000929 SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
Chris Lattner5750df92006-03-01 04:03:14 +0000930 AddToWorkList(SRL.Val);
931 AddToWorkList(ADD.Val); // Divide by pow2
Chris Lattner8f4880b2006-02-16 08:02:36 +0000932 SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
933 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
Nate Begeman405e3ec2005-10-21 00:02:42 +0000934 // If we're dividing by a positive value, we're done. Otherwise, we must
935 // negate the result.
936 if (pow2 > 0)
937 return SRA;
Chris Lattner5750df92006-03-01 04:03:14 +0000938 AddToWorkList(SRA.Val);
Nate Begeman405e3ec2005-10-21 00:02:42 +0000939 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
940 }
Nate Begeman69575232005-10-20 02:15:44 +0000941 // if integer divide is expensive and we satisfy the requirements, emit an
942 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +0000943 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +0000944 !TLI.isIntDivCheap()) {
945 SDOperand Op = BuildSDIV(N);
946 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +0000947 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000948 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000949}
950
Nate Begeman83e75ec2005-09-06 04:43:02 +0000951SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000952 SDOperand N0 = N->getOperand(0);
953 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000954 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
955 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000956 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000957
958 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000959 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000960 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000961 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +0000962 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begemanfb5e4bd2006-02-05 07:20:23 +0000963 return DAG.getNode(ISD::SRL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +0000964 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +0000965 TLI.getShiftAmountTy()));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +0000966 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
967 if (N1.getOpcode() == ISD::SHL) {
968 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
969 if (isPowerOf2_64(SHC->getValue())) {
970 MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
Nate Begemanc031e332006-02-05 07:36:48 +0000971 SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
972 DAG.getConstant(Log2_64(SHC->getValue()),
973 ADDVT));
Chris Lattner5750df92006-03-01 04:03:14 +0000974 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +0000975 return DAG.getNode(ISD::SRL, VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +0000976 }
977 }
978 }
Nate Begeman69575232005-10-20 02:15:44 +0000979 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +0000980 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
981 SDOperand Op = BuildUDIV(N);
982 if (Op.Val) return Op;
983 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000984 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000985}
986
Nate Begeman83e75ec2005-09-06 04:43:02 +0000987SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000988 SDOperand N0 = N->getOperand(0);
989 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000990 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
991 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +0000992 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000993
994 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000995 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000996 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +0000997 // If we know the sign bits of both operands are zero, strength reduce to a
998 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
999 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001000 if (TLI.MaskedValueIsZero(N1, SignBit) &&
1001 TLI.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +00001002 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001003 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001004}
1005
Nate Begeman83e75ec2005-09-06 04:43:02 +00001006SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001007 SDOperand N0 = N->getOperand(0);
1008 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001009 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1010 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +00001011 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001012
1013 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001014 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +00001015 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +00001016 // fold (urem x, pow2) -> (and x, pow2-1)
1017 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +00001018 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00001019 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1020 if (N1.getOpcode() == ISD::SHL) {
1021 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1022 if (isPowerOf2_64(SHC->getValue())) {
Nate Begemanbab92392006-02-05 08:07:24 +00001023 SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001024 AddToWorkList(Add.Val);
Nate Begemanc031e332006-02-05 07:36:48 +00001025 return DAG.getNode(ISD::AND, VT, N0, Add);
1026 }
1027 }
1028 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001029 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001030}
1031
Nate Begeman83e75ec2005-09-06 04:43:02 +00001032SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001033 SDOperand N0 = N->getOperand(0);
1034 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001035 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001036
1037 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001038 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001039 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001040 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001041 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001042 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
1043 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001044 TLI.getShiftAmountTy()));
1045 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001046}
1047
Nate Begeman83e75ec2005-09-06 04:43:02 +00001048SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001049 SDOperand N0 = N->getOperand(0);
1050 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001051 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001052
1053 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001054 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001055 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001056 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001057 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001058 return DAG.getConstant(0, N0.getValueType());
1059 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001060}
1061
Nate Begeman83e75ec2005-09-06 04:43:02 +00001062SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001063 SDOperand N0 = N->getOperand(0);
1064 SDOperand N1 = N->getOperand(1);
Nate Begemanfb7217b2006-02-17 19:54:08 +00001065 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001066 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1067 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001068 MVT::ValueType VT = N1.getValueType();
Nate Begeman83e75ec2005-09-06 04:43:02 +00001069 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001070
1071 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001072 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001073 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001074 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001075 if (N0C && !N1C)
1076 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001077 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001078 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001079 return N0;
1080 // if (and x, c) is known to be zero, return 0
Nate Begeman368e18d2006-02-16 21:11:51 +00001081 if (N1C && TLI.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001082 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00001083 // reassociate and
1084 SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1085 if (RAND.Val != 0)
1086 return RAND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001087 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +00001088 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001089 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +00001090 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001091 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00001092 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1093 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Chris Lattner1ec05d12006-03-01 21:47:21 +00001094 unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
Chris Lattner3603cd62006-02-02 07:17:31 +00001095 if (TLI.MaskedValueIsZero(N0.getOperand(0),
Chris Lattner1ec05d12006-03-01 21:47:21 +00001096 ~N1C->getValue() & InMask)) {
1097 SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1098 N0.getOperand(0));
1099
1100 // Replace uses of the AND with uses of the Zero extend node.
1101 CombineTo(N, Zext);
1102
Chris Lattner3603cd62006-02-02 07:17:31 +00001103 // We actually want to replace all uses of the any_extend with the
1104 // zero_extend, to avoid duplicating things. This will later cause this
1105 // AND to be folded.
Chris Lattner1ec05d12006-03-01 21:47:21 +00001106 CombineTo(N0.Val, Zext);
Chris Lattner3603cd62006-02-02 07:17:31 +00001107 return SDOperand();
1108 }
1109 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001110 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1111 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1112 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1113 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1114
1115 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1116 MVT::isInteger(LL.getValueType())) {
1117 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1118 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1119 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001120 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001121 return DAG.getSetCC(VT, ORNode, LR, Op1);
1122 }
1123 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1124 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1125 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001126 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001127 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1128 }
1129 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
1130 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1131 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001132 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001133 return DAG.getSetCC(VT, ORNode, LR, Op1);
1134 }
1135 }
1136 // canonicalize equivalent to ll == rl
1137 if (LL == RR && LR == RL) {
1138 Op1 = ISD::getSetCCSwappedOperands(Op1);
1139 std::swap(RL, RR);
1140 }
1141 if (LL == RL && LR == RR) {
1142 bool isInteger = MVT::isInteger(LL.getValueType());
1143 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1144 if (Result != ISD::SETCC_INVALID)
1145 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1146 }
1147 }
1148 // fold (and (zext x), (zext y)) -> (zext (and x, y))
1149 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
1150 N1.getOpcode() == ISD::ZERO_EXTEND &&
1151 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1152 SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(),
1153 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001154 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001155 return DAG.getNode(ISD::ZERO_EXTEND, VT, ANDNode);
1156 }
Nate Begeman61af66e2006-01-28 01:06:30 +00001157 // fold (and (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (and x, y))
Nate Begeman452d7be2005-09-16 00:54:12 +00001158 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
Nate Begeman61af66e2006-01-28 01:06:30 +00001159 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
1160 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
Nate Begeman452d7be2005-09-16 00:54:12 +00001161 N0.getOperand(1) == N1.getOperand(1)) {
1162 SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(),
1163 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001164 AddToWorkList(ANDNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00001165 return DAG.getNode(N0.getOpcode(), VT, ANDNode, N0.getOperand(1));
1166 }
Nate Begemande996292006-02-03 22:24:05 +00001167 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1168 // fold (and (sra)) -> (and (srl)) when possible.
Chris Lattner6ea2dee2006-03-25 22:19:00 +00001169 if (!MVT::isVector(VT) &&
1170 SimplifyDemandedBits(SDOperand(N, 0)))
Nate Begemande996292006-02-03 22:24:05 +00001171 return SDOperand();
Nate Begemanded49632005-10-13 03:11:28 +00001172 // fold (zext_inreg (extload x)) -> (zextload x)
Nate Begeman5054f162005-10-14 01:12:21 +00001173 if (N0.getOpcode() == ISD::EXTLOAD) {
Nate Begemanded49632005-10-13 03:11:28 +00001174 MVT::ValueType EVT = cast<VTSDNode>(N0.getOperand(3))->getVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001175 // If we zero all the possible extended bits, then we can turn this into
1176 // a zextload if we are running before legalize or the operation is legal.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001177 if (TLI.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Chris Lattner67a44cd2005-10-13 18:16:34 +00001178 (!AfterLegalize || TLI.isOperationLegal(ISD::ZEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001179 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1180 N0.getOperand(1), N0.getOperand(2),
1181 EVT);
Chris Lattner5750df92006-03-01 04:03:14 +00001182 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001183 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001184 return SDOperand();
1185 }
1186 }
1187 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Chris Lattner40c62d52005-10-18 06:04:22 +00001188 if (N0.getOpcode() == ISD::SEXTLOAD && N0.hasOneUse()) {
Nate Begemanded49632005-10-13 03:11:28 +00001189 MVT::ValueType EVT = cast<VTSDNode>(N0.getOperand(3))->getVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00001190 // If we zero all the possible extended bits, then we can turn this into
1191 // a zextload if we are running before legalize or the operation is legal.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001192 if (TLI.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Nate Begemanbfd65a02005-10-13 18:34:58 +00001193 (!AfterLegalize || TLI.isOperationLegal(ISD::ZEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001194 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1195 N0.getOperand(1), N0.getOperand(2),
1196 EVT);
Chris Lattner5750df92006-03-01 04:03:14 +00001197 AddToWorkList(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +00001198 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001199 return SDOperand();
1200 }
1201 }
Chris Lattner15045b62006-02-28 06:35:35 +00001202
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001203 // fold (and (load x), 255) -> (zextload x, i8)
1204 // fold (and (extload x, i16), 255) -> (zextload x, i8)
1205 if (N1C &&
1206 (N0.getOpcode() == ISD::LOAD || N0.getOpcode() == ISD::EXTLOAD ||
1207 N0.getOpcode() == ISD::ZEXTLOAD) &&
1208 N0.hasOneUse()) {
1209 MVT::ValueType EVT, LoadedVT;
Chris Lattner15045b62006-02-28 06:35:35 +00001210 if (N1C->getValue() == 255)
1211 EVT = MVT::i8;
1212 else if (N1C->getValue() == 65535)
1213 EVT = MVT::i16;
1214 else if (N1C->getValue() == ~0U)
1215 EVT = MVT::i32;
1216 else
1217 EVT = MVT::Other;
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001218
1219 LoadedVT = N0.getOpcode() == ISD::LOAD ? VT :
1220 cast<VTSDNode>(N0.getOperand(3))->getVT();
1221 if (EVT != MVT::Other && LoadedVT > EVT) {
Chris Lattner15045b62006-02-28 06:35:35 +00001222 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1223 // For big endian targets, we need to add an offset to the pointer to load
1224 // the correct bytes. For little endian systems, we merely need to read
1225 // fewer bytes from the same pointer.
Chris Lattner35a9f5a2006-02-28 06:49:37 +00001226 unsigned PtrOff =
1227 (MVT::getSizeInBits(LoadedVT) - MVT::getSizeInBits(EVT)) / 8;
1228 SDOperand NewPtr = N0.getOperand(1);
1229 if (!TLI.isLittleEndian())
1230 NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1231 DAG.getConstant(PtrOff, PtrType));
Chris Lattner5750df92006-03-01 04:03:14 +00001232 AddToWorkList(NewPtr.Val);
Chris Lattner15045b62006-02-28 06:35:35 +00001233 SDOperand Load =
1234 DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0), NewPtr,
1235 N0.getOperand(2), EVT);
Chris Lattner5750df92006-03-01 04:03:14 +00001236 AddToWorkList(N);
Chris Lattner15045b62006-02-28 06:35:35 +00001237 CombineTo(N0.Val, Load, Load.getValue(1));
1238 return SDOperand();
1239 }
1240 }
1241
Nate Begeman83e75ec2005-09-06 04:43:02 +00001242 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001243}
1244
Nate Begeman83e75ec2005-09-06 04:43:02 +00001245SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001246 SDOperand N0 = N->getOperand(0);
1247 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001248 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001249 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1250 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001251 MVT::ValueType VT = N1.getValueType();
1252 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001253
1254 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001255 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001256 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001257 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001258 if (N0C && !N1C)
1259 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001260 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001261 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001262 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001263 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001264 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001265 return N1;
1266 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001267 if (N1C &&
1268 TLI.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001269 return N1;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001270 // reassociate or
1271 SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1272 if (ROR.Val != 0)
1273 return ROR;
1274 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1275 if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00001276 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00001277 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1278 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1279 N1),
1280 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001281 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001282 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1283 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1284 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1285 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1286
1287 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1288 MVT::isInteger(LL.getValueType())) {
1289 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1290 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1291 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1292 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1293 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001294 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001295 return DAG.getSetCC(VT, ORNode, LR, Op1);
1296 }
1297 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1298 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1299 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1300 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1301 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
Chris Lattner5750df92006-03-01 04:03:14 +00001302 AddToWorkList(ANDNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001303 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1304 }
1305 }
1306 // canonicalize equivalent to ll == rl
1307 if (LL == RR && LR == RL) {
1308 Op1 = ISD::getSetCCSwappedOperands(Op1);
1309 std::swap(RL, RR);
1310 }
1311 if (LL == RL && LR == RR) {
1312 bool isInteger = MVT::isInteger(LL.getValueType());
1313 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1314 if (Result != ISD::SETCC_INVALID)
1315 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1316 }
1317 }
1318 // fold (or (zext x), (zext y)) -> (zext (or x, y))
1319 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
1320 N1.getOpcode() == ISD::ZERO_EXTEND &&
1321 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1322 SDOperand ORNode = DAG.getNode(ISD::OR, N0.getOperand(0).getValueType(),
1323 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001324 AddToWorkList(ORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001325 return DAG.getNode(ISD::ZERO_EXTEND, VT, ORNode);
1326 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001327 // fold (or (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (or x, y))
1328 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
1329 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
1330 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
1331 N0.getOperand(1) == N1.getOperand(1)) {
1332 SDOperand ORNode = DAG.getNode(ISD::OR, N0.getOperand(0).getValueType(),
1333 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001334 AddToWorkList(ORNode.Val);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001335 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1336 }
Nate Begeman35ef9132006-01-11 21:21:00 +00001337 // canonicalize shl to left side in a shl/srl pair, to match rotate
1338 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
1339 std::swap(N0, N1);
1340 // check for rotl, rotr
1341 if (N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SRL &&
1342 N0.getOperand(0) == N1.getOperand(0) &&
Chris Lattneraf551bc2006-01-12 18:57:33 +00001343 TLI.isOperationLegal(ISD::ROTL, VT) && TLI.isTypeLegal(VT)) {
Nate Begeman35ef9132006-01-11 21:21:00 +00001344 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1345 if (N0.getOperand(1).getOpcode() == ISD::Constant &&
1346 N1.getOperand(1).getOpcode() == ISD::Constant) {
1347 uint64_t c1val = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1348 uint64_t c2val = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1349 if ((c1val + c2val) == OpSizeInBits)
1350 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0), N0.getOperand(1));
1351 }
1352 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1353 if (N1.getOperand(1).getOpcode() == ISD::SUB &&
1354 N0.getOperand(1) == N1.getOperand(1).getOperand(1))
1355 if (ConstantSDNode *SUBC =
1356 dyn_cast<ConstantSDNode>(N1.getOperand(1).getOperand(0)))
1357 if (SUBC->getValue() == OpSizeInBits)
1358 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0), N0.getOperand(1));
1359 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1360 if (N0.getOperand(1).getOpcode() == ISD::SUB &&
1361 N1.getOperand(1) == N0.getOperand(1).getOperand(1))
1362 if (ConstantSDNode *SUBC =
1363 dyn_cast<ConstantSDNode>(N0.getOperand(1).getOperand(0)))
1364 if (SUBC->getValue() == OpSizeInBits) {
Chris Lattneraf551bc2006-01-12 18:57:33 +00001365 if (TLI.isOperationLegal(ISD::ROTR, VT) && TLI.isTypeLegal(VT))
Nate Begeman35ef9132006-01-11 21:21:00 +00001366 return DAG.getNode(ISD::ROTR, VT, N0.getOperand(0),
1367 N1.getOperand(1));
1368 else
1369 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0),
1370 N0.getOperand(1));
1371 }
1372 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001373 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001374}
1375
Nate Begeman83e75ec2005-09-06 04:43:02 +00001376SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001377 SDOperand N0 = N->getOperand(0);
1378 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001379 SDOperand LHS, RHS, CC;
1380 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1381 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001382 MVT::ValueType VT = N0.getValueType();
1383
1384 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001385 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001386 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001387 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001388 if (N0C && !N1C)
1389 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001390 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001391 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001392 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00001393 // reassociate xor
1394 SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
1395 if (RXOR.Val != 0)
1396 return RXOR;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001397 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00001398 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
1399 bool isInt = MVT::isInteger(LHS.getValueType());
1400 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
1401 isInt);
1402 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001403 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00001404 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001405 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00001406 assert(0 && "Unhandled SetCC Equivalent!");
1407 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 }
Nate Begeman99801192005-09-07 23:25:52 +00001409 // fold !(x or y) -> (!x and !y) iff x or y are setcc
1410 if (N1C && N1C->getValue() == 1 &&
1411 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001412 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00001413 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
1414 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001415 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
1416 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00001417 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00001418 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001419 }
1420 }
Nate Begeman99801192005-09-07 23:25:52 +00001421 // fold !(x or y) -> (!x and !y) iff x or y are constants
1422 if (N1C && N1C->isAllOnesValue() &&
1423 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001424 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00001425 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
1426 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001427 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
1428 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Chris Lattner5750df92006-03-01 04:03:14 +00001429 AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
Nate Begeman99801192005-09-07 23:25:52 +00001430 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001431 }
1432 }
Nate Begeman223df222005-09-08 20:18:10 +00001433 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
1434 if (N1C && N0.getOpcode() == ISD::XOR) {
1435 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
1436 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
1437 if (N00C)
1438 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
1439 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
1440 if (N01C)
1441 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
1442 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
1443 }
1444 // fold (xor x, x) -> 0
Chris Lattner4fbdd592006-03-28 19:11:05 +00001445 if (N0 == N1) {
1446 if (!MVT::isVector(VT)) {
1447 return DAG.getConstant(0, VT);
1448 } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
1449 // Produce a vector of zeros.
1450 SDOperand El = DAG.getConstant(0, MVT::getVectorBaseType(VT));
1451 std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
1452 return DAG.getNode(ISD::BUILD_VECTOR, VT, Ops);
1453 }
1454 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001455 // fold (xor (zext x), (zext y)) -> (zext (xor x, y))
1456 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
1457 N1.getOpcode() == ISD::ZERO_EXTEND &&
1458 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1459 SDOperand XORNode = DAG.getNode(ISD::XOR, N0.getOperand(0).getValueType(),
1460 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001461 AddToWorkList(XORNode.Val);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001462 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
1463 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001464 // fold (xor (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (xor x, y))
1465 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
1466 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
1467 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
1468 N0.getOperand(1) == N1.getOperand(1)) {
1469 SDOperand XORNode = DAG.getNode(ISD::XOR, N0.getOperand(0).getValueType(),
1470 N0.getOperand(0), N1.getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00001471 AddToWorkList(XORNode.Val);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001472 return DAG.getNode(N0.getOpcode(), VT, XORNode, N0.getOperand(1));
1473 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001474 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001475}
1476
Nate Begeman83e75ec2005-09-06 04:43:02 +00001477SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001478 SDOperand N0 = N->getOperand(0);
1479 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001480 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1481 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001482 MVT::ValueType VT = N0.getValueType();
1483 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1484
1485 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001486 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001487 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001488 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001489 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001490 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001491 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00001492 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001493 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001494 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001495 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001496 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001497 // if (shl x, c) is known to be zero, return 0
Nate Begemanfb7217b2006-02-17 19:54:08 +00001498 if (TLI.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001499 return DAG.getConstant(0, VT);
Chris Lattner012f2412006-02-17 21:58:01 +00001500 if (SimplifyDemandedBits(SDOperand(N, 0)))
Nate Begemande996292006-02-03 22:24:05 +00001501 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001502 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001503 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001504 N0.getOperand(1).getOpcode() == ISD::Constant) {
1505 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001506 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001507 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001508 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001509 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001510 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001511 }
1512 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
1513 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001514 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001515 N0.getOperand(1).getOpcode() == ISD::Constant) {
1516 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001517 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001518 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
1519 DAG.getConstant(~0ULL << c1, VT));
1520 if (c2 > c1)
1521 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001522 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001523 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00001524 return DAG.getNode(ISD::SRL, VT, Mask,
1525 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001526 }
1527 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001528 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00001529 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001530 DAG.getConstant(~0ULL << N1C->getValue(), VT));
Chris Lattnercac70592006-03-05 19:53:55 +00001531 // fold (shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2)
1532 if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() &&
1533 isa<ConstantSDNode>(N0.getOperand(1))) {
1534 return DAG.getNode(ISD::ADD, VT,
1535 DAG.getNode(ISD::SHL, VT, N0.getOperand(0), N1),
1536 DAG.getNode(ISD::SHL, VT, N0.getOperand(1), N1));
1537 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001538 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001539}
1540
Nate Begeman83e75ec2005-09-06 04:43:02 +00001541SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001542 SDOperand N0 = N->getOperand(0);
1543 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001544 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1545 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001546 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001547
1548 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001549 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001550 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001551 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001552 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001553 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001554 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001555 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001556 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001557 // fold (sra x, c >= size(x)) -> undef
Nate Begemanfb7217b2006-02-17 19:54:08 +00001558 if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001559 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001560 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001561 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001562 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00001563 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
1564 // sext_inreg.
1565 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
1566 unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
1567 MVT::ValueType EVT;
1568 switch (LowBits) {
1569 default: EVT = MVT::Other; break;
1570 case 1: EVT = MVT::i1; break;
1571 case 8: EVT = MVT::i8; break;
1572 case 16: EVT = MVT::i16; break;
1573 case 32: EVT = MVT::i32; break;
1574 }
1575 if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
1576 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
1577 DAG.getValueType(EVT));
1578 }
Chris Lattner71d9ebc2006-02-28 06:23:04 +00001579
1580 // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
1581 if (N1C && N0.getOpcode() == ISD::SRA) {
1582 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
1583 unsigned Sum = N1C->getValue() + C1->getValue();
1584 if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
1585 return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
1586 DAG.getConstant(Sum, N1C->getValueType(0)));
1587 }
1588 }
1589
Nate Begeman1d4d4142005-09-01 00:19:25 +00001590 // If the sign bit is known to be zero, switch this to a SRL.
Nate Begemanfb7217b2006-02-17 19:54:08 +00001591 if (TLI.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001592 return DAG.getNode(ISD::SRL, VT, N0, N1);
1593 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001594}
1595
Nate Begeman83e75ec2005-09-06 04:43:02 +00001596SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001597 SDOperand N0 = N->getOperand(0);
1598 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001599 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1600 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001601 MVT::ValueType VT = N0.getValueType();
1602 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1603
1604 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001605 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001606 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001607 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001608 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001609 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001610 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00001611 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001612 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001613 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001614 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001615 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001616 // if (srl x, c) is known to be zero, return 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001617 if (N1C && TLI.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001618 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001619 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001620 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001621 N0.getOperand(1).getOpcode() == ISD::Constant) {
1622 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001623 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001624 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001625 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001626 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001627 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001628 }
Chris Lattner350bec02006-04-02 06:11:11 +00001629
1630 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
1631 if (N1C && N0.getOpcode() == ISD::CTLZ &&
1632 N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
1633 uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
1634 TLI.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
1635
1636 // If any of the input bits are KnownOne, then the input couldn't be all
1637 // zeros, thus the result of the srl will always be zero.
1638 if (KnownOne) return DAG.getConstant(0, VT);
1639
1640 // If all of the bits input the to ctlz node are known to be zero, then
1641 // the result of the ctlz is "32" and the result of the shift is one.
1642 uint64_t UnknownBits = ~KnownZero & Mask;
1643 if (UnknownBits == 0) return DAG.getConstant(1, VT);
1644
1645 // Otherwise, check to see if there is exactly one bit input to the ctlz.
1646 if ((UnknownBits & (UnknownBits-1)) == 0) {
1647 // Okay, we know that only that the single bit specified by UnknownBits
1648 // could be set on input to the CTLZ node. If this bit is set, the SRL
1649 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
1650 // to an SRL,XOR pair, which is likely to simplify more.
1651 unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
1652 SDOperand Op = N0.getOperand(0);
1653 if (ShAmt) {
1654 Op = DAG.getNode(ISD::SRL, VT, Op,
1655 DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
1656 AddToWorkList(Op.Val);
1657 }
1658 return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
1659 }
1660 }
1661
Nate Begeman83e75ec2005-09-06 04:43:02 +00001662 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001663}
1664
Nate Begeman83e75ec2005-09-06 04:43:02 +00001665SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001666 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001667 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001668 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001669
1670 // fold (ctlz c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001671 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001672 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001673 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001674}
1675
Nate Begeman83e75ec2005-09-06 04:43:02 +00001676SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001677 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001678 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001679 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001680
1681 // fold (cttz c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001682 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001683 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001684 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001685}
1686
Nate Begeman83e75ec2005-09-06 04:43:02 +00001687SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001688 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001689 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001690 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001691
1692 // fold (ctpop c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001693 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001694 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001695 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001696}
1697
Nate Begeman452d7be2005-09-16 00:54:12 +00001698SDOperand DAGCombiner::visitSELECT(SDNode *N) {
1699 SDOperand N0 = N->getOperand(0);
1700 SDOperand N1 = N->getOperand(1);
1701 SDOperand N2 = N->getOperand(2);
1702 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1703 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1704 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
1705 MVT::ValueType VT = N->getValueType(0);
Nate Begeman44728a72005-09-19 22:34:01 +00001706
Nate Begeman452d7be2005-09-16 00:54:12 +00001707 // fold select C, X, X -> X
1708 if (N1 == N2)
1709 return N1;
1710 // fold select true, X, Y -> X
1711 if (N0C && !N0C->isNullValue())
1712 return N1;
1713 // fold select false, X, Y -> Y
1714 if (N0C && N0C->isNullValue())
1715 return N2;
1716 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00001717 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7be2005-09-16 00:54:12 +00001718 return DAG.getNode(ISD::OR, VT, N0, N2);
1719 // fold select C, 0, X -> ~C & X
1720 // FIXME: this should check for C type == X type, not i1?
1721 if (MVT::i1 == VT && N1C && N1C->isNullValue()) {
1722 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001723 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00001724 return DAG.getNode(ISD::AND, VT, XORNode, N2);
1725 }
1726 // fold select C, X, 1 -> ~C | X
Nate Begeman44728a72005-09-19 22:34:01 +00001727 if (MVT::i1 == VT && N2C && N2C->getValue() == 1) {
Nate Begeman452d7be2005-09-16 00:54:12 +00001728 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00001729 AddToWorkList(XORNode.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00001730 return DAG.getNode(ISD::OR, VT, XORNode, N1);
1731 }
1732 // fold select C, X, 0 -> C & X
1733 // FIXME: this should check for C type == X type, not i1?
1734 if (MVT::i1 == VT && N2C && N2C->isNullValue())
1735 return DAG.getNode(ISD::AND, VT, N0, N1);
1736 // fold X ? X : Y --> X ? 1 : Y --> X | Y
1737 if (MVT::i1 == VT && N0 == N1)
1738 return DAG.getNode(ISD::OR, VT, N0, N2);
1739 // fold X ? Y : X --> X ? Y : 0 --> X & Y
1740 if (MVT::i1 == VT && N0 == N2)
1741 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner40c62d52005-10-18 06:04:22 +00001742 // If we can fold this based on the true/false value, do so.
1743 if (SimplifySelectOps(N, N1, N2))
1744 return SDOperand();
Nate Begeman44728a72005-09-19 22:34:01 +00001745 // fold selects based on a setcc into other things, such as min/max/abs
1746 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00001747 // FIXME:
1748 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
1749 // having to say they don't support SELECT_CC on every type the DAG knows
1750 // about, since there is no way to mark an opcode illegal at all value types
1751 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
1752 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
1753 N1, N2, N0.getOperand(2));
1754 else
1755 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7be2005-09-16 00:54:12 +00001756 return SDOperand();
1757}
1758
1759SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00001760 SDOperand N0 = N->getOperand(0);
1761 SDOperand N1 = N->getOperand(1);
1762 SDOperand N2 = N->getOperand(2);
1763 SDOperand N3 = N->getOperand(3);
1764 SDOperand N4 = N->getOperand(4);
1765 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1766 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1767 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
1768 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
1769
1770 // Determine if the condition we're dealing with is constant
Nate Begemane17daeb2005-10-05 21:43:42 +00001771 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner91559022005-10-05 04:45:43 +00001772 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
1773
Nate Begeman44728a72005-09-19 22:34:01 +00001774 // fold select_cc lhs, rhs, x, x, cc -> x
1775 if (N2 == N3)
1776 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00001777
1778 // If we can fold this based on the true/false value, do so.
1779 if (SimplifySelectOps(N, N2, N3))
1780 return SDOperand();
1781
Nate Begeman44728a72005-09-19 22:34:01 +00001782 // fold select_cc into other things, such as min/max/abs
1783 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7be2005-09-16 00:54:12 +00001784}
1785
1786SDOperand DAGCombiner::visitSETCC(SDNode *N) {
1787 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
1788 cast<CondCodeSDNode>(N->getOperand(2))->get());
1789}
1790
Nate Begeman83e75ec2005-09-06 04:43:02 +00001791SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001792 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001793 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001794 MVT::ValueType VT = N->getValueType(0);
1795
Nate Begeman1d4d4142005-09-01 00:19:25 +00001796 // fold (sext c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001797 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001798 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001799 // fold (sext (sext x)) -> (sext x)
1800 if (N0.getOpcode() == ISD::SIGN_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001801 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattnerb14ab8a2005-12-07 07:11:03 +00001802 // fold (sext (truncate x)) -> (sextinreg x) iff x size == sext size.
Chris Lattnercc2210b2005-12-07 18:02:05 +00001803 if (N0.getOpcode() == ISD::TRUNCATE && N0.getOperand(0).getValueType() == VT&&
1804 (!AfterLegalize ||
1805 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, N0.getValueType())))
Chris Lattnerb14ab8a2005-12-07 07:11:03 +00001806 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
1807 DAG.getValueType(N0.getValueType()));
Evan Cheng110dec22005-12-14 02:19:23 +00001808 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Chris Lattnerd0f6d182005-12-15 19:02:38 +00001809 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse() &&
1810 (!AfterLegalize||TLI.isOperationLegal(ISD::SEXTLOAD, N0.getValueType()))){
Nate Begeman3df4d522005-10-12 20:40:40 +00001811 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1812 N0.getOperand(1), N0.getOperand(2),
1813 N0.getValueType());
Chris Lattnerd4771842005-12-14 19:25:30 +00001814 CombineTo(N, ExtLoad);
Chris Lattnerf9884052005-10-13 21:52:31 +00001815 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1816 ExtLoad.getValue(1));
Nate Begeman765784a2005-10-12 23:18:53 +00001817 return SDOperand();
Nate Begeman3df4d522005-10-12 20:40:40 +00001818 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001819
1820 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
1821 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
1822 if ((N0.getOpcode() == ISD::SEXTLOAD || N0.getOpcode() == ISD::EXTLOAD) &&
1823 N0.hasOneUse()) {
1824 SDOperand ExtLoad = DAG.getNode(ISD::SEXTLOAD, VT, N0.getOperand(0),
1825 N0.getOperand(1), N0.getOperand(2),
1826 N0.getOperand(3));
Chris Lattnerd4771842005-12-14 19:25:30 +00001827 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001828 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1829 ExtLoad.getValue(1));
1830 return SDOperand();
1831 }
1832
Nate Begeman83e75ec2005-09-06 04:43:02 +00001833 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001834}
1835
Nate Begeman83e75ec2005-09-06 04:43:02 +00001836SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001837 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001838 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001839 MVT::ValueType VT = N->getValueType(0);
1840
Nate Begeman1d4d4142005-09-01 00:19:25 +00001841 // fold (zext c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001842 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001843 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001844 // fold (zext (zext x)) -> (zext x)
1845 if (N0.getOpcode() == ISD::ZERO_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001846 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Evan Cheng110dec22005-12-14 02:19:23 +00001847 // fold (zext (truncate x)) -> (zextinreg x) iff x size == zext size.
1848 if (N0.getOpcode() == ISD::TRUNCATE && N0.getOperand(0).getValueType() == VT&&
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001849 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, N0.getValueType())))
Chris Lattner00cb95c2005-12-14 07:58:38 +00001850 return DAG.getZeroExtendInReg(N0.getOperand(0), N0.getValueType());
Evan Cheng110dec22005-12-14 02:19:23 +00001851 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Chris Lattnerd0f6d182005-12-15 19:02:38 +00001852 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse() &&
1853 (!AfterLegalize||TLI.isOperationLegal(ISD::ZEXTLOAD, N0.getValueType()))){
Evan Cheng110dec22005-12-14 02:19:23 +00001854 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1855 N0.getOperand(1), N0.getOperand(2),
1856 N0.getValueType());
Chris Lattnerd4771842005-12-14 19:25:30 +00001857 CombineTo(N, ExtLoad);
Evan Cheng110dec22005-12-14 02:19:23 +00001858 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1859 ExtLoad.getValue(1));
1860 return SDOperand();
1861 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001862
1863 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
1864 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
1865 if ((N0.getOpcode() == ISD::ZEXTLOAD || N0.getOpcode() == ISD::EXTLOAD) &&
1866 N0.hasOneUse()) {
1867 SDOperand ExtLoad = DAG.getNode(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1868 N0.getOperand(1), N0.getOperand(2),
1869 N0.getOperand(3));
Chris Lattnerd4771842005-12-14 19:25:30 +00001870 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001871 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1872 ExtLoad.getValue(1));
1873 return SDOperand();
1874 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001875 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001876}
1877
Nate Begeman83e75ec2005-09-06 04:43:02 +00001878SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001879 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001880 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001881 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001882 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001883 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00001884 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001885
Nate Begeman1d4d4142005-09-01 00:19:25 +00001886 // fold (sext_in_reg c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001887 if (N0C) {
1888 SDOperand Truncate = DAG.getConstant(N0C->getValue(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001889 return DAG.getNode(ISD::SIGN_EXTEND, VT, Truncate);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001890 }
Nate Begeman646d7e22005-09-02 21:18:40 +00001891 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt1
Nate Begeman1d4d4142005-09-01 00:19:25 +00001892 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Nate Begeman216def82005-10-14 01:29:07 +00001893 cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001894 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001895 }
Nate Begeman646d7e22005-09-02 21:18:40 +00001896 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
1897 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1898 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001899 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001900 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00001901 // fold (sext_in_reg (assert_sext x)) -> (assert_sext x)
1902 if (N0.getOpcode() == ISD::AssertSext &&
1903 cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001904 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001905 }
1906 // fold (sext_in_reg (sextload x)) -> (sextload x)
1907 if (N0.getOpcode() == ISD::SEXTLOAD &&
1908 cast<VTSDNode>(N0.getOperand(3))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001909 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001910 }
Nate Begeman4ebd8052005-09-01 23:24:04 +00001911 // fold (sext_in_reg (setcc x)) -> setcc x iff (setcc x) == 0 or -1
Nate Begeman1d4d4142005-09-01 00:19:25 +00001912 if (N0.getOpcode() == ISD::SETCC &&
1913 TLI.getSetCCResultContents() ==
1914 TargetLowering::ZeroOrNegativeOneSetCCResult)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001915 return N0;
Nate Begeman07ed4172005-10-10 21:26:48 +00001916 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is zero
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001917 if (TLI.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begemande996292006-02-03 22:24:05 +00001918 return DAG.getZeroExtendInReg(N0, EVT);
Nate Begeman07ed4172005-10-10 21:26:48 +00001919 // fold (sext_in_reg (srl x)) -> sra x
1920 if (N0.getOpcode() == ISD::SRL &&
1921 N0.getOperand(1).getOpcode() == ISD::Constant &&
1922 cast<ConstantSDNode>(N0.getOperand(1))->getValue() == EVTBits) {
1923 return DAG.getNode(ISD::SRA, N0.getValueType(), N0.getOperand(0),
1924 N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001925 }
Nate Begemanded49632005-10-13 03:11:28 +00001926 // fold (sext_inreg (extload x)) -> (sextload x)
1927 if (N0.getOpcode() == ISD::EXTLOAD &&
1928 EVT == cast<VTSDNode>(N0.getOperand(3))->getVT() &&
Nate Begemanbfd65a02005-10-13 18:34:58 +00001929 (!AfterLegalize || TLI.isOperationLegal(ISD::SEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001930 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1931 N0.getOperand(1), N0.getOperand(2),
1932 EVT);
Chris Lattnerd4771842005-12-14 19:25:30 +00001933 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00001934 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001935 return SDOperand();
1936 }
1937 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Chris Lattner40c62d52005-10-18 06:04:22 +00001938 if (N0.getOpcode() == ISD::ZEXTLOAD && N0.hasOneUse() &&
Nate Begemanded49632005-10-13 03:11:28 +00001939 EVT == cast<VTSDNode>(N0.getOperand(3))->getVT() &&
Nate Begemanbfd65a02005-10-13 18:34:58 +00001940 (!AfterLegalize || TLI.isOperationLegal(ISD::SEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001941 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1942 N0.getOperand(1), N0.getOperand(2),
1943 EVT);
Chris Lattnerd4771842005-12-14 19:25:30 +00001944 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00001945 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001946 return SDOperand();
1947 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001948 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001949}
1950
Nate Begeman83e75ec2005-09-06 04:43:02 +00001951SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001952 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001953 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001954 MVT::ValueType VT = N->getValueType(0);
1955
1956 // noop truncate
1957 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001958 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001959 // fold (truncate c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001960 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001961 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001962 // fold (truncate (truncate x)) -> (truncate x)
1963 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001964 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001965 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
1966 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND){
1967 if (N0.getValueType() < VT)
1968 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00001969 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001970 else if (N0.getValueType() > VT)
1971 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00001972 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001973 else
1974 // if the source and dest are the same type, we can drop both the extend
1975 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00001976 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001977 }
Nate Begeman3df4d522005-10-12 20:40:40 +00001978 // fold (truncate (load x)) -> (smaller load x)
Chris Lattner40c62d52005-10-18 06:04:22 +00001979 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse()) {
Nate Begeman3df4d522005-10-12 20:40:40 +00001980 assert(MVT::getSizeInBits(N0.getValueType()) > MVT::getSizeInBits(VT) &&
1981 "Cannot truncate to larger type!");
1982 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Nate Begeman765784a2005-10-12 23:18:53 +00001983 // For big endian targets, we need to add an offset to the pointer to load
1984 // the correct bytes. For little endian systems, we merely need to read
1985 // fewer bytes from the same pointer.
Nate Begeman3df4d522005-10-12 20:40:40 +00001986 uint64_t PtrOff =
1987 (MVT::getSizeInBits(N0.getValueType()) - MVT::getSizeInBits(VT)) / 8;
Nate Begeman765784a2005-10-12 23:18:53 +00001988 SDOperand NewPtr = TLI.isLittleEndian() ? N0.getOperand(1) :
1989 DAG.getNode(ISD::ADD, PtrType, N0.getOperand(1),
1990 DAG.getConstant(PtrOff, PtrType));
Chris Lattner5750df92006-03-01 04:03:14 +00001991 AddToWorkList(NewPtr.Val);
Nate Begeman3df4d522005-10-12 20:40:40 +00001992 SDOperand Load = DAG.getLoad(VT, N0.getOperand(0), NewPtr,N0.getOperand(2));
Chris Lattner5750df92006-03-01 04:03:14 +00001993 AddToWorkList(N);
Chris Lattner24edbb72005-10-13 22:10:05 +00001994 CombineTo(N0.Val, Load, Load.getValue(1));
Nate Begeman765784a2005-10-12 23:18:53 +00001995 return SDOperand();
Nate Begeman3df4d522005-10-12 20:40:40 +00001996 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001997 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001998}
1999
Chris Lattner94683772005-12-23 05:30:37 +00002000SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
2001 SDOperand N0 = N->getOperand(0);
2002 MVT::ValueType VT = N->getValueType(0);
2003
2004 // If the input is a constant, let getNode() fold it.
2005 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
2006 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
2007 if (Res.Val != N) return Res;
2008 }
2009
Chris Lattnerc8547d82005-12-23 05:37:50 +00002010 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
2011 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00002012
Chris Lattner57104102005-12-23 05:44:41 +00002013 // fold (conv (load x)) -> (load (conv*)x)
Chris Lattnerbf40c4b2006-01-15 18:58:59 +00002014 // FIXME: These xforms need to know that the resultant load doesn't need a
2015 // higher alignment than the original!
2016 if (0 && N0.getOpcode() == ISD::LOAD && N0.hasOneUse()) {
Chris Lattner57104102005-12-23 05:44:41 +00002017 SDOperand Load = DAG.getLoad(VT, N0.getOperand(0), N0.getOperand(1),
2018 N0.getOperand(2));
Chris Lattner5750df92006-03-01 04:03:14 +00002019 AddToWorkList(N);
Chris Lattner57104102005-12-23 05:44:41 +00002020 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
2021 Load.getValue(1));
2022 return Load;
2023 }
2024
Chris Lattner94683772005-12-23 05:30:37 +00002025 return SDOperand();
2026}
2027
Chris Lattner6258fb22006-04-02 02:53:43 +00002028SDOperand DAGCombiner::visitVBIT_CONVERT(SDNode *N) {
2029 SDOperand N0 = N->getOperand(0);
2030 MVT::ValueType VT = N->getValueType(0);
2031
2032 // If the input is a VBUILD_VECTOR with all constant elements, fold this now.
2033 // First check to see if this is all constant.
2034 if (N0.getOpcode() == ISD::VBUILD_VECTOR && N0.Val->hasOneUse() &&
2035 VT == MVT::Vector) {
2036 bool isSimple = true;
2037 for (unsigned i = 0, e = N0.getNumOperands()-2; i != e; ++i)
2038 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
2039 N0.getOperand(i).getOpcode() != ISD::Constant &&
2040 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
2041 isSimple = false;
2042 break;
2043 }
2044
2045 if (isSimple) {
2046 MVT::ValueType DestEltVT = cast<VTSDNode>(N->getOperand(2))->getVT();
2047 return ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(N0.Val, DestEltVT);
2048 }
2049 }
2050
2051 return SDOperand();
2052}
2053
2054/// ConstantFoldVBIT_CONVERTofVBUILD_VECTOR - We know that BV is a vbuild_vector
2055/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
2056/// destination element value type.
2057SDOperand DAGCombiner::
2058ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
2059 MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
2060
2061 // If this is already the right type, we're done.
2062 if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
2063
2064 unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
2065 unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
2066
2067 // If this is a conversion of N elements of one type to N elements of another
2068 // type, convert each element. This handles FP<->INT cases.
2069 if (SrcBitSize == DstBitSize) {
2070 std::vector<SDOperand> Ops;
2071 for (unsigned i = 0, e = BV->getNumOperands()-2; i != e; ++i)
2072 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
2073 Ops.push_back(*(BV->op_end()-2)); // Add num elements.
2074 Ops.push_back(DAG.getValueType(DstEltVT));
2075 return DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
2076 }
2077
2078 // Otherwise, we're growing or shrinking the elements. To avoid having to
2079 // handle annoying details of growing/shrinking FP values, we convert them to
2080 // int first.
2081 if (MVT::isFloatingPoint(SrcEltVT)) {
2082 // Convert the input float vector to a int vector where the elements are the
2083 // same sizes.
2084 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
2085 MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
2086 BV = ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(BV, IntVT).Val;
2087 SrcEltVT = IntVT;
2088 }
2089
2090 // Now we know the input is an integer vector. If the output is a FP type,
2091 // convert to integer first, then to FP of the right size.
2092 if (MVT::isFloatingPoint(DstEltVT)) {
2093 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
2094 MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
2095 SDNode *Tmp = ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(BV, TmpVT).Val;
2096
2097 // Next, convert to FP elements of the same size.
2098 return ConstantFoldVBIT_CONVERTofVBUILD_VECTOR(Tmp, DstEltVT);
2099 }
2100
2101 // Okay, we know the src/dst types are both integers of differing types.
2102 // Handling growing first.
2103 assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
2104 if (SrcBitSize < DstBitSize) {
2105 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
2106
2107 std::vector<SDOperand> Ops;
2108 for (unsigned i = 0, e = BV->getNumOperands()-2; i != e;
2109 i += NumInputsPerOutput) {
2110 bool isLE = TLI.isLittleEndian();
2111 uint64_t NewBits = 0;
2112 bool EltIsUndef = true;
2113 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
2114 // Shift the previously computed bits over.
2115 NewBits <<= SrcBitSize;
2116 SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
2117 if (Op.getOpcode() == ISD::UNDEF) continue;
2118 EltIsUndef = false;
2119
2120 NewBits |= cast<ConstantSDNode>(Op)->getValue();
2121 }
2122
2123 if (EltIsUndef)
2124 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
2125 else
2126 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
2127 }
2128
2129 Ops.push_back(DAG.getConstant(Ops.size(), MVT::i32)); // Add num elements.
2130 Ops.push_back(DAG.getValueType(DstEltVT)); // Add element size.
2131 return DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
2132 }
2133
2134 // Finally, this must be the case where we are shrinking elements: each input
2135 // turns into multiple outputs.
2136 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
2137 std::vector<SDOperand> Ops;
2138 for (unsigned i = 0, e = BV->getNumOperands()-2; i != e; ++i) {
2139 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
2140 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
2141 Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
2142 continue;
2143 }
2144 uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
2145
2146 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
2147 unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
2148 OpVal >>= DstBitSize;
2149 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
2150 }
2151
2152 // For big endian targets, swap the order of the pieces of each element.
2153 if (!TLI.isLittleEndian())
2154 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
2155 }
2156 Ops.push_back(DAG.getConstant(Ops.size(), MVT::i32)); // Add num elements.
2157 Ops.push_back(DAG.getValueType(DstEltVT)); // Add element size.
2158 return DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
2159}
2160
2161
2162
Chris Lattner01b3d732005-09-28 22:28:18 +00002163SDOperand DAGCombiner::visitFADD(SDNode *N) {
2164 SDOperand N0 = N->getOperand(0);
2165 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00002166 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2167 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002168 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00002169
2170 // fold (fadd c1, c2) -> c1+c2
2171 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002172 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00002173 // canonicalize constant to RHS
2174 if (N0CFP && !N1CFP)
2175 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00002176 // fold (A + (-B)) -> A-B
2177 if (N1.getOpcode() == ISD::FNEG)
2178 return DAG.getNode(ISD::FSUB, VT, N0, N1.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00002179 // fold ((-A) + B) -> B-A
2180 if (N0.getOpcode() == ISD::FNEG)
2181 return DAG.getNode(ISD::FSUB, VT, N1, N0.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00002182 return SDOperand();
2183}
2184
2185SDOperand DAGCombiner::visitFSUB(SDNode *N) {
2186 SDOperand N0 = N->getOperand(0);
2187 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00002188 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2189 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002190 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00002191
2192 // fold (fsub c1, c2) -> c1-c2
2193 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002194 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002195 // fold (A-(-B)) -> A+B
2196 if (N1.getOpcode() == ISD::FNEG)
Nate Begemana148d982006-01-18 22:35:16 +00002197 return DAG.getNode(ISD::FADD, VT, N0, N1.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00002198 return SDOperand();
2199}
2200
2201SDOperand DAGCombiner::visitFMUL(SDNode *N) {
2202 SDOperand N0 = N->getOperand(0);
2203 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00002204 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2205 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002206 MVT::ValueType VT = N->getValueType(0);
2207
Nate Begeman11af4ea2005-10-17 20:40:11 +00002208 // fold (fmul c1, c2) -> c1*c2
2209 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002210 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00002211 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002212 if (N0CFP && !N1CFP)
2213 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00002214 // fold (fmul X, 2.0) -> (fadd X, X)
2215 if (N1CFP && N1CFP->isExactlyValue(+2.0))
2216 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00002217 return SDOperand();
2218}
2219
2220SDOperand DAGCombiner::visitFDIV(SDNode *N) {
2221 SDOperand N0 = N->getOperand(0);
2222 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00002223 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2224 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002225 MVT::ValueType VT = N->getValueType(0);
2226
Nate Begemana148d982006-01-18 22:35:16 +00002227 // fold (fdiv c1, c2) -> c1/c2
2228 if (N0CFP && N1CFP)
2229 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002230 return SDOperand();
2231}
2232
2233SDOperand DAGCombiner::visitFREM(SDNode *N) {
2234 SDOperand N0 = N->getOperand(0);
2235 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00002236 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2237 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002238 MVT::ValueType VT = N->getValueType(0);
2239
Nate Begemana148d982006-01-18 22:35:16 +00002240 // fold (frem c1, c2) -> fmod(c1,c2)
2241 if (N0CFP && N1CFP)
2242 return DAG.getNode(ISD::FREM, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00002243 return SDOperand();
2244}
2245
Chris Lattner12d83032006-03-05 05:30:57 +00002246SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
2247 SDOperand N0 = N->getOperand(0);
2248 SDOperand N1 = N->getOperand(1);
2249 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2250 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
2251 MVT::ValueType VT = N->getValueType(0);
2252
2253 if (N0CFP && N1CFP) // Constant fold
2254 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
2255
2256 if (N1CFP) {
2257 // copysign(x, c1) -> fabs(x) iff ispos(c1)
2258 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
2259 union {
2260 double d;
2261 int64_t i;
2262 } u;
2263 u.d = N1CFP->getValue();
2264 if (u.i >= 0)
2265 return DAG.getNode(ISD::FABS, VT, N0);
2266 else
2267 return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
2268 }
2269
2270 // copysign(fabs(x), y) -> copysign(x, y)
2271 // copysign(fneg(x), y) -> copysign(x, y)
2272 // copysign(copysign(x,z), y) -> copysign(x, y)
2273 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
2274 N0.getOpcode() == ISD::FCOPYSIGN)
2275 return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
2276
2277 // copysign(x, abs(y)) -> abs(x)
2278 if (N1.getOpcode() == ISD::FABS)
2279 return DAG.getNode(ISD::FABS, VT, N0);
2280
2281 // copysign(x, copysign(y,z)) -> copysign(x, z)
2282 if (N1.getOpcode() == ISD::FCOPYSIGN)
2283 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
2284
2285 // copysign(x, fp_extend(y)) -> copysign(x, y)
2286 // copysign(x, fp_round(y)) -> copysign(x, y)
2287 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
2288 return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
2289
2290 return SDOperand();
2291}
2292
2293
Chris Lattner01b3d732005-09-28 22:28:18 +00002294
Nate Begeman83e75ec2005-09-06 04:43:02 +00002295SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002296 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00002297 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00002298 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002299
2300 // fold (sint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00002301 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00002302 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002303 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002304}
2305
Nate Begeman83e75ec2005-09-06 04:43:02 +00002306SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002307 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00002308 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00002309 MVT::ValueType VT = N->getValueType(0);
2310
Nate Begeman1d4d4142005-09-01 00:19:25 +00002311 // fold (uint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00002312 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00002313 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002314 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002315}
2316
Nate Begeman83e75ec2005-09-06 04:43:02 +00002317SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002318 SDOperand N0 = N->getOperand(0);
2319 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2320 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002321
2322 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00002323 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002324 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002325 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002326}
2327
Nate Begeman83e75ec2005-09-06 04:43:02 +00002328SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002329 SDOperand N0 = N->getOperand(0);
2330 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2331 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002332
2333 // fold (fp_to_uint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00002334 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002335 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002336 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002337}
2338
Nate Begeman83e75ec2005-09-06 04:43:02 +00002339SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002340 SDOperand N0 = N->getOperand(0);
2341 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2342 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002343
2344 // fold (fp_round c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00002345 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002346 return DAG.getNode(ISD::FP_ROUND, VT, N0);
Chris Lattner79dbea52006-03-13 06:26:26 +00002347
2348 // fold (fp_round (fp_extend x)) -> x
2349 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
2350 return N0.getOperand(0);
2351
2352 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
2353 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
2354 SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0));
2355 AddToWorkList(Tmp.Val);
2356 return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
2357 }
2358
Nate Begeman83e75ec2005-09-06 04:43:02 +00002359 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002360}
2361
Nate Begeman83e75ec2005-09-06 04:43:02 +00002362SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002363 SDOperand N0 = N->getOperand(0);
2364 MVT::ValueType VT = N->getValueType(0);
2365 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00002366 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002367
Nate Begeman1d4d4142005-09-01 00:19:25 +00002368 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00002369 if (N0CFP) {
2370 SDOperand Round = DAG.getConstantFP(N0CFP->getValue(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002371 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002372 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00002373 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002374}
2375
Nate Begeman83e75ec2005-09-06 04:43:02 +00002376SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002377 SDOperand N0 = N->getOperand(0);
2378 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2379 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002380
2381 // fold (fp_extend c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00002382 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002383 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002384 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002385}
2386
Nate Begeman83e75ec2005-09-06 04:43:02 +00002387SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002388 SDOperand N0 = N->getOperand(0);
2389 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2390 MVT::ValueType VT = N->getValueType(0);
2391
2392 // fold (fneg c1) -> -c1
Nate Begeman646d7e22005-09-02 21:18:40 +00002393 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002394 return DAG.getNode(ISD::FNEG, VT, N0);
2395 // fold (fneg (sub x, y)) -> (sub y, x)
Chris Lattner12d83032006-03-05 05:30:57 +00002396 if (N0.getOpcode() == ISD::SUB)
2397 return DAG.getNode(ISD::SUB, VT, N0.getOperand(1), N0.getOperand(0));
Nate Begemana148d982006-01-18 22:35:16 +00002398 // fold (fneg (fneg x)) -> x
Chris Lattner12d83032006-03-05 05:30:57 +00002399 if (N0.getOpcode() == ISD::FNEG)
2400 return N0.getOperand(0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00002401 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002402}
2403
Nate Begeman83e75ec2005-09-06 04:43:02 +00002404SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00002405 SDOperand N0 = N->getOperand(0);
2406 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
2407 MVT::ValueType VT = N->getValueType(0);
2408
Nate Begeman1d4d4142005-09-01 00:19:25 +00002409 // fold (fabs c1) -> fabs(c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00002410 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00002411 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002412 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00002413 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002414 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002415 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00002416 // fold (fabs (fcopysign x, y)) -> (fabs x)
2417 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
2418 return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
2419
Nate Begeman83e75ec2005-09-06 04:43:02 +00002420 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002421}
2422
Nate Begeman44728a72005-09-19 22:34:01 +00002423SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
2424 SDOperand Chain = N->getOperand(0);
2425 SDOperand N1 = N->getOperand(1);
2426 SDOperand N2 = N->getOperand(2);
2427 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2428
2429 // never taken branch, fold to chain
2430 if (N1C && N1C->isNullValue())
2431 return Chain;
2432 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00002433 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00002434 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00002435 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
2436 // on the target.
2437 if (N1.getOpcode() == ISD::SETCC &&
2438 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
2439 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
2440 N1.getOperand(0), N1.getOperand(1), N2);
2441 }
Nate Begeman44728a72005-09-19 22:34:01 +00002442 return SDOperand();
2443}
2444
Chris Lattner3ea0b472005-10-05 06:47:48 +00002445// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
2446//
Nate Begeman44728a72005-09-19 22:34:01 +00002447SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00002448 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
2449 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
2450
2451 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00002452 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
2453 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
2454
2455 // fold br_cc true, dest -> br dest (unconditional branch)
2456 if (SCCC && SCCC->getValue())
2457 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
2458 N->getOperand(4));
2459 // fold br_cc false, dest -> unconditional fall through
2460 if (SCCC && SCCC->isNullValue())
2461 return N->getOperand(0);
2462 // fold to a simpler setcc
2463 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
2464 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
2465 Simp.getOperand(2), Simp.getOperand(0),
2466 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00002467 return SDOperand();
2468}
2469
Chris Lattner01a22022005-10-10 22:04:48 +00002470SDOperand DAGCombiner::visitLOAD(SDNode *N) {
2471 SDOperand Chain = N->getOperand(0);
2472 SDOperand Ptr = N->getOperand(1);
2473 SDOperand SrcValue = N->getOperand(2);
Chris Lattnere4b95392006-03-31 18:06:18 +00002474
2475 // If there are no uses of the loaded value, change uses of the chain value
2476 // into uses of the chain input (i.e. delete the dead load).
2477 if (N->hasNUsesOfValue(0, 0))
2478 return CombineTo(N, DAG.getNode(ISD::UNDEF, N->getValueType(0)), Chain);
Chris Lattner01a22022005-10-10 22:04:48 +00002479
2480 // If this load is directly stored, replace the load value with the stored
2481 // value.
2482 // TODO: Handle store large -> read small portion.
2483 // TODO: Handle TRUNCSTORE/EXTLOAD
2484 if (Chain.getOpcode() == ISD::STORE && Chain.getOperand(2) == Ptr &&
2485 Chain.getOperand(1).getValueType() == N->getValueType(0))
2486 return CombineTo(N, Chain.getOperand(1), Chain);
2487
2488 return SDOperand();
2489}
2490
Chris Lattner29cd7db2006-03-31 18:10:41 +00002491/// visitXEXTLOAD - Handle EXTLOAD/ZEXTLOAD/SEXTLOAD.
2492SDOperand DAGCombiner::visitXEXTLOAD(SDNode *N) {
2493 SDOperand Chain = N->getOperand(0);
2494 SDOperand Ptr = N->getOperand(1);
2495 SDOperand SrcValue = N->getOperand(2);
2496 SDOperand EVT = N->getOperand(3);
2497
2498 // If there are no uses of the loaded value, change uses of the chain value
2499 // into uses of the chain input (i.e. delete the dead load).
2500 if (N->hasNUsesOfValue(0, 0))
2501 return CombineTo(N, DAG.getNode(ISD::UNDEF, N->getValueType(0)), Chain);
2502
2503 return SDOperand();
2504}
2505
Chris Lattner87514ca2005-10-10 22:31:19 +00002506SDOperand DAGCombiner::visitSTORE(SDNode *N) {
2507 SDOperand Chain = N->getOperand(0);
2508 SDOperand Value = N->getOperand(1);
2509 SDOperand Ptr = N->getOperand(2);
2510 SDOperand SrcValue = N->getOperand(3);
2511
2512 // If this is a store that kills a previous store, remove the previous store.
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002513 if (Chain.getOpcode() == ISD::STORE && Chain.getOperand(2) == Ptr &&
Chris Lattnerfe7f0462005-10-27 07:10:34 +00002514 Chain.Val->hasOneUse() /* Avoid introducing DAG cycles */ &&
2515 // Make sure that these stores are the same value type:
2516 // FIXME: we really care that the second store is >= size of the first.
2517 Value.getValueType() == Chain.getOperand(1).getValueType()) {
Chris Lattner87514ca2005-10-10 22:31:19 +00002518 // Create a new store of Value that replaces both stores.
2519 SDNode *PrevStore = Chain.Val;
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002520 if (PrevStore->getOperand(1) == Value) // Same value multiply stored.
2521 return Chain;
Chris Lattner87514ca2005-10-10 22:31:19 +00002522 SDOperand NewStore = DAG.getNode(ISD::STORE, MVT::Other,
2523 PrevStore->getOperand(0), Value, Ptr,
2524 SrcValue);
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002525 CombineTo(N, NewStore); // Nuke this store.
Chris Lattner87514ca2005-10-10 22:31:19 +00002526 CombineTo(PrevStore, NewStore); // Nuke the previous store.
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002527 return SDOperand(N, 0);
Chris Lattner87514ca2005-10-10 22:31:19 +00002528 }
2529
Chris Lattnerc33baaa2005-12-23 05:48:07 +00002530 // If this is a store of a bit convert, store the input value.
Chris Lattnerbf40c4b2006-01-15 18:58:59 +00002531 // FIXME: This needs to know that the resultant store does not need a
2532 // higher alignment than the original.
2533 if (0 && Value.getOpcode() == ISD::BIT_CONVERT)
Chris Lattnerc33baaa2005-12-23 05:48:07 +00002534 return DAG.getNode(ISD::STORE, MVT::Other, Chain, Value.getOperand(0),
2535 Ptr, SrcValue);
2536
Chris Lattner87514ca2005-10-10 22:31:19 +00002537 return SDOperand();
2538}
2539
Chris Lattnerca242442006-03-19 01:27:56 +00002540SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
2541 SDOperand InVec = N->getOperand(0);
2542 SDOperand InVal = N->getOperand(1);
2543 SDOperand EltNo = N->getOperand(2);
2544
2545 // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
2546 // vector with the inserted element.
2547 if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
2548 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
2549 std::vector<SDOperand> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
2550 if (Elt < Ops.size())
2551 Ops[Elt] = InVal;
2552 return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(), Ops);
2553 }
2554
2555 return SDOperand();
2556}
2557
2558SDOperand DAGCombiner::visitVINSERT_VECTOR_ELT(SDNode *N) {
2559 SDOperand InVec = N->getOperand(0);
2560 SDOperand InVal = N->getOperand(1);
2561 SDOperand EltNo = N->getOperand(2);
2562 SDOperand NumElts = N->getOperand(3);
2563 SDOperand EltType = N->getOperand(4);
2564
2565 // If the invec is a VBUILD_VECTOR and if EltNo is a constant, build a new
2566 // vector with the inserted element.
2567 if (InVec.getOpcode() == ISD::VBUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
2568 unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
2569 std::vector<SDOperand> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
2570 if (Elt < Ops.size()-2)
2571 Ops[Elt] = InVal;
2572 return DAG.getNode(ISD::VBUILD_VECTOR, InVec.getValueType(), Ops);
2573 }
2574
2575 return SDOperand();
2576}
2577
Chris Lattnerd7648c82006-03-28 20:28:38 +00002578SDOperand DAGCombiner::visitVBUILD_VECTOR(SDNode *N) {
2579 unsigned NumInScalars = N->getNumOperands()-2;
2580 SDOperand NumElts = N->getOperand(NumInScalars);
2581 SDOperand EltType = N->getOperand(NumInScalars+1);
2582
2583 // Check to see if this is a VBUILD_VECTOR of a bunch of VEXTRACT_VECTOR_ELT
2584 // operations. If so, and if the EXTRACT_ELT vector inputs come from at most
2585 // two distinct vectors, turn this into a shuffle node.
2586 SDOperand VecIn1, VecIn2;
2587 for (unsigned i = 0; i != NumInScalars; ++i) {
2588 // Ignore undef inputs.
2589 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
2590
2591 // If this input is something other than a VEXTRACT_VECTOR_ELT with a
2592 // constant index, bail out.
2593 if (N->getOperand(i).getOpcode() != ISD::VEXTRACT_VECTOR_ELT ||
2594 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
2595 VecIn1 = VecIn2 = SDOperand(0, 0);
2596 break;
2597 }
2598
2599 // If the input vector type disagrees with the result of the vbuild_vector,
2600 // we can't make a shuffle.
2601 SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
2602 if (*(ExtractedFromVec.Val->op_end()-2) != NumElts ||
2603 *(ExtractedFromVec.Val->op_end()-1) != EltType) {
2604 VecIn1 = VecIn2 = SDOperand(0, 0);
2605 break;
2606 }
2607
2608 // Otherwise, remember this. We allow up to two distinct input vectors.
2609 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
2610 continue;
2611
2612 if (VecIn1.Val == 0) {
2613 VecIn1 = ExtractedFromVec;
2614 } else if (VecIn2.Val == 0) {
2615 VecIn2 = ExtractedFromVec;
2616 } else {
2617 // Too many inputs.
2618 VecIn1 = VecIn2 = SDOperand(0, 0);
2619 break;
2620 }
2621 }
2622
2623 // If everything is good, we can make a shuffle operation.
2624 if (VecIn1.Val) {
2625 std::vector<SDOperand> BuildVecIndices;
2626 for (unsigned i = 0; i != NumInScalars; ++i) {
2627 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
2628 BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
2629 continue;
2630 }
2631
2632 SDOperand Extract = N->getOperand(i);
2633
2634 // If extracting from the first vector, just use the index directly.
2635 if (Extract.getOperand(0) == VecIn1) {
2636 BuildVecIndices.push_back(Extract.getOperand(1));
2637 continue;
2638 }
2639
2640 // Otherwise, use InIdx + VecSize
2641 unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
2642 BuildVecIndices.push_back(DAG.getConstant(Idx+NumInScalars, MVT::i32));
2643 }
2644
2645 // Add count and size info.
2646 BuildVecIndices.push_back(NumElts);
2647 BuildVecIndices.push_back(DAG.getValueType(MVT::i32));
2648
2649 // Return the new VVECTOR_SHUFFLE node.
2650 std::vector<SDOperand> Ops;
2651 Ops.push_back(VecIn1);
Chris Lattnercef896e2006-03-28 22:19:47 +00002652 if (VecIn2.Val) {
2653 Ops.push_back(VecIn2);
2654 } else {
2655 // Use an undef vbuild_vector as input for the second operand.
2656 std::vector<SDOperand> UnOps(NumInScalars,
2657 DAG.getNode(ISD::UNDEF,
2658 cast<VTSDNode>(EltType)->getVT()));
2659 UnOps.push_back(NumElts);
2660 UnOps.push_back(EltType);
2661 Ops.push_back(DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, UnOps));
2662 }
Chris Lattnerd7648c82006-03-28 20:28:38 +00002663 Ops.push_back(DAG.getNode(ISD::VBUILD_VECTOR,MVT::Vector, BuildVecIndices));
2664 Ops.push_back(NumElts);
2665 Ops.push_back(EltType);
2666 return DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector, Ops);
2667 }
2668
2669 return SDOperand();
2670}
2671
Chris Lattner66445d32006-03-28 22:11:53 +00002672SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Chris Lattnerf1d0c622006-03-31 22:16:43 +00002673 SDOperand ShufMask = N->getOperand(2);
2674 unsigned NumElts = ShufMask.getNumOperands();
2675
2676 // If the shuffle mask is an identity operation on the LHS, return the LHS.
2677 bool isIdentity = true;
2678 for (unsigned i = 0; i != NumElts; ++i) {
2679 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
2680 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
2681 isIdentity = false;
2682 break;
2683 }
2684 }
2685 if (isIdentity) return N->getOperand(0);
2686
2687 // If the shuffle mask is an identity operation on the RHS, return the RHS.
2688 isIdentity = true;
2689 for (unsigned i = 0; i != NumElts; ++i) {
2690 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
2691 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
2692 isIdentity = false;
2693 break;
2694 }
2695 }
2696 if (isIdentity) return N->getOperand(1);
2697
Chris Lattner66445d32006-03-28 22:11:53 +00002698 // If the LHS and the RHS are the same node, turn the RHS into an undef.
2699 if (N->getOperand(0) == N->getOperand(1)) {
2700 // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
2701 // first operand.
2702 std::vector<SDOperand> MappedOps;
Chris Lattner66445d32006-03-28 22:11:53 +00002703 for (unsigned i = 0, e = ShufMask.getNumOperands(); i != e; ++i) {
2704 if (cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() >= NumElts) {
2705 unsigned NewIdx =
2706 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
2707 MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
2708 } else {
2709 MappedOps.push_back(ShufMask.getOperand(i));
2710 }
2711 }
2712 ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
2713 MappedOps);
2714 return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
2715 N->getOperand(0),
2716 DAG.getNode(ISD::UNDEF, N->getValueType(0)),
2717 ShufMask);
2718 }
2719
2720 return SDOperand();
2721}
2722
Chris Lattnerf1d0c622006-03-31 22:16:43 +00002723SDOperand DAGCombiner::visitVVECTOR_SHUFFLE(SDNode *N) {
2724 SDOperand ShufMask = N->getOperand(2);
2725 unsigned NumElts = ShufMask.getNumOperands()-2;
2726
2727 // If the shuffle mask is an identity operation on the LHS, return the LHS.
2728 bool isIdentity = true;
2729 for (unsigned i = 0; i != NumElts; ++i) {
2730 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
2731 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
2732 isIdentity = false;
2733 break;
2734 }
2735 }
2736 if (isIdentity) return N->getOperand(0);
2737
2738 // If the shuffle mask is an identity operation on the RHS, return the RHS.
2739 isIdentity = true;
2740 for (unsigned i = 0; i != NumElts; ++i) {
2741 if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
2742 cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
2743 isIdentity = false;
2744 break;
2745 }
2746 }
2747 if (isIdentity) return N->getOperand(1);
2748
2749 return SDOperand();
2750}
2751
Chris Lattneredab1b92006-04-02 03:25:57 +00002752/// visitVBinOp - Visit a binary vector operation, like VADD. IntOp indicates
2753/// the scalar operation of the vop if it is operating on an integer vector
2754/// (e.g. ADD) and FPOp indicates the FP version (e.g. FADD).
2755SDOperand DAGCombiner::visitVBinOp(SDNode *N, ISD::NodeType IntOp,
2756 ISD::NodeType FPOp) {
2757 MVT::ValueType EltType = cast<VTSDNode>(*(N->op_end()-1))->getVT();
2758 ISD::NodeType ScalarOp = MVT::isInteger(EltType) ? IntOp : FPOp;
2759 SDOperand LHS = N->getOperand(0);
2760 SDOperand RHS = N->getOperand(1);
2761
2762 // If the LHS and RHS are VBUILD_VECTOR nodes, see if we can constant fold
2763 // this operation.
2764 if (LHS.getOpcode() == ISD::VBUILD_VECTOR &&
2765 RHS.getOpcode() == ISD::VBUILD_VECTOR) {
2766 std::vector<SDOperand> Ops;
2767 for (unsigned i = 0, e = LHS.getNumOperands()-2; i != e; ++i) {
2768 SDOperand LHSOp = LHS.getOperand(i);
2769 SDOperand RHSOp = RHS.getOperand(i);
2770 // If these two elements can't be folded, bail out.
2771 if ((LHSOp.getOpcode() != ISD::UNDEF &&
2772 LHSOp.getOpcode() != ISD::Constant &&
2773 LHSOp.getOpcode() != ISD::ConstantFP) ||
2774 (RHSOp.getOpcode() != ISD::UNDEF &&
2775 RHSOp.getOpcode() != ISD::Constant &&
2776 RHSOp.getOpcode() != ISD::ConstantFP))
2777 break;
2778 Ops.push_back(DAG.getNode(ScalarOp, EltType, LHSOp, RHSOp));
2779 assert((Ops.back().getOpcode() == ISD::UNDEF ||
2780 Ops.back().getOpcode() == ISD::Constant ||
2781 Ops.back().getOpcode() == ISD::ConstantFP) &&
2782 "Scalar binop didn't fold!");
2783 }
2784 Ops.push_back(*(LHS.Val->op_end()-2));
2785 Ops.push_back(*(LHS.Val->op_end()-1));
2786 return DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
2787 }
2788
2789 return SDOperand();
2790}
2791
Nate Begeman44728a72005-09-19 22:34:01 +00002792SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00002793 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
2794
2795 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
2796 cast<CondCodeSDNode>(N0.getOperand(2))->get());
2797 // If we got a simplified select_cc node back from SimplifySelectCC, then
2798 // break it down into a new SETCC node, and a new SELECT node, and then return
2799 // the SELECT node, since we were called with a SELECT node.
2800 if (SCC.Val) {
2801 // Check to see if we got a select_cc back (to turn into setcc/select).
2802 // Otherwise, just return whatever node we got back, like fabs.
2803 if (SCC.getOpcode() == ISD::SELECT_CC) {
2804 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
2805 SCC.getOperand(0), SCC.getOperand(1),
2806 SCC.getOperand(4));
Chris Lattner5750df92006-03-01 04:03:14 +00002807 AddToWorkList(SETCC.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00002808 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
2809 SCC.getOperand(3), SETCC);
2810 }
2811 return SCC;
2812 }
Nate Begeman44728a72005-09-19 22:34:01 +00002813 return SDOperand();
2814}
2815
Chris Lattner40c62d52005-10-18 06:04:22 +00002816/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
2817/// are the two values being selected between, see if we can simplify the
2818/// select.
2819///
2820bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
2821 SDOperand RHS) {
2822
2823 // If this is a select from two identical things, try to pull the operation
2824 // through the select.
2825 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
2826#if 0
2827 std::cerr << "SELECT: ["; LHS.Val->dump();
2828 std::cerr << "] ["; RHS.Val->dump();
2829 std::cerr << "]\n";
2830#endif
2831
2832 // If this is a load and the token chain is identical, replace the select
2833 // of two loads with a load through a select of the address to load from.
2834 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
2835 // constants have been dropped into the constant pool.
2836 if ((LHS.getOpcode() == ISD::LOAD ||
2837 LHS.getOpcode() == ISD::EXTLOAD ||
2838 LHS.getOpcode() == ISD::ZEXTLOAD ||
2839 LHS.getOpcode() == ISD::SEXTLOAD) &&
2840 // Token chains must be identical.
2841 LHS.getOperand(0) == RHS.getOperand(0) &&
2842 // If this is an EXTLOAD, the VT's must match.
2843 (LHS.getOpcode() == ISD::LOAD ||
2844 LHS.getOperand(3) == RHS.getOperand(3))) {
2845 // FIXME: this conflates two src values, discarding one. This is not
2846 // the right thing to do, but nothing uses srcvalues now. When they do,
2847 // turn SrcValue into a list of locations.
2848 SDOperand Addr;
2849 if (TheSelect->getOpcode() == ISD::SELECT)
2850 Addr = DAG.getNode(ISD::SELECT, LHS.getOperand(1).getValueType(),
2851 TheSelect->getOperand(0), LHS.getOperand(1),
2852 RHS.getOperand(1));
2853 else
2854 Addr = DAG.getNode(ISD::SELECT_CC, LHS.getOperand(1).getValueType(),
2855 TheSelect->getOperand(0),
2856 TheSelect->getOperand(1),
2857 LHS.getOperand(1), RHS.getOperand(1),
2858 TheSelect->getOperand(4));
2859
2860 SDOperand Load;
2861 if (LHS.getOpcode() == ISD::LOAD)
2862 Load = DAG.getLoad(TheSelect->getValueType(0), LHS.getOperand(0),
2863 Addr, LHS.getOperand(2));
2864 else
2865 Load = DAG.getExtLoad(LHS.getOpcode(), TheSelect->getValueType(0),
2866 LHS.getOperand(0), Addr, LHS.getOperand(2),
2867 cast<VTSDNode>(LHS.getOperand(3))->getVT());
2868 // Users of the select now use the result of the load.
2869 CombineTo(TheSelect, Load);
2870
2871 // Users of the old loads now use the new load's chain. We know the
2872 // old-load value is dead now.
2873 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
2874 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
2875 return true;
2876 }
2877 }
2878
2879 return false;
2880}
2881
Nate Begeman44728a72005-09-19 22:34:01 +00002882SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
2883 SDOperand N2, SDOperand N3,
2884 ISD::CondCode CC) {
Nate Begemanf845b452005-10-08 00:29:44 +00002885
2886 MVT::ValueType VT = N2.getValueType();
2887 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
2888 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2889 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2890 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
2891
2892 // Determine if the condition we're dealing with is constant
2893 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
2894 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
2895
2896 // fold select_cc true, x, y -> x
2897 if (SCCC && SCCC->getValue())
2898 return N2;
2899 // fold select_cc false, x, y -> y
2900 if (SCCC && SCCC->getValue() == 0)
2901 return N3;
2902
2903 // Check to see if we can simplify the select into an fabs node
2904 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
2905 // Allow either -0.0 or 0.0
2906 if (CFP->getValue() == 0.0) {
2907 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
2908 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
2909 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
2910 N2 == N3.getOperand(0))
2911 return DAG.getNode(ISD::FABS, VT, N0);
2912
2913 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
2914 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
2915 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
2916 N2.getOperand(0) == N3)
2917 return DAG.getNode(ISD::FABS, VT, N3);
2918 }
2919 }
2920
2921 // Check to see if we can perform the "gzip trick", transforming
2922 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
2923 if (N1C && N1C->isNullValue() && N3C && N3C->isNullValue() &&
2924 MVT::isInteger(N0.getValueType()) &&
2925 MVT::isInteger(N2.getValueType()) && CC == ISD::SETLT) {
2926 MVT::ValueType XType = N0.getValueType();
2927 MVT::ValueType AType = N2.getValueType();
2928 if (XType >= AType) {
2929 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00002930 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00002931 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
2932 unsigned ShCtV = Log2_64(N2C->getValue());
2933 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
2934 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
2935 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
Chris Lattner5750df92006-03-01 04:03:14 +00002936 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00002937 if (XType > AType) {
2938 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00002939 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00002940 }
2941 return DAG.getNode(ISD::AND, AType, Shift, N2);
2942 }
2943 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
2944 DAG.getConstant(MVT::getSizeInBits(XType)-1,
2945 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00002946 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00002947 if (XType > AType) {
2948 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00002949 AddToWorkList(Shift.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00002950 }
2951 return DAG.getNode(ISD::AND, AType, Shift, N2);
2952 }
2953 }
Nate Begeman07ed4172005-10-10 21:26:48 +00002954
2955 // fold select C, 16, 0 -> shl C, 4
2956 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
2957 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
2958 // Get a SetCC of the condition
2959 // FIXME: Should probably make sure that setcc is legal if we ever have a
2960 // target where it isn't.
Nate Begemanb0d04a72006-02-18 02:40:58 +00002961 SDOperand Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00002962 // cast from setcc result type to select result type
Nate Begemanb0d04a72006-02-18 02:40:58 +00002963 if (AfterLegalize) {
2964 SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00002965 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
Nate Begemanb0d04a72006-02-18 02:40:58 +00002966 } else {
2967 SCC = DAG.getSetCC(MVT::i1, N0, N1, CC);
Nate Begeman07ed4172005-10-10 21:26:48 +00002968 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00002969 }
Chris Lattner5750df92006-03-01 04:03:14 +00002970 AddToWorkList(SCC.Val);
2971 AddToWorkList(Temp.Val);
Nate Begeman07ed4172005-10-10 21:26:48 +00002972 // shl setcc result by log2 n2c
2973 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
2974 DAG.getConstant(Log2_64(N2C->getValue()),
2975 TLI.getShiftAmountTy()));
2976 }
2977
Nate Begemanf845b452005-10-08 00:29:44 +00002978 // Check to see if this is the equivalent of setcc
2979 // FIXME: Turn all of these into setcc if setcc if setcc is legal
2980 // otherwise, go ahead with the folds.
2981 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
2982 MVT::ValueType XType = N0.getValueType();
2983 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
2984 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
2985 if (Res.getValueType() != VT)
2986 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
2987 return Res;
2988 }
2989
2990 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
2991 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
2992 TLI.isOperationLegal(ISD::CTLZ, XType)) {
2993 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
2994 return DAG.getNode(ISD::SRL, XType, Ctlz,
2995 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
2996 TLI.getShiftAmountTy()));
2997 }
2998 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
2999 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
3000 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
3001 N0);
3002 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
3003 DAG.getConstant(~0ULL, XType));
3004 return DAG.getNode(ISD::SRL, XType,
3005 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
3006 DAG.getConstant(MVT::getSizeInBits(XType)-1,
3007 TLI.getShiftAmountTy()));
3008 }
3009 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
3010 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
3011 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
3012 DAG.getConstant(MVT::getSizeInBits(XType)-1,
3013 TLI.getShiftAmountTy()));
3014 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
3015 }
3016 }
3017
3018 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
3019 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
3020 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
3021 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) {
3022 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0))) {
3023 MVT::ValueType XType = N0.getValueType();
3024 if (SubC->isNullValue() && MVT::isInteger(XType)) {
3025 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
3026 DAG.getConstant(MVT::getSizeInBits(XType)-1,
3027 TLI.getShiftAmountTy()));
3028 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
Chris Lattner5750df92006-03-01 04:03:14 +00003029 AddToWorkList(Shift.Val);
3030 AddToWorkList(Add.Val);
Nate Begemanf845b452005-10-08 00:29:44 +00003031 return DAG.getNode(ISD::XOR, XType, Add, Shift);
3032 }
3033 }
3034 }
3035
Nate Begeman44728a72005-09-19 22:34:01 +00003036 return SDOperand();
3037}
3038
Nate Begeman452d7be2005-09-16 00:54:12 +00003039SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00003040 SDOperand N1, ISD::CondCode Cond,
3041 bool foldBooleans) {
Nate Begeman452d7be2005-09-16 00:54:12 +00003042 // These setcc operations always fold.
3043 switch (Cond) {
3044 default: break;
3045 case ISD::SETFALSE:
3046 case ISD::SETFALSE2: return DAG.getConstant(0, VT);
3047 case ISD::SETTRUE:
3048 case ISD::SETTRUE2: return DAG.getConstant(1, VT);
3049 }
3050
3051 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
3052 uint64_t C1 = N1C->getValue();
3053 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val)) {
3054 uint64_t C0 = N0C->getValue();
3055
3056 // Sign extend the operands if required
3057 if (ISD::isSignedIntSetCC(Cond)) {
3058 C0 = N0C->getSignExtended();
3059 C1 = N1C->getSignExtended();
3060 }
3061
3062 switch (Cond) {
3063 default: assert(0 && "Unknown integer setcc!");
3064 case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT);
3065 case ISD::SETNE: return DAG.getConstant(C0 != C1, VT);
3066 case ISD::SETULT: return DAG.getConstant(C0 < C1, VT);
3067 case ISD::SETUGT: return DAG.getConstant(C0 > C1, VT);
3068 case ISD::SETULE: return DAG.getConstant(C0 <= C1, VT);
3069 case ISD::SETUGE: return DAG.getConstant(C0 >= C1, VT);
3070 case ISD::SETLT: return DAG.getConstant((int64_t)C0 < (int64_t)C1, VT);
3071 case ISD::SETGT: return DAG.getConstant((int64_t)C0 > (int64_t)C1, VT);
3072 case ISD::SETLE: return DAG.getConstant((int64_t)C0 <= (int64_t)C1, VT);
3073 case ISD::SETGE: return DAG.getConstant((int64_t)C0 >= (int64_t)C1, VT);
3074 }
3075 } else {
3076 // If the LHS is a ZERO_EXTEND, perform the comparison on the input.
3077 if (N0.getOpcode() == ISD::ZERO_EXTEND) {
3078 unsigned InSize = MVT::getSizeInBits(N0.getOperand(0).getValueType());
3079
3080 // If the comparison constant has bits in the upper part, the
3081 // zero-extended value could never match.
3082 if (C1 & (~0ULL << InSize)) {
3083 unsigned VSize = MVT::getSizeInBits(N0.getValueType());
3084 switch (Cond) {
3085 case ISD::SETUGT:
3086 case ISD::SETUGE:
3087 case ISD::SETEQ: return DAG.getConstant(0, VT);
3088 case ISD::SETULT:
3089 case ISD::SETULE:
3090 case ISD::SETNE: return DAG.getConstant(1, VT);
3091 case ISD::SETGT:
3092 case ISD::SETGE:
3093 // True if the sign bit of C1 is set.
3094 return DAG.getConstant((C1 & (1ULL << VSize)) != 0, VT);
3095 case ISD::SETLT:
3096 case ISD::SETLE:
3097 // True if the sign bit of C1 isn't set.
3098 return DAG.getConstant((C1 & (1ULL << VSize)) == 0, VT);
3099 default:
3100 break;
3101 }
3102 }
3103
3104 // Otherwise, we can perform the comparison with the low bits.
3105 switch (Cond) {
3106 case ISD::SETEQ:
3107 case ISD::SETNE:
3108 case ISD::SETUGT:
3109 case ISD::SETUGE:
3110 case ISD::SETULT:
3111 case ISD::SETULE:
3112 return DAG.getSetCC(VT, N0.getOperand(0),
3113 DAG.getConstant(C1, N0.getOperand(0).getValueType()),
3114 Cond);
3115 default:
3116 break; // todo, be more careful with signed comparisons
3117 }
3118 } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3119 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) {
3120 MVT::ValueType ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT();
3121 unsigned ExtSrcTyBits = MVT::getSizeInBits(ExtSrcTy);
3122 MVT::ValueType ExtDstTy = N0.getValueType();
3123 unsigned ExtDstTyBits = MVT::getSizeInBits(ExtDstTy);
3124
3125 // If the extended part has any inconsistent bits, it cannot ever
3126 // compare equal. In other words, they have to be all ones or all
3127 // zeros.
3128 uint64_t ExtBits =
3129 (~0ULL >> (64-ExtSrcTyBits)) & (~0ULL << (ExtDstTyBits-1));
3130 if ((C1 & ExtBits) != 0 && (C1 & ExtBits) != ExtBits)
3131 return DAG.getConstant(Cond == ISD::SETNE, VT);
3132
3133 SDOperand ZextOp;
3134 MVT::ValueType Op0Ty = N0.getOperand(0).getValueType();
3135 if (Op0Ty == ExtSrcTy) {
3136 ZextOp = N0.getOperand(0);
3137 } else {
3138 int64_t Imm = ~0ULL >> (64-ExtSrcTyBits);
3139 ZextOp = DAG.getNode(ISD::AND, Op0Ty, N0.getOperand(0),
3140 DAG.getConstant(Imm, Op0Ty));
3141 }
Chris Lattner5750df92006-03-01 04:03:14 +00003142 AddToWorkList(ZextOp.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003143 // Otherwise, make this a use of a zext.
3144 return DAG.getSetCC(VT, ZextOp,
3145 DAG.getConstant(C1 & (~0ULL>>(64-ExtSrcTyBits)),
3146 ExtDstTy),
3147 Cond);
Chris Lattner3391bcd2006-02-08 02:13:15 +00003148 } else if ((N1C->getValue() == 0 || N1C->getValue() == 1) &&
3149 (Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
3150 (N0.getOpcode() == ISD::XOR ||
3151 (N0.getOpcode() == ISD::AND &&
3152 N0.getOperand(0).getOpcode() == ISD::XOR &&
3153 N0.getOperand(1) == N0.getOperand(0).getOperand(1))) &&
3154 isa<ConstantSDNode>(N0.getOperand(1)) &&
3155 cast<ConstantSDNode>(N0.getOperand(1))->getValue() == 1) {
3156 // If this is (X^1) == 0/1, swap the RHS and eliminate the xor. We can
3157 // only do this if the top bits are known zero.
3158 if (TLI.MaskedValueIsZero(N1,
3159 MVT::getIntVTBitMask(N0.getValueType())-1)) {
3160 // Okay, get the un-inverted input value.
3161 SDOperand Val;
3162 if (N0.getOpcode() == ISD::XOR)
3163 Val = N0.getOperand(0);
3164 else {
3165 assert(N0.getOpcode() == ISD::AND &&
3166 N0.getOperand(0).getOpcode() == ISD::XOR);
3167 // ((X^1)&1)^1 -> X & 1
3168 Val = DAG.getNode(ISD::AND, N0.getValueType(),
3169 N0.getOperand(0).getOperand(0), N0.getOperand(1));
3170 }
3171 return DAG.getSetCC(VT, Val, N1,
3172 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ);
3173 }
Nate Begeman452d7be2005-09-16 00:54:12 +00003174 }
Chris Lattner5c46f742005-10-05 06:11:08 +00003175
Nate Begeman452d7be2005-09-16 00:54:12 +00003176 uint64_t MinVal, MaxVal;
3177 unsigned OperandBitSize = MVT::getSizeInBits(N1C->getValueType(0));
3178 if (ISD::isSignedIntSetCC(Cond)) {
3179 MinVal = 1ULL << (OperandBitSize-1);
3180 if (OperandBitSize != 1) // Avoid X >> 64, which is undefined.
3181 MaxVal = ~0ULL >> (65-OperandBitSize);
3182 else
3183 MaxVal = 0;
3184 } else {
3185 MinVal = 0;
3186 MaxVal = ~0ULL >> (64-OperandBitSize);
3187 }
3188
3189 // Canonicalize GE/LE comparisons to use GT/LT comparisons.
3190 if (Cond == ISD::SETGE || Cond == ISD::SETUGE) {
3191 if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true
3192 --C1; // X >= C0 --> X > (C0-1)
3193 return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()),
3194 (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT);
3195 }
3196
3197 if (Cond == ISD::SETLE || Cond == ISD::SETULE) {
3198 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
3199 ++C1; // X <= C0 --> X < (C0+1)
3200 return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()),
3201 (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT);
3202 }
3203
3204 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
3205 return DAG.getConstant(0, VT); // X < MIN --> false
3206
3207 // Canonicalize setgt X, Min --> setne X, Min
3208 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
3209 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
Chris Lattnerc8597ca2005-10-21 21:23:25 +00003210 // Canonicalize setlt X, Max --> setne X, Max
3211 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
3212 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
Nate Begeman452d7be2005-09-16 00:54:12 +00003213
3214 // If we have setult X, 1, turn it into seteq X, 0
3215 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
3216 return DAG.getSetCC(VT, N0, DAG.getConstant(MinVal, N0.getValueType()),
3217 ISD::SETEQ);
3218 // If we have setugt X, Max-1, turn it into seteq X, Max
3219 else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
3220 return DAG.getSetCC(VT, N0, DAG.getConstant(MaxVal, N0.getValueType()),
3221 ISD::SETEQ);
3222
3223 // If we have "setcc X, C0", check to see if we can shrink the immediate
3224 // by changing cc.
3225
3226 // SETUGT X, SINTMAX -> SETLT X, 0
3227 if (Cond == ISD::SETUGT && OperandBitSize != 1 &&
3228 C1 == (~0ULL >> (65-OperandBitSize)))
3229 return DAG.getSetCC(VT, N0, DAG.getConstant(0, N1.getValueType()),
3230 ISD::SETLT);
3231
3232 // FIXME: Implement the rest of these.
3233
3234 // Fold bit comparisons when we can.
3235 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
3236 VT == N0.getValueType() && N0.getOpcode() == ISD::AND)
3237 if (ConstantSDNode *AndRHS =
3238 dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3239 if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3
3240 // Perform the xform if the AND RHS is a single bit.
3241 if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) {
3242 return DAG.getNode(ISD::SRL, VT, N0,
3243 DAG.getConstant(Log2_64(AndRHS->getValue()),
3244 TLI.getShiftAmountTy()));
3245 }
3246 } else if (Cond == ISD::SETEQ && C1 == AndRHS->getValue()) {
3247 // (X & 8) == 8 --> (X & 8) >> 3
3248 // Perform the xform if C1 is a single bit.
3249 if ((C1 & (C1-1)) == 0) {
3250 return DAG.getNode(ISD::SRL, VT, N0,
3251 DAG.getConstant(Log2_64(C1),TLI.getShiftAmountTy()));
3252 }
3253 }
3254 }
3255 }
3256 } else if (isa<ConstantSDNode>(N0.Val)) {
3257 // Ensure that the constant occurs on the RHS.
3258 return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond));
3259 }
3260
3261 if (ConstantFPSDNode *N0C = dyn_cast<ConstantFPSDNode>(N0.Val))
3262 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
3263 double C0 = N0C->getValue(), C1 = N1C->getValue();
3264
3265 switch (Cond) {
3266 default: break; // FIXME: Implement the rest of these!
3267 case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT);
3268 case ISD::SETNE: return DAG.getConstant(C0 != C1, VT);
3269 case ISD::SETLT: return DAG.getConstant(C0 < C1, VT);
3270 case ISD::SETGT: return DAG.getConstant(C0 > C1, VT);
3271 case ISD::SETLE: return DAG.getConstant(C0 <= C1, VT);
3272 case ISD::SETGE: return DAG.getConstant(C0 >= C1, VT);
3273 }
3274 } else {
3275 // Ensure that the constant occurs on the RHS.
3276 return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond));
3277 }
3278
3279 if (N0 == N1) {
3280 // We can always fold X == Y for integer setcc's.
3281 if (MVT::isInteger(N0.getValueType()))
3282 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
3283 unsigned UOF = ISD::getUnorderedFlavor(Cond);
3284 if (UOF == 2) // FP operators that are undefined on NaNs.
3285 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
3286 if (UOF == unsigned(ISD::isTrueWhenEqual(Cond)))
3287 return DAG.getConstant(UOF, VT);
3288 // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO
3289 // if it is not already.
Chris Lattner4090aee2006-01-18 19:13:41 +00003290 ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO;
Nate Begeman452d7be2005-09-16 00:54:12 +00003291 if (NewCond != Cond)
3292 return DAG.getSetCC(VT, N0, N1, NewCond);
3293 }
3294
3295 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
3296 MVT::isInteger(N0.getValueType())) {
3297 if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB ||
3298 N0.getOpcode() == ISD::XOR) {
3299 // Simplify (X+Y) == (X+Z) --> Y == Z
3300 if (N0.getOpcode() == N1.getOpcode()) {
3301 if (N0.getOperand(0) == N1.getOperand(0))
3302 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond);
3303 if (N0.getOperand(1) == N1.getOperand(1))
3304 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(0), Cond);
3305 if (isCommutativeBinOp(N0.getOpcode())) {
3306 // If X op Y == Y op X, try other combinations.
3307 if (N0.getOperand(0) == N1.getOperand(1))
3308 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(0), Cond);
3309 if (N0.getOperand(1) == N1.getOperand(0))
Chris Lattnera158eee2005-10-25 18:57:30 +00003310 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(1), Cond);
Nate Begeman452d7be2005-09-16 00:54:12 +00003311 }
3312 }
Chris Lattnerb3ddfc42006-02-02 06:36:13 +00003313
3314 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) {
3315 if (ConstantSDNode *LHSR = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3316 // Turn (X+C1) == C2 --> X == C2-C1
3317 if (N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse()) {
3318 return DAG.getSetCC(VT, N0.getOperand(0),
3319 DAG.getConstant(RHSC->getValue()-LHSR->getValue(),
3320 N0.getValueType()), Cond);
3321 }
3322
3323 // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0.
3324 if (N0.getOpcode() == ISD::XOR)
Chris Lattner5c46f742005-10-05 06:11:08 +00003325 // If we know that all of the inverted bits are zero, don't bother
3326 // performing the inversion.
Chris Lattnerb3ddfc42006-02-02 06:36:13 +00003327 if (TLI.MaskedValueIsZero(N0.getOperand(0), ~LHSR->getValue()))
Chris Lattner5c46f742005-10-05 06:11:08 +00003328 return DAG.getSetCC(VT, N0.getOperand(0),
Chris Lattnerb3ddfc42006-02-02 06:36:13 +00003329 DAG.getConstant(LHSR->getValue()^RHSC->getValue(),
Chris Lattner5c46f742005-10-05 06:11:08 +00003330 N0.getValueType()), Cond);
Chris Lattnerb3ddfc42006-02-02 06:36:13 +00003331 }
3332
3333 // Turn (C1-X) == C2 --> X == C1-C2
3334 if (ConstantSDNode *SUBC = dyn_cast<ConstantSDNode>(N0.getOperand(0))) {
3335 if (N0.getOpcode() == ISD::SUB && N0.Val->hasOneUse()) {
3336 return DAG.getSetCC(VT, N0.getOperand(1),
3337 DAG.getConstant(SUBC->getValue()-RHSC->getValue(),
3338 N0.getValueType()), Cond);
Chris Lattner5c46f742005-10-05 06:11:08 +00003339 }
Chris Lattnerb3ddfc42006-02-02 06:36:13 +00003340 }
3341 }
3342
Nate Begeman452d7be2005-09-16 00:54:12 +00003343 // Simplify (X+Z) == X --> Z == 0
3344 if (N0.getOperand(0) == N1)
3345 return DAG.getSetCC(VT, N0.getOperand(1),
3346 DAG.getConstant(0, N0.getValueType()), Cond);
3347 if (N0.getOperand(1) == N1) {
3348 if (isCommutativeBinOp(N0.getOpcode()))
3349 return DAG.getSetCC(VT, N0.getOperand(0),
3350 DAG.getConstant(0, N0.getValueType()), Cond);
3351 else {
3352 assert(N0.getOpcode() == ISD::SUB && "Unexpected operation!");
3353 // (Z-X) == X --> Z == X<<1
3354 SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(),
3355 N1,
3356 DAG.getConstant(1,TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00003357 AddToWorkList(SH.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003358 return DAG.getSetCC(VT, N0.getOperand(0), SH, Cond);
3359 }
3360 }
3361 }
3362
3363 if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB ||
3364 N1.getOpcode() == ISD::XOR) {
3365 // Simplify X == (X+Z) --> Z == 0
3366 if (N1.getOperand(0) == N0) {
3367 return DAG.getSetCC(VT, N1.getOperand(1),
3368 DAG.getConstant(0, N1.getValueType()), Cond);
3369 } else if (N1.getOperand(1) == N0) {
3370 if (isCommutativeBinOp(N1.getOpcode())) {
3371 return DAG.getSetCC(VT, N1.getOperand(0),
3372 DAG.getConstant(0, N1.getValueType()), Cond);
3373 } else {
3374 assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!");
3375 // X == (Z-X) --> X<<1 == Z
3376 SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(), N0,
3377 DAG.getConstant(1,TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00003378 AddToWorkList(SH.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003379 return DAG.getSetCC(VT, SH, N1.getOperand(0), Cond);
3380 }
3381 }
3382 }
3383 }
3384
3385 // Fold away ALL boolean setcc's.
3386 SDOperand Temp;
Nate Begemane17daeb2005-10-05 21:43:42 +00003387 if (N0.getValueType() == MVT::i1 && foldBooleans) {
Nate Begeman452d7be2005-09-16 00:54:12 +00003388 switch (Cond) {
3389 default: assert(0 && "Unknown integer setcc!");
3390 case ISD::SETEQ: // X == Y -> (X^Y)^1
3391 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
3392 N0 = DAG.getNode(ISD::XOR, MVT::i1, Temp, DAG.getConstant(1, MVT::i1));
Chris Lattner5750df92006-03-01 04:03:14 +00003393 AddToWorkList(Temp.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003394 break;
3395 case ISD::SETNE: // X != Y --> (X^Y)
3396 N0 = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
3397 break;
3398 case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> X^1 & Y
3399 case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> X^1 & Y
3400 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
3401 N0 = DAG.getNode(ISD::AND, MVT::i1, N1, Temp);
Chris Lattner5750df92006-03-01 04:03:14 +00003402 AddToWorkList(Temp.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003403 break;
3404 case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> Y^1 & X
3405 case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> Y^1 & X
3406 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
3407 N0 = DAG.getNode(ISD::AND, MVT::i1, N0, Temp);
Chris Lattner5750df92006-03-01 04:03:14 +00003408 AddToWorkList(Temp.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003409 break;
3410 case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> X^1 | Y
3411 case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> X^1 | Y
3412 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
3413 N0 = DAG.getNode(ISD::OR, MVT::i1, N1, Temp);
Chris Lattner5750df92006-03-01 04:03:14 +00003414 AddToWorkList(Temp.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003415 break;
3416 case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> Y^1 | X
3417 case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> Y^1 | X
3418 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
3419 N0 = DAG.getNode(ISD::OR, MVT::i1, N0, Temp);
3420 break;
3421 }
3422 if (VT != MVT::i1) {
Chris Lattner5750df92006-03-01 04:03:14 +00003423 AddToWorkList(N0.Val);
Nate Begeman452d7be2005-09-16 00:54:12 +00003424 // FIXME: If running after legalize, we probably can't do this.
3425 N0 = DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
3426 }
3427 return N0;
3428 }
3429
3430 // Could not fold it.
3431 return SDOperand();
3432}
3433
Nate Begeman69575232005-10-20 02:15:44 +00003434/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
3435/// return a DAG expression to select that will generate the same value by
3436/// multiplying by a magic number. See:
3437/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
3438SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
3439 MVT::ValueType VT = N->getValueType(0);
Chris Lattnere9936d12005-10-22 18:50:15 +00003440
3441 // Check to see if we can do this.
3442 if (!TLI.isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
3443 return SDOperand(); // BuildSDIV only operates on i32 or i64
3444 if (!TLI.isOperationLegal(ISD::MULHS, VT))
3445 return SDOperand(); // Make sure the target supports MULHS.
Nate Begeman69575232005-10-20 02:15:44 +00003446
Nate Begemanc6a454e2005-10-20 17:45:03 +00003447 int64_t d = cast<ConstantSDNode>(N->getOperand(1))->getSignExtended();
Nate Begeman69575232005-10-20 02:15:44 +00003448 ms magics = (VT == MVT::i32) ? magic32(d) : magic64(d);
3449
3450 // Multiply the numerator (operand 0) by the magic value
3451 SDOperand Q = DAG.getNode(ISD::MULHS, VT, N->getOperand(0),
3452 DAG.getConstant(magics.m, VT));
3453 // If d > 0 and m < 0, add the numerator
3454 if (d > 0 && magics.m < 0) {
3455 Q = DAG.getNode(ISD::ADD, VT, Q, N->getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00003456 AddToWorkList(Q.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003457 }
3458 // If d < 0 and m > 0, subtract the numerator.
3459 if (d < 0 && magics.m > 0) {
3460 Q = DAG.getNode(ISD::SUB, VT, Q, N->getOperand(0));
Chris Lattner5750df92006-03-01 04:03:14 +00003461 AddToWorkList(Q.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003462 }
3463 // Shift right algebraic if shift value is nonzero
3464 if (magics.s > 0) {
3465 Q = DAG.getNode(ISD::SRA, VT, Q,
3466 DAG.getConstant(magics.s, TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00003467 AddToWorkList(Q.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003468 }
3469 // Extract the sign bit and add it to the quotient
3470 SDOperand T =
Nate Begeman4d385672005-10-21 01:51:45 +00003471 DAG.getNode(ISD::SRL, VT, Q, DAG.getConstant(MVT::getSizeInBits(VT)-1,
3472 TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00003473 AddToWorkList(T.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003474 return DAG.getNode(ISD::ADD, VT, Q, T);
3475}
3476
3477/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
3478/// return a DAG expression to select that will generate the same value by
3479/// multiplying by a magic number. See:
3480/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
3481SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
3482 MVT::ValueType VT = N->getValueType(0);
Chris Lattnere9936d12005-10-22 18:50:15 +00003483
3484 // Check to see if we can do this.
3485 if (!TLI.isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
3486 return SDOperand(); // BuildUDIV only operates on i32 or i64
3487 if (!TLI.isOperationLegal(ISD::MULHU, VT))
3488 return SDOperand(); // Make sure the target supports MULHU.
Nate Begeman69575232005-10-20 02:15:44 +00003489
3490 uint64_t d = cast<ConstantSDNode>(N->getOperand(1))->getValue();
3491 mu magics = (VT == MVT::i32) ? magicu32(d) : magicu64(d);
3492
3493 // Multiply the numerator (operand 0) by the magic value
3494 SDOperand Q = DAG.getNode(ISD::MULHU, VT, N->getOperand(0),
3495 DAG.getConstant(magics.m, VT));
Chris Lattner5750df92006-03-01 04:03:14 +00003496 AddToWorkList(Q.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003497
3498 if (magics.a == 0) {
3499 return DAG.getNode(ISD::SRL, VT, Q,
3500 DAG.getConstant(magics.s, TLI.getShiftAmountTy()));
3501 } else {
3502 SDOperand NPQ = DAG.getNode(ISD::SUB, VT, N->getOperand(0), Q);
Chris Lattner5750df92006-03-01 04:03:14 +00003503 AddToWorkList(NPQ.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003504 NPQ = DAG.getNode(ISD::SRL, VT, NPQ,
3505 DAG.getConstant(1, TLI.getShiftAmountTy()));
Chris Lattner5750df92006-03-01 04:03:14 +00003506 AddToWorkList(NPQ.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003507 NPQ = DAG.getNode(ISD::ADD, VT, NPQ, Q);
Chris Lattner5750df92006-03-01 04:03:14 +00003508 AddToWorkList(NPQ.Val);
Nate Begeman69575232005-10-20 02:15:44 +00003509 return DAG.getNode(ISD::SRL, VT, NPQ,
3510 DAG.getConstant(magics.s-1, TLI.getShiftAmountTy()));
3511 }
3512}
3513
Nate Begeman1d4d4142005-09-01 00:19:25 +00003514// SelectionDAG::Combine - This is the entry point for the file.
3515//
Nate Begeman4ebd8052005-09-01 23:24:04 +00003516void SelectionDAG::Combine(bool RunningAfterLegalize) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00003517 /// run - This is the main entry point to this class.
3518 ///
Nate Begeman4ebd8052005-09-01 23:24:04 +00003519 DAGCombiner(*this).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003520}