blob: 6fd1fe4b789dcfef91e894dd87e1891becd37414 [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//
19// FIXME: Should add a corresponding version of fold AND with
20// ZERO_EXTEND/SIGN_EXTEND by converting them to an ANY_EXTEND node which
21// we don't have yet.
22//
Nate Begeman44728a72005-09-19 22:34:01 +000023// FIXME: select C, pow2, pow2 -> something smart
24// FIXME: trunc(select X, Y, Z) -> select X, trunc(Y), trunc(Z)
Nate Begeman44728a72005-09-19 22:34:01 +000025// FIXME: Dead stores -> nuke
Chris Lattner40c62d52005-10-18 06:04:22 +000026// FIXME: shr X, (and Y,31) -> shr X, Y (TRICKY!)
Nate Begeman1d4d4142005-09-01 00:19:25 +000027// FIXME: mul (x, const) -> shifts + adds
Nate Begeman1d4d4142005-09-01 00:19:25 +000028// FIXME: undef values
Nate Begeman4ebd8052005-09-01 23:24:04 +000029// FIXME: make truncate see through SIGN_EXTEND and AND
Nate Begeman4ebd8052005-09-01 23:24:04 +000030// FIXME: (sra (sra x, c1), c2) -> (sra x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +000031// FIXME: verify that getNode can't return extends with an operand whose type
32// is >= to that of the extend.
33// FIXME: divide by zero is currently left unfolded. do we want to turn this
34// into an undef?
Nate Begemanf845b452005-10-08 00:29:44 +000035// FIXME: select ne (select cc, 1, 0), 0, true, false -> select cc, true, false
Chris Lattner01a22022005-10-10 22:04:48 +000036// FIXME: reassociate (X+C)+Y into (X+Y)+C if the inner expression has one use
Nate Begeman1d4d4142005-09-01 00:19:25 +000037//
38//===----------------------------------------------------------------------===//
39
40#define DEBUG_TYPE "dagcombine"
41#include "llvm/ADT/Statistic.h"
42#include "llvm/CodeGen/SelectionDAG.h"
Nate Begeman2300f552005-09-07 00:15:36 +000043#include "llvm/Support/Debug.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000044#include "llvm/Support/MathExtras.h"
45#include "llvm/Target/TargetLowering.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000046#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000047#include <cmath>
Chris Lattner2c2c6c62006-01-22 23:41:00 +000048#include <iostream>
Nate Begeman1d4d4142005-09-01 00:19:25 +000049using namespace llvm;
50
51namespace {
52 Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined");
53
54 class DAGCombiner {
55 SelectionDAG &DAG;
56 TargetLowering &TLI;
Nate Begeman4ebd8052005-09-01 23:24:04 +000057 bool AfterLegalize;
Nate Begeman1d4d4142005-09-01 00:19:25 +000058
59 // Worklist of all of the nodes that need to be simplified.
60 std::vector<SDNode*> WorkList;
61
62 /// AddUsersToWorkList - When an instruction is simplified, add all users of
63 /// the instruction to the work lists because they might get more simplified
64 /// now.
65 ///
66 void AddUsersToWorkList(SDNode *N) {
67 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000068 UI != UE; ++UI)
69 WorkList.push_back(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000070 }
71
72 /// removeFromWorkList - remove all instances of N from the worklist.
73 void removeFromWorkList(SDNode *N) {
74 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
75 WorkList.end());
76 }
77
Chris Lattner01a22022005-10-10 22:04:48 +000078 SDOperand CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
Chris Lattner87514ca2005-10-10 22:31:19 +000079 ++NodesCombined;
Chris Lattner01a22022005-10-10 22:04:48 +000080 DEBUG(std::cerr << "\nReplacing "; N->dump();
81 std::cerr << "\nWith: "; To[0].Val->dump();
82 std::cerr << " and " << To.size()-1 << " other values\n");
83 std::vector<SDNode*> NowDead;
84 DAG.ReplaceAllUsesWith(N, To, &NowDead);
85
86 // Push the new nodes and any users onto the worklist
87 for (unsigned i = 0, e = To.size(); i != e; ++i) {
88 WorkList.push_back(To[i].Val);
89 AddUsersToWorkList(To[i].Val);
90 }
91
92 // Nodes can end up on the worklist more than once. Make sure we do
93 // not process a node that has been replaced.
94 removeFromWorkList(N);
95 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
96 removeFromWorkList(NowDead[i]);
97
98 // Finally, since the node is now dead, remove it from the graph.
99 DAG.DeleteNode(N);
100 return SDOperand(N, 0);
101 }
Chris Lattner87514ca2005-10-10 22:31:19 +0000102
103 SDOperand CombineTo(SDNode *N, SDOperand Res) {
104 std::vector<SDOperand> To;
105 To.push_back(Res);
106 return CombineTo(N, To);
107 }
Chris Lattner01a22022005-10-10 22:04:48 +0000108
109 SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
110 std::vector<SDOperand> To;
111 To.push_back(Res0);
112 To.push_back(Res1);
113 return CombineTo(N, To);
114 }
115
Nate Begeman1d4d4142005-09-01 00:19:25 +0000116 /// visit - call the node-specific routine that knows how to fold each
117 /// particular type of node.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000118 SDOperand visit(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000119
120 // Visitation implementation - Implement dag node combining for different
121 // node types. The semantics are as follows:
122 // Return Value:
Nate Begeman2300f552005-09-07 00:15:36 +0000123 // SDOperand.Val == 0 - No change was made
Chris Lattner01a22022005-10-10 22:04:48 +0000124 // SDOperand.Val == N - N was replaced, is dead, and is already handled.
Nate Begeman2300f552005-09-07 00:15:36 +0000125 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000126 //
Nate Begeman83e75ec2005-09-06 04:43:02 +0000127 SDOperand visitTokenFactor(SDNode *N);
128 SDOperand visitADD(SDNode *N);
129 SDOperand visitSUB(SDNode *N);
130 SDOperand visitMUL(SDNode *N);
131 SDOperand visitSDIV(SDNode *N);
132 SDOperand visitUDIV(SDNode *N);
133 SDOperand visitSREM(SDNode *N);
134 SDOperand visitUREM(SDNode *N);
135 SDOperand visitMULHU(SDNode *N);
136 SDOperand visitMULHS(SDNode *N);
137 SDOperand visitAND(SDNode *N);
138 SDOperand visitOR(SDNode *N);
139 SDOperand visitXOR(SDNode *N);
140 SDOperand visitSHL(SDNode *N);
141 SDOperand visitSRA(SDNode *N);
142 SDOperand visitSRL(SDNode *N);
143 SDOperand visitCTLZ(SDNode *N);
144 SDOperand visitCTTZ(SDNode *N);
145 SDOperand visitCTPOP(SDNode *N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000146 SDOperand visitSELECT(SDNode *N);
147 SDOperand visitSELECT_CC(SDNode *N);
148 SDOperand visitSETCC(SDNode *N);
Nate Begeman5054f162005-10-14 01:12:21 +0000149 SDOperand visitADD_PARTS(SDNode *N);
150 SDOperand visitSUB_PARTS(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000151 SDOperand visitSIGN_EXTEND(SDNode *N);
152 SDOperand visitZERO_EXTEND(SDNode *N);
153 SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
154 SDOperand visitTRUNCATE(SDNode *N);
Chris Lattner94683772005-12-23 05:30:37 +0000155 SDOperand visitBIT_CONVERT(SDNode *N);
Nate Begeman5054f162005-10-14 01:12:21 +0000156
Chris Lattner01b3d732005-09-28 22:28:18 +0000157 SDOperand visitFADD(SDNode *N);
158 SDOperand visitFSUB(SDNode *N);
159 SDOperand visitFMUL(SDNode *N);
160 SDOperand visitFDIV(SDNode *N);
161 SDOperand visitFREM(SDNode *N);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000162 SDOperand visitSINT_TO_FP(SDNode *N);
163 SDOperand visitUINT_TO_FP(SDNode *N);
164 SDOperand visitFP_TO_SINT(SDNode *N);
165 SDOperand visitFP_TO_UINT(SDNode *N);
166 SDOperand visitFP_ROUND(SDNode *N);
167 SDOperand visitFP_ROUND_INREG(SDNode *N);
168 SDOperand visitFP_EXTEND(SDNode *N);
169 SDOperand visitFNEG(SDNode *N);
170 SDOperand visitFABS(SDNode *N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000171 SDOperand visitBRCOND(SDNode *N);
Nate Begeman44728a72005-09-19 22:34:01 +0000172 SDOperand visitBRCONDTWOWAY(SDNode *N);
173 SDOperand visitBR_CC(SDNode *N);
174 SDOperand visitBRTWOWAY_CC(SDNode *N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000175
Chris Lattner01a22022005-10-10 22:04:48 +0000176 SDOperand visitLOAD(SDNode *N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000177 SDOperand visitSTORE(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000178
Jim Laskeyd6e8d412005-12-23 20:08:28 +0000179 SDOperand visitLOCATION(SDNode *N);
180 SDOperand visitDEBUGLOC(SDNode *N);
181
Chris Lattner40c62d52005-10-18 06:04:22 +0000182 bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
Nate Begeman44728a72005-09-19 22:34:01 +0000183 SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
184 SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2,
185 SDOperand N3, ISD::CondCode CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000186 SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
Nate Begemane17daeb2005-10-05 21:43:42 +0000187 ISD::CondCode Cond, bool foldBooleans = true);
Nate Begeman69575232005-10-20 02:15:44 +0000188
189 SDOperand BuildSDIV(SDNode *N);
190 SDOperand BuildUDIV(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000191public:
192 DAGCombiner(SelectionDAG &D)
Nate Begeman646d7e22005-09-02 21:18:40 +0000193 : DAG(D), TLI(D.getTargetLoweringInfo()), AfterLegalize(false) {}
Nate Begeman1d4d4142005-09-01 00:19:25 +0000194
195 /// Run - runs the dag combiner on all nodes in the work list
Nate Begeman4ebd8052005-09-01 23:24:04 +0000196 void Run(bool RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000197 };
198}
199
Nate Begeman69575232005-10-20 02:15:44 +0000200struct ms {
201 int64_t m; // magic number
202 int64_t s; // shift amount
203};
204
205struct mu {
206 uint64_t m; // magic number
207 int64_t a; // add indicator
208 int64_t s; // shift amount
209};
210
211/// magic - calculate the magic numbers required to codegen an integer sdiv as
212/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
213/// or -1.
214static ms magic32(int32_t d) {
215 int32_t p;
216 uint32_t ad, anc, delta, q1, r1, q2, r2, t;
217 const uint32_t two31 = 0x80000000U;
218 struct ms mag;
219
220 ad = abs(d);
221 t = two31 + ((uint32_t)d >> 31);
222 anc = t - 1 - t%ad; // absolute value of nc
223 p = 31; // initialize p
224 q1 = two31/anc; // initialize q1 = 2p/abs(nc)
225 r1 = two31 - q1*anc; // initialize r1 = rem(2p,abs(nc))
226 q2 = two31/ad; // initialize q2 = 2p/abs(d)
227 r2 = two31 - q2*ad; // initialize r2 = rem(2p,abs(d))
228 do {
229 p = p + 1;
230 q1 = 2*q1; // update q1 = 2p/abs(nc)
231 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
232 if (r1 >= anc) { // must be unsigned comparison
233 q1 = q1 + 1;
234 r1 = r1 - anc;
235 }
236 q2 = 2*q2; // update q2 = 2p/abs(d)
237 r2 = 2*r2; // update r2 = rem(2p/abs(d))
238 if (r2 >= ad) { // must be unsigned comparison
239 q2 = q2 + 1;
240 r2 = r2 - ad;
241 }
242 delta = ad - r2;
243 } while (q1 < delta || (q1 == delta && r1 == 0));
244
245 mag.m = (int32_t)(q2 + 1); // make sure to sign extend
246 if (d < 0) mag.m = -mag.m; // resulting magic number
247 mag.s = p - 32; // resulting shift
248 return mag;
249}
250
251/// magicu - calculate the magic numbers required to codegen an integer udiv as
252/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
253static mu magicu32(uint32_t d) {
254 int32_t p;
255 uint32_t nc, delta, q1, r1, q2, r2;
256 struct mu magu;
257 magu.a = 0; // initialize "add" indicator
258 nc = - 1 - (-d)%d;
259 p = 31; // initialize p
260 q1 = 0x80000000/nc; // initialize q1 = 2p/nc
261 r1 = 0x80000000 - q1*nc; // initialize r1 = rem(2p,nc)
262 q2 = 0x7FFFFFFF/d; // initialize q2 = (2p-1)/d
263 r2 = 0x7FFFFFFF - q2*d; // initialize r2 = rem((2p-1),d)
264 do {
265 p = p + 1;
266 if (r1 >= nc - r1 ) {
267 q1 = 2*q1 + 1; // update q1
268 r1 = 2*r1 - nc; // update r1
269 }
270 else {
271 q1 = 2*q1; // update q1
272 r1 = 2*r1; // update r1
273 }
274 if (r2 + 1 >= d - r2) {
275 if (q2 >= 0x7FFFFFFF) magu.a = 1;
276 q2 = 2*q2 + 1; // update q2
277 r2 = 2*r2 + 1 - d; // update r2
278 }
279 else {
280 if (q2 >= 0x80000000) magu.a = 1;
281 q2 = 2*q2; // update q2
282 r2 = 2*r2 + 1; // update r2
283 }
284 delta = d - 1 - r2;
285 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
286 magu.m = q2 + 1; // resulting magic number
287 magu.s = p - 32; // resulting shift
288 return magu;
289}
290
291/// magic - calculate the magic numbers required to codegen an integer sdiv as
292/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
293/// or -1.
294static ms magic64(int64_t d) {
295 int64_t p;
296 uint64_t ad, anc, delta, q1, r1, q2, r2, t;
297 const uint64_t two63 = 9223372036854775808ULL; // 2^63
298 struct ms mag;
299
Chris Lattnerf75f2a02005-10-20 17:01:00 +0000300 ad = d >= 0 ? d : -d;
Nate Begeman69575232005-10-20 02:15:44 +0000301 t = two63 + ((uint64_t)d >> 63);
302 anc = t - 1 - t%ad; // absolute value of nc
303 p = 63; // initialize p
304 q1 = two63/anc; // initialize q1 = 2p/abs(nc)
305 r1 = two63 - q1*anc; // initialize r1 = rem(2p,abs(nc))
306 q2 = two63/ad; // initialize q2 = 2p/abs(d)
307 r2 = two63 - q2*ad; // initialize r2 = rem(2p,abs(d))
308 do {
309 p = p + 1;
310 q1 = 2*q1; // update q1 = 2p/abs(nc)
311 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
312 if (r1 >= anc) { // must be unsigned comparison
313 q1 = q1 + 1;
314 r1 = r1 - anc;
315 }
316 q2 = 2*q2; // update q2 = 2p/abs(d)
317 r2 = 2*r2; // update r2 = rem(2p/abs(d))
318 if (r2 >= ad) { // must be unsigned comparison
319 q2 = q2 + 1;
320 r2 = r2 - ad;
321 }
322 delta = ad - r2;
323 } while (q1 < delta || (q1 == delta && r1 == 0));
324
325 mag.m = q2 + 1;
326 if (d < 0) mag.m = -mag.m; // resulting magic number
327 mag.s = p - 64; // resulting shift
328 return mag;
329}
330
331/// magicu - calculate the magic numbers required to codegen an integer udiv as
332/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
333static mu magicu64(uint64_t d)
334{
335 int64_t p;
336 uint64_t nc, delta, q1, r1, q2, r2;
337 struct mu magu;
338 magu.a = 0; // initialize "add" indicator
339 nc = - 1 - (-d)%d;
340 p = 63; // initialize p
341 q1 = 0x8000000000000000ull/nc; // initialize q1 = 2p/nc
342 r1 = 0x8000000000000000ull - q1*nc; // initialize r1 = rem(2p,nc)
343 q2 = 0x7FFFFFFFFFFFFFFFull/d; // initialize q2 = (2p-1)/d
344 r2 = 0x7FFFFFFFFFFFFFFFull - q2*d; // initialize r2 = rem((2p-1),d)
345 do {
346 p = p + 1;
347 if (r1 >= nc - r1 ) {
348 q1 = 2*q1 + 1; // update q1
349 r1 = 2*r1 - nc; // update r1
350 }
351 else {
352 q1 = 2*q1; // update q1
353 r1 = 2*r1; // update r1
354 }
355 if (r2 + 1 >= d - r2) {
356 if (q2 >= 0x7FFFFFFFFFFFFFFFull) magu.a = 1;
357 q2 = 2*q2 + 1; // update q2
358 r2 = 2*r2 + 1 - d; // update r2
359 }
360 else {
361 if (q2 >= 0x8000000000000000ull) magu.a = 1;
362 q2 = 2*q2; // update q2
363 r2 = 2*r2 + 1; // update r2
364 }
365 delta = d - 1 - r2;
366 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
367 magu.m = q2 + 1; // resulting magic number
368 magu.s = p - 64; // resulting shift
369 return magu;
370}
371
Nate Begeman4ebd8052005-09-01 23:24:04 +0000372// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
373// that selects between the values 1 and 0, making it equivalent to a setcc.
Nate Begeman646d7e22005-09-02 21:18:40 +0000374// Also, set the incoming LHS, RHS, and CC references to the appropriate
375// nodes based on the type of node we are checking. This simplifies life a
376// bit for the callers.
377static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
378 SDOperand &CC) {
379 if (N.getOpcode() == ISD::SETCC) {
380 LHS = N.getOperand(0);
381 RHS = N.getOperand(1);
382 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000383 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000384 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000385 if (N.getOpcode() == ISD::SELECT_CC &&
386 N.getOperand(2).getOpcode() == ISD::Constant &&
387 N.getOperand(3).getOpcode() == ISD::Constant &&
388 cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000389 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
390 LHS = N.getOperand(0);
391 RHS = N.getOperand(1);
392 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000393 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000394 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000395 return false;
396}
397
Nate Begeman99801192005-09-07 23:25:52 +0000398// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
399// one use. If this is true, it allows the users to invert the operation for
400// free when it is profitable to do so.
401static bool isOneUseSetCC(SDOperand N) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000402 SDOperand N0, N1, N2;
Nate Begeman646d7e22005-09-02 21:18:40 +0000403 if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000404 return true;
405 return false;
406}
407
Nate Begeman452d7beb2005-09-16 00:54:12 +0000408// FIXME: This should probably go in the ISD class rather than being duplicated
409// in several files.
410static bool isCommutativeBinOp(unsigned Opcode) {
411 switch (Opcode) {
412 case ISD::ADD:
413 case ISD::MUL:
414 case ISD::AND:
415 case ISD::OR:
416 case ISD::XOR: return true;
417 default: return false; // FIXME: Need commutative info for user ops!
418 }
419}
420
Nate Begeman4ebd8052005-09-01 23:24:04 +0000421void DAGCombiner::Run(bool RunningAfterLegalize) {
422 // set the instance variable, so that the various visit routines may use it.
423 AfterLegalize = RunningAfterLegalize;
424
Nate Begeman646d7e22005-09-02 21:18:40 +0000425 // Add all the dag nodes to the worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000426 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
427 E = DAG.allnodes_end(); I != E; ++I)
428 WorkList.push_back(I);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000429
Chris Lattner95038592005-10-05 06:35:28 +0000430 // Create a dummy node (which is not added to allnodes), that adds a reference
431 // to the root node, preventing it from being deleted, and tracking any
432 // changes of the root.
433 HandleSDNode Dummy(DAG.getRoot());
434
Nate Begeman1d4d4142005-09-01 00:19:25 +0000435 // while the worklist isn't empty, inspect the node on the end of it and
436 // try and combine it.
437 while (!WorkList.empty()) {
438 SDNode *N = WorkList.back();
439 WorkList.pop_back();
440
441 // If N has no uses, it is dead. Make sure to revisit all N's operands once
Chris Lattner95038592005-10-05 06:35:28 +0000442 // N is deleted from the DAG, since they too may now be dead or may have a
443 // reduced number of uses, allowing other xforms.
444 if (N->use_empty() && N != &Dummy) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000445 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
446 WorkList.push_back(N->getOperand(i).Val);
447
Nate Begeman1d4d4142005-09-01 00:19:25 +0000448 removeFromWorkList(N);
Chris Lattner95038592005-10-05 06:35:28 +0000449 DAG.DeleteNode(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000450 continue;
451 }
452
Nate Begeman83e75ec2005-09-06 04:43:02 +0000453 SDOperand RV = visit(N);
454 if (RV.Val) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000455 ++NodesCombined;
Nate Begeman646d7e22005-09-02 21:18:40 +0000456 // If we get back the same node we passed in, rather than a new node or
457 // zero, we know that the node must have defined multiple values and
458 // CombineTo was used. Since CombineTo takes care of the worklist
459 // mechanics for us, we have no work to do in this case.
Nate Begeman83e75ec2005-09-06 04:43:02 +0000460 if (RV.Val != N) {
Nate Begeman2300f552005-09-07 00:15:36 +0000461 DEBUG(std::cerr << "\nReplacing "; N->dump();
462 std::cerr << "\nWith: "; RV.Val->dump();
463 std::cerr << '\n');
Chris Lattner01a22022005-10-10 22:04:48 +0000464 std::vector<SDNode*> NowDead;
465 DAG.ReplaceAllUsesWith(N, std::vector<SDOperand>(1, RV), &NowDead);
Nate Begeman646d7e22005-09-02 21:18:40 +0000466
467 // Push the new node and any users onto the worklist
Nate Begeman83e75ec2005-09-06 04:43:02 +0000468 WorkList.push_back(RV.Val);
469 AddUsersToWorkList(RV.Val);
Nate Begeman646d7e22005-09-02 21:18:40 +0000470
471 // Nodes can end up on the worklist more than once. Make sure we do
472 // not process a node that has been replaced.
473 removeFromWorkList(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000474 for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
475 removeFromWorkList(NowDead[i]);
Chris Lattner5c46f742005-10-05 06:11:08 +0000476
477 // Finally, since the node is now dead, remove it from the graph.
478 DAG.DeleteNode(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000479 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000480 }
481 }
Chris Lattner95038592005-10-05 06:35:28 +0000482
483 // If the root changed (e.g. it was a dead load, update the root).
484 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +0000485}
486
Nate Begeman83e75ec2005-09-06 04:43:02 +0000487SDOperand DAGCombiner::visit(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000488 switch(N->getOpcode()) {
489 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +0000490 case ISD::TokenFactor: return visitTokenFactor(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000491 case ISD::ADD: return visitADD(N);
492 case ISD::SUB: return visitSUB(N);
493 case ISD::MUL: return visitMUL(N);
494 case ISD::SDIV: return visitSDIV(N);
495 case ISD::UDIV: return visitUDIV(N);
496 case ISD::SREM: return visitSREM(N);
497 case ISD::UREM: return visitUREM(N);
498 case ISD::MULHU: return visitMULHU(N);
499 case ISD::MULHS: return visitMULHS(N);
500 case ISD::AND: return visitAND(N);
501 case ISD::OR: return visitOR(N);
502 case ISD::XOR: return visitXOR(N);
503 case ISD::SHL: return visitSHL(N);
504 case ISD::SRA: return visitSRA(N);
505 case ISD::SRL: return visitSRL(N);
506 case ISD::CTLZ: return visitCTLZ(N);
507 case ISD::CTTZ: return visitCTTZ(N);
508 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +0000509 case ISD::SELECT: return visitSELECT(N);
510 case ISD::SELECT_CC: return visitSELECT_CC(N);
511 case ISD::SETCC: return visitSETCC(N);
Nate Begeman5054f162005-10-14 01:12:21 +0000512 case ISD::ADD_PARTS: return visitADD_PARTS(N);
513 case ISD::SUB_PARTS: return visitSUB_PARTS(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000514 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
515 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
516 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
517 case ISD::TRUNCATE: return visitTRUNCATE(N);
Chris Lattner94683772005-12-23 05:30:37 +0000518 case ISD::BIT_CONVERT: return visitBIT_CONVERT(N);
Chris Lattner01b3d732005-09-28 22:28:18 +0000519 case ISD::FADD: return visitFADD(N);
520 case ISD::FSUB: return visitFSUB(N);
521 case ISD::FMUL: return visitFMUL(N);
522 case ISD::FDIV: return visitFDIV(N);
523 case ISD::FREM: return visitFREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +0000524 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
525 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
526 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
527 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
528 case ISD::FP_ROUND: return visitFP_ROUND(N);
529 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
530 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
531 case ISD::FNEG: return visitFNEG(N);
532 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +0000533 case ISD::BRCOND: return visitBRCOND(N);
534 case ISD::BRCONDTWOWAY: return visitBRCONDTWOWAY(N);
535 case ISD::BR_CC: return visitBR_CC(N);
536 case ISD::BRTWOWAY_CC: return visitBRTWOWAY_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000537 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +0000538 case ISD::STORE: return visitSTORE(N);
Jim Laskeyd6e8d412005-12-23 20:08:28 +0000539 case ISD::LOCATION: return visitLOCATION(N);
540 case ISD::DEBUG_LOC: return visitDEBUGLOC(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000541 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000542 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000543}
544
Nate Begeman83e75ec2005-09-06 04:43:02 +0000545SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
Nate Begemanded49632005-10-13 03:11:28 +0000546 std::vector<SDOperand> Ops;
547 bool Changed = false;
548
Nate Begeman1d4d4142005-09-01 00:19:25 +0000549 // If the token factor has two operands and one is the entry token, replace
550 // the token factor with the other operand.
551 if (N->getNumOperands() == 2) {
552 if (N->getOperand(0).getOpcode() == ISD::EntryToken)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000553 return N->getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000554 if (N->getOperand(1).getOpcode() == ISD::EntryToken)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000555 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000556 }
Chris Lattner24edbb72005-10-13 22:10:05 +0000557
Nate Begemanded49632005-10-13 03:11:28 +0000558 // fold (tokenfactor (tokenfactor)) -> tokenfactor
559 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
560 SDOperand Op = N->getOperand(i);
561 if (Op.getOpcode() == ISD::TokenFactor && Op.hasOneUse()) {
562 Changed = true;
563 for (unsigned j = 0, e = Op.getNumOperands(); j != e; ++j)
564 Ops.push_back(Op.getOperand(j));
565 } else {
566 Ops.push_back(Op);
567 }
568 }
569 if (Changed)
570 return DAG.getNode(ISD::TokenFactor, MVT::Other, Ops);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000571 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000572}
573
Nate Begeman83e75ec2005-09-06 04:43:02 +0000574SDOperand DAGCombiner::visitADD(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000575 SDOperand N0 = N->getOperand(0);
576 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000577 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
578 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemanf89d78d2005-09-07 16:09:19 +0000579 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000580
581 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000582 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000583 return DAG.getNode(ISD::ADD, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000584 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000585 if (N0C && !N1C)
586 return DAG.getNode(ISD::ADD, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000587 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000588 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000589 return N0;
Nate Begeman223df222005-09-08 20:18:10 +0000590 // fold (add (add x, c1), c2) -> (add x, c1+c2)
591 if (N1C && N0.getOpcode() == ISD::ADD) {
592 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
593 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
594 if (N00C)
595 return DAG.getNode(ISD::ADD, VT, N0.getOperand(1),
596 DAG.getConstant(N1C->getValue()+N00C->getValue(), VT));
597 if (N01C)
598 return DAG.getNode(ISD::ADD, VT, N0.getOperand(0),
599 DAG.getConstant(N1C->getValue()+N01C->getValue(), VT));
600 }
Chris Lattner4aafb4f2006-01-12 20:22:43 +0000601
602 // fold ((c1-A)+c2) -> (c1+c2)-A
603 if (N1C && N0.getOpcode() == ISD::SUB)
604 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
605 return DAG.getNode(ISD::SUB, VT,
606 DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
607 N0.getOperand(1));
608
Nate Begeman1d4d4142005-09-01 00:19:25 +0000609 // fold ((0-A) + B) -> B-A
610 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
611 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000612 return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000613 // fold (A + (0-B)) -> A-B
614 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
615 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Nate Begemanf89d78d2005-09-07 16:09:19 +0000616 return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +0000617 // fold (A+(B-A)) -> B
618 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000619 return N1.getOperand(0);
620 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000621}
622
Nate Begeman83e75ec2005-09-06 04:43:02 +0000623SDOperand DAGCombiner::visitSUB(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000624 SDOperand N0 = N->getOperand(0);
625 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000626 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
627 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000628 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000629
Chris Lattner854077d2005-10-17 01:07:11 +0000630 // fold (sub x, x) -> 0
631 if (N0 == N1)
632 return DAG.getConstant(0, N->getValueType(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000633 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000634 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000635 return DAG.getNode(ISD::SUB, VT, N0, N1);
Chris Lattner05b57432005-10-11 06:07:15 +0000636 // fold (sub x, c) -> (add x, -c)
637 if (N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000638 return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
Nate Begeman1d4d4142005-09-01 00:19:25 +0000639 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +0000640 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000641 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000642 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +0000643 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000644 return N0.getOperand(0);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000645 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000646}
647
Nate Begeman83e75ec2005-09-06 04:43:02 +0000648SDOperand DAGCombiner::visitMUL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000649 SDOperand N0 = N->getOperand(0);
650 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000651 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
652 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman223df222005-09-08 20:18:10 +0000653 MVT::ValueType VT = N0.getValueType();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000654
655 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000656 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000657 return DAG.getNode(ISD::MUL, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000658 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000659 if (N0C && !N1C)
660 return DAG.getNode(ISD::MUL, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000661 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +0000662 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000663 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000664 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +0000665 if (N1C && N1C->isAllOnesValue())
Nate Begeman405e3ec2005-10-21 00:02:42 +0000666 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000667 // fold (mul x, (1 << c)) -> x << c
Nate Begeman646d7e22005-09-02 21:18:40 +0000668 if (N1C && isPowerOf2_64(N1C->getValue()))
Chris Lattner3e6099b2005-10-30 06:41:49 +0000669 return DAG.getNode(ISD::SHL, VT, N0,
Nate Begeman646d7e22005-09-02 21:18:40 +0000670 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +0000671 TLI.getShiftAmountTy()));
Chris Lattner3e6099b2005-10-30 06:41:49 +0000672 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
673 if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
674 // FIXME: If the input is something that is easily negated (e.g. a
675 // single-use add), we should put the negate there.
676 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
677 DAG.getNode(ISD::SHL, VT, N0,
678 DAG.getConstant(Log2_64(-N1C->getSignExtended()),
679 TLI.getShiftAmountTy())));
680 }
681
682
Nate Begeman223df222005-09-08 20:18:10 +0000683 // fold (mul (mul x, c1), c2) -> (mul x, c1*c2)
684 if (N1C && N0.getOpcode() == ISD::MUL) {
685 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
686 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
687 if (N00C)
688 return DAG.getNode(ISD::MUL, VT, N0.getOperand(1),
689 DAG.getConstant(N1C->getValue()*N00C->getValue(), VT));
690 if (N01C)
691 return DAG.getNode(ISD::MUL, VT, N0.getOperand(0),
692 DAG.getConstant(N1C->getValue()*N01C->getValue(), VT));
693 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000694 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000695}
696
Nate Begeman83e75ec2005-09-06 04:43:02 +0000697SDOperand DAGCombiner::visitSDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000698 SDOperand N0 = N->getOperand(0);
699 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000700 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
701 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000702 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000703
704 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000705 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000706 return DAG.getNode(ISD::SDIV, VT, N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +0000707 // fold (sdiv X, 1) -> X
708 if (N1C && N1C->getSignExtended() == 1LL)
709 return N0;
710 // fold (sdiv X, -1) -> 0-X
711 if (N1C && N1C->isAllOnesValue())
712 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +0000713 // If we know the sign bits of both operands are zero, strength reduce to a
714 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
715 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000716 if (TLI.MaskedValueIsZero(N1, SignBit) &&
717 TLI.MaskedValueIsZero(N0, SignBit))
Chris Lattner094c8fc2005-10-07 06:10:46 +0000718 return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
Nate Begeman405e3ec2005-10-21 00:02:42 +0000719 // fold (sdiv X, pow2) -> (add (sra X, log(pow2)), (srl X, sizeof(X)-1))
720 if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
721 (isPowerOf2_64(N1C->getSignExtended()) ||
722 isPowerOf2_64(-N1C->getSignExtended()))) {
723 // If dividing by powers of two is cheap, then don't perform the following
724 // fold.
725 if (TLI.isPow2DivCheap())
726 return SDOperand();
727 int64_t pow2 = N1C->getSignExtended();
728 int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
729 SDOperand SRL = DAG.getNode(ISD::SRL, VT, N0,
730 DAG.getConstant(MVT::getSizeInBits(VT)-1,
731 TLI.getShiftAmountTy()));
732 WorkList.push_back(SRL.Val);
733 SDOperand SGN = DAG.getNode(ISD::ADD, VT, N0, SRL);
734 WorkList.push_back(SGN.Val);
735 SDOperand SRA = DAG.getNode(ISD::SRA, VT, SGN,
736 DAG.getConstant(Log2_64(abs2),
737 TLI.getShiftAmountTy()));
738 // If we're dividing by a positive value, we're done. Otherwise, we must
739 // negate the result.
740 if (pow2 > 0)
741 return SRA;
742 WorkList.push_back(SRA.Val);
743 return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
744 }
Nate Begeman69575232005-10-20 02:15:44 +0000745 // if integer divide is expensive and we satisfy the requirements, emit an
746 // alternate sequence.
Nate Begeman405e3ec2005-10-21 00:02:42 +0000747 if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) &&
Chris Lattnere9936d12005-10-22 18:50:15 +0000748 !TLI.isIntDivCheap()) {
749 SDOperand Op = BuildSDIV(N);
750 if (Op.Val) return Op;
Nate Begeman69575232005-10-20 02:15:44 +0000751 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000752 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000753}
754
Nate Begeman83e75ec2005-09-06 04:43:02 +0000755SDOperand DAGCombiner::visitUDIV(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000756 SDOperand N0 = N->getOperand(0);
757 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000758 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
759 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
Nate Begemana148d982006-01-18 22:35:16 +0000760 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000761
762 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000763 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000764 return DAG.getNode(ISD::UDIV, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000765 // fold (udiv x, (1 << c)) -> x >>u c
Nate Begeman646d7e22005-09-02 21:18:40 +0000766 if (N1C && isPowerOf2_64(N1C->getValue()))
Nate Begeman1d4d4142005-09-01 00:19:25 +0000767 return DAG.getNode(ISD::SRL, N->getValueType(0), N0,
Nate Begeman646d7e22005-09-02 21:18:40 +0000768 DAG.getConstant(Log2_64(N1C->getValue()),
Nate Begeman83e75ec2005-09-06 04:43:02 +0000769 TLI.getShiftAmountTy()));
Nate Begeman69575232005-10-20 02:15:44 +0000770 // fold (udiv x, c) -> alternate
Chris Lattnere9936d12005-10-22 18:50:15 +0000771 if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
772 SDOperand Op = BuildUDIV(N);
773 if (Op.Val) return Op;
774 }
775
Nate Begeman83e75ec2005-09-06 04:43:02 +0000776 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000777}
778
Nate Begeman83e75ec2005-09-06 04:43:02 +0000779SDOperand DAGCombiner::visitSREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000780 SDOperand N0 = N->getOperand(0);
781 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000782 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
783 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +0000784 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000785
786 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000787 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000788 return DAG.getNode(ISD::SREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +0000789 // If we know the sign bits of both operands are zero, strength reduce to a
790 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
791 uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000792 if (TLI.MaskedValueIsZero(N1, SignBit) &&
793 TLI.MaskedValueIsZero(N0, SignBit))
Nate Begemana148d982006-01-18 22:35:16 +0000794 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +0000795 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000796}
797
Nate Begeman83e75ec2005-09-06 04:43:02 +0000798SDOperand DAGCombiner::visitUREM(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000799 SDOperand N0 = N->getOperand(0);
800 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000801 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
802 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begemana148d982006-01-18 22:35:16 +0000803 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000804
805 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000806 if (N0C && N1C && !N1C->isNullValue())
Nate Begemana148d982006-01-18 22:35:16 +0000807 return DAG.getNode(ISD::UREM, VT, N0, N1);
Nate Begeman07ed4172005-10-10 21:26:48 +0000808 // fold (urem x, pow2) -> (and x, pow2-1)
809 if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
Nate Begemana148d982006-01-18 22:35:16 +0000810 return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
Nate Begeman83e75ec2005-09-06 04:43:02 +0000811 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000812}
813
Nate Begeman83e75ec2005-09-06 04:43:02 +0000814SDOperand DAGCombiner::visitMULHS(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000815 SDOperand N0 = N->getOperand(0);
816 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000817 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000818
819 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +0000820 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000821 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000822 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Nate Begeman646d7e22005-09-02 21:18:40 +0000823 if (N1C && N1C->getValue() == 1)
Nate Begeman1d4d4142005-09-01 00:19:25 +0000824 return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
825 DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
Nate Begeman83e75ec2005-09-06 04:43:02 +0000826 TLI.getShiftAmountTy()));
827 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000828}
829
Nate Begeman83e75ec2005-09-06 04:43:02 +0000830SDOperand DAGCombiner::visitMULHU(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000831 SDOperand N0 = N->getOperand(0);
832 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +0000833 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000834
835 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +0000836 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000837 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +0000838 // fold (mulhu x, 1) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +0000839 if (N1C && N1C->getValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +0000840 return DAG.getConstant(0, N0.getValueType());
841 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000842}
843
Nate Begeman83e75ec2005-09-06 04:43:02 +0000844SDOperand DAGCombiner::visitAND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000845 SDOperand N0 = N->getOperand(0);
846 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +0000847 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +0000848 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
849 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000850 MVT::ValueType VT = N1.getValueType();
Nate Begeman83e75ec2005-09-06 04:43:02 +0000851 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000852
853 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +0000854 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +0000855 return DAG.getNode(ISD::AND, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +0000856 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +0000857 if (N0C && !N1C)
858 return DAG.getNode(ISD::AND, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000859 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +0000860 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000861 return N0;
862 // if (and x, c) is known to be zero, return 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000863 if (N1C && TLI.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000864 return DAG.getConstant(0, VT);
865 // fold (and x, c) -> x iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000866 if (N1C &&
867 TLI.MaskedValueIsZero(N0, ~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000868 return N0;
Nate Begeman223df222005-09-08 20:18:10 +0000869 // fold (and (and x, c1), c2) -> (and x, c1^c2)
870 if (N1C && N0.getOpcode() == ISD::AND) {
871 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
872 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
873 if (N00C)
874 return DAG.getNode(ISD::AND, VT, N0.getOperand(1),
875 DAG.getConstant(N1C->getValue()&N00C->getValue(), VT));
876 if (N01C)
877 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
878 DAG.getConstant(N1C->getValue()&N01C->getValue(), VT));
879 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000880 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
Nate Begeman5dc7e862005-11-02 18:42:59 +0000881 if (N1C && N0.getOpcode() == ISD::SIGN_EXTEND_INREG) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000882 unsigned ExtendBits =
Jeff Cohen06d9b4a2005-11-12 00:59:01 +0000883 MVT::getSizeInBits(cast<VTSDNode>(N0.getOperand(1))->getVT());
884 if (ExtendBits == 64 || ((N1C->getValue() & (~0ULL << ExtendBits)) == 0))
Nate Begeman83e75ec2005-09-06 04:43:02 +0000885 return DAG.getNode(ISD::AND, VT, N0.getOperand(0), N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000886 }
887 // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
Nate Begeman5dc7e862005-11-02 18:42:59 +0000888 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +0000889 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Nate Begeman646d7e22005-09-02 21:18:40 +0000890 if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +0000891 return N1;
Nate Begeman39ee1ac2005-09-09 19:49:52 +0000892 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
893 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
894 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
895 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
896
897 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
898 MVT::isInteger(LL.getValueType())) {
899 // fold (X == 0) & (Y == 0) -> (X|Y == 0)
900 if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
901 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
902 WorkList.push_back(ORNode.Val);
903 return DAG.getSetCC(VT, ORNode, LR, Op1);
904 }
905 // fold (X == -1) & (Y == -1) -> (X&Y == -1)
906 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
907 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
908 WorkList.push_back(ANDNode.Val);
909 return DAG.getSetCC(VT, ANDNode, LR, Op1);
910 }
911 // fold (X > -1) & (Y > -1) -> (X|Y > -1)
912 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
913 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
914 WorkList.push_back(ORNode.Val);
915 return DAG.getSetCC(VT, ORNode, LR, Op1);
916 }
917 }
918 // canonicalize equivalent to ll == rl
919 if (LL == RR && LR == RL) {
920 Op1 = ISD::getSetCCSwappedOperands(Op1);
921 std::swap(RL, RR);
922 }
923 if (LL == RL && LR == RR) {
924 bool isInteger = MVT::isInteger(LL.getValueType());
925 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
926 if (Result != ISD::SETCC_INVALID)
927 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
928 }
929 }
930 // fold (and (zext x), (zext y)) -> (zext (and x, y))
931 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
932 N1.getOpcode() == ISD::ZERO_EXTEND &&
933 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
934 SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(),
935 N0.getOperand(0), N1.getOperand(0));
936 WorkList.push_back(ANDNode.Val);
937 return DAG.getNode(ISD::ZERO_EXTEND, VT, ANDNode);
938 }
Nate Begeman61af66e2006-01-28 01:06:30 +0000939 // fold (and (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (and x, y))
Nate Begeman452d7beb2005-09-16 00:54:12 +0000940 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
Nate Begeman61af66e2006-01-28 01:06:30 +0000941 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
942 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
Nate Begeman452d7beb2005-09-16 00:54:12 +0000943 N0.getOperand(1) == N1.getOperand(1)) {
944 SDOperand ANDNode = DAG.getNode(ISD::AND, N0.getOperand(0).getValueType(),
945 N0.getOperand(0), N1.getOperand(0));
946 WorkList.push_back(ANDNode.Val);
947 return DAG.getNode(N0.getOpcode(), VT, ANDNode, N0.getOperand(1));
948 }
Chris Lattner85d63bb2005-10-15 22:18:08 +0000949 // fold (and (sra)) -> (and (srl)) when possible.
Nate Begeman5dc7e862005-11-02 18:42:59 +0000950 if (N0.getOpcode() == ISD::SRA && N0.Val->hasOneUse()) {
Chris Lattner85d63bb2005-10-15 22:18:08 +0000951 if (ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
952 // If the RHS of the AND has zeros where the sign bits of the SRA will
953 // land, turn the SRA into an SRL.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000954 if (TLI.MaskedValueIsZero(N1, (~0ULL << (OpSizeInBits-N01C->getValue())) &
955 (~0ULL>>(64-OpSizeInBits)))) {
Chris Lattner85d63bb2005-10-15 22:18:08 +0000956 WorkList.push_back(N);
957 CombineTo(N0.Val, DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
958 N0.getOperand(1)));
959 return SDOperand();
960 }
961 }
Nate Begeman5dc7e862005-11-02 18:42:59 +0000962 }
Nate Begemanded49632005-10-13 03:11:28 +0000963 // fold (zext_inreg (extload x)) -> (zextload x)
Nate Begeman5054f162005-10-14 01:12:21 +0000964 if (N0.getOpcode() == ISD::EXTLOAD) {
Nate Begemanded49632005-10-13 03:11:28 +0000965 MVT::ValueType EVT = cast<VTSDNode>(N0.getOperand(3))->getVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +0000966 // If we zero all the possible extended bits, then we can turn this into
967 // a zextload if we are running before legalize or the operation is legal.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000968 if (TLI.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Chris Lattner67a44cd2005-10-13 18:16:34 +0000969 (!AfterLegalize || TLI.isOperationLegal(ISD::ZEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +0000970 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
971 N0.getOperand(1), N0.getOperand(2),
972 EVT);
Nate Begemanded49632005-10-13 03:11:28 +0000973 WorkList.push_back(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +0000974 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +0000975 return SDOperand();
976 }
977 }
978 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Chris Lattner40c62d52005-10-18 06:04:22 +0000979 if (N0.getOpcode() == ISD::SEXTLOAD && N0.hasOneUse()) {
Nate Begemanded49632005-10-13 03:11:28 +0000980 MVT::ValueType EVT = cast<VTSDNode>(N0.getOperand(3))->getVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +0000981 // If we zero all the possible extended bits, then we can turn this into
982 // a zextload if we are running before legalize or the operation is legal.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000983 if (TLI.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
Nate Begemanbfd65a02005-10-13 18:34:58 +0000984 (!AfterLegalize || TLI.isOperationLegal(ISD::ZEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +0000985 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
986 N0.getOperand(1), N0.getOperand(2),
987 EVT);
Nate Begemanded49632005-10-13 03:11:28 +0000988 WorkList.push_back(N);
Chris Lattner67a44cd2005-10-13 18:16:34 +0000989 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +0000990 return SDOperand();
991 }
992 }
Nate Begeman83e75ec2005-09-06 04:43:02 +0000993 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +0000994}
995
Nate Begeman83e75ec2005-09-06 04:43:02 +0000996SDOperand DAGCombiner::visitOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +0000997 SDOperand N0 = N->getOperand(0);
998 SDOperand N1 = N->getOperand(1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +0000999 SDOperand LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00001000 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1001 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001002 MVT::ValueType VT = N1.getValueType();
1003 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001004
1005 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001006 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001007 return DAG.getNode(ISD::OR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001008 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001009 if (N0C && !N1C)
1010 return DAG.getNode(ISD::OR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001011 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001012 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001013 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001014 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001015 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001016 return N1;
1017 // fold (or x, c) -> c iff (x & ~c) == 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001018 if (N1C &&
1019 TLI.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001020 return N1;
Nate Begeman223df222005-09-08 20:18:10 +00001021 // fold (or (or x, c1), c2) -> (or x, c1|c2)
1022 if (N1C && N0.getOpcode() == ISD::OR) {
1023 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
1024 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
1025 if (N00C)
1026 return DAG.getNode(ISD::OR, VT, N0.getOperand(1),
1027 DAG.getConstant(N1C->getValue()|N00C->getValue(), VT));
1028 if (N01C)
1029 return DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1030 DAG.getConstant(N1C->getValue()|N01C->getValue(), VT));
Chris Lattner731d3482005-10-27 05:06:38 +00001031 } else if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
1032 isa<ConstantSDNode>(N0.getOperand(1))) {
1033 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1034 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1035 return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1036 N1),
1037 DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00001038 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001039 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1040 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1041 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1042 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1043
1044 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1045 MVT::isInteger(LL.getValueType())) {
1046 // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1047 // fold (X < 0) | (Y < 0) -> (X|Y < 0)
1048 if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1049 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1050 SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1051 WorkList.push_back(ORNode.Val);
1052 return DAG.getSetCC(VT, ORNode, LR, Op1);
1053 }
1054 // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1055 // fold (X > -1) | (Y > -1) -> (X&Y > -1)
1056 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
1057 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1058 SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
1059 WorkList.push_back(ANDNode.Val);
1060 return DAG.getSetCC(VT, ANDNode, LR, Op1);
1061 }
1062 }
1063 // canonicalize equivalent to ll == rl
1064 if (LL == RR && LR == RL) {
1065 Op1 = ISD::getSetCCSwappedOperands(Op1);
1066 std::swap(RL, RR);
1067 }
1068 if (LL == RL && LR == RR) {
1069 bool isInteger = MVT::isInteger(LL.getValueType());
1070 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1071 if (Result != ISD::SETCC_INVALID)
1072 return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1073 }
1074 }
1075 // fold (or (zext x), (zext y)) -> (zext (or x, y))
1076 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
1077 N1.getOpcode() == ISD::ZERO_EXTEND &&
1078 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1079 SDOperand ORNode = DAG.getNode(ISD::OR, N0.getOperand(0).getValueType(),
1080 N0.getOperand(0), N1.getOperand(0));
1081 WorkList.push_back(ORNode.Val);
1082 return DAG.getNode(ISD::ZERO_EXTEND, VT, ORNode);
1083 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001084 // fold (or (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (or x, y))
1085 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
1086 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
1087 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
1088 N0.getOperand(1) == N1.getOperand(1)) {
1089 SDOperand ORNode = DAG.getNode(ISD::OR, N0.getOperand(0).getValueType(),
1090 N0.getOperand(0), N1.getOperand(0));
1091 WorkList.push_back(ORNode.Val);
1092 return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1093 }
Nate Begeman35ef9132006-01-11 21:21:00 +00001094 // canonicalize shl to left side in a shl/srl pair, to match rotate
1095 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
1096 std::swap(N0, N1);
1097 // check for rotl, rotr
1098 if (N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SRL &&
1099 N0.getOperand(0) == N1.getOperand(0) &&
Chris Lattneraf551bc2006-01-12 18:57:33 +00001100 TLI.isOperationLegal(ISD::ROTL, VT) && TLI.isTypeLegal(VT)) {
Nate Begeman35ef9132006-01-11 21:21:00 +00001101 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1102 if (N0.getOperand(1).getOpcode() == ISD::Constant &&
1103 N1.getOperand(1).getOpcode() == ISD::Constant) {
1104 uint64_t c1val = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1105 uint64_t c2val = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1106 if ((c1val + c2val) == OpSizeInBits)
1107 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0), N0.getOperand(1));
1108 }
1109 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1110 if (N1.getOperand(1).getOpcode() == ISD::SUB &&
1111 N0.getOperand(1) == N1.getOperand(1).getOperand(1))
1112 if (ConstantSDNode *SUBC =
1113 dyn_cast<ConstantSDNode>(N1.getOperand(1).getOperand(0)))
1114 if (SUBC->getValue() == OpSizeInBits)
1115 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0), N0.getOperand(1));
1116 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1117 if (N0.getOperand(1).getOpcode() == ISD::SUB &&
1118 N1.getOperand(1) == N0.getOperand(1).getOperand(1))
1119 if (ConstantSDNode *SUBC =
1120 dyn_cast<ConstantSDNode>(N0.getOperand(1).getOperand(0)))
1121 if (SUBC->getValue() == OpSizeInBits) {
Chris Lattneraf551bc2006-01-12 18:57:33 +00001122 if (TLI.isOperationLegal(ISD::ROTR, VT) && TLI.isTypeLegal(VT))
Nate Begeman35ef9132006-01-11 21:21:00 +00001123 return DAG.getNode(ISD::ROTR, VT, N0.getOperand(0),
1124 N1.getOperand(1));
1125 else
1126 return DAG.getNode(ISD::ROTL, VT, N0.getOperand(0),
1127 N0.getOperand(1));
1128 }
1129 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001130 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001131}
1132
Nate Begeman83e75ec2005-09-06 04:43:02 +00001133SDOperand DAGCombiner::visitXOR(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001134 SDOperand N0 = N->getOperand(0);
1135 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001136 SDOperand LHS, RHS, CC;
1137 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1138 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001139 MVT::ValueType VT = N0.getValueType();
1140
1141 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001142 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001143 return DAG.getNode(ISD::XOR, VT, N0, N1);
Nate Begeman99801192005-09-07 23:25:52 +00001144 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001145 if (N0C && !N1C)
1146 return DAG.getNode(ISD::XOR, VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001147 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001148 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001149 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001150 // fold !(x cc y) -> (x !cc y)
Nate Begeman646d7e22005-09-02 21:18:40 +00001151 if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
1152 bool isInt = MVT::isInteger(LHS.getValueType());
1153 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
1154 isInt);
1155 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001156 return DAG.getSetCC(VT, LHS, RHS, NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00001157 if (N0.getOpcode() == ISD::SELECT_CC)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001158 return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
Nate Begeman646d7e22005-09-02 21:18:40 +00001159 assert(0 && "Unhandled SetCC Equivalent!");
1160 abort();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001161 }
Nate Begeman99801192005-09-07 23:25:52 +00001162 // fold !(x or y) -> (!x and !y) iff x or y are setcc
1163 if (N1C && N1C->getValue() == 1 &&
1164 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001165 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00001166 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
1167 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001168 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
1169 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Nate Begeman99801192005-09-07 23:25:52 +00001170 WorkList.push_back(LHS.Val); WorkList.push_back(RHS.Val);
1171 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001172 }
1173 }
Nate Begeman99801192005-09-07 23:25:52 +00001174 // fold !(x or y) -> (!x and !y) iff x or y are constants
1175 if (N1C && N1C->isAllOnesValue() &&
1176 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001177 SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00001178 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
1179 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001180 LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
1181 RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
Nate Begeman99801192005-09-07 23:25:52 +00001182 WorkList.push_back(LHS.Val); WorkList.push_back(RHS.Val);
1183 return DAG.getNode(NewOpcode, VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001184 }
1185 }
Nate Begeman223df222005-09-08 20:18:10 +00001186 // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
1187 if (N1C && N0.getOpcode() == ISD::XOR) {
1188 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
1189 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
1190 if (N00C)
1191 return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
1192 DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
1193 if (N01C)
1194 return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
1195 DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
1196 }
1197 // fold (xor x, x) -> 0
1198 if (N0 == N1)
1199 return DAG.getConstant(0, VT);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00001200 // fold (xor (zext x), (zext y)) -> (zext (xor x, y))
1201 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
1202 N1.getOpcode() == ISD::ZERO_EXTEND &&
1203 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1204 SDOperand XORNode = DAG.getNode(ISD::XOR, N0.getOperand(0).getValueType(),
1205 N0.getOperand(0), N1.getOperand(0));
1206 WorkList.push_back(XORNode.Val);
1207 return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
1208 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001209 // fold (xor (shl/srl/sra x), (shl/srl/sra y)) -> (shl/srl/sra (xor x, y))
1210 if (((N0.getOpcode() == ISD::SHL && N1.getOpcode() == ISD::SHL) ||
1211 (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SRL) ||
1212 (N0.getOpcode() == ISD::SRA && N1.getOpcode() == ISD::SRA)) &&
1213 N0.getOperand(1) == N1.getOperand(1)) {
1214 SDOperand XORNode = DAG.getNode(ISD::XOR, N0.getOperand(0).getValueType(),
1215 N0.getOperand(0), N1.getOperand(0));
1216 WorkList.push_back(XORNode.Val);
1217 return DAG.getNode(N0.getOpcode(), VT, XORNode, N0.getOperand(1));
1218 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001219 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001220}
1221
Nate Begeman83e75ec2005-09-06 04:43:02 +00001222SDOperand DAGCombiner::visitSHL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001223 SDOperand N0 = N->getOperand(0);
1224 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001225 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1226 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001227 MVT::ValueType VT = N0.getValueType();
1228 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1229
1230 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001231 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001232 return DAG.getNode(ISD::SHL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001233 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001234 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001235 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001236 // fold (shl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00001237 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001238 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001239 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001240 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001241 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001242 // if (shl x, c) is known to be zero, return 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001243 if (N1C && TLI.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001244 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001245 // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001246 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001247 N0.getOperand(1).getOpcode() == ISD::Constant) {
1248 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001249 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001250 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001251 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001252 return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001253 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001254 }
1255 // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
1256 // (srl (and x, -1 << c1), c1-c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001257 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001258 N0.getOperand(1).getOpcode() == ISD::Constant) {
1259 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001260 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001261 SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
1262 DAG.getConstant(~0ULL << c1, VT));
1263 if (c2 > c1)
1264 return DAG.getNode(ISD::SHL, VT, Mask,
Nate Begeman83e75ec2005-09-06 04:43:02 +00001265 DAG.getConstant(c2-c1, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001266 else
Nate Begeman83e75ec2005-09-06 04:43:02 +00001267 return DAG.getNode(ISD::SRL, VT, Mask,
1268 DAG.getConstant(c1-c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001269 }
1270 // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001271 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
Nate Begeman4ebd8052005-09-01 23:24:04 +00001272 return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001273 DAG.getConstant(~0ULL << N1C->getValue(), VT));
1274 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001275}
1276
Nate Begeman83e75ec2005-09-06 04:43:02 +00001277SDOperand DAGCombiner::visitSRA(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001278 SDOperand N0 = N->getOperand(0);
1279 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001280 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1281 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001282 MVT::ValueType VT = N0.getValueType();
1283 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1284
1285 // fold (sra c1, c2) -> c1>>c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001286 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001287 return DAG.getNode(ISD::SRA, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001288 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001289 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001290 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001291 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00001292 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001293 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001294 // fold (sra x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00001295 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001296 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001297 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001298 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001299 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001300 // If the sign bit is known to be zero, switch this to a SRL.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001301 if (TLI.MaskedValueIsZero(N0, (1ULL << (OpSizeInBits-1))))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001302 return DAG.getNode(ISD::SRL, VT, N0, N1);
1303 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001304}
1305
Nate Begeman83e75ec2005-09-06 04:43:02 +00001306SDOperand DAGCombiner::visitSRL(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001307 SDOperand N0 = N->getOperand(0);
1308 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001309 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1310 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001311 MVT::ValueType VT = N0.getValueType();
1312 unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1313
1314 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001315 if (N0C && N1C)
Nate Begemana148d982006-01-18 22:35:16 +00001316 return DAG.getNode(ISD::SRL, VT, N0, N1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001317 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001318 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001319 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001320 // fold (srl x, c >= size(x)) -> undef
Nate Begeman646d7e22005-09-02 21:18:40 +00001321 if (N1C && N1C->getValue() >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001322 return DAG.getNode(ISD::UNDEF, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001323 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001324 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001325 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001326 // if (srl x, c) is known to be zero, return 0
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001327 if (N1C && TLI.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001328 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001329 // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00001330 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00001331 N0.getOperand(1).getOpcode() == ISD::Constant) {
1332 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
Nate Begeman646d7e22005-09-02 21:18:40 +00001333 uint64_t c2 = N1C->getValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001334 if (c1 + c2 > OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001335 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001336 return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00001337 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001338 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001339 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001340}
1341
Nate Begeman83e75ec2005-09-06 04:43:02 +00001342SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001343 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001344 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001345 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001346
1347 // fold (ctlz c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001348 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001349 return DAG.getNode(ISD::CTLZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001350 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001351}
1352
Nate Begeman83e75ec2005-09-06 04:43:02 +00001353SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001354 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001355 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001356 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001357
1358 // fold (cttz c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001359 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001360 return DAG.getNode(ISD::CTTZ, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001361 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001362}
1363
Nate Begeman83e75ec2005-09-06 04:43:02 +00001364SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001365 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001366 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001367 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001368
1369 // fold (ctpop c1) -> c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001370 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001371 return DAG.getNode(ISD::CTPOP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001372 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001373}
1374
Nate Begeman452d7beb2005-09-16 00:54:12 +00001375SDOperand DAGCombiner::visitSELECT(SDNode *N) {
1376 SDOperand N0 = N->getOperand(0);
1377 SDOperand N1 = N->getOperand(1);
1378 SDOperand N2 = N->getOperand(2);
1379 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1380 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1381 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
1382 MVT::ValueType VT = N->getValueType(0);
Nate Begeman44728a72005-09-19 22:34:01 +00001383
Nate Begeman452d7beb2005-09-16 00:54:12 +00001384 // fold select C, X, X -> X
1385 if (N1 == N2)
1386 return N1;
1387 // fold select true, X, Y -> X
1388 if (N0C && !N0C->isNullValue())
1389 return N1;
1390 // fold select false, X, Y -> Y
1391 if (N0C && N0C->isNullValue())
1392 return N2;
1393 // fold select C, 1, X -> C | X
Nate Begeman44728a72005-09-19 22:34:01 +00001394 if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
Nate Begeman452d7beb2005-09-16 00:54:12 +00001395 return DAG.getNode(ISD::OR, VT, N0, N2);
1396 // fold select C, 0, X -> ~C & X
1397 // FIXME: this should check for C type == X type, not i1?
1398 if (MVT::i1 == VT && N1C && N1C->isNullValue()) {
1399 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
1400 WorkList.push_back(XORNode.Val);
1401 return DAG.getNode(ISD::AND, VT, XORNode, N2);
1402 }
1403 // fold select C, X, 1 -> ~C | X
Nate Begeman44728a72005-09-19 22:34:01 +00001404 if (MVT::i1 == VT && N2C && N2C->getValue() == 1) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00001405 SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
1406 WorkList.push_back(XORNode.Val);
1407 return DAG.getNode(ISD::OR, VT, XORNode, N1);
1408 }
1409 // fold select C, X, 0 -> C & X
1410 // FIXME: this should check for C type == X type, not i1?
1411 if (MVT::i1 == VT && N2C && N2C->isNullValue())
1412 return DAG.getNode(ISD::AND, VT, N0, N1);
1413 // fold X ? X : Y --> X ? 1 : Y --> X | Y
1414 if (MVT::i1 == VT && N0 == N1)
1415 return DAG.getNode(ISD::OR, VT, N0, N2);
1416 // fold X ? Y : X --> X ? Y : 0 --> X & Y
1417 if (MVT::i1 == VT && N0 == N2)
1418 return DAG.getNode(ISD::AND, VT, N0, N1);
Chris Lattner40c62d52005-10-18 06:04:22 +00001419 // If we can fold this based on the true/false value, do so.
1420 if (SimplifySelectOps(N, N1, N2))
1421 return SDOperand();
Nate Begeman44728a72005-09-19 22:34:01 +00001422 // fold selects based on a setcc into other things, such as min/max/abs
1423 if (N0.getOpcode() == ISD::SETCC)
Nate Begeman750ac1b2006-02-01 07:19:44 +00001424 // FIXME:
1425 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
1426 // having to say they don't support SELECT_CC on every type the DAG knows
1427 // about, since there is no way to mark an opcode illegal at all value types
1428 if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
1429 return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
1430 N1, N2, N0.getOperand(2));
1431 else
1432 return SimplifySelect(N0, N1, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001433 return SDOperand();
1434}
1435
1436SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
Nate Begeman44728a72005-09-19 22:34:01 +00001437 SDOperand N0 = N->getOperand(0);
1438 SDOperand N1 = N->getOperand(1);
1439 SDOperand N2 = N->getOperand(2);
1440 SDOperand N3 = N->getOperand(3);
1441 SDOperand N4 = N->getOperand(4);
1442 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1443 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1444 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
1445 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
1446
1447 // Determine if the condition we're dealing with is constant
Nate Begemane17daeb2005-10-05 21:43:42 +00001448 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
Chris Lattner91559022005-10-05 04:45:43 +00001449 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
1450
Nate Begeman44728a72005-09-19 22:34:01 +00001451 // fold select_cc lhs, rhs, x, x, cc -> x
1452 if (N2 == N3)
1453 return N2;
Chris Lattner40c62d52005-10-18 06:04:22 +00001454
1455 // If we can fold this based on the true/false value, do so.
1456 if (SimplifySelectOps(N, N2, N3))
1457 return SDOperand();
1458
Nate Begeman44728a72005-09-19 22:34:01 +00001459 // fold select_cc into other things, such as min/max/abs
1460 return SimplifySelectCC(N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001461}
1462
1463SDOperand DAGCombiner::visitSETCC(SDNode *N) {
1464 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
1465 cast<CondCodeSDNode>(N->getOperand(2))->get());
1466}
1467
Nate Begeman5054f162005-10-14 01:12:21 +00001468SDOperand DAGCombiner::visitADD_PARTS(SDNode *N) {
1469 SDOperand LHSLo = N->getOperand(0);
1470 SDOperand RHSLo = N->getOperand(2);
1471 MVT::ValueType VT = LHSLo.getValueType();
1472
1473 // fold (a_Hi, 0) + (b_Hi, b_Lo) -> (b_Hi + a_Hi, b_Lo)
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001474 if (TLI.MaskedValueIsZero(LHSLo, (1ULL << MVT::getSizeInBits(VT))-1)) {
Nate Begeman5054f162005-10-14 01:12:21 +00001475 SDOperand Hi = DAG.getNode(ISD::ADD, VT, N->getOperand(1),
1476 N->getOperand(3));
1477 WorkList.push_back(Hi.Val);
1478 CombineTo(N, RHSLo, Hi);
1479 return SDOperand();
1480 }
1481 // fold (a_Hi, a_Lo) + (b_Hi, 0) -> (a_Hi + b_Hi, a_Lo)
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001482 if (TLI.MaskedValueIsZero(RHSLo, (1ULL << MVT::getSizeInBits(VT))-1)) {
Nate Begeman5054f162005-10-14 01:12:21 +00001483 SDOperand Hi = DAG.getNode(ISD::ADD, VT, N->getOperand(1),
1484 N->getOperand(3));
1485 WorkList.push_back(Hi.Val);
1486 CombineTo(N, LHSLo, Hi);
1487 return SDOperand();
1488 }
1489 return SDOperand();
1490}
1491
1492SDOperand DAGCombiner::visitSUB_PARTS(SDNode *N) {
1493 SDOperand LHSLo = N->getOperand(0);
1494 SDOperand RHSLo = N->getOperand(2);
1495 MVT::ValueType VT = LHSLo.getValueType();
1496
1497 // fold (a_Hi, a_Lo) - (b_Hi, 0) -> (a_Hi - b_Hi, a_Lo)
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001498 if (TLI.MaskedValueIsZero(RHSLo, (1ULL << MVT::getSizeInBits(VT))-1)) {
Nate Begeman5054f162005-10-14 01:12:21 +00001499 SDOperand Hi = DAG.getNode(ISD::SUB, VT, N->getOperand(1),
1500 N->getOperand(3));
1501 WorkList.push_back(Hi.Val);
1502 CombineTo(N, LHSLo, Hi);
1503 return SDOperand();
1504 }
1505 return SDOperand();
1506}
1507
Nate Begeman83e75ec2005-09-06 04:43:02 +00001508SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001509 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001510 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001511 MVT::ValueType VT = N->getValueType(0);
1512
Nate Begeman1d4d4142005-09-01 00:19:25 +00001513 // fold (sext c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001514 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001515 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001516 // fold (sext (sext x)) -> (sext x)
1517 if (N0.getOpcode() == ISD::SIGN_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001518 return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
Chris Lattnerb14ab8a2005-12-07 07:11:03 +00001519 // fold (sext (truncate x)) -> (sextinreg x) iff x size == sext size.
Chris Lattnercc2210b2005-12-07 18:02:05 +00001520 if (N0.getOpcode() == ISD::TRUNCATE && N0.getOperand(0).getValueType() == VT&&
1521 (!AfterLegalize ||
1522 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, N0.getValueType())))
Chris Lattnerb14ab8a2005-12-07 07:11:03 +00001523 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
1524 DAG.getValueType(N0.getValueType()));
Evan Cheng110dec22005-12-14 02:19:23 +00001525 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Chris Lattnerd0f6d182005-12-15 19:02:38 +00001526 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse() &&
1527 (!AfterLegalize||TLI.isOperationLegal(ISD::SEXTLOAD, N0.getValueType()))){
Nate Begeman3df4d522005-10-12 20:40:40 +00001528 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1529 N0.getOperand(1), N0.getOperand(2),
1530 N0.getValueType());
Chris Lattnerd4771842005-12-14 19:25:30 +00001531 CombineTo(N, ExtLoad);
Chris Lattnerf9884052005-10-13 21:52:31 +00001532 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1533 ExtLoad.getValue(1));
Nate Begeman765784a2005-10-12 23:18:53 +00001534 return SDOperand();
Nate Begeman3df4d522005-10-12 20:40:40 +00001535 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001536
1537 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
1538 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
1539 if ((N0.getOpcode() == ISD::SEXTLOAD || N0.getOpcode() == ISD::EXTLOAD) &&
1540 N0.hasOneUse()) {
1541 SDOperand ExtLoad = DAG.getNode(ISD::SEXTLOAD, VT, N0.getOperand(0),
1542 N0.getOperand(1), N0.getOperand(2),
1543 N0.getOperand(3));
Chris Lattnerd4771842005-12-14 19:25:30 +00001544 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001545 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1546 ExtLoad.getValue(1));
1547 return SDOperand();
1548 }
1549
Nate Begeman83e75ec2005-09-06 04:43:02 +00001550 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001551}
1552
Nate Begeman83e75ec2005-09-06 04:43:02 +00001553SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001554 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001555 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001556 MVT::ValueType VT = N->getValueType(0);
1557
Nate Begeman1d4d4142005-09-01 00:19:25 +00001558 // fold (zext c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001559 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001560 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001561 // fold (zext (zext x)) -> (zext x)
1562 if (N0.getOpcode() == ISD::ZERO_EXTEND)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001563 return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
Evan Cheng110dec22005-12-14 02:19:23 +00001564 // fold (zext (truncate x)) -> (zextinreg x) iff x size == zext size.
1565 if (N0.getOpcode() == ISD::TRUNCATE && N0.getOperand(0).getValueType() == VT&&
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001566 (!AfterLegalize || TLI.isOperationLegal(ISD::AND, N0.getValueType())))
Chris Lattner00cb95c2005-12-14 07:58:38 +00001567 return DAG.getZeroExtendInReg(N0.getOperand(0), N0.getValueType());
Evan Cheng110dec22005-12-14 02:19:23 +00001568 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Chris Lattnerd0f6d182005-12-15 19:02:38 +00001569 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse() &&
1570 (!AfterLegalize||TLI.isOperationLegal(ISD::ZEXTLOAD, N0.getValueType()))){
Evan Cheng110dec22005-12-14 02:19:23 +00001571 SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1572 N0.getOperand(1), N0.getOperand(2),
1573 N0.getValueType());
Chris Lattnerd4771842005-12-14 19:25:30 +00001574 CombineTo(N, ExtLoad);
Evan Cheng110dec22005-12-14 02:19:23 +00001575 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1576 ExtLoad.getValue(1));
1577 return SDOperand();
1578 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001579
1580 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
1581 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
1582 if ((N0.getOpcode() == ISD::ZEXTLOAD || N0.getOpcode() == ISD::EXTLOAD) &&
1583 N0.hasOneUse()) {
1584 SDOperand ExtLoad = DAG.getNode(ISD::ZEXTLOAD, VT, N0.getOperand(0),
1585 N0.getOperand(1), N0.getOperand(2),
1586 N0.getOperand(3));
Chris Lattnerd4771842005-12-14 19:25:30 +00001587 CombineTo(N, ExtLoad);
Chris Lattnerad25d4e2005-12-14 19:05:06 +00001588 CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
1589 ExtLoad.getValue(1));
1590 return SDOperand();
1591 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001592 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001593}
1594
Nate Begeman83e75ec2005-09-06 04:43:02 +00001595SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001596 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001597 SDOperand N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001598 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001599 MVT::ValueType VT = N->getValueType(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001600 MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
Nate Begeman07ed4172005-10-10 21:26:48 +00001601 unsigned EVTBits = MVT::getSizeInBits(EVT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001602
Nate Begeman1d4d4142005-09-01 00:19:25 +00001603 // fold (sext_in_reg c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001604 if (N0C) {
1605 SDOperand Truncate = DAG.getConstant(N0C->getValue(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001606 return DAG.getNode(ISD::SIGN_EXTEND, VT, Truncate);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001607 }
Nate Begeman646d7e22005-09-02 21:18:40 +00001608 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt1
Nate Begeman1d4d4142005-09-01 00:19:25 +00001609 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Nate Begeman216def82005-10-14 01:29:07 +00001610 cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001611 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001612 }
Nate Begeman646d7e22005-09-02 21:18:40 +00001613 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
1614 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1615 EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001616 return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001617 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00001618 // fold (sext_in_reg (assert_sext x)) -> (assert_sext x)
1619 if (N0.getOpcode() == ISD::AssertSext &&
1620 cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001621 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001622 }
1623 // fold (sext_in_reg (sextload x)) -> (sextload x)
1624 if (N0.getOpcode() == ISD::SEXTLOAD &&
1625 cast<VTSDNode>(N0.getOperand(3))->getVT() <= EVT) {
Nate Begeman83e75ec2005-09-06 04:43:02 +00001626 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001627 }
Nate Begeman4ebd8052005-09-01 23:24:04 +00001628 // fold (sext_in_reg (setcc x)) -> setcc x iff (setcc x) == 0 or -1
Nate Begeman1d4d4142005-09-01 00:19:25 +00001629 if (N0.getOpcode() == ISD::SETCC &&
1630 TLI.getSetCCResultContents() ==
1631 TargetLowering::ZeroOrNegativeOneSetCCResult)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001632 return N0;
Nate Begeman07ed4172005-10-10 21:26:48 +00001633 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is zero
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00001634 if (TLI.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
Nate Begeman07ed4172005-10-10 21:26:48 +00001635 return DAG.getNode(ISD::AND, N0.getValueType(), N0,
1636 DAG.getConstant(~0ULL >> (64-EVTBits), VT));
1637 // fold (sext_in_reg (srl x)) -> sra x
1638 if (N0.getOpcode() == ISD::SRL &&
1639 N0.getOperand(1).getOpcode() == ISD::Constant &&
1640 cast<ConstantSDNode>(N0.getOperand(1))->getValue() == EVTBits) {
1641 return DAG.getNode(ISD::SRA, N0.getValueType(), N0.getOperand(0),
1642 N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001643 }
Nate Begemanded49632005-10-13 03:11:28 +00001644 // fold (sext_inreg (extload x)) -> (sextload x)
1645 if (N0.getOpcode() == ISD::EXTLOAD &&
1646 EVT == cast<VTSDNode>(N0.getOperand(3))->getVT() &&
Nate Begemanbfd65a02005-10-13 18:34:58 +00001647 (!AfterLegalize || TLI.isOperationLegal(ISD::SEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001648 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1649 N0.getOperand(1), N0.getOperand(2),
1650 EVT);
Chris Lattnerd4771842005-12-14 19:25:30 +00001651 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00001652 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001653 return SDOperand();
1654 }
1655 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Chris Lattner40c62d52005-10-18 06:04:22 +00001656 if (N0.getOpcode() == ISD::ZEXTLOAD && N0.hasOneUse() &&
Nate Begemanded49632005-10-13 03:11:28 +00001657 EVT == cast<VTSDNode>(N0.getOperand(3))->getVT() &&
Nate Begemanbfd65a02005-10-13 18:34:58 +00001658 (!AfterLegalize || TLI.isOperationLegal(ISD::SEXTLOAD, EVT))) {
Nate Begemanded49632005-10-13 03:11:28 +00001659 SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, N0.getOperand(0),
1660 N0.getOperand(1), N0.getOperand(2),
1661 EVT);
Chris Lattnerd4771842005-12-14 19:25:30 +00001662 CombineTo(N, ExtLoad);
Nate Begemanbfd65a02005-10-13 18:34:58 +00001663 CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
Nate Begemanded49632005-10-13 03:11:28 +00001664 return SDOperand();
1665 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001666 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001667}
1668
Nate Begeman83e75ec2005-09-06 04:43:02 +00001669SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001670 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001671 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001672 MVT::ValueType VT = N->getValueType(0);
1673
1674 // noop truncate
1675 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001676 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001677 // fold (truncate c1) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001678 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001679 return DAG.getNode(ISD::TRUNCATE, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001680 // fold (truncate (truncate x)) -> (truncate x)
1681 if (N0.getOpcode() == ISD::TRUNCATE)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001682 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001683 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
1684 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND){
1685 if (N0.getValueType() < VT)
1686 // if the source is smaller than the dest, we still need an extend
Nate Begeman83e75ec2005-09-06 04:43:02 +00001687 return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001688 else if (N0.getValueType() > VT)
1689 // if the source is larger than the dest, than we just need the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00001690 return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001691 else
1692 // if the source and dest are the same type, we can drop both the extend
1693 // and the truncate
Nate Begeman83e75ec2005-09-06 04:43:02 +00001694 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001695 }
Nate Begeman3df4d522005-10-12 20:40:40 +00001696 // fold (truncate (load x)) -> (smaller load x)
Chris Lattner40c62d52005-10-18 06:04:22 +00001697 if (N0.getOpcode() == ISD::LOAD && N0.hasOneUse()) {
Nate Begeman3df4d522005-10-12 20:40:40 +00001698 assert(MVT::getSizeInBits(N0.getValueType()) > MVT::getSizeInBits(VT) &&
1699 "Cannot truncate to larger type!");
1700 MVT::ValueType PtrType = N0.getOperand(1).getValueType();
Nate Begeman765784a2005-10-12 23:18:53 +00001701 // For big endian targets, we need to add an offset to the pointer to load
1702 // the correct bytes. For little endian systems, we merely need to read
1703 // fewer bytes from the same pointer.
Nate Begeman3df4d522005-10-12 20:40:40 +00001704 uint64_t PtrOff =
1705 (MVT::getSizeInBits(N0.getValueType()) - MVT::getSizeInBits(VT)) / 8;
Nate Begeman765784a2005-10-12 23:18:53 +00001706 SDOperand NewPtr = TLI.isLittleEndian() ? N0.getOperand(1) :
1707 DAG.getNode(ISD::ADD, PtrType, N0.getOperand(1),
1708 DAG.getConstant(PtrOff, PtrType));
1709 WorkList.push_back(NewPtr.Val);
Nate Begeman3df4d522005-10-12 20:40:40 +00001710 SDOperand Load = DAG.getLoad(VT, N0.getOperand(0), NewPtr,N0.getOperand(2));
Nate Begeman765784a2005-10-12 23:18:53 +00001711 WorkList.push_back(N);
Chris Lattner24edbb72005-10-13 22:10:05 +00001712 CombineTo(N0.Val, Load, Load.getValue(1));
Nate Begeman765784a2005-10-12 23:18:53 +00001713 return SDOperand();
Nate Begeman3df4d522005-10-12 20:40:40 +00001714 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001715 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001716}
1717
Chris Lattner94683772005-12-23 05:30:37 +00001718SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
1719 SDOperand N0 = N->getOperand(0);
1720 MVT::ValueType VT = N->getValueType(0);
1721
1722 // If the input is a constant, let getNode() fold it.
1723 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
1724 SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
1725 if (Res.Val != N) return Res;
1726 }
1727
Chris Lattnerc8547d82005-12-23 05:37:50 +00001728 if (N0.getOpcode() == ISD::BIT_CONVERT) // conv(conv(x,t1),t2) -> conv(x,t2)
1729 return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
1730
Chris Lattner57104102005-12-23 05:44:41 +00001731 // fold (conv (load x)) -> (load (conv*)x)
Chris Lattnerbf40c4b2006-01-15 18:58:59 +00001732 // FIXME: These xforms need to know that the resultant load doesn't need a
1733 // higher alignment than the original!
1734 if (0 && N0.getOpcode() == ISD::LOAD && N0.hasOneUse()) {
Chris Lattner57104102005-12-23 05:44:41 +00001735 SDOperand Load = DAG.getLoad(VT, N0.getOperand(0), N0.getOperand(1),
1736 N0.getOperand(2));
1737 WorkList.push_back(N);
1738 CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
1739 Load.getValue(1));
1740 return Load;
1741 }
1742
Chris Lattner94683772005-12-23 05:30:37 +00001743 return SDOperand();
1744}
1745
Chris Lattner01b3d732005-09-28 22:28:18 +00001746SDOperand DAGCombiner::visitFADD(SDNode *N) {
1747 SDOperand N0 = N->getOperand(0);
1748 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00001749 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1750 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001751 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00001752
1753 // fold (fadd c1, c2) -> c1+c2
1754 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001755 return DAG.getNode(ISD::FADD, VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00001756 // canonicalize constant to RHS
1757 if (N0CFP && !N1CFP)
1758 return DAG.getNode(ISD::FADD, VT, N1, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00001759 // fold (A + (-B)) -> A-B
1760 if (N1.getOpcode() == ISD::FNEG)
1761 return DAG.getNode(ISD::FSUB, VT, N0, N1.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00001762 // fold ((-A) + B) -> B-A
1763 if (N0.getOpcode() == ISD::FNEG)
1764 return DAG.getNode(ISD::FSUB, VT, N1, N0.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00001765 return SDOperand();
1766}
1767
1768SDOperand DAGCombiner::visitFSUB(SDNode *N) {
1769 SDOperand N0 = N->getOperand(0);
1770 SDOperand N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00001771 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1772 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001773 MVT::ValueType VT = N->getValueType(0);
Nate Begemana0e221d2005-10-18 00:28:13 +00001774
1775 // fold (fsub c1, c2) -> c1-c2
1776 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001777 return DAG.getNode(ISD::FSUB, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001778 // fold (A-(-B)) -> A+B
1779 if (N1.getOpcode() == ISD::FNEG)
Nate Begemana148d982006-01-18 22:35:16 +00001780 return DAG.getNode(ISD::FADD, VT, N0, N1.getOperand(0));
Chris Lattner01b3d732005-09-28 22:28:18 +00001781 return SDOperand();
1782}
1783
1784SDOperand DAGCombiner::visitFMUL(SDNode *N) {
1785 SDOperand N0 = N->getOperand(0);
1786 SDOperand N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00001787 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1788 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001789 MVT::ValueType VT = N->getValueType(0);
1790
Nate Begeman11af4ea2005-10-17 20:40:11 +00001791 // fold (fmul c1, c2) -> c1*c2
1792 if (N0CFP && N1CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001793 return DAG.getNode(ISD::FMUL, VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00001794 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001795 if (N0CFP && !N1CFP)
1796 return DAG.getNode(ISD::FMUL, VT, N1, N0);
Nate Begeman11af4ea2005-10-17 20:40:11 +00001797 // fold (fmul X, 2.0) -> (fadd X, X)
1798 if (N1CFP && N1CFP->isExactlyValue(+2.0))
1799 return DAG.getNode(ISD::FADD, VT, N0, N0);
Chris Lattner01b3d732005-09-28 22:28:18 +00001800 return SDOperand();
1801}
1802
1803SDOperand DAGCombiner::visitFDIV(SDNode *N) {
1804 SDOperand N0 = N->getOperand(0);
1805 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00001806 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1807 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001808 MVT::ValueType VT = N->getValueType(0);
1809
Nate Begemana148d982006-01-18 22:35:16 +00001810 // fold (fdiv c1, c2) -> c1/c2
1811 if (N0CFP && N1CFP)
1812 return DAG.getNode(ISD::FDIV, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001813 return SDOperand();
1814}
1815
1816SDOperand DAGCombiner::visitFREM(SDNode *N) {
1817 SDOperand N0 = N->getOperand(0);
1818 SDOperand N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00001819 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1820 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001821 MVT::ValueType VT = N->getValueType(0);
1822
Nate Begemana148d982006-01-18 22:35:16 +00001823 // fold (frem c1, c2) -> fmod(c1,c2)
1824 if (N0CFP && N1CFP)
1825 return DAG.getNode(ISD::FREM, VT, N0, N1);
Chris Lattner01b3d732005-09-28 22:28:18 +00001826 return SDOperand();
1827}
1828
1829
Nate Begeman83e75ec2005-09-06 04:43:02 +00001830SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001831 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001832 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001833 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001834
1835 // fold (sint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00001836 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001837 return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001838 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001839}
1840
Nate Begeman83e75ec2005-09-06 04:43:02 +00001841SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001842 SDOperand N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00001843 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Nate Begemana148d982006-01-18 22:35:16 +00001844 MVT::ValueType VT = N->getValueType(0);
1845
Nate Begeman1d4d4142005-09-01 00:19:25 +00001846 // fold (uint_to_fp c1) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00001847 if (N0C)
Nate Begemana148d982006-01-18 22:35:16 +00001848 return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001849 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001850}
1851
Nate Begeman83e75ec2005-09-06 04:43:02 +00001852SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001853 SDOperand N0 = N->getOperand(0);
1854 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1855 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001856
1857 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001858 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001859 return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001860 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001861}
1862
Nate Begeman83e75ec2005-09-06 04:43:02 +00001863SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001864 SDOperand N0 = N->getOperand(0);
1865 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1866 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001867
1868 // fold (fp_to_uint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001869 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001870 return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001871 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001872}
1873
Nate Begeman83e75ec2005-09-06 04:43:02 +00001874SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001875 SDOperand N0 = N->getOperand(0);
1876 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1877 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001878
1879 // fold (fp_round c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00001880 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001881 return DAG.getNode(ISD::FP_ROUND, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001882 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001883}
1884
Nate Begeman83e75ec2005-09-06 04:43:02 +00001885SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001886 SDOperand N0 = N->getOperand(0);
1887 MVT::ValueType VT = N->getValueType(0);
1888 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00001889 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001890
Nate Begeman1d4d4142005-09-01 00:19:25 +00001891 // fold (fp_round_inreg c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00001892 if (N0CFP) {
1893 SDOperand Round = DAG.getConstantFP(N0CFP->getValue(), EVT);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001894 return DAG.getNode(ISD::FP_EXTEND, VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001895 }
Nate Begeman83e75ec2005-09-06 04:43:02 +00001896 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001897}
1898
Nate Begeman83e75ec2005-09-06 04:43:02 +00001899SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001900 SDOperand N0 = N->getOperand(0);
1901 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1902 MVT::ValueType VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001903
1904 // fold (fp_extend c1fp) -> c1fp
Nate Begeman646d7e22005-09-02 21:18:40 +00001905 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001906 return DAG.getNode(ISD::FP_EXTEND, VT, N0);
Nate Begeman83e75ec2005-09-06 04:43:02 +00001907 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001908}
1909
Nate Begeman83e75ec2005-09-06 04:43:02 +00001910SDOperand DAGCombiner::visitFNEG(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001911 SDOperand N0 = N->getOperand(0);
1912 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1913 MVT::ValueType VT = N->getValueType(0);
1914
1915 // fold (fneg c1) -> -c1
Nate Begeman646d7e22005-09-02 21:18:40 +00001916 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001917 return DAG.getNode(ISD::FNEG, VT, N0);
1918 // fold (fneg (sub x, y)) -> (sub y, x)
Nate Begeman1d4d4142005-09-01 00:19:25 +00001919 if (N->getOperand(0).getOpcode() == ISD::SUB)
Nate Begemana148d982006-01-18 22:35:16 +00001920 return DAG.getNode(ISD::SUB, VT, N->getOperand(1), N->getOperand(0));
1921 // fold (fneg (fneg x)) -> x
Nate Begeman1d4d4142005-09-01 00:19:25 +00001922 if (N->getOperand(0).getOpcode() == ISD::FNEG)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001923 return N->getOperand(0).getOperand(0);
1924 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001925}
1926
Nate Begeman83e75ec2005-09-06 04:43:02 +00001927SDOperand DAGCombiner::visitFABS(SDNode *N) {
Nate Begemana148d982006-01-18 22:35:16 +00001928 SDOperand N0 = N->getOperand(0);
1929 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
1930 MVT::ValueType VT = N->getValueType(0);
1931
Nate Begeman1d4d4142005-09-01 00:19:25 +00001932 // fold (fabs c1) -> fabs(c1)
Nate Begeman646d7e22005-09-02 21:18:40 +00001933 if (N0CFP)
Nate Begemana148d982006-01-18 22:35:16 +00001934 return DAG.getNode(ISD::FABS, VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001935 // fold (fabs (fabs x)) -> (fabs x)
1936 if (N->getOperand(0).getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001937 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001938 // fold (fabs (fneg x)) -> (fabs x)
1939 if (N->getOperand(0).getOpcode() == ISD::FNEG)
Nate Begemana148d982006-01-18 22:35:16 +00001940 return DAG.getNode(ISD::FABS, VT, N->getOperand(0).getOperand(0));
Nate Begeman83e75ec2005-09-06 04:43:02 +00001941 return SDOperand();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001942}
1943
Nate Begeman44728a72005-09-19 22:34:01 +00001944SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
1945 SDOperand Chain = N->getOperand(0);
1946 SDOperand N1 = N->getOperand(1);
1947 SDOperand N2 = N->getOperand(2);
1948 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1949
1950 // never taken branch, fold to chain
1951 if (N1C && N1C->isNullValue())
1952 return Chain;
1953 // unconditional branch
Nate Begemane17daeb2005-10-05 21:43:42 +00001954 if (N1C && N1C->getValue() == 1)
Nate Begeman44728a72005-09-19 22:34:01 +00001955 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001956 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
1957 // on the target.
1958 if (N1.getOpcode() == ISD::SETCC &&
1959 TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
1960 return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
1961 N1.getOperand(0), N1.getOperand(1), N2);
1962 }
Nate Begeman44728a72005-09-19 22:34:01 +00001963 return SDOperand();
1964}
1965
1966SDOperand DAGCombiner::visitBRCONDTWOWAY(SDNode *N) {
1967 SDOperand Chain = N->getOperand(0);
1968 SDOperand N1 = N->getOperand(1);
1969 SDOperand N2 = N->getOperand(2);
1970 SDOperand N3 = N->getOperand(3);
1971 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1972
1973 // unconditional branch to true mbb
1974 if (N1C && N1C->getValue() == 1)
1975 return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
1976 // unconditional branch to false mbb
1977 if (N1C && N1C->isNullValue())
1978 return DAG.getNode(ISD::BR, MVT::Other, Chain, N3);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001979 // fold a brcondtwoway with a setcc condition into a BRTWOWAY_CC node if
1980 // BRTWOWAY_CC is legal on the target.
1981 if (N1.getOpcode() == ISD::SETCC &&
1982 TLI.isOperationLegal(ISD::BRTWOWAY_CC, MVT::Other)) {
1983 std::vector<SDOperand> Ops;
1984 Ops.push_back(Chain);
1985 Ops.push_back(N1.getOperand(2));
1986 Ops.push_back(N1.getOperand(0));
1987 Ops.push_back(N1.getOperand(1));
1988 Ops.push_back(N2);
1989 Ops.push_back(N3);
1990 return DAG.getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
1991 }
Nate Begeman44728a72005-09-19 22:34:01 +00001992 return SDOperand();
1993}
1994
Chris Lattner3ea0b472005-10-05 06:47:48 +00001995// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
1996//
Nate Begeman44728a72005-09-19 22:34:01 +00001997SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00001998 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
1999 SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
2000
2001 // Use SimplifySetCC to simplify SETCC's.
Nate Begemane17daeb2005-10-05 21:43:42 +00002002 SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
2003 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
2004
2005 // fold br_cc true, dest -> br dest (unconditional branch)
2006 if (SCCC && SCCC->getValue())
2007 return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
2008 N->getOperand(4));
2009 // fold br_cc false, dest -> unconditional fall through
2010 if (SCCC && SCCC->isNullValue())
2011 return N->getOperand(0);
2012 // fold to a simpler setcc
2013 if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
2014 return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0),
2015 Simp.getOperand(2), Simp.getOperand(0),
2016 Simp.getOperand(1), N->getOperand(4));
Nate Begeman44728a72005-09-19 22:34:01 +00002017 return SDOperand();
2018}
2019
2020SDOperand DAGCombiner::visitBRTWOWAY_CC(SDNode *N) {
Nate Begemane17daeb2005-10-05 21:43:42 +00002021 SDOperand Chain = N->getOperand(0);
2022 SDOperand CCN = N->getOperand(1);
2023 SDOperand LHS = N->getOperand(2);
2024 SDOperand RHS = N->getOperand(3);
2025 SDOperand N4 = N->getOperand(4);
2026 SDOperand N5 = N->getOperand(5);
2027
2028 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), LHS, RHS,
2029 cast<CondCodeSDNode>(CCN)->get(), false);
2030 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
2031
2032 // fold select_cc lhs, rhs, x, x, cc -> x
2033 if (N4 == N5)
2034 return DAG.getNode(ISD::BR, MVT::Other, Chain, N4);
2035 // fold select_cc true, x, y -> x
2036 if (SCCC && SCCC->getValue())
2037 return DAG.getNode(ISD::BR, MVT::Other, Chain, N4);
2038 // fold select_cc false, x, y -> y
2039 if (SCCC && SCCC->isNullValue())
2040 return DAG.getNode(ISD::BR, MVT::Other, Chain, N5);
2041 // fold to a simpler setcc
Chris Lattner03d5e872006-01-29 06:00:45 +00002042 if (SCC.Val && SCC.getOpcode() == ISD::SETCC) {
2043 std::vector<SDOperand> Ops;
2044 Ops.push_back(Chain);
2045 Ops.push_back(SCC.getOperand(2));
2046 Ops.push_back(SCC.getOperand(0));
2047 Ops.push_back(SCC.getOperand(1));
2048 Ops.push_back(N4);
2049 Ops.push_back(N5);
2050 return DAG.getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
2051 }
Nate Begeman44728a72005-09-19 22:34:01 +00002052 return SDOperand();
2053}
2054
Chris Lattner01a22022005-10-10 22:04:48 +00002055SDOperand DAGCombiner::visitLOAD(SDNode *N) {
2056 SDOperand Chain = N->getOperand(0);
2057 SDOperand Ptr = N->getOperand(1);
2058 SDOperand SrcValue = N->getOperand(2);
2059
2060 // If this load is directly stored, replace the load value with the stored
2061 // value.
2062 // TODO: Handle store large -> read small portion.
2063 // TODO: Handle TRUNCSTORE/EXTLOAD
2064 if (Chain.getOpcode() == ISD::STORE && Chain.getOperand(2) == Ptr &&
2065 Chain.getOperand(1).getValueType() == N->getValueType(0))
2066 return CombineTo(N, Chain.getOperand(1), Chain);
2067
2068 return SDOperand();
2069}
2070
Chris Lattner87514ca2005-10-10 22:31:19 +00002071SDOperand DAGCombiner::visitSTORE(SDNode *N) {
2072 SDOperand Chain = N->getOperand(0);
2073 SDOperand Value = N->getOperand(1);
2074 SDOperand Ptr = N->getOperand(2);
2075 SDOperand SrcValue = N->getOperand(3);
2076
2077 // If this is a store that kills a previous store, remove the previous store.
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002078 if (Chain.getOpcode() == ISD::STORE && Chain.getOperand(2) == Ptr &&
Chris Lattnerfe7f0462005-10-27 07:10:34 +00002079 Chain.Val->hasOneUse() /* Avoid introducing DAG cycles */ &&
2080 // Make sure that these stores are the same value type:
2081 // FIXME: we really care that the second store is >= size of the first.
2082 Value.getValueType() == Chain.getOperand(1).getValueType()) {
Chris Lattner87514ca2005-10-10 22:31:19 +00002083 // Create a new store of Value that replaces both stores.
2084 SDNode *PrevStore = Chain.Val;
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002085 if (PrevStore->getOperand(1) == Value) // Same value multiply stored.
2086 return Chain;
Chris Lattner87514ca2005-10-10 22:31:19 +00002087 SDOperand NewStore = DAG.getNode(ISD::STORE, MVT::Other,
2088 PrevStore->getOperand(0), Value, Ptr,
2089 SrcValue);
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002090 CombineTo(N, NewStore); // Nuke this store.
Chris Lattner87514ca2005-10-10 22:31:19 +00002091 CombineTo(PrevStore, NewStore); // Nuke the previous store.
Chris Lattner04ecf6d2005-10-10 23:00:08 +00002092 return SDOperand(N, 0);
Chris Lattner87514ca2005-10-10 22:31:19 +00002093 }
2094
Chris Lattnerc33baaa2005-12-23 05:48:07 +00002095 // If this is a store of a bit convert, store the input value.
Chris Lattnerbf40c4b2006-01-15 18:58:59 +00002096 // FIXME: This needs to know that the resultant store does not need a
2097 // higher alignment than the original.
2098 if (0 && Value.getOpcode() == ISD::BIT_CONVERT)
Chris Lattnerc33baaa2005-12-23 05:48:07 +00002099 return DAG.getNode(ISD::STORE, MVT::Other, Chain, Value.getOperand(0),
2100 Ptr, SrcValue);
2101
Chris Lattner87514ca2005-10-10 22:31:19 +00002102 return SDOperand();
2103}
2104
Jim Laskeyd6e8d412005-12-23 20:08:28 +00002105SDOperand DAGCombiner::visitLOCATION(SDNode *N) {
2106 SDOperand Chain = N->getOperand(0);
2107
2108 // Remove redundant locations (last one holds)
2109 if (Chain.getOpcode() == ISD::LOCATION && Chain.hasOneUse()) {
2110 return DAG.getNode(ISD::LOCATION, MVT::Other, Chain.getOperand(0),
2111 N->getOperand(1),
2112 N->getOperand(2),
2113 N->getOperand(3),
2114 N->getOperand(4));
2115 }
2116
2117 return SDOperand();
2118}
2119
2120SDOperand DAGCombiner::visitDEBUGLOC(SDNode *N) {
2121 SDOperand Chain = N->getOperand(0);
2122
2123 // Remove redundant debug locations (last one holds)
2124 if (Chain.getOpcode() == ISD::DEBUG_LOC && Chain.hasOneUse()) {
2125 return DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Chain.getOperand(0),
2126 N->getOperand(1),
2127 N->getOperand(2),
Jim Laskeyabf6d172006-01-05 01:25:28 +00002128 N->getOperand(3));
Jim Laskeyd6e8d412005-12-23 20:08:28 +00002129 }
2130
2131 return SDOperand();
2132}
2133
Nate Begeman44728a72005-09-19 22:34:01 +00002134SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
Nate Begemanf845b452005-10-08 00:29:44 +00002135 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
2136
2137 SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
2138 cast<CondCodeSDNode>(N0.getOperand(2))->get());
2139 // If we got a simplified select_cc node back from SimplifySelectCC, then
2140 // break it down into a new SETCC node, and a new SELECT node, and then return
2141 // the SELECT node, since we were called with a SELECT node.
2142 if (SCC.Val) {
2143 // Check to see if we got a select_cc back (to turn into setcc/select).
2144 // Otherwise, just return whatever node we got back, like fabs.
2145 if (SCC.getOpcode() == ISD::SELECT_CC) {
2146 SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
2147 SCC.getOperand(0), SCC.getOperand(1),
2148 SCC.getOperand(4));
2149 WorkList.push_back(SETCC.Val);
2150 return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
2151 SCC.getOperand(3), SETCC);
2152 }
2153 return SCC;
2154 }
Nate Begeman44728a72005-09-19 22:34:01 +00002155 return SDOperand();
2156}
2157
Chris Lattner40c62d52005-10-18 06:04:22 +00002158/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
2159/// are the two values being selected between, see if we can simplify the
2160/// select.
2161///
2162bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS,
2163 SDOperand RHS) {
2164
2165 // If this is a select from two identical things, try to pull the operation
2166 // through the select.
2167 if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
2168#if 0
2169 std::cerr << "SELECT: ["; LHS.Val->dump();
2170 std::cerr << "] ["; RHS.Val->dump();
2171 std::cerr << "]\n";
2172#endif
2173
2174 // If this is a load and the token chain is identical, replace the select
2175 // of two loads with a load through a select of the address to load from.
2176 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
2177 // constants have been dropped into the constant pool.
2178 if ((LHS.getOpcode() == ISD::LOAD ||
2179 LHS.getOpcode() == ISD::EXTLOAD ||
2180 LHS.getOpcode() == ISD::ZEXTLOAD ||
2181 LHS.getOpcode() == ISD::SEXTLOAD) &&
2182 // Token chains must be identical.
2183 LHS.getOperand(0) == RHS.getOperand(0) &&
2184 // If this is an EXTLOAD, the VT's must match.
2185 (LHS.getOpcode() == ISD::LOAD ||
2186 LHS.getOperand(3) == RHS.getOperand(3))) {
2187 // FIXME: this conflates two src values, discarding one. This is not
2188 // the right thing to do, but nothing uses srcvalues now. When they do,
2189 // turn SrcValue into a list of locations.
2190 SDOperand Addr;
2191 if (TheSelect->getOpcode() == ISD::SELECT)
2192 Addr = DAG.getNode(ISD::SELECT, LHS.getOperand(1).getValueType(),
2193 TheSelect->getOperand(0), LHS.getOperand(1),
2194 RHS.getOperand(1));
2195 else
2196 Addr = DAG.getNode(ISD::SELECT_CC, LHS.getOperand(1).getValueType(),
2197 TheSelect->getOperand(0),
2198 TheSelect->getOperand(1),
2199 LHS.getOperand(1), RHS.getOperand(1),
2200 TheSelect->getOperand(4));
2201
2202 SDOperand Load;
2203 if (LHS.getOpcode() == ISD::LOAD)
2204 Load = DAG.getLoad(TheSelect->getValueType(0), LHS.getOperand(0),
2205 Addr, LHS.getOperand(2));
2206 else
2207 Load = DAG.getExtLoad(LHS.getOpcode(), TheSelect->getValueType(0),
2208 LHS.getOperand(0), Addr, LHS.getOperand(2),
2209 cast<VTSDNode>(LHS.getOperand(3))->getVT());
2210 // Users of the select now use the result of the load.
2211 CombineTo(TheSelect, Load);
2212
2213 // Users of the old loads now use the new load's chain. We know the
2214 // old-load value is dead now.
2215 CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
2216 CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
2217 return true;
2218 }
2219 }
2220
2221 return false;
2222}
2223
Nate Begeman44728a72005-09-19 22:34:01 +00002224SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1,
2225 SDOperand N2, SDOperand N3,
2226 ISD::CondCode CC) {
Nate Begemanf845b452005-10-08 00:29:44 +00002227
2228 MVT::ValueType VT = N2.getValueType();
2229 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
2230 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2231 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2232 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
2233
2234 // Determine if the condition we're dealing with is constant
2235 SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
2236 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
2237
2238 // fold select_cc true, x, y -> x
2239 if (SCCC && SCCC->getValue())
2240 return N2;
2241 // fold select_cc false, x, y -> y
2242 if (SCCC && SCCC->getValue() == 0)
2243 return N3;
2244
2245 // Check to see if we can simplify the select into an fabs node
2246 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
2247 // Allow either -0.0 or 0.0
2248 if (CFP->getValue() == 0.0) {
2249 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
2250 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
2251 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
2252 N2 == N3.getOperand(0))
2253 return DAG.getNode(ISD::FABS, VT, N0);
2254
2255 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
2256 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
2257 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
2258 N2.getOperand(0) == N3)
2259 return DAG.getNode(ISD::FABS, VT, N3);
2260 }
2261 }
2262
2263 // Check to see if we can perform the "gzip trick", transforming
2264 // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
2265 if (N1C && N1C->isNullValue() && N3C && N3C->isNullValue() &&
2266 MVT::isInteger(N0.getValueType()) &&
2267 MVT::isInteger(N2.getValueType()) && CC == ISD::SETLT) {
2268 MVT::ValueType XType = N0.getValueType();
2269 MVT::ValueType AType = N2.getValueType();
2270 if (XType >= AType) {
2271 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00002272 // single-bit constant.
Nate Begemanf845b452005-10-08 00:29:44 +00002273 if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
2274 unsigned ShCtV = Log2_64(N2C->getValue());
2275 ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
2276 SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
2277 SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
2278 WorkList.push_back(Shift.Val);
2279 if (XType > AType) {
2280 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
2281 WorkList.push_back(Shift.Val);
2282 }
2283 return DAG.getNode(ISD::AND, AType, Shift, N2);
2284 }
2285 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
2286 DAG.getConstant(MVT::getSizeInBits(XType)-1,
2287 TLI.getShiftAmountTy()));
2288 WorkList.push_back(Shift.Val);
2289 if (XType > AType) {
2290 Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
2291 WorkList.push_back(Shift.Val);
2292 }
2293 return DAG.getNode(ISD::AND, AType, Shift, N2);
2294 }
2295 }
Nate Begeman07ed4172005-10-10 21:26:48 +00002296
2297 // fold select C, 16, 0 -> shl C, 4
2298 if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
2299 TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
2300 // Get a SetCC of the condition
2301 // FIXME: Should probably make sure that setcc is legal if we ever have a
2302 // target where it isn't.
2303 SDOperand Temp, SCC = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
2304 WorkList.push_back(SCC.Val);
2305 // cast from setcc result type to select result type
2306 if (AfterLegalize)
2307 Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
2308 else
2309 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
2310 WorkList.push_back(Temp.Val);
2311 // shl setcc result by log2 n2c
2312 return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
2313 DAG.getConstant(Log2_64(N2C->getValue()),
2314 TLI.getShiftAmountTy()));
2315 }
2316
Nate Begemanf845b452005-10-08 00:29:44 +00002317 // Check to see if this is the equivalent of setcc
2318 // FIXME: Turn all of these into setcc if setcc if setcc is legal
2319 // otherwise, go ahead with the folds.
2320 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
2321 MVT::ValueType XType = N0.getValueType();
2322 if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
2323 SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
2324 if (Res.getValueType() != VT)
2325 Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
2326 return Res;
2327 }
2328
2329 // seteq X, 0 -> srl (ctlz X, log2(size(X)))
2330 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
2331 TLI.isOperationLegal(ISD::CTLZ, XType)) {
2332 SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
2333 return DAG.getNode(ISD::SRL, XType, Ctlz,
2334 DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
2335 TLI.getShiftAmountTy()));
2336 }
2337 // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
2338 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
2339 SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
2340 N0);
2341 SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0,
2342 DAG.getConstant(~0ULL, XType));
2343 return DAG.getNode(ISD::SRL, XType,
2344 DAG.getNode(ISD::AND, XType, NegN0, NotN0),
2345 DAG.getConstant(MVT::getSizeInBits(XType)-1,
2346 TLI.getShiftAmountTy()));
2347 }
2348 // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
2349 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
2350 SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
2351 DAG.getConstant(MVT::getSizeInBits(XType)-1,
2352 TLI.getShiftAmountTy()));
2353 return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
2354 }
2355 }
2356
2357 // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
2358 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
2359 if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
2360 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1)) {
2361 if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0))) {
2362 MVT::ValueType XType = N0.getValueType();
2363 if (SubC->isNullValue() && MVT::isInteger(XType)) {
2364 SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
2365 DAG.getConstant(MVT::getSizeInBits(XType)-1,
2366 TLI.getShiftAmountTy()));
2367 SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
2368 WorkList.push_back(Shift.Val);
2369 WorkList.push_back(Add.Val);
2370 return DAG.getNode(ISD::XOR, XType, Add, Shift);
2371 }
2372 }
2373 }
2374
Nate Begeman44728a72005-09-19 22:34:01 +00002375 return SDOperand();
2376}
2377
Nate Begeman452d7beb2005-09-16 00:54:12 +00002378SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
Nate Begemane17daeb2005-10-05 21:43:42 +00002379 SDOperand N1, ISD::CondCode Cond,
2380 bool foldBooleans) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00002381 // These setcc operations always fold.
2382 switch (Cond) {
2383 default: break;
2384 case ISD::SETFALSE:
2385 case ISD::SETFALSE2: return DAG.getConstant(0, VT);
2386 case ISD::SETTRUE:
2387 case ISD::SETTRUE2: return DAG.getConstant(1, VT);
2388 }
2389
2390 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
2391 uint64_t C1 = N1C->getValue();
2392 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val)) {
2393 uint64_t C0 = N0C->getValue();
2394
2395 // Sign extend the operands if required
2396 if (ISD::isSignedIntSetCC(Cond)) {
2397 C0 = N0C->getSignExtended();
2398 C1 = N1C->getSignExtended();
2399 }
2400
2401 switch (Cond) {
2402 default: assert(0 && "Unknown integer setcc!");
2403 case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT);
2404 case ISD::SETNE: return DAG.getConstant(C0 != C1, VT);
2405 case ISD::SETULT: return DAG.getConstant(C0 < C1, VT);
2406 case ISD::SETUGT: return DAG.getConstant(C0 > C1, VT);
2407 case ISD::SETULE: return DAG.getConstant(C0 <= C1, VT);
2408 case ISD::SETUGE: return DAG.getConstant(C0 >= C1, VT);
2409 case ISD::SETLT: return DAG.getConstant((int64_t)C0 < (int64_t)C1, VT);
2410 case ISD::SETGT: return DAG.getConstant((int64_t)C0 > (int64_t)C1, VT);
2411 case ISD::SETLE: return DAG.getConstant((int64_t)C0 <= (int64_t)C1, VT);
2412 case ISD::SETGE: return DAG.getConstant((int64_t)C0 >= (int64_t)C1, VT);
2413 }
2414 } else {
2415 // If the LHS is a ZERO_EXTEND, perform the comparison on the input.
2416 if (N0.getOpcode() == ISD::ZERO_EXTEND) {
2417 unsigned InSize = MVT::getSizeInBits(N0.getOperand(0).getValueType());
2418
2419 // If the comparison constant has bits in the upper part, the
2420 // zero-extended value could never match.
2421 if (C1 & (~0ULL << InSize)) {
2422 unsigned VSize = MVT::getSizeInBits(N0.getValueType());
2423 switch (Cond) {
2424 case ISD::SETUGT:
2425 case ISD::SETUGE:
2426 case ISD::SETEQ: return DAG.getConstant(0, VT);
2427 case ISD::SETULT:
2428 case ISD::SETULE:
2429 case ISD::SETNE: return DAG.getConstant(1, VT);
2430 case ISD::SETGT:
2431 case ISD::SETGE:
2432 // True if the sign bit of C1 is set.
2433 return DAG.getConstant((C1 & (1ULL << VSize)) != 0, VT);
2434 case ISD::SETLT:
2435 case ISD::SETLE:
2436 // True if the sign bit of C1 isn't set.
2437 return DAG.getConstant((C1 & (1ULL << VSize)) == 0, VT);
2438 default:
2439 break;
2440 }
2441 }
2442
2443 // Otherwise, we can perform the comparison with the low bits.
2444 switch (Cond) {
2445 case ISD::SETEQ:
2446 case ISD::SETNE:
2447 case ISD::SETUGT:
2448 case ISD::SETUGE:
2449 case ISD::SETULT:
2450 case ISD::SETULE:
2451 return DAG.getSetCC(VT, N0.getOperand(0),
2452 DAG.getConstant(C1, N0.getOperand(0).getValueType()),
2453 Cond);
2454 default:
2455 break; // todo, be more careful with signed comparisons
2456 }
2457 } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2458 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) {
2459 MVT::ValueType ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT();
2460 unsigned ExtSrcTyBits = MVT::getSizeInBits(ExtSrcTy);
2461 MVT::ValueType ExtDstTy = N0.getValueType();
2462 unsigned ExtDstTyBits = MVT::getSizeInBits(ExtDstTy);
2463
2464 // If the extended part has any inconsistent bits, it cannot ever
2465 // compare equal. In other words, they have to be all ones or all
2466 // zeros.
2467 uint64_t ExtBits =
2468 (~0ULL >> (64-ExtSrcTyBits)) & (~0ULL << (ExtDstTyBits-1));
2469 if ((C1 & ExtBits) != 0 && (C1 & ExtBits) != ExtBits)
2470 return DAG.getConstant(Cond == ISD::SETNE, VT);
2471
2472 SDOperand ZextOp;
2473 MVT::ValueType Op0Ty = N0.getOperand(0).getValueType();
2474 if (Op0Ty == ExtSrcTy) {
2475 ZextOp = N0.getOperand(0);
2476 } else {
2477 int64_t Imm = ~0ULL >> (64-ExtSrcTyBits);
2478 ZextOp = DAG.getNode(ISD::AND, Op0Ty, N0.getOperand(0),
2479 DAG.getConstant(Imm, Op0Ty));
2480 }
2481 WorkList.push_back(ZextOp.Val);
2482 // Otherwise, make this a use of a zext.
2483 return DAG.getSetCC(VT, ZextOp,
2484 DAG.getConstant(C1 & (~0ULL>>(64-ExtSrcTyBits)),
2485 ExtDstTy),
2486 Cond);
2487 }
Chris Lattner5c46f742005-10-05 06:11:08 +00002488
Nate Begeman452d7beb2005-09-16 00:54:12 +00002489 uint64_t MinVal, MaxVal;
2490 unsigned OperandBitSize = MVT::getSizeInBits(N1C->getValueType(0));
2491 if (ISD::isSignedIntSetCC(Cond)) {
2492 MinVal = 1ULL << (OperandBitSize-1);
2493 if (OperandBitSize != 1) // Avoid X >> 64, which is undefined.
2494 MaxVal = ~0ULL >> (65-OperandBitSize);
2495 else
2496 MaxVal = 0;
2497 } else {
2498 MinVal = 0;
2499 MaxVal = ~0ULL >> (64-OperandBitSize);
2500 }
2501
2502 // Canonicalize GE/LE comparisons to use GT/LT comparisons.
2503 if (Cond == ISD::SETGE || Cond == ISD::SETUGE) {
2504 if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true
2505 --C1; // X >= C0 --> X > (C0-1)
2506 return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()),
2507 (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT);
2508 }
2509
2510 if (Cond == ISD::SETLE || Cond == ISD::SETULE) {
2511 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
2512 ++C1; // X <= C0 --> X < (C0+1)
2513 return DAG.getSetCC(VT, N0, DAG.getConstant(C1, N1.getValueType()),
2514 (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT);
2515 }
2516
2517 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
2518 return DAG.getConstant(0, VT); // X < MIN --> false
2519
2520 // Canonicalize setgt X, Min --> setne X, Min
2521 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
2522 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
Chris Lattnerc8597ca2005-10-21 21:23:25 +00002523 // Canonicalize setlt X, Max --> setne X, Max
2524 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
2525 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002526
2527 // If we have setult X, 1, turn it into seteq X, 0
2528 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
2529 return DAG.getSetCC(VT, N0, DAG.getConstant(MinVal, N0.getValueType()),
2530 ISD::SETEQ);
2531 // If we have setugt X, Max-1, turn it into seteq X, Max
2532 else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
2533 return DAG.getSetCC(VT, N0, DAG.getConstant(MaxVal, N0.getValueType()),
2534 ISD::SETEQ);
2535
2536 // If we have "setcc X, C0", check to see if we can shrink the immediate
2537 // by changing cc.
2538
2539 // SETUGT X, SINTMAX -> SETLT X, 0
2540 if (Cond == ISD::SETUGT && OperandBitSize != 1 &&
2541 C1 == (~0ULL >> (65-OperandBitSize)))
2542 return DAG.getSetCC(VT, N0, DAG.getConstant(0, N1.getValueType()),
2543 ISD::SETLT);
2544
2545 // FIXME: Implement the rest of these.
2546
2547 // Fold bit comparisons when we can.
2548 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
2549 VT == N0.getValueType() && N0.getOpcode() == ISD::AND)
2550 if (ConstantSDNode *AndRHS =
2551 dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2552 if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3
2553 // Perform the xform if the AND RHS is a single bit.
2554 if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) {
2555 return DAG.getNode(ISD::SRL, VT, N0,
2556 DAG.getConstant(Log2_64(AndRHS->getValue()),
2557 TLI.getShiftAmountTy()));
2558 }
2559 } else if (Cond == ISD::SETEQ && C1 == AndRHS->getValue()) {
2560 // (X & 8) == 8 --> (X & 8) >> 3
2561 // Perform the xform if C1 is a single bit.
2562 if ((C1 & (C1-1)) == 0) {
2563 return DAG.getNode(ISD::SRL, VT, N0,
2564 DAG.getConstant(Log2_64(C1),TLI.getShiftAmountTy()));
2565 }
2566 }
2567 }
2568 }
2569 } else if (isa<ConstantSDNode>(N0.Val)) {
2570 // Ensure that the constant occurs on the RHS.
2571 return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond));
2572 }
2573
2574 if (ConstantFPSDNode *N0C = dyn_cast<ConstantFPSDNode>(N0.Val))
2575 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
2576 double C0 = N0C->getValue(), C1 = N1C->getValue();
2577
2578 switch (Cond) {
2579 default: break; // FIXME: Implement the rest of these!
2580 case ISD::SETEQ: return DAG.getConstant(C0 == C1, VT);
2581 case ISD::SETNE: return DAG.getConstant(C0 != C1, VT);
2582 case ISD::SETLT: return DAG.getConstant(C0 < C1, VT);
2583 case ISD::SETGT: return DAG.getConstant(C0 > C1, VT);
2584 case ISD::SETLE: return DAG.getConstant(C0 <= C1, VT);
2585 case ISD::SETGE: return DAG.getConstant(C0 >= C1, VT);
2586 }
2587 } else {
2588 // Ensure that the constant occurs on the RHS.
2589 return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond));
2590 }
2591
2592 if (N0 == N1) {
2593 // We can always fold X == Y for integer setcc's.
2594 if (MVT::isInteger(N0.getValueType()))
2595 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
2596 unsigned UOF = ISD::getUnorderedFlavor(Cond);
2597 if (UOF == 2) // FP operators that are undefined on NaNs.
2598 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
2599 if (UOF == unsigned(ISD::isTrueWhenEqual(Cond)))
2600 return DAG.getConstant(UOF, VT);
2601 // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO
2602 // if it is not already.
Chris Lattner4090aee2006-01-18 19:13:41 +00002603 ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO;
Nate Begeman452d7beb2005-09-16 00:54:12 +00002604 if (NewCond != Cond)
2605 return DAG.getSetCC(VT, N0, N1, NewCond);
2606 }
2607
2608 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
2609 MVT::isInteger(N0.getValueType())) {
2610 if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB ||
2611 N0.getOpcode() == ISD::XOR) {
2612 // Simplify (X+Y) == (X+Z) --> Y == Z
2613 if (N0.getOpcode() == N1.getOpcode()) {
2614 if (N0.getOperand(0) == N1.getOperand(0))
2615 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond);
2616 if (N0.getOperand(1) == N1.getOperand(1))
2617 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(0), Cond);
2618 if (isCommutativeBinOp(N0.getOpcode())) {
2619 // If X op Y == Y op X, try other combinations.
2620 if (N0.getOperand(0) == N1.getOperand(1))
2621 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(0), Cond);
2622 if (N0.getOperand(1) == N1.getOperand(0))
Chris Lattnera158eee2005-10-25 18:57:30 +00002623 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(1), Cond);
Nate Begeman452d7beb2005-09-16 00:54:12 +00002624 }
2625 }
2626
Chris Lattner5c46f742005-10-05 06:11:08 +00002627 // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0. Common for condcodes.
2628 if (N0.getOpcode() == ISD::XOR)
2629 if (ConstantSDNode *XORC = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
2630 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) {
2631 // If we know that all of the inverted bits are zero, don't bother
2632 // performing the inversion.
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +00002633 if (TLI.MaskedValueIsZero(N0.getOperand(0), ~XORC->getValue()))
Chris Lattner5c46f742005-10-05 06:11:08 +00002634 return DAG.getSetCC(VT, N0.getOperand(0),
2635 DAG.getConstant(XORC->getValue()^RHSC->getValue(),
2636 N0.getValueType()), Cond);
2637 }
2638
Nate Begeman452d7beb2005-09-16 00:54:12 +00002639 // Simplify (X+Z) == X --> Z == 0
2640 if (N0.getOperand(0) == N1)
2641 return DAG.getSetCC(VT, N0.getOperand(1),
2642 DAG.getConstant(0, N0.getValueType()), Cond);
2643 if (N0.getOperand(1) == N1) {
2644 if (isCommutativeBinOp(N0.getOpcode()))
2645 return DAG.getSetCC(VT, N0.getOperand(0),
2646 DAG.getConstant(0, N0.getValueType()), Cond);
2647 else {
2648 assert(N0.getOpcode() == ISD::SUB && "Unexpected operation!");
2649 // (Z-X) == X --> Z == X<<1
2650 SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(),
2651 N1,
2652 DAG.getConstant(1,TLI.getShiftAmountTy()));
2653 WorkList.push_back(SH.Val);
2654 return DAG.getSetCC(VT, N0.getOperand(0), SH, Cond);
2655 }
2656 }
2657 }
2658
2659 if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB ||
2660 N1.getOpcode() == ISD::XOR) {
2661 // Simplify X == (X+Z) --> Z == 0
2662 if (N1.getOperand(0) == N0) {
2663 return DAG.getSetCC(VT, N1.getOperand(1),
2664 DAG.getConstant(0, N1.getValueType()), Cond);
2665 } else if (N1.getOperand(1) == N0) {
2666 if (isCommutativeBinOp(N1.getOpcode())) {
2667 return DAG.getSetCC(VT, N1.getOperand(0),
2668 DAG.getConstant(0, N1.getValueType()), Cond);
2669 } else {
2670 assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!");
2671 // X == (Z-X) --> X<<1 == Z
2672 SDOperand SH = DAG.getNode(ISD::SHL, N1.getValueType(), N0,
2673 DAG.getConstant(1,TLI.getShiftAmountTy()));
2674 WorkList.push_back(SH.Val);
2675 return DAG.getSetCC(VT, SH, N1.getOperand(0), Cond);
2676 }
2677 }
2678 }
2679 }
2680
2681 // Fold away ALL boolean setcc's.
2682 SDOperand Temp;
Nate Begemane17daeb2005-10-05 21:43:42 +00002683 if (N0.getValueType() == MVT::i1 && foldBooleans) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00002684 switch (Cond) {
2685 default: assert(0 && "Unknown integer setcc!");
2686 case ISD::SETEQ: // X == Y -> (X^Y)^1
2687 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
2688 N0 = DAG.getNode(ISD::XOR, MVT::i1, Temp, DAG.getConstant(1, MVT::i1));
2689 WorkList.push_back(Temp.Val);
2690 break;
2691 case ISD::SETNE: // X != Y --> (X^Y)
2692 N0 = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
2693 break;
2694 case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> X^1 & Y
2695 case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> X^1 & Y
2696 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
2697 N0 = DAG.getNode(ISD::AND, MVT::i1, N1, Temp);
2698 WorkList.push_back(Temp.Val);
2699 break;
2700 case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> Y^1 & X
2701 case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> Y^1 & X
2702 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
2703 N0 = DAG.getNode(ISD::AND, MVT::i1, N0, Temp);
2704 WorkList.push_back(Temp.Val);
2705 break;
2706 case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> X^1 | Y
2707 case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> X^1 | Y
2708 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
2709 N0 = DAG.getNode(ISD::OR, MVT::i1, N1, Temp);
2710 WorkList.push_back(Temp.Val);
2711 break;
2712 case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> Y^1 | X
2713 case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> Y^1 | X
2714 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
2715 N0 = DAG.getNode(ISD::OR, MVT::i1, N0, Temp);
2716 break;
2717 }
2718 if (VT != MVT::i1) {
2719 WorkList.push_back(N0.Val);
2720 // FIXME: If running after legalize, we probably can't do this.
2721 N0 = DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2722 }
2723 return N0;
2724 }
2725
2726 // Could not fold it.
2727 return SDOperand();
2728}
2729
Nate Begeman69575232005-10-20 02:15:44 +00002730/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
2731/// return a DAG expression to select that will generate the same value by
2732/// multiplying by a magic number. See:
2733/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
2734SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
2735 MVT::ValueType VT = N->getValueType(0);
Chris Lattnere9936d12005-10-22 18:50:15 +00002736
2737 // Check to see if we can do this.
2738 if (!TLI.isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
2739 return SDOperand(); // BuildSDIV only operates on i32 or i64
2740 if (!TLI.isOperationLegal(ISD::MULHS, VT))
2741 return SDOperand(); // Make sure the target supports MULHS.
Nate Begeman69575232005-10-20 02:15:44 +00002742
Nate Begemanc6a454e2005-10-20 17:45:03 +00002743 int64_t d = cast<ConstantSDNode>(N->getOperand(1))->getSignExtended();
Nate Begeman69575232005-10-20 02:15:44 +00002744 ms magics = (VT == MVT::i32) ? magic32(d) : magic64(d);
2745
2746 // Multiply the numerator (operand 0) by the magic value
2747 SDOperand Q = DAG.getNode(ISD::MULHS, VT, N->getOperand(0),
2748 DAG.getConstant(magics.m, VT));
2749 // If d > 0 and m < 0, add the numerator
2750 if (d > 0 && magics.m < 0) {
2751 Q = DAG.getNode(ISD::ADD, VT, Q, N->getOperand(0));
2752 WorkList.push_back(Q.Val);
2753 }
2754 // If d < 0 and m > 0, subtract the numerator.
2755 if (d < 0 && magics.m > 0) {
2756 Q = DAG.getNode(ISD::SUB, VT, Q, N->getOperand(0));
2757 WorkList.push_back(Q.Val);
2758 }
2759 // Shift right algebraic if shift value is nonzero
2760 if (magics.s > 0) {
2761 Q = DAG.getNode(ISD::SRA, VT, Q,
2762 DAG.getConstant(magics.s, TLI.getShiftAmountTy()));
2763 WorkList.push_back(Q.Val);
2764 }
2765 // Extract the sign bit and add it to the quotient
2766 SDOperand T =
Nate Begeman4d385672005-10-21 01:51:45 +00002767 DAG.getNode(ISD::SRL, VT, Q, DAG.getConstant(MVT::getSizeInBits(VT)-1,
2768 TLI.getShiftAmountTy()));
Nate Begeman69575232005-10-20 02:15:44 +00002769 WorkList.push_back(T.Val);
2770 return DAG.getNode(ISD::ADD, VT, Q, T);
2771}
2772
2773/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
2774/// return a DAG expression to select that will generate the same value by
2775/// multiplying by a magic number. See:
2776/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
2777SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
2778 MVT::ValueType VT = N->getValueType(0);
Chris Lattnere9936d12005-10-22 18:50:15 +00002779
2780 // Check to see if we can do this.
2781 if (!TLI.isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
2782 return SDOperand(); // BuildUDIV only operates on i32 or i64
2783 if (!TLI.isOperationLegal(ISD::MULHU, VT))
2784 return SDOperand(); // Make sure the target supports MULHU.
Nate Begeman69575232005-10-20 02:15:44 +00002785
2786 uint64_t d = cast<ConstantSDNode>(N->getOperand(1))->getValue();
2787 mu magics = (VT == MVT::i32) ? magicu32(d) : magicu64(d);
2788
2789 // Multiply the numerator (operand 0) by the magic value
2790 SDOperand Q = DAG.getNode(ISD::MULHU, VT, N->getOperand(0),
2791 DAG.getConstant(magics.m, VT));
2792 WorkList.push_back(Q.Val);
2793
2794 if (magics.a == 0) {
2795 return DAG.getNode(ISD::SRL, VT, Q,
2796 DAG.getConstant(magics.s, TLI.getShiftAmountTy()));
2797 } else {
2798 SDOperand NPQ = DAG.getNode(ISD::SUB, VT, N->getOperand(0), Q);
2799 WorkList.push_back(NPQ.Val);
2800 NPQ = DAG.getNode(ISD::SRL, VT, NPQ,
2801 DAG.getConstant(1, TLI.getShiftAmountTy()));
2802 WorkList.push_back(NPQ.Val);
2803 NPQ = DAG.getNode(ISD::ADD, VT, NPQ, Q);
2804 WorkList.push_back(NPQ.Val);
2805 return DAG.getNode(ISD::SRL, VT, NPQ,
2806 DAG.getConstant(magics.s-1, TLI.getShiftAmountTy()));
2807 }
2808}
2809
Nate Begeman1d4d4142005-09-01 00:19:25 +00002810// SelectionDAG::Combine - This is the entry point for the file.
2811//
Nate Begeman4ebd8052005-09-01 23:24:04 +00002812void SelectionDAG::Combine(bool RunningAfterLegalize) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00002813 /// run - This is the main entry point to this class.
2814 ///
Nate Begeman4ebd8052005-09-01 23:24:04 +00002815 DAGCombiner(*this).Run(RunningAfterLegalize);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002816}