blob: d70823379a48509541f802e67aa569a0b8533a74 [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000015#include "llvm/Constants.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000016#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000018#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000022#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000023#include "llvm/Target/MRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000024#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000025#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000028#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000029#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000030#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000031#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000032#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000033#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattner0b3e5252006-08-15 19:11:05 +000036/// makeVTList - Return an instance of the SDVTList struct initialized with the
37/// specified members.
38static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
39 SDVTList Res = {VTs, NumVTs};
40 return Res;
41}
42
Jim Laskey58b968b2005-08-17 20:08:02 +000043//===----------------------------------------------------------------------===//
44// ConstantFPSDNode Class
45//===----------------------------------------------------------------------===//
46
47/// isExactlyValue - We don't rely on operator== working on double values, as
48/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
49/// As such, this method can be used to do an exact bit-for-bit comparison of
50/// two floating point values.
51bool ConstantFPSDNode::isExactlyValue(double V) const {
52 return DoubleToBits(V) == DoubleToBits(Value);
53}
54
55//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000056// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000057//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000058
Evan Chenga8df1662006-03-27 06:58:47 +000059/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000060/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000061bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000062 // Look through a bit convert.
63 if (N->getOpcode() == ISD::BIT_CONVERT)
64 N = N->getOperand(0).Val;
65
Evan Chenga8df1662006-03-27 06:58:47 +000066 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000067
68 unsigned i = 0, e = N->getNumOperands();
69
70 // Skip over all of the undef values.
71 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
72 ++i;
73
74 // Do not accept an all-undef vector.
75 if (i == e) return false;
76
77 // Do not accept build_vectors that aren't all constants or which have non-~0
78 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000079 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000080 if (isa<ConstantSDNode>(NotZero)) {
81 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
82 return false;
83 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000084 MVT::ValueType VT = NotZero.getValueType();
85 if (VT== MVT::f64) {
86 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
87 (uint64_t)-1)
88 return false;
89 } else {
90 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
91 (uint32_t)-1)
92 return false;
93 }
Evan Chenga8df1662006-03-27 06:58:47 +000094 } else
Chris Lattner61d43992006-03-25 22:57:01 +000095 return false;
96
97 // Okay, we have at least one ~0 value, check to see if the rest match or are
98 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000099 for (++i; i != e; ++i)
100 if (N->getOperand(i) != NotZero &&
101 N->getOperand(i).getOpcode() != ISD::UNDEF)
102 return false;
103 return true;
104}
105
106
Evan Cheng4a147842006-03-26 09:50:58 +0000107/// isBuildVectorAllZeros - Return true if the specified node is a
108/// BUILD_VECTOR where all of the elements are 0 or undef.
109bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000110 // Look through a bit convert.
111 if (N->getOpcode() == ISD::BIT_CONVERT)
112 N = N->getOperand(0).Val;
113
Evan Cheng4a147842006-03-26 09:50:58 +0000114 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000115
116 unsigned i = 0, e = N->getNumOperands();
117
118 // Skip over all of the undef values.
119 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
120 ++i;
121
122 // Do not accept an all-undef vector.
123 if (i == e) return false;
124
125 // Do not accept build_vectors that aren't all constants or which have non-~0
126 // elements.
127 SDOperand Zero = N->getOperand(i);
128 if (isa<ConstantSDNode>(Zero)) {
129 if (!cast<ConstantSDNode>(Zero)->isNullValue())
130 return false;
131 } else if (isa<ConstantFPSDNode>(Zero)) {
132 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
133 return false;
134 } else
135 return false;
136
137 // Okay, we have at least one ~0 value, check to see if the rest match or are
138 // undefs.
139 for (++i; i != e; ++i)
140 if (N->getOperand(i) != Zero &&
141 N->getOperand(i).getOpcode() != ISD::UNDEF)
142 return false;
143 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000144}
145
Chris Lattnerc3aae252005-01-07 07:46:32 +0000146/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
147/// when given the operation for (X op Y).
148ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
149 // To perform this operation, we just need to swap the L and G bits of the
150 // operation.
151 unsigned OldL = (Operation >> 2) & 1;
152 unsigned OldG = (Operation >> 1) & 1;
153 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
154 (OldL << 1) | // New G bit
155 (OldG << 2)); // New L bit.
156}
157
158/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
159/// 'op' is a valid SetCC operation.
160ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
161 unsigned Operation = Op;
162 if (isInteger)
163 Operation ^= 7; // Flip L, G, E bits, but not U.
164 else
165 Operation ^= 15; // Flip all of the condition bits.
166 if (Operation > ISD::SETTRUE2)
167 Operation &= ~8; // Don't let N and U bits get set.
168 return ISD::CondCode(Operation);
169}
170
171
172/// isSignedOp - For an integer comparison, return 1 if the comparison is a
173/// signed operation and 2 if the result is an unsigned comparison. Return zero
174/// if the operation does not depend on the sign of the input (setne and seteq).
175static int isSignedOp(ISD::CondCode Opcode) {
176 switch (Opcode) {
177 default: assert(0 && "Illegal integer setcc operation!");
178 case ISD::SETEQ:
179 case ISD::SETNE: return 0;
180 case ISD::SETLT:
181 case ISD::SETLE:
182 case ISD::SETGT:
183 case ISD::SETGE: return 1;
184 case ISD::SETULT:
185 case ISD::SETULE:
186 case ISD::SETUGT:
187 case ISD::SETUGE: return 2;
188 }
189}
190
191/// getSetCCOrOperation - Return the result of a logical OR between different
192/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
193/// returns SETCC_INVALID if it is not possible to represent the resultant
194/// comparison.
195ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
196 bool isInteger) {
197 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
198 // Cannot fold a signed integer setcc with an unsigned integer setcc.
199 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000200
Chris Lattnerc3aae252005-01-07 07:46:32 +0000201 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000202
Chris Lattnerc3aae252005-01-07 07:46:32 +0000203 // If the N and U bits get set then the resultant comparison DOES suddenly
204 // care about orderedness, and is true when ordered.
205 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000206 Op &= ~16; // Clear the U bit if the N bit is set.
207
208 // Canonicalize illegal integer setcc's.
209 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
210 Op = ISD::SETNE;
211
Chris Lattnerc3aae252005-01-07 07:46:32 +0000212 return ISD::CondCode(Op);
213}
214
215/// getSetCCAndOperation - Return the result of a logical AND between different
216/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
217/// function returns zero if it is not possible to represent the resultant
218/// comparison.
219ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
220 bool isInteger) {
221 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
222 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000223 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000224
225 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000226 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
227
228 // Canonicalize illegal integer setcc's.
229 if (isInteger) {
230 switch (Result) {
231 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000232 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
233 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
234 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
235 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000236 }
237 }
238
239 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000240}
241
Chris Lattnerb48da392005-01-23 04:39:44 +0000242const TargetMachine &SelectionDAG::getTarget() const {
243 return TLI.getTargetMachine();
244}
245
Jim Laskey58b968b2005-08-17 20:08:02 +0000246//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000247// SDNode Profile Support
248//===----------------------------------------------------------------------===//
249
Jim Laskeydef69b92006-10-27 23:52:51 +0000250/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
251///
Jim Laskey583bd472006-10-27 23:46:08 +0000252static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
253 ID.AddInteger(OpC);
254}
255
256/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
257/// solely with their pointer.
258void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
259 ID.AddPointer(VTList.VTs);
260}
261
Jim Laskeydef69b92006-10-27 23:52:51 +0000262/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
263///
Jim Laskey583bd472006-10-27 23:46:08 +0000264static void AddNodeIDOperands(FoldingSetNodeID &ID,
265 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000266 for (; NumOps; --NumOps, ++Ops) {
267 ID.AddPointer(Ops->Val);
268 ID.AddInteger(Ops->ResNo);
269 }
Jim Laskey583bd472006-10-27 23:46:08 +0000270}
271
Jim Laskey583bd472006-10-27 23:46:08 +0000272static void AddNodeIDNode(FoldingSetNodeID &ID,
273 unsigned short OpC, SDVTList VTList,
274 const SDOperand *OpList, unsigned N) {
275 AddNodeIDOpcode(ID, OpC);
276 AddNodeIDValueTypes(ID, VTList);
277 AddNodeIDOperands(ID, OpList, N);
278}
279
Jim Laskeydef69b92006-10-27 23:52:51 +0000280/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
281/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000282static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
283 AddNodeIDOpcode(ID, N->getOpcode());
284 // Add the return value info.
285 AddNodeIDValueTypes(ID, N->getVTList());
286 // Add the operand info.
287 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
288
289 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000290 switch (N->getOpcode()) {
291 default: break; // Normal nodes don't need extra info.
292 case ISD::TargetConstant:
293 case ISD::Constant:
294 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
295 break;
296 case ISD::TargetConstantFP:
297 case ISD::ConstantFP:
298 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
299 break;
300 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000301 case ISD::GlobalAddress:
302 case ISD::TargetGlobalTLSAddress:
303 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000304 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
305 ID.AddPointer(GA->getGlobal());
306 ID.AddInteger(GA->getOffset());
307 break;
308 }
309 case ISD::BasicBlock:
310 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
311 break;
312 case ISD::Register:
313 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
314 break;
315 case ISD::SRCVALUE: {
316 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
317 ID.AddPointer(SV->getValue());
318 ID.AddInteger(SV->getOffset());
319 break;
320 }
321 case ISD::FrameIndex:
322 case ISD::TargetFrameIndex:
323 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
324 break;
325 case ISD::JumpTable:
326 case ISD::TargetJumpTable:
327 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
328 break;
329 case ISD::ConstantPool:
330 case ISD::TargetConstantPool: {
331 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
332 ID.AddInteger(CP->getAlignment());
333 ID.AddInteger(CP->getOffset());
334 if (CP->isMachineConstantPoolEntry())
335 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
336 else
337 ID.AddPointer(CP->getConstVal());
338 break;
339 }
340 case ISD::LOAD: {
341 LoadSDNode *LD = cast<LoadSDNode>(N);
342 ID.AddInteger(LD->getAddressingMode());
343 ID.AddInteger(LD->getExtensionType());
344 ID.AddInteger(LD->getLoadedVT());
345 ID.AddPointer(LD->getSrcValue());
346 ID.AddInteger(LD->getSrcValueOffset());
347 ID.AddInteger(LD->getAlignment());
348 ID.AddInteger(LD->isVolatile());
349 break;
350 }
351 case ISD::STORE: {
352 StoreSDNode *ST = cast<StoreSDNode>(N);
353 ID.AddInteger(ST->getAddressingMode());
354 ID.AddInteger(ST->isTruncatingStore());
355 ID.AddInteger(ST->getStoredVT());
356 ID.AddPointer(ST->getSrcValue());
357 ID.AddInteger(ST->getSrcValueOffset());
358 ID.AddInteger(ST->getAlignment());
359 ID.AddInteger(ST->isVolatile());
360 break;
361 }
Jim Laskey583bd472006-10-27 23:46:08 +0000362 }
363}
364
365//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000366// SelectionDAG Class
367//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000368
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000369/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000370/// SelectionDAG.
371void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000372 // Create a dummy node (which is not added to allnodes), that adds a reference
373 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000374 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000375
Chris Lattner190a4182006-08-04 17:45:20 +0000376 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000377
Chris Lattner190a4182006-08-04 17:45:20 +0000378 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000379 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000380 if (I->use_empty())
381 DeadNodes.push_back(I);
382
383 // Process the worklist, deleting the nodes and adding their uses to the
384 // worklist.
385 while (!DeadNodes.empty()) {
386 SDNode *N = DeadNodes.back();
387 DeadNodes.pop_back();
388
389 // Take the node out of the appropriate CSE map.
390 RemoveNodeFromCSEMaps(N);
391
392 // Next, brutally remove the operand list. This is safe to do, as there are
393 // no cycles in the graph.
394 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
395 SDNode *Operand = I->Val;
396 Operand->removeUser(N);
397
398 // Now that we removed this operand, see if there are no uses of it left.
399 if (Operand->use_empty())
400 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000401 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000402 if (N->OperandsNeedDelete)
403 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000404 N->OperandList = 0;
405 N->NumOperands = 0;
406
407 // Finally, remove N itself.
408 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000409 }
410
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000411 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000412 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000413}
414
Evan Cheng130a6472006-10-12 20:34:05 +0000415void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
416 SmallVector<SDNode*, 16> DeadNodes;
417 DeadNodes.push_back(N);
418
419 // Process the worklist, deleting the nodes and adding their uses to the
420 // worklist.
421 while (!DeadNodes.empty()) {
422 SDNode *N = DeadNodes.back();
423 DeadNodes.pop_back();
424
425 // Take the node out of the appropriate CSE map.
426 RemoveNodeFromCSEMaps(N);
427
428 // Next, brutally remove the operand list. This is safe to do, as there are
429 // no cycles in the graph.
430 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
431 SDNode *Operand = I->Val;
432 Operand->removeUser(N);
433
434 // Now that we removed this operand, see if there are no uses of it left.
435 if (Operand->use_empty())
436 DeadNodes.push_back(Operand);
437 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000438 if (N->OperandsNeedDelete)
439 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000440 N->OperandList = 0;
441 N->NumOperands = 0;
442
443 // Finally, remove N itself.
444 Deleted.push_back(N);
445 AllNodes.erase(N);
446 }
447}
448
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000449void SelectionDAG::DeleteNode(SDNode *N) {
450 assert(N->use_empty() && "Cannot delete a node that is not dead!");
451
452 // First take this out of the appropriate CSE map.
453 RemoveNodeFromCSEMaps(N);
454
Chris Lattner1e111c72005-09-07 05:37:01 +0000455 // Finally, remove uses due to operands of this node, remove from the
456 // AllNodes list, and delete the node.
457 DeleteNodeNotInCSEMaps(N);
458}
459
460void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
461
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000462 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000463 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000464
465 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000466 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
467 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000468 if (N->OperandsNeedDelete)
469 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000470 N->OperandList = 0;
471 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000472
473 delete N;
474}
475
Chris Lattner149c58c2005-08-16 18:17:10 +0000476/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
477/// correspond to it. This is useful when we're about to delete or repurpose
478/// the node. We don't want future request for structurally identical nodes
479/// to return N anymore.
480void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000481 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000482 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000483 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000484 case ISD::STRING:
485 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
486 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000487 case ISD::CONDCODE:
488 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
489 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000490 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000491 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
492 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000493 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000494 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000495 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000496 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000497 Erased =
498 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000499 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000500 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000501 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000502 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
503 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000504 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000505 // Remove it from the CSE Map.
506 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000507 break;
508 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000509#ifndef NDEBUG
510 // Verify that the node was actually in one of the CSE maps, unless it has a
511 // flag result (which cannot be CSE'd) or is one of the special cases that are
512 // not subject to CSE.
513 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000514 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000515 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000516 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000517 assert(0 && "Node is not in map!");
518 }
519#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000520}
521
Chris Lattner8b8749f2005-08-17 19:00:20 +0000522/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
523/// has been taken out and modified in some way. If the specified node already
524/// exists in the CSE maps, do not modify the maps, but return the existing node
525/// instead. If it doesn't exist, add it and return null.
526///
527SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
528 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000529 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000530 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000531
Chris Lattner9f8cc692005-12-19 22:21:21 +0000532 // Check that remaining values produced are not flags.
533 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
534 if (N->getValueType(i) == MVT::Flag)
535 return 0; // Never CSE anything that produces a flag.
536
Chris Lattnera5682852006-08-07 23:03:03 +0000537 SDNode *New = CSEMap.GetOrInsertNode(N);
538 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000539 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000540}
541
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000542/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
543/// were replaced with those specified. If this node is never memoized,
544/// return null, otherwise return a pointer to the slot it would take. If a
545/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000546SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
547 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000548 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000549 return 0; // Never add these nodes.
550
551 // Check that remaining values produced are not flags.
552 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
553 if (N->getValueType(i) == MVT::Flag)
554 return 0; // Never CSE anything that produces a flag.
555
Chris Lattner63e3f142007-02-04 07:28:00 +0000556 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000557 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000558 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000559 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000560}
561
562/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
563/// were replaced with those specified. If this node is never memoized,
564/// return null, otherwise return a pointer to the slot it would take. If a
565/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000566SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
567 SDOperand Op1, SDOperand Op2,
568 void *&InsertPos) {
569 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
570 return 0; // Never add these nodes.
571
572 // Check that remaining values produced are not flags.
573 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
574 if (N->getValueType(i) == MVT::Flag)
575 return 0; // Never CSE anything that produces a flag.
576
Chris Lattner63e3f142007-02-04 07:28:00 +0000577 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000578 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000579 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000580 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
581}
582
583
584/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
585/// were replaced with those specified. If this node is never memoized,
586/// return null, otherwise return a pointer to the slot it would take. If a
587/// node already exists with these operands, the slot will be non-null.
588SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000589 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000590 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000591 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000592 return 0; // Never add these nodes.
593
594 // Check that remaining values produced are not flags.
595 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
596 if (N->getValueType(i) == MVT::Flag)
597 return 0; // Never CSE anything that produces a flag.
598
Jim Laskey583bd472006-10-27 23:46:08 +0000599 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000600 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000601
Evan Cheng9629aba2006-10-11 01:47:58 +0000602 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
603 ID.AddInteger(LD->getAddressingMode());
604 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000605 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000606 ID.AddPointer(LD->getSrcValue());
607 ID.AddInteger(LD->getSrcValueOffset());
608 ID.AddInteger(LD->getAlignment());
609 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000610 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
611 ID.AddInteger(ST->getAddressingMode());
612 ID.AddInteger(ST->isTruncatingStore());
613 ID.AddInteger(ST->getStoredVT());
614 ID.AddPointer(ST->getSrcValue());
615 ID.AddInteger(ST->getSrcValueOffset());
616 ID.AddInteger(ST->getAlignment());
617 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000618 }
Jim Laskey583bd472006-10-27 23:46:08 +0000619
Chris Lattnera5682852006-08-07 23:03:03 +0000620 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000621}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000622
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000623
Chris Lattner78ec3112003-08-11 14:57:33 +0000624SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000625 while (!AllNodes.empty()) {
626 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000627 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000628 if (N->OperandsNeedDelete)
629 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000630 N->OperandList = 0;
631 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000632 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000633 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000634}
635
Chris Lattner0f2287b2005-04-13 02:38:18 +0000636SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000637 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000638 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000639 return getNode(ISD::AND, Op.getValueType(), Op,
640 getConstant(Imm, Op.getValueType()));
641}
642
Chris Lattner36ce6912005-11-29 06:21:05 +0000643SDOperand SelectionDAG::getString(const std::string &Val) {
644 StringSDNode *&N = StringNodes[Val];
645 if (!N) {
646 N = new StringSDNode(Val);
647 AllNodes.push_back(N);
648 }
649 return SDOperand(N, 0);
650}
651
Chris Lattner61b09412006-08-11 21:01:22 +0000652SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000653 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000654 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000655
Chris Lattner61b09412006-08-11 21:01:22 +0000656 // Mask out any bits that are not valid for this constant.
657 Val &= MVT::getIntVTBitMask(VT);
658
659 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000660 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000661 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000662 ID.AddInteger(Val);
663 void *IP = 0;
664 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
665 return SDOperand(E, 0);
666 SDNode *N = new ConstantSDNode(isT, Val, VT);
667 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000668 AllNodes.push_back(N);
669 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000670}
671
Chris Lattner61b09412006-08-11 21:01:22 +0000672
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000673SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
674 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000675 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
676 if (VT == MVT::f32)
677 Val = (float)Val; // Mask out extra precision.
678
Chris Lattnerd8658612005-02-17 20:17:32 +0000679 // Do the map lookup using the actual bit pattern for the floating point
680 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
681 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000682 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000683 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000684 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000685 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000686 void *IP = 0;
687 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
688 return SDOperand(E, 0);
689 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
690 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000691 AllNodes.push_back(N);
692 return SDOperand(N, 0);
693}
694
Chris Lattnerc3aae252005-01-07 07:46:32 +0000695SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000696 MVT::ValueType VT, int Offset,
697 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000698 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
699 unsigned Opc;
700 if (GVar && GVar->isThreadLocal())
701 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
702 else
703 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000704 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000705 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000706 ID.AddPointer(GV);
707 ID.AddInteger(Offset);
708 void *IP = 0;
709 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
710 return SDOperand(E, 0);
711 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
712 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000713 AllNodes.push_back(N);
714 return SDOperand(N, 0);
715}
716
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000717SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
718 bool isTarget) {
719 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000720 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000721 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000722 ID.AddInteger(FI);
723 void *IP = 0;
724 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
725 return SDOperand(E, 0);
726 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
727 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000728 AllNodes.push_back(N);
729 return SDOperand(N, 0);
730}
731
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000732SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
733 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000734 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000735 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000736 ID.AddInteger(JTI);
737 void *IP = 0;
738 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
739 return SDOperand(E, 0);
740 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
741 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000742 AllNodes.push_back(N);
743 return SDOperand(N, 0);
744}
745
Evan Chengb8973bd2006-01-31 22:23:14 +0000746SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000747 unsigned Alignment, int Offset,
748 bool isTarget) {
749 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000750 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000751 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000752 ID.AddInteger(Alignment);
753 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000754 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000755 void *IP = 0;
756 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
757 return SDOperand(E, 0);
758 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
759 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000760 AllNodes.push_back(N);
761 return SDOperand(N, 0);
762}
763
Chris Lattnerc3aae252005-01-07 07:46:32 +0000764
Evan Chengd6594ae2006-09-12 21:00:35 +0000765SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
766 MVT::ValueType VT,
767 unsigned Alignment, int Offset,
768 bool isTarget) {
769 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000770 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000771 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000772 ID.AddInteger(Alignment);
773 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000774 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000775 void *IP = 0;
776 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
777 return SDOperand(E, 0);
778 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
779 CSEMap.InsertNode(N, IP);
780 AllNodes.push_back(N);
781 return SDOperand(N, 0);
782}
783
784
Chris Lattnerc3aae252005-01-07 07:46:32 +0000785SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000786 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000787 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000788 ID.AddPointer(MBB);
789 void *IP = 0;
790 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
791 return SDOperand(E, 0);
792 SDNode *N = new BasicBlockSDNode(MBB);
793 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000794 AllNodes.push_back(N);
795 return SDOperand(N, 0);
796}
797
Chris Lattner15e4b012005-07-10 00:07:11 +0000798SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
799 if ((unsigned)VT >= ValueTypeNodes.size())
800 ValueTypeNodes.resize(VT+1);
801 if (ValueTypeNodes[VT] == 0) {
802 ValueTypeNodes[VT] = new VTSDNode(VT);
803 AllNodes.push_back(ValueTypeNodes[VT]);
804 }
805
806 return SDOperand(ValueTypeNodes[VT], 0);
807}
808
Chris Lattnerc3aae252005-01-07 07:46:32 +0000809SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
810 SDNode *&N = ExternalSymbols[Sym];
811 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000812 N = new ExternalSymbolSDNode(false, Sym, VT);
813 AllNodes.push_back(N);
814 return SDOperand(N, 0);
815}
816
Chris Lattner809ec112006-01-28 10:09:25 +0000817SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
818 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000819 SDNode *&N = TargetExternalSymbols[Sym];
820 if (N) return SDOperand(N, 0);
821 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000822 AllNodes.push_back(N);
823 return SDOperand(N, 0);
824}
825
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000826SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
827 if ((unsigned)Cond >= CondCodeNodes.size())
828 CondCodeNodes.resize(Cond+1);
829
Chris Lattner079a27a2005-08-09 20:40:02 +0000830 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000831 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000832 AllNodes.push_back(CondCodeNodes[Cond]);
833 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000834 return SDOperand(CondCodeNodes[Cond], 0);
835}
836
Chris Lattner0fdd7682005-08-30 22:38:38 +0000837SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000838 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000839 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000840 ID.AddInteger(RegNo);
841 void *IP = 0;
842 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
843 return SDOperand(E, 0);
844 SDNode *N = new RegisterSDNode(RegNo, VT);
845 CSEMap.InsertNode(N, IP);
846 AllNodes.push_back(N);
847 return SDOperand(N, 0);
848}
849
850SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
851 assert((!V || isa<PointerType>(V->getType())) &&
852 "SrcValue is not a pointer?");
853
Jim Laskey583bd472006-10-27 23:46:08 +0000854 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000855 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000856 ID.AddPointer(V);
857 ID.AddInteger(Offset);
858 void *IP = 0;
859 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
860 return SDOperand(E, 0);
861 SDNode *N = new SrcValueSDNode(V, Offset);
862 CSEMap.InsertNode(N, IP);
863 AllNodes.push_back(N);
864 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000865}
866
Chris Lattner51dabfb2006-10-14 00:41:01 +0000867SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
868 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000869 // These setcc operations always fold.
870 switch (Cond) {
871 default: break;
872 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000873 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000874 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000875 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000876
877 case ISD::SETOEQ:
878 case ISD::SETOGT:
879 case ISD::SETOGE:
880 case ISD::SETOLT:
881 case ISD::SETOLE:
882 case ISD::SETONE:
883 case ISD::SETO:
884 case ISD::SETUO:
885 case ISD::SETUEQ:
886 case ISD::SETUNE:
887 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
888 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000889 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000890
Chris Lattner67255a12005-04-07 18:14:58 +0000891 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
892 uint64_t C2 = N2C->getValue();
893 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
894 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000895
Chris Lattnerc3aae252005-01-07 07:46:32 +0000896 // Sign extend the operands if required
897 if (ISD::isSignedIntSetCC(Cond)) {
898 C1 = N1C->getSignExtended();
899 C2 = N2C->getSignExtended();
900 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000901
Chris Lattnerc3aae252005-01-07 07:46:32 +0000902 switch (Cond) {
903 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000904 case ISD::SETEQ: return getConstant(C1 == C2, VT);
905 case ISD::SETNE: return getConstant(C1 != C2, VT);
906 case ISD::SETULT: return getConstant(C1 < C2, VT);
907 case ISD::SETUGT: return getConstant(C1 > C2, VT);
908 case ISD::SETULE: return getConstant(C1 <= C2, VT);
909 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
910 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
911 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
912 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
913 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000914 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000915 }
Chris Lattner67255a12005-04-07 18:14:58 +0000916 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000917 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
918 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
919 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000920
Chris Lattnerc3aae252005-01-07 07:46:32 +0000921 switch (Cond) {
922 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000923 case ISD::SETEQ: return getConstant(C1 == C2, VT);
924 case ISD::SETNE: return getConstant(C1 != C2, VT);
925 case ISD::SETLT: return getConstant(C1 < C2, VT);
926 case ISD::SETGT: return getConstant(C1 > C2, VT);
927 case ISD::SETLE: return getConstant(C1 <= C2, VT);
928 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000929 }
930 } else {
931 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000932 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000933 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000934
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000935 // Could not fold it.
936 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000937}
938
Dan Gohmanea859be2007-06-22 14:59:07 +0000939/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
940/// this predicate to simplify operations downstream. Mask is known to be zero
941/// for bits that V cannot have.
942bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
943 unsigned Depth) const {
944 // The masks are not wide enough to represent this type! Should use APInt.
945 if (Op.getValueType() == MVT::i128)
946 return false;
947
948 uint64_t KnownZero, KnownOne;
949 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
950 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
951 return (KnownZero & Mask) == Mask;
952}
953
954/// ComputeMaskedBits - Determine which of the bits specified in Mask are
955/// known to be either zero or one and return them in the KnownZero/KnownOne
956/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
957/// processing.
958void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
959 uint64_t &KnownZero, uint64_t &KnownOne,
960 unsigned Depth) const {
961 KnownZero = KnownOne = 0; // Don't know anything.
962 if (Depth == 6 || Mask == 0)
963 return; // Limit search depth.
964
965 // The masks are not wide enough to represent this type! Should use APInt.
966 if (Op.getValueType() == MVT::i128)
967 return;
968
969 uint64_t KnownZero2, KnownOne2;
970
971 switch (Op.getOpcode()) {
972 case ISD::Constant:
973 // We know all of the bits for a constant!
974 KnownOne = cast<ConstantSDNode>(Op)->getValue() & Mask;
975 KnownZero = ~KnownOne & Mask;
976 return;
977 case ISD::AND:
978 // If either the LHS or the RHS are Zero, the result is zero.
979 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
980 Mask &= ~KnownZero;
981 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
982 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
983 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
984
985 // Output known-1 bits are only known if set in both the LHS & RHS.
986 KnownOne &= KnownOne2;
987 // Output known-0 are known to be clear if zero in either the LHS | RHS.
988 KnownZero |= KnownZero2;
989 return;
990 case ISD::OR:
991 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
992 Mask &= ~KnownOne;
993 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
994 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
995 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
996
997 // Output known-0 bits are only known if clear in both the LHS & RHS.
998 KnownZero &= KnownZero2;
999 // Output known-1 are known to be set if set in either the LHS | RHS.
1000 KnownOne |= KnownOne2;
1001 return;
1002 case ISD::XOR: {
1003 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1004 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1005 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1006 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1007
1008 // Output known-0 bits are known if clear or set in both the LHS & RHS.
1009 uint64_t KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1010 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1011 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1012 KnownZero = KnownZeroOut;
1013 return;
1014 }
1015 case ISD::SELECT:
1016 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1017 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1018 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1019 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1020
1021 // Only known if known in both the LHS and RHS.
1022 KnownOne &= KnownOne2;
1023 KnownZero &= KnownZero2;
1024 return;
1025 case ISD::SELECT_CC:
1026 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1027 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1028 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1029 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1030
1031 // Only known if known in both the LHS and RHS.
1032 KnownOne &= KnownOne2;
1033 KnownZero &= KnownZero2;
1034 return;
1035 case ISD::SETCC:
1036 // If we know the result of a setcc has the top bits zero, use this info.
1037 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult)
1038 KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
1039 return;
1040 case ISD::SHL:
1041 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1042 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1043 ComputeMaskedBits(Op.getOperand(0), Mask >> SA->getValue(),
1044 KnownZero, KnownOne, Depth+1);
1045 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1046 KnownZero <<= SA->getValue();
1047 KnownOne <<= SA->getValue();
1048 KnownZero |= (1ULL << SA->getValue())-1; // low bits known zero.
1049 }
1050 return;
1051 case ISD::SRL:
1052 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1053 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1054 MVT::ValueType VT = Op.getValueType();
1055 unsigned ShAmt = SA->getValue();
1056
1057 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1058 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt) & TypeMask,
1059 KnownZero, KnownOne, Depth+1);
1060 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1061 KnownZero &= TypeMask;
1062 KnownOne &= TypeMask;
1063 KnownZero >>= ShAmt;
1064 KnownOne >>= ShAmt;
1065
1066 uint64_t HighBits = (1ULL << ShAmt)-1;
1067 HighBits <<= MVT::getSizeInBits(VT)-ShAmt;
1068 KnownZero |= HighBits; // High bits known zero.
1069 }
1070 return;
1071 case ISD::SRA:
1072 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1073 MVT::ValueType VT = Op.getValueType();
1074 unsigned ShAmt = SA->getValue();
1075
1076 // Compute the new bits that are at the top now.
1077 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1078
1079 uint64_t InDemandedMask = (Mask << ShAmt) & TypeMask;
1080 // If any of the demanded bits are produced by the sign extension, we also
1081 // demand the input sign bit.
1082 uint64_t HighBits = (1ULL << ShAmt)-1;
1083 HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
1084 if (HighBits & Mask)
1085 InDemandedMask |= MVT::getIntVTSignBit(VT);
1086
1087 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1088 Depth+1);
1089 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1090 KnownZero &= TypeMask;
1091 KnownOne &= TypeMask;
1092 KnownZero >>= ShAmt;
1093 KnownOne >>= ShAmt;
1094
1095 // Handle the sign bits.
1096 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1097 SignBit >>= ShAmt; // Adjust to where it is now in the mask.
1098
1099 if (KnownZero & SignBit) {
1100 KnownZero |= HighBits; // New bits are known zero.
1101 } else if (KnownOne & SignBit) {
1102 KnownOne |= HighBits; // New bits are known one.
1103 }
1104 }
1105 return;
1106 case ISD::SIGN_EXTEND_INREG: {
1107 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1108
1109 // Sign extension. Compute the demanded bits in the result that are not
1110 // present in the input.
1111 uint64_t NewBits = ~MVT::getIntVTBitMask(EVT) & Mask;
1112
1113 uint64_t InSignBit = MVT::getIntVTSignBit(EVT);
1114 int64_t InputDemandedBits = Mask & MVT::getIntVTBitMask(EVT);
1115
1116 // If the sign extended bits are demanded, we know that the sign
1117 // bit is demanded.
1118 if (NewBits)
1119 InputDemandedBits |= InSignBit;
1120
1121 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1122 KnownZero, KnownOne, Depth+1);
1123 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1124
1125 // If the sign bit of the input is known set or clear, then we know the
1126 // top bits of the result.
1127 if (KnownZero & InSignBit) { // Input sign bit known clear
1128 KnownZero |= NewBits;
1129 KnownOne &= ~NewBits;
1130 } else if (KnownOne & InSignBit) { // Input sign bit known set
1131 KnownOne |= NewBits;
1132 KnownZero &= ~NewBits;
1133 } else { // Input sign bit unknown
1134 KnownZero &= ~NewBits;
1135 KnownOne &= ~NewBits;
1136 }
1137 return;
1138 }
1139 case ISD::CTTZ:
1140 case ISD::CTLZ:
1141 case ISD::CTPOP: {
1142 MVT::ValueType VT = Op.getValueType();
1143 unsigned LowBits = Log2_32(MVT::getSizeInBits(VT))+1;
1144 KnownZero = ~((1ULL << LowBits)-1) & MVT::getIntVTBitMask(VT);
1145 KnownOne = 0;
1146 return;
1147 }
1148 case ISD::LOAD: {
1149 if (ISD::isZEXTLoad(Op.Val)) {
1150 LoadSDNode *LD = cast<LoadSDNode>(Op);
1151 MVT::ValueType VT = LD->getLoadedVT();
1152 KnownZero |= ~MVT::getIntVTBitMask(VT) & Mask;
1153 }
1154 return;
1155 }
1156 case ISD::ZERO_EXTEND: {
1157 uint64_t InMask = MVT::getIntVTBitMask(Op.getOperand(0).getValueType());
1158 uint64_t NewBits = (~InMask) & Mask;
1159 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1160 KnownOne, Depth+1);
1161 KnownZero |= NewBits & Mask;
1162 KnownOne &= ~NewBits;
1163 return;
1164 }
1165 case ISD::SIGN_EXTEND: {
1166 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1167 unsigned InBits = MVT::getSizeInBits(InVT);
1168 uint64_t InMask = MVT::getIntVTBitMask(InVT);
1169 uint64_t InSignBit = 1ULL << (InBits-1);
1170 uint64_t NewBits = (~InMask) & Mask;
1171 uint64_t InDemandedBits = Mask & InMask;
1172
1173 // If any of the sign extended bits are demanded, we know that the sign
1174 // bit is demanded.
1175 if (NewBits & Mask)
1176 InDemandedBits |= InSignBit;
1177
1178 ComputeMaskedBits(Op.getOperand(0), InDemandedBits, KnownZero,
1179 KnownOne, Depth+1);
1180 // If the sign bit is known zero or one, the top bits match.
1181 if (KnownZero & InSignBit) {
1182 KnownZero |= NewBits;
1183 KnownOne &= ~NewBits;
1184 } else if (KnownOne & InSignBit) {
1185 KnownOne |= NewBits;
1186 KnownZero &= ~NewBits;
1187 } else { // Otherwise, top bits aren't known.
1188 KnownOne &= ~NewBits;
1189 KnownZero &= ~NewBits;
1190 }
1191 return;
1192 }
1193 case ISD::ANY_EXTEND: {
1194 MVT::ValueType VT = Op.getOperand(0).getValueType();
1195 ComputeMaskedBits(Op.getOperand(0), Mask & MVT::getIntVTBitMask(VT),
1196 KnownZero, KnownOne, Depth+1);
1197 return;
1198 }
1199 case ISD::TRUNCATE: {
1200 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1201 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1202 uint64_t OutMask = MVT::getIntVTBitMask(Op.getValueType());
1203 KnownZero &= OutMask;
1204 KnownOne &= OutMask;
1205 break;
1206 }
1207 case ISD::AssertZext: {
1208 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1209 uint64_t InMask = MVT::getIntVTBitMask(VT);
1210 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1211 KnownOne, Depth+1);
1212 KnownZero |= (~InMask) & Mask;
1213 return;
1214 }
1215 case ISD::ADD: {
1216 // If either the LHS or the RHS are Zero, the result is zero.
1217 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1218 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1219 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1220 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1221
1222 // Output known-0 bits are known if clear or set in both the low clear bits
1223 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1224 // low 3 bits clear.
1225 uint64_t KnownZeroOut = std::min(CountTrailingZeros_64(~KnownZero),
1226 CountTrailingZeros_64(~KnownZero2));
1227
1228 KnownZero = (1ULL << KnownZeroOut) - 1;
1229 KnownOne = 0;
1230 return;
1231 }
1232 case ISD::SUB: {
1233 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1234 if (!CLHS) return;
1235
1236 // We know that the top bits of C-X are clear if X contains less bits
1237 // than C (i.e. no wrap-around can happen). For example, 20-X is
1238 // positive if we can prove that X is >= 0 and < 16.
1239 MVT::ValueType VT = CLHS->getValueType(0);
1240 if ((CLHS->getValue() & MVT::getIntVTSignBit(VT)) == 0) { // sign bit clear
1241 unsigned NLZ = CountLeadingZeros_64(CLHS->getValue()+1);
1242 uint64_t MaskV = (1ULL << (63-NLZ))-1; // NLZ can't be 64 with no sign bit
1243 MaskV = ~MaskV & MVT::getIntVTBitMask(VT);
1244 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1245
1246 // If all of the MaskV bits are known to be zero, then we know the output
1247 // top bits are zero, because we now know that the output is from [0-C].
1248 if ((KnownZero & MaskV) == MaskV) {
1249 unsigned NLZ2 = CountLeadingZeros_64(CLHS->getValue());
1250 KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask; // Top bits known zero.
1251 KnownOne = 0; // No one bits known.
1252 } else {
1253 KnownZero = KnownOne = 0; // Otherwise, nothing known.
1254 }
1255 }
1256 return;
1257 }
1258 default:
1259 // Allow the target to implement this method for its nodes.
1260 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1261 case ISD::INTRINSIC_WO_CHAIN:
1262 case ISD::INTRINSIC_W_CHAIN:
1263 case ISD::INTRINSIC_VOID:
1264 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1265 }
1266 return;
1267 }
1268}
1269
1270/// ComputeNumSignBits - Return the number of times the sign bit of the
1271/// register is replicated into the other bits. We know that at least 1 bit
1272/// is always equal to the sign bit (itself), but other cases can give us
1273/// information. For example, immediately after an "SRA X, 2", we know that
1274/// the top 3 bits are all equal to each other, so we return 3.
1275unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1276 MVT::ValueType VT = Op.getValueType();
1277 assert(MVT::isInteger(VT) && "Invalid VT!");
1278 unsigned VTBits = MVT::getSizeInBits(VT);
1279 unsigned Tmp, Tmp2;
1280
1281 if (Depth == 6)
1282 return 1; // Limit search depth.
1283
1284 switch (Op.getOpcode()) {
1285 default: break;
1286 case ISD::AssertSext:
1287 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1288 return VTBits-Tmp+1;
1289 case ISD::AssertZext:
1290 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1291 return VTBits-Tmp;
1292
1293 case ISD::Constant: {
1294 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1295 // If negative, invert the bits, then look at it.
1296 if (Val & MVT::getIntVTSignBit(VT))
1297 Val = ~Val;
1298
1299 // Shift the bits so they are the leading bits in the int64_t.
1300 Val <<= 64-VTBits;
1301
1302 // Return # leading zeros. We use 'min' here in case Val was zero before
1303 // shifting. We don't want to return '64' as for an i32 "0".
1304 return std::min(VTBits, CountLeadingZeros_64(Val));
1305 }
1306
1307 case ISD::SIGN_EXTEND:
1308 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1309 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1310
1311 case ISD::SIGN_EXTEND_INREG:
1312 // Max of the input and what this extends.
1313 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1314 Tmp = VTBits-Tmp+1;
1315
1316 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1317 return std::max(Tmp, Tmp2);
1318
1319 case ISD::SRA:
1320 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1321 // SRA X, C -> adds C sign bits.
1322 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1323 Tmp += C->getValue();
1324 if (Tmp > VTBits) Tmp = VTBits;
1325 }
1326 return Tmp;
1327 case ISD::SHL:
1328 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1329 // shl destroys sign bits.
1330 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1331 if (C->getValue() >= VTBits || // Bad shift.
1332 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1333 return Tmp - C->getValue();
1334 }
1335 break;
1336 case ISD::AND:
1337 case ISD::OR:
1338 case ISD::XOR: // NOT is handled here.
1339 // Logical binary ops preserve the number of sign bits.
1340 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1341 if (Tmp == 1) return 1; // Early out.
1342 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1343 return std::min(Tmp, Tmp2);
1344
1345 case ISD::SELECT:
1346 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1347 if (Tmp == 1) return 1; // Early out.
1348 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1349 return std::min(Tmp, Tmp2);
1350
1351 case ISD::SETCC:
1352 // If setcc returns 0/-1, all bits are sign bits.
1353 if (TLI.getSetCCResultContents() ==
1354 TargetLowering::ZeroOrNegativeOneSetCCResult)
1355 return VTBits;
1356 break;
1357 case ISD::ROTL:
1358 case ISD::ROTR:
1359 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1360 unsigned RotAmt = C->getValue() & (VTBits-1);
1361
1362 // Handle rotate right by N like a rotate left by 32-N.
1363 if (Op.getOpcode() == ISD::ROTR)
1364 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1365
1366 // If we aren't rotating out all of the known-in sign bits, return the
1367 // number that are left. This handles rotl(sext(x), 1) for example.
1368 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1369 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1370 }
1371 break;
1372 case ISD::ADD:
1373 // Add can have at most one carry bit. Thus we know that the output
1374 // is, at worst, one more bit than the inputs.
1375 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1376 if (Tmp == 1) return 1; // Early out.
1377
1378 // Special case decrementing a value (ADD X, -1):
1379 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1380 if (CRHS->isAllOnesValue()) {
1381 uint64_t KnownZero, KnownOne;
1382 uint64_t Mask = MVT::getIntVTBitMask(VT);
1383 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1384
1385 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1386 // sign bits set.
1387 if ((KnownZero|1) == Mask)
1388 return VTBits;
1389
1390 // If we are subtracting one from a positive number, there is no carry
1391 // out of the result.
1392 if (KnownZero & MVT::getIntVTSignBit(VT))
1393 return Tmp;
1394 }
1395
1396 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1397 if (Tmp2 == 1) return 1;
1398 return std::min(Tmp, Tmp2)-1;
1399 break;
1400
1401 case ISD::SUB:
1402 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1403 if (Tmp2 == 1) return 1;
1404
1405 // Handle NEG.
1406 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1407 if (CLHS->getValue() == 0) {
1408 uint64_t KnownZero, KnownOne;
1409 uint64_t Mask = MVT::getIntVTBitMask(VT);
1410 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1411 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1412 // sign bits set.
1413 if ((KnownZero|1) == Mask)
1414 return VTBits;
1415
1416 // If the input is known to be positive (the sign bit is known clear),
1417 // the output of the NEG has the same number of sign bits as the input.
1418 if (KnownZero & MVT::getIntVTSignBit(VT))
1419 return Tmp2;
1420
1421 // Otherwise, we treat this like a SUB.
1422 }
1423
1424 // Sub can have at most one carry bit. Thus we know that the output
1425 // is, at worst, one more bit than the inputs.
1426 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1427 if (Tmp == 1) return 1; // Early out.
1428 return std::min(Tmp, Tmp2)-1;
1429 break;
1430 case ISD::TRUNCATE:
1431 // FIXME: it's tricky to do anything useful for this, but it is an important
1432 // case for targets like X86.
1433 break;
1434 }
1435
1436 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1437 if (Op.getOpcode() == ISD::LOAD) {
1438 LoadSDNode *LD = cast<LoadSDNode>(Op);
1439 unsigned ExtType = LD->getExtensionType();
1440 switch (ExtType) {
1441 default: break;
1442 case ISD::SEXTLOAD: // '17' bits known
1443 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1444 return VTBits-Tmp+1;
1445 case ISD::ZEXTLOAD: // '16' bits known
1446 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1447 return VTBits-Tmp;
1448 }
1449 }
1450
1451 // Allow the target to implement this method for its nodes.
1452 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1453 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1454 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1455 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1456 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1457 if (NumBits > 1) return NumBits;
1458 }
1459
1460 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1461 // use this information.
1462 uint64_t KnownZero, KnownOne;
1463 uint64_t Mask = MVT::getIntVTBitMask(VT);
1464 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1465
1466 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1467 if (KnownZero & SignBit) { // SignBit is 0
1468 Mask = KnownZero;
1469 } else if (KnownOne & SignBit) { // SignBit is 1;
1470 Mask = KnownOne;
1471 } else {
1472 // Nothing known.
1473 return 1;
1474 }
1475
1476 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1477 // the number of identical bits in the top of the input value.
1478 Mask ^= ~0ULL;
1479 Mask <<= 64-VTBits;
1480 // Return # leading zeros. We use 'min' here in case Val was zero before
1481 // shifting. We don't want to return '64' as for an i32 "0".
1482 return std::min(VTBits, CountLeadingZeros_64(Mask));
1483}
1484
Chris Lattner51dabfb2006-10-14 00:41:01 +00001485
Chris Lattnerc3aae252005-01-07 07:46:32 +00001486/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001487///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001488SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001489 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001490 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001491 void *IP = 0;
1492 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1493 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001494 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001495 CSEMap.InsertNode(N, IP);
1496
1497 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001498 return SDOperand(N, 0);
1499}
1500
Chris Lattnerc3aae252005-01-07 07:46:32 +00001501SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1502 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001503 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001504 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001505 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1506 uint64_t Val = C->getValue();
1507 switch (Opcode) {
1508 default: break;
1509 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001510 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001511 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1512 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001513 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
1514 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001515 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001516 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001517 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001518 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001519 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001520 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001521 case ISD::BSWAP:
1522 switch(VT) {
1523 default: assert(0 && "Invalid bswap!"); break;
1524 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1525 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1526 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1527 }
1528 break;
1529 case ISD::CTPOP:
1530 switch(VT) {
1531 default: assert(0 && "Invalid ctpop!"); break;
1532 case MVT::i1: return getConstant(Val != 0, VT);
1533 case MVT::i8:
1534 Tmp1 = (unsigned)Val & 0xFF;
1535 return getConstant(CountPopulation_32(Tmp1), VT);
1536 case MVT::i16:
1537 Tmp1 = (unsigned)Val & 0xFFFF;
1538 return getConstant(CountPopulation_32(Tmp1), VT);
1539 case MVT::i32:
1540 return getConstant(CountPopulation_32((unsigned)Val), VT);
1541 case MVT::i64:
1542 return getConstant(CountPopulation_64(Val), VT);
1543 }
1544 case ISD::CTLZ:
1545 switch(VT) {
1546 default: assert(0 && "Invalid ctlz!"); break;
1547 case MVT::i1: return getConstant(Val == 0, VT);
1548 case MVT::i8:
1549 Tmp1 = (unsigned)Val & 0xFF;
1550 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1551 case MVT::i16:
1552 Tmp1 = (unsigned)Val & 0xFFFF;
1553 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1554 case MVT::i32:
1555 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1556 case MVT::i64:
1557 return getConstant(CountLeadingZeros_64(Val), VT);
1558 }
1559 case ISD::CTTZ:
1560 switch(VT) {
1561 default: assert(0 && "Invalid cttz!"); break;
1562 case MVT::i1: return getConstant(Val == 0, VT);
1563 case MVT::i8:
1564 Tmp1 = (unsigned)Val | 0x100;
1565 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1566 case MVT::i16:
1567 Tmp1 = (unsigned)Val | 0x10000;
1568 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1569 case MVT::i32:
1570 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1571 case MVT::i64:
1572 return getConstant(CountTrailingZeros_64(Val), VT);
1573 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001574 }
1575 }
1576
Chris Lattner94683772005-12-23 05:30:37 +00001577 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001578 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1579 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001580 case ISD::FNEG:
1581 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001582 case ISD::FABS:
1583 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001584 case ISD::FP_ROUND:
1585 case ISD::FP_EXTEND:
1586 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001587 case ISD::FP_TO_SINT:
1588 return getConstant((int64_t)C->getValue(), VT);
1589 case ISD::FP_TO_UINT:
1590 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001591 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001592 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001593 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001594 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001595 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001596 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001597 }
1598
1599 unsigned OpOpcode = Operand.Val->getOpcode();
1600 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001601 case ISD::TokenFactor:
1602 return Operand; // Factor of one node? No factor.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001603 case ISD::FP_ROUND:
1604 case ISD::FP_EXTEND:
1605 assert(MVT::isFloatingPoint(VT) &&
1606 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1607 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001608 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001609 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1610 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001611 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001612 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001613 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1614 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1615 break;
1616 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001617 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1618 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001619 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001620 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001621 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001622 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001623 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001624 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001625 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1626 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001627 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001628 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001629 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1630 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1631 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1632 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001633 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001634 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1635 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001636 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001637 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001638 if (OpOpcode == ISD::TRUNCATE)
1639 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001640 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1641 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001642 // If the source is smaller than the dest, we still need an extend.
1643 if (Operand.Val->getOperand(0).getValueType() < VT)
1644 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1645 else if (Operand.Val->getOperand(0).getValueType() > VT)
1646 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1647 else
1648 return Operand.Val->getOperand(0);
1649 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001650 break;
Chris Lattner35481892005-12-23 00:16:34 +00001651 case ISD::BIT_CONVERT:
1652 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001653 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001654 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001655 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001656 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1657 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001658 if (OpOpcode == ISD::UNDEF)
1659 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001660 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001661 case ISD::SCALAR_TO_VECTOR:
1662 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001663 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001664 "Illegal SCALAR_TO_VECTOR node!");
1665 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001666 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001667 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1668 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001669 Operand.Val->getOperand(0));
1670 if (OpOpcode == ISD::FNEG) // --X -> X
1671 return Operand.Val->getOperand(0);
1672 break;
1673 case ISD::FABS:
1674 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1675 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1676 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001677 }
1678
Chris Lattner43247a12005-08-25 19:12:10 +00001679 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001680 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001681 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001682 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001683 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001684 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001685 void *IP = 0;
1686 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1687 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001688 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001689 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001690 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001691 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001692 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001693 AllNodes.push_back(N);
1694 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001695}
1696
Chris Lattner36019aa2005-04-18 03:48:41 +00001697
1698
Chris Lattnerc3aae252005-01-07 07:46:32 +00001699SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1700 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001701#ifndef NDEBUG
1702 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001703 case ISD::TokenFactor:
1704 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1705 N2.getValueType() == MVT::Other && "Invalid token factor!");
1706 break;
Chris Lattner76365122005-01-16 02:23:22 +00001707 case ISD::AND:
1708 case ISD::OR:
1709 case ISD::XOR:
1710 case ISD::UDIV:
1711 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001712 case ISD::MULHU:
1713 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001714 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1715 // fall through
1716 case ISD::ADD:
1717 case ISD::SUB:
1718 case ISD::MUL:
1719 case ISD::SDIV:
1720 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001721 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1722 // fall through.
1723 case ISD::FADD:
1724 case ISD::FSUB:
1725 case ISD::FMUL:
1726 case ISD::FDIV:
1727 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001728 assert(N1.getValueType() == N2.getValueType() &&
1729 N1.getValueType() == VT && "Binary operator types must match!");
1730 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001731 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1732 assert(N1.getValueType() == VT &&
1733 MVT::isFloatingPoint(N1.getValueType()) &&
1734 MVT::isFloatingPoint(N2.getValueType()) &&
1735 "Invalid FCOPYSIGN!");
1736 break;
Chris Lattner76365122005-01-16 02:23:22 +00001737 case ISD::SHL:
1738 case ISD::SRA:
1739 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001740 case ISD::ROTL:
1741 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001742 assert(VT == N1.getValueType() &&
1743 "Shift operators return type must be the same as their first arg");
1744 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001745 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001746 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001747 case ISD::FP_ROUND_INREG: {
1748 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1749 assert(VT == N1.getValueType() && "Not an inreg round!");
1750 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1751 "Cannot FP_ROUND_INREG integer types");
1752 assert(EVT <= VT && "Not rounding down!");
1753 break;
1754 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001755 case ISD::AssertSext:
1756 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001757 case ISD::SIGN_EXTEND_INREG: {
1758 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1759 assert(VT == N1.getValueType() && "Not an inreg extend!");
1760 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1761 "Cannot *_EXTEND_INREG FP types");
1762 assert(EVT <= VT && "Not extending!");
1763 }
1764
Chris Lattner76365122005-01-16 02:23:22 +00001765 default: break;
1766 }
1767#endif
1768
Chris Lattnerc3aae252005-01-07 07:46:32 +00001769 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1770 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1771 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001772 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1773 int64_t Val = N1C->getValue();
1774 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1775 Val <<= 64-FromBits;
1776 Val >>= 64-FromBits;
1777 return getConstant(Val, VT);
1778 }
1779
Chris Lattnerc3aae252005-01-07 07:46:32 +00001780 if (N2C) {
1781 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1782 switch (Opcode) {
1783 case ISD::ADD: return getConstant(C1 + C2, VT);
1784 case ISD::SUB: return getConstant(C1 - C2, VT);
1785 case ISD::MUL: return getConstant(C1 * C2, VT);
1786 case ISD::UDIV:
1787 if (C2) return getConstant(C1 / C2, VT);
1788 break;
1789 case ISD::UREM :
1790 if (C2) return getConstant(C1 % C2, VT);
1791 break;
1792 case ISD::SDIV :
1793 if (C2) return getConstant(N1C->getSignExtended() /
1794 N2C->getSignExtended(), VT);
1795 break;
1796 case ISD::SREM :
1797 if (C2) return getConstant(N1C->getSignExtended() %
1798 N2C->getSignExtended(), VT);
1799 break;
1800 case ISD::AND : return getConstant(C1 & C2, VT);
1801 case ISD::OR : return getConstant(C1 | C2, VT);
1802 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001803 case ISD::SHL : return getConstant(C1 << C2, VT);
1804 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001805 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001806 case ISD::ROTL :
1807 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1808 VT);
1809 case ISD::ROTR :
1810 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1811 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001812 default: break;
1813 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001814 } else { // Cannonicalize constant to RHS if commutative
1815 if (isCommutativeBinOp(Opcode)) {
1816 std::swap(N1C, N2C);
1817 std::swap(N1, N2);
1818 }
1819 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001820 }
1821
1822 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1823 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001824 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001825 if (N2CFP) {
1826 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1827 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001828 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1829 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1830 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1831 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001832 if (C2) return getConstantFP(C1 / C2, VT);
1833 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001834 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001835 if (C2) return getConstantFP(fmod(C1, C2), VT);
1836 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001837 case ISD::FCOPYSIGN: {
1838 union {
1839 double F;
1840 uint64_t I;
1841 } u1;
Chris Lattner3c232c82006-03-05 23:57:58 +00001842 u1.F = C1;
Chris Lattner964dd862007-04-25 00:00:45 +00001843 if (int64_t(DoubleToBits(C2)) < 0) // Sign bit of RHS set?
Chris Lattner3c232c82006-03-05 23:57:58 +00001844 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1845 else
1846 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1847 return getConstantFP(u1.F, VT);
1848 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001849 default: break;
1850 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001851 } else { // Cannonicalize constant to RHS if commutative
1852 if (isCommutativeBinOp(Opcode)) {
1853 std::swap(N1CFP, N2CFP);
1854 std::swap(N1, N2);
1855 }
1856 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001857 }
Chris Lattner62b57722006-04-20 05:39:12 +00001858
1859 // Canonicalize an UNDEF to the RHS, even over a constant.
1860 if (N1.getOpcode() == ISD::UNDEF) {
1861 if (isCommutativeBinOp(Opcode)) {
1862 std::swap(N1, N2);
1863 } else {
1864 switch (Opcode) {
1865 case ISD::FP_ROUND_INREG:
1866 case ISD::SIGN_EXTEND_INREG:
1867 case ISD::SUB:
1868 case ISD::FSUB:
1869 case ISD::FDIV:
1870 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001871 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001872 return N1; // fold op(undef, arg2) -> undef
1873 case ISD::UDIV:
1874 case ISD::SDIV:
1875 case ISD::UREM:
1876 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001877 case ISD::SRL:
1878 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001879 if (!MVT::isVector(VT))
1880 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1881 // For vectors, we can't easily build an all zero vector, just return
1882 // the LHS.
1883 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00001884 }
1885 }
1886 }
1887
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001888 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001889 if (N2.getOpcode() == ISD::UNDEF) {
1890 switch (Opcode) {
1891 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001892 case ISD::ADDC:
1893 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001894 case ISD::SUB:
1895 case ISD::FADD:
1896 case ISD::FSUB:
1897 case ISD::FMUL:
1898 case ISD::FDIV:
1899 case ISD::FREM:
1900 case ISD::UDIV:
1901 case ISD::SDIV:
1902 case ISD::UREM:
1903 case ISD::SREM:
1904 case ISD::XOR:
1905 return N2; // fold op(arg1, undef) -> undef
1906 case ISD::MUL:
1907 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001908 case ISD::SRL:
1909 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001910 if (!MVT::isVector(VT))
1911 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1912 // For vectors, we can't easily build an all zero vector, just return
1913 // the LHS.
1914 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001915 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00001916 if (!MVT::isVector(VT))
1917 return getConstant(MVT::getIntVTBitMask(VT), VT);
1918 // For vectors, we can't easily build an all one vector, just return
1919 // the LHS.
1920 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00001921 case ISD::SRA:
1922 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001923 }
1924 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001925
Chris Lattner51dabfb2006-10-14 00:41:01 +00001926 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001927 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001928 case ISD::TokenFactor:
1929 // Fold trivial token factors.
1930 if (N1.getOpcode() == ISD::EntryToken) return N2;
1931 if (N2.getOpcode() == ISD::EntryToken) return N1;
1932 break;
1933
Chris Lattner51dabfb2006-10-14 00:41:01 +00001934 case ISD::AND:
1935 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1936 // worth handling here.
1937 if (N2C && N2C->getValue() == 0)
1938 return N2;
1939 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001940 case ISD::OR:
1941 case ISD::XOR:
1942 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1943 // worth handling here.
1944 if (N2C && N2C->getValue() == 0)
1945 return N1;
1946 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001947 case ISD::FP_ROUND_INREG:
1948 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1949 break;
1950 case ISD::SIGN_EXTEND_INREG: {
1951 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1952 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001953 break;
1954 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001955 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001956 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1957
Chris Lattner5c6621c2006-09-19 04:51:23 +00001958 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1959 // 64-bit integers into 32-bit parts. Instead of building the extract of
1960 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001961 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001962 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001963
1964 // EXTRACT_ELEMENT of a constant int is also very common.
1965 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1966 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1967 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001968 }
1969 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001970
Nate Begemaneea805e2005-04-13 21:23:31 +00001971 // FIXME: figure out how to safely handle things like
1972 // int foo(int x) { return 1 << (x & 255); }
1973 // int bar() { return foo(256); }
1974#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001975 case ISD::SHL:
1976 case ISD::SRL:
1977 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001978 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001979 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001980 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001981 else if (N2.getOpcode() == ISD::AND)
1982 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1983 // If the and is only masking out bits that cannot effect the shift,
1984 // eliminate the and.
1985 unsigned NumBits = MVT::getSizeInBits(VT);
1986 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1987 return getNode(Opcode, VT, N1, N2.getOperand(0));
1988 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001989 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001990#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001991 }
1992
Chris Lattner27e9b412005-05-11 18:57:39 +00001993 // Memoize this node if possible.
1994 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001995 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001996 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001997 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00001998 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001999 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002000 void *IP = 0;
2001 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2002 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002003 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002004 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002005 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002006 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002007 }
2008
Chris Lattnerc3aae252005-01-07 07:46:32 +00002009 AllNodes.push_back(N);
2010 return SDOperand(N, 0);
2011}
2012
Chris Lattnerc3aae252005-01-07 07:46:32 +00002013SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2014 SDOperand N1, SDOperand N2, SDOperand N3) {
2015 // Perform various simplifications.
2016 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2017 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002018 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002019 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002020 // Use FoldSetCC to simplify SETCC's.
2021 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002022 if (Simp.Val) return Simp;
2023 break;
2024 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002025 case ISD::SELECT:
2026 if (N1C)
2027 if (N1C->getValue())
2028 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002029 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002030 return N3; // select false, X, Y -> Y
2031
2032 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002033 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002034 case ISD::BRCOND:
2035 if (N2C)
2036 if (N2C->getValue()) // Unconditional branch
2037 return getNode(ISD::BR, MVT::Other, N1, N3);
2038 else
2039 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00002040 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002041 case ISD::VECTOR_SHUFFLE:
2042 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2043 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2044 N3.getOpcode() == ISD::BUILD_VECTOR &&
2045 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2046 "Illegal VECTOR_SHUFFLE node!");
2047 break;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002048 case ISD::VBIT_CONVERT:
2049 // Fold vbit_convert nodes from a type to themselves.
2050 if (N1.getValueType() == MVT::Vector) {
2051 assert(isa<ConstantSDNode>(*(N1.Val->op_end()-2)) &&
2052 isa<VTSDNode>(*(N1.Val->op_end()-1)) && "Malformed vector input!");
2053 if (*(N1.Val->op_end()-2) == N2 && *(N1.Val->op_end()-1) == N3)
2054 return N1;
2055 }
2056 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002057 }
2058
Chris Lattner43247a12005-08-25 19:12:10 +00002059 // Memoize node if it doesn't produce a flag.
2060 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002061 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002062 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002063 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002064 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002065 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002066 void *IP = 0;
2067 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2068 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002069 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002070 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002071 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002072 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002073 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002074 AllNodes.push_back(N);
2075 return SDOperand(N, 0);
2076}
2077
2078SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002079 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002080 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002081 SDOperand Ops[] = { N1, N2, N3, N4 };
2082 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002083}
2084
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002085SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2086 SDOperand N1, SDOperand N2, SDOperand N3,
2087 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002088 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2089 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002090}
2091
Evan Cheng7038daf2005-12-10 00:37:58 +00002092SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2093 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002094 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002095 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002096 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2097 const Type *Ty = 0;
2098 if (VT != MVT::Vector && VT != MVT::iPTR) {
2099 Ty = MVT::getTypeForValueType(VT);
2100 } else if (SV) {
2101 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2102 assert(PT && "Value for load must be a pointer");
2103 Ty = PT->getElementType();
2104 }
2105 assert(Ty && "Could not get type information for load");
2106 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2107 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002108 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002109 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002110 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002111 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002112 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002113 ID.AddInteger(ISD::UNINDEXED);
2114 ID.AddInteger(ISD::NON_EXTLOAD);
2115 ID.AddInteger(VT);
2116 ID.AddPointer(SV);
2117 ID.AddInteger(SVOffset);
2118 ID.AddInteger(Alignment);
2119 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002120 void *IP = 0;
2121 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2122 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002123 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002124 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2125 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002126 CSEMap.InsertNode(N, IP);
2127 AllNodes.push_back(N);
2128 return SDOperand(N, 0);
2129}
2130
2131SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002132 SDOperand Chain, SDOperand Ptr,
2133 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002134 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002135 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002136 // If they are asking for an extending load from/to the same thing, return a
2137 // normal load.
2138 if (VT == EVT)
2139 ExtType = ISD::NON_EXTLOAD;
2140
2141 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002142 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002143 else
2144 assert(EVT < VT && "Should only be an extending load, not truncating!");
2145 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2146 "Cannot sign/zero extend a FP/Vector load!");
2147 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2148 "Cannot convert from FP to Int or Int -> FP!");
2149
Dan Gohman575e2f42007-06-04 15:49:41 +00002150 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2151 const Type *Ty = 0;
2152 if (VT != MVT::Vector && VT != MVT::iPTR) {
2153 Ty = MVT::getTypeForValueType(VT);
2154 } else if (SV) {
2155 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2156 assert(PT && "Value for load must be a pointer");
2157 Ty = PT->getElementType();
2158 }
2159 assert(Ty && "Could not get type information for load");
2160 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2161 }
Evan Cheng466685d2006-10-09 20:57:25 +00002162 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002163 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002164 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002165 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002166 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002167 ID.AddInteger(ISD::UNINDEXED);
2168 ID.AddInteger(ExtType);
2169 ID.AddInteger(EVT);
2170 ID.AddPointer(SV);
2171 ID.AddInteger(SVOffset);
2172 ID.AddInteger(Alignment);
2173 ID.AddInteger(isVolatile);
2174 void *IP = 0;
2175 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2176 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002177 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002178 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002179 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002180 AllNodes.push_back(N);
2181 return SDOperand(N, 0);
2182}
2183
Evan Cheng144d8f02006-11-09 17:55:04 +00002184SDOperand
2185SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2186 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002187 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002188 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2189 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002190 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002191 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002192 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002193 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002194 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002195 ID.AddInteger(AM);
2196 ID.AddInteger(LD->getExtensionType());
2197 ID.AddInteger(LD->getLoadedVT());
2198 ID.AddPointer(LD->getSrcValue());
2199 ID.AddInteger(LD->getSrcValueOffset());
2200 ID.AddInteger(LD->getAlignment());
2201 ID.AddInteger(LD->isVolatile());
2202 void *IP = 0;
2203 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2204 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002205 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00002206 LD->getExtensionType(), LD->getLoadedVT(),
2207 LD->getSrcValue(), LD->getSrcValueOffset(),
2208 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002209 CSEMap.InsertNode(N, IP);
2210 AllNodes.push_back(N);
2211 return SDOperand(N, 0);
2212}
2213
Evan Cheng7038daf2005-12-10 00:37:58 +00002214SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
2215 SDOperand Chain, SDOperand Ptr,
2216 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002217 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
2218 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00002219 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00002220}
2221
Jeff Cohend41b30d2006-11-05 19:31:28 +00002222SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002223 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002224 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002225 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002226
Dan Gohman575e2f42007-06-04 15:49:41 +00002227 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2228 const Type *Ty = 0;
2229 if (VT != MVT::Vector && VT != MVT::iPTR) {
2230 Ty = MVT::getTypeForValueType(VT);
2231 } else if (SV) {
2232 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2233 assert(PT && "Value for store must be a pointer");
2234 Ty = PT->getElementType();
2235 }
2236 assert(Ty && "Could not get type information for store");
2237 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2238 }
Evan Chengad071e12006-10-05 22:57:11 +00002239 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002240 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002241 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002242 FoldingSetNodeID ID;
2243 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002244 ID.AddInteger(ISD::UNINDEXED);
2245 ID.AddInteger(false);
2246 ID.AddInteger(VT);
2247 ID.AddPointer(SV);
2248 ID.AddInteger(SVOffset);
2249 ID.AddInteger(Alignment);
2250 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002251 void *IP = 0;
2252 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2253 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002254 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002255 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002256 CSEMap.InsertNode(N, IP);
2257 AllNodes.push_back(N);
2258 return SDOperand(N, 0);
2259}
2260
Jeff Cohend41b30d2006-11-05 19:31:28 +00002261SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002262 SDOperand Ptr, const Value *SV,
2263 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002264 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002265 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002266 bool isTrunc = VT != SVT;
2267
2268 assert(VT > SVT && "Not a truncation?");
2269 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2270 "Can't do FP-INT conversion!");
2271
Dan Gohman575e2f42007-06-04 15:49:41 +00002272 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2273 const Type *Ty = 0;
2274 if (VT != MVT::Vector && VT != MVT::iPTR) {
2275 Ty = MVT::getTypeForValueType(VT);
2276 } else if (SV) {
2277 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2278 assert(PT && "Value for store must be a pointer");
2279 Ty = PT->getElementType();
2280 }
2281 assert(Ty && "Could not get type information for store");
2282 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2283 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002284 SDVTList VTs = getVTList(MVT::Other);
2285 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002286 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002287 FoldingSetNodeID ID;
2288 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002289 ID.AddInteger(ISD::UNINDEXED);
2290 ID.AddInteger(isTrunc);
2291 ID.AddInteger(SVT);
2292 ID.AddPointer(SV);
2293 ID.AddInteger(SVOffset);
2294 ID.AddInteger(Alignment);
2295 ID.AddInteger(isVolatile);
2296 void *IP = 0;
2297 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2298 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002299 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002300 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002301 CSEMap.InsertNode(N, IP);
2302 AllNodes.push_back(N);
2303 return SDOperand(N, 0);
2304}
2305
Evan Cheng144d8f02006-11-09 17:55:04 +00002306SDOperand
2307SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2308 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002309 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2310 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2311 "Store is already a indexed store!");
2312 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2313 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2314 FoldingSetNodeID ID;
2315 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2316 ID.AddInteger(AM);
2317 ID.AddInteger(ST->isTruncatingStore());
2318 ID.AddInteger(ST->getStoredVT());
2319 ID.AddPointer(ST->getSrcValue());
2320 ID.AddInteger(ST->getSrcValueOffset());
2321 ID.AddInteger(ST->getAlignment());
2322 ID.AddInteger(ST->isVolatile());
2323 void *IP = 0;
2324 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2325 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002326 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00002327 ST->isTruncatingStore(), ST->getStoredVT(),
2328 ST->getSrcValue(), ST->getSrcValueOffset(),
2329 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002330 CSEMap.InsertNode(N, IP);
2331 AllNodes.push_back(N);
2332 return SDOperand(N, 0);
2333}
2334
Nate Begemanacc398c2006-01-25 18:21:52 +00002335SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2336 SDOperand Chain, SDOperand Ptr,
2337 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002338 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002339 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002340}
2341
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002342SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002343 const SDOperand *Ops, unsigned NumOps) {
2344 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002345 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002346 case 1: return getNode(Opcode, VT, Ops[0]);
2347 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2348 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002349 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002350 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002351
Chris Lattneref847df2005-04-09 03:27:28 +00002352 switch (Opcode) {
2353 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002354 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002355 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002356 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2357 "LHS and RHS of condition must have same type!");
2358 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2359 "True and False arms of SelectCC must have same type!");
2360 assert(Ops[2].getValueType() == VT &&
2361 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002362 break;
2363 }
2364 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002365 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002366 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2367 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002368 break;
2369 }
Chris Lattneref847df2005-04-09 03:27:28 +00002370 }
2371
Chris Lattner385328c2005-05-14 07:42:29 +00002372 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002373 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002374 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002375 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002376 FoldingSetNodeID ID;
2377 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002378 void *IP = 0;
2379 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2380 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002381 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002382 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002383 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002384 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002385 }
Chris Lattneref847df2005-04-09 03:27:28 +00002386 AllNodes.push_back(N);
2387 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002388}
2389
Chris Lattner89c34632005-05-14 06:20:26 +00002390SDOperand SelectionDAG::getNode(unsigned Opcode,
2391 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002392 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002393 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2394 Ops, NumOps);
2395}
2396
2397SDOperand SelectionDAG::getNode(unsigned Opcode,
2398 const MVT::ValueType *VTs, unsigned NumVTs,
2399 const SDOperand *Ops, unsigned NumOps) {
2400 if (NumVTs == 1)
2401 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002402 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2403}
2404
2405SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2406 const SDOperand *Ops, unsigned NumOps) {
2407 if (VTList.NumVTs == 1)
2408 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002409
Chris Lattner5f056bf2005-07-10 01:55:33 +00002410 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002411 // FIXME: figure out how to safely handle things like
2412 // int foo(int x) { return 1 << (x & 255); }
2413 // int bar() { return foo(256); }
2414#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002415 case ISD::SRA_PARTS:
2416 case ISD::SRL_PARTS:
2417 case ISD::SHL_PARTS:
2418 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002419 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002420 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2421 else if (N3.getOpcode() == ISD::AND)
2422 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2423 // If the and is only masking out bits that cannot effect the shift,
2424 // eliminate the and.
2425 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2426 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2427 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2428 }
2429 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002430#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002431 }
Chris Lattner89c34632005-05-14 06:20:26 +00002432
Chris Lattner43247a12005-08-25 19:12:10 +00002433 // Memoize the node unless it returns a flag.
2434 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002435 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002436 FoldingSetNodeID ID;
2437 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002438 void *IP = 0;
2439 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2440 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002441 if (NumOps == 1)
2442 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2443 else if (NumOps == 2)
2444 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2445 else if (NumOps == 3)
2446 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2447 else
2448 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002449 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002450 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002451 if (NumOps == 1)
2452 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2453 else if (NumOps == 2)
2454 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2455 else if (NumOps == 3)
2456 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2457 else
2458 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002459 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002460 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002461 return SDOperand(N, 0);
2462}
2463
Chris Lattner70046e92006-08-15 17:46:01 +00002464SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
2465 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002466}
2467
Chris Lattner70046e92006-08-15 17:46:01 +00002468SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002469 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2470 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002471 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002472 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002473 }
2474 std::vector<MVT::ValueType> V;
2475 V.push_back(VT1);
2476 V.push_back(VT2);
2477 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002478 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002479}
Chris Lattner70046e92006-08-15 17:46:01 +00002480SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2481 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002482 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002483 E = VTList.end(); I != E; ++I) {
2484 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2485 (*I)[2] == VT3)
2486 return makeVTList(&(*I)[0], 3);
2487 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002488 std::vector<MVT::ValueType> V;
2489 V.push_back(VT1);
2490 V.push_back(VT2);
2491 V.push_back(VT3);
2492 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002493 return makeVTList(&(*VTList.begin())[0], 3);
2494}
2495
2496SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2497 switch (NumVTs) {
2498 case 0: assert(0 && "Cannot have nodes without results!");
2499 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
2500 case 2: return getVTList(VTs[0], VTs[1]);
2501 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2502 default: break;
2503 }
2504
2505 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2506 E = VTList.end(); I != E; ++I) {
2507 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2508
2509 bool NoMatch = false;
2510 for (unsigned i = 2; i != NumVTs; ++i)
2511 if (VTs[i] != (*I)[i]) {
2512 NoMatch = true;
2513 break;
2514 }
2515 if (!NoMatch)
2516 return makeVTList(&*I->begin(), NumVTs);
2517 }
2518
2519 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2520 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002521}
2522
2523
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002524/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2525/// specified operands. If the resultant node already exists in the DAG,
2526/// this does not modify the specified node, instead it returns the node that
2527/// already exists. If the resultant node does not exist in the DAG, the
2528/// input node is returned. As a degenerate case, if you specify the same
2529/// input operands as the node already has, the input node is returned.
2530SDOperand SelectionDAG::
2531UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2532 SDNode *N = InN.Val;
2533 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2534
2535 // Check to see if there is no change.
2536 if (Op == N->getOperand(0)) return InN;
2537
2538 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002539 void *InsertPos = 0;
2540 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2541 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002542
2543 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002544 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002545 RemoveNodeFromCSEMaps(N);
2546
2547 // Now we update the operands.
2548 N->OperandList[0].Val->removeUser(N);
2549 Op.Val->addUser(N);
2550 N->OperandList[0] = Op;
2551
2552 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002553 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002554 return InN;
2555}
2556
2557SDOperand SelectionDAG::
2558UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2559 SDNode *N = InN.Val;
2560 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2561
2562 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002563 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2564 return InN; // No operands changed, just return the input node.
2565
2566 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002567 void *InsertPos = 0;
2568 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2569 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002570
2571 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002572 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002573 RemoveNodeFromCSEMaps(N);
2574
2575 // Now we update the operands.
2576 if (N->OperandList[0] != Op1) {
2577 N->OperandList[0].Val->removeUser(N);
2578 Op1.Val->addUser(N);
2579 N->OperandList[0] = Op1;
2580 }
2581 if (N->OperandList[1] != Op2) {
2582 N->OperandList[1].Val->removeUser(N);
2583 Op2.Val->addUser(N);
2584 N->OperandList[1] = Op2;
2585 }
2586
2587 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002588 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002589 return InN;
2590}
2591
2592SDOperand SelectionDAG::
2593UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002594 SDOperand Ops[] = { Op1, Op2, Op3 };
2595 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002596}
2597
2598SDOperand SelectionDAG::
2599UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2600 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002601 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2602 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002603}
2604
2605SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002606UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2607 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002608 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2609 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002610}
2611
2612
2613SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002614UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002615 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002616 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002617 "Update with wrong number of operands");
2618
2619 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002620 bool AnyChange = false;
2621 for (unsigned i = 0; i != NumOps; ++i) {
2622 if (Ops[i] != N->getOperand(i)) {
2623 AnyChange = true;
2624 break;
2625 }
2626 }
2627
2628 // No operands changed, just return the input node.
2629 if (!AnyChange) return InN;
2630
2631 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002632 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002633 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002634 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002635
2636 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002637 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002638 RemoveNodeFromCSEMaps(N);
2639
2640 // Now we update the operands.
2641 for (unsigned i = 0; i != NumOps; ++i) {
2642 if (N->OperandList[i] != Ops[i]) {
2643 N->OperandList[i].Val->removeUser(N);
2644 Ops[i].Val->addUser(N);
2645 N->OperandList[i] = Ops[i];
2646 }
2647 }
2648
2649 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002650 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002651 return InN;
2652}
2653
2654
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002655/// MorphNodeTo - This frees the operands of the current node, resets the
2656/// opcode, types, and operands to the specified value. This should only be
2657/// used by the SelectionDAG class.
2658void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2659 const SDOperand *Ops, unsigned NumOps) {
2660 NodeType = Opc;
2661 ValueList = L.VTs;
2662 NumValues = L.NumVTs;
2663
2664 // Clear the operands list, updating used nodes to remove this from their
2665 // use list.
2666 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2667 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002668
2669 // If NumOps is larger than the # of operands we currently have, reallocate
2670 // the operand list.
2671 if (NumOps > NumOperands) {
2672 if (OperandsNeedDelete)
2673 delete [] OperandList;
2674 OperandList = new SDOperand[NumOps];
2675 OperandsNeedDelete = true;
2676 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002677
2678 // Assign the new operands.
2679 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002680
2681 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2682 OperandList[i] = Ops[i];
2683 SDNode *N = OperandList[i].Val;
2684 N->Uses.push_back(this);
2685 }
2686}
Chris Lattner149c58c2005-08-16 18:17:10 +00002687
2688/// SelectNodeTo - These are used for target selectors to *mutate* the
2689/// specified node to have the specified return type, Target opcode, and
2690/// operands. Note that target opcodes are stored as
2691/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002692///
2693/// Note that SelectNodeTo returns the resultant node. If there is already a
2694/// node of the specified opcode and operands, it returns that node instead of
2695/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002696SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2697 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002698 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002699 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002700 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002701 void *IP = 0;
2702 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002703 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002704
Chris Lattner7651fa42005-08-24 23:00:29 +00002705 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002706
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002707 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002708
Chris Lattner4a283e92006-08-11 18:38:11 +00002709 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002710 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002711}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002712
Evan Cheng95514ba2006-08-26 08:00:10 +00002713SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2714 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002715 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002716 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002717 SDOperand Ops[] = { Op1 };
2718
Jim Laskey583bd472006-10-27 23:46:08 +00002719 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002720 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002721 void *IP = 0;
2722 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002723 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002724
Chris Lattner149c58c2005-08-16 18:17:10 +00002725 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002726 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002727 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002728 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002729}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002730
Evan Cheng95514ba2006-08-26 08:00:10 +00002731SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2732 MVT::ValueType VT, SDOperand Op1,
2733 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002734 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002735 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002736 SDOperand Ops[] = { Op1, Op2 };
2737
Jim Laskey583bd472006-10-27 23:46:08 +00002738 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002739 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002740 void *IP = 0;
2741 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002742 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002743
Chris Lattner149c58c2005-08-16 18:17:10 +00002744 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002745
Chris Lattner63e3f142007-02-04 07:28:00 +00002746 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002747
Chris Lattnera5682852006-08-07 23:03:03 +00002748 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002749 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002750}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002751
Evan Cheng95514ba2006-08-26 08:00:10 +00002752SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2753 MVT::ValueType VT, SDOperand Op1,
2754 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002755 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002756 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002757 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002758 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002759 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002760 void *IP = 0;
2761 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002762 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002763
Chris Lattner149c58c2005-08-16 18:17:10 +00002764 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002765
Chris Lattner63e3f142007-02-04 07:28:00 +00002766 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002767
Chris Lattnera5682852006-08-07 23:03:03 +00002768 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002769 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002770}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002771
Evan Cheng95514ba2006-08-26 08:00:10 +00002772SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002773 MVT::ValueType VT, const SDOperand *Ops,
2774 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002775 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002776 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002777 FoldingSetNodeID ID;
2778 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002779 void *IP = 0;
2780 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002781 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002782
Chris Lattner6b09a292005-08-21 18:49:33 +00002783 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002784 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002785
Chris Lattnera5682852006-08-07 23:03:03 +00002786 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002787 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002788}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002789
Evan Cheng95514ba2006-08-26 08:00:10 +00002790SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2791 MVT::ValueType VT1, MVT::ValueType VT2,
2792 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002793 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002794 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002795 SDOperand Ops[] = { Op1, Op2 };
2796 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002797 void *IP = 0;
2798 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002799 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002800
Chris Lattner0fb094f2005-11-19 01:44:53 +00002801 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002802 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002803 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002804 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002805}
2806
Evan Cheng95514ba2006-08-26 08:00:10 +00002807SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2808 MVT::ValueType VT1, MVT::ValueType VT2,
2809 SDOperand Op1, SDOperand Op2,
2810 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002811 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002812 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002813 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002814 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002815 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002816 void *IP = 0;
2817 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002818 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002819
Chris Lattner0fb094f2005-11-19 01:44:53 +00002820 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002821
Chris Lattner63e3f142007-02-04 07:28:00 +00002822 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002823 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002824 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002825}
2826
Chris Lattner0fb094f2005-11-19 01:44:53 +00002827
Evan Cheng6ae46c42006-02-09 07:15:23 +00002828/// getTargetNode - These are used for target selectors to create a new node
2829/// with specified return type(s), target opcode, and operands.
2830///
2831/// Note that getTargetNode returns the resultant node. If there is already a
2832/// node of the specified opcode and operands, it returns that node instead of
2833/// the current one.
2834SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2835 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2836}
2837SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2838 SDOperand Op1) {
2839 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2840}
2841SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2842 SDOperand Op1, SDOperand Op2) {
2843 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2844}
2845SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002846 SDOperand Op1, SDOperand Op2,
2847 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002848 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2849}
2850SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002851 const SDOperand *Ops, unsigned NumOps) {
2852 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002853}
2854SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2855 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002856 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002857 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002858}
2859SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002860 MVT::ValueType VT2, SDOperand Op1,
2861 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002862 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002863 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002864 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002865}
2866SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002867 MVT::ValueType VT2, SDOperand Op1,
2868 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002869 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002870 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002871 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002872}
Evan Cheng694481e2006-08-27 08:08:54 +00002873SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2874 MVT::ValueType VT2,
2875 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002876 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002877 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002878}
2879SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2880 MVT::ValueType VT2, MVT::ValueType VT3,
2881 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002882 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002883 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002884 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002885}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002886SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2887 MVT::ValueType VT2, MVT::ValueType VT3,
2888 SDOperand Op1, SDOperand Op2,
2889 SDOperand Op3) {
2890 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2891 SDOperand Ops[] = { Op1, Op2, Op3 };
2892 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2893}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002894SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002895 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002896 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002897 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2898 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002899}
2900
Evan Cheng99157a02006-08-07 22:13:29 +00002901/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002902/// This can cause recursive merging of nodes in the DAG.
2903///
Chris Lattner8b52f212005-08-26 18:36:28 +00002904/// This version assumes From/To have a single result value.
2905///
Chris Lattner1e111c72005-09-07 05:37:01 +00002906void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2907 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002908 SDNode *From = FromN.Val, *To = ToN.Val;
2909 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2910 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002911 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002912
Chris Lattner8b8749f2005-08-17 19:00:20 +00002913 while (!From->use_empty()) {
2914 // Process users until they are all gone.
2915 SDNode *U = *From->use_begin();
2916
2917 // This node is about to morph, remove its old self from the CSE maps.
2918 RemoveNodeFromCSEMaps(U);
2919
Chris Lattner65113b22005-11-08 22:07:03 +00002920 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2921 I != E; ++I)
2922 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002923 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002924 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002925 To->addUser(U);
2926 }
2927
2928 // Now that we have modified U, add it back to the CSE maps. If it already
2929 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002930 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2931 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002932 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002933 if (Deleted) Deleted->push_back(U);
2934 DeleteNodeNotInCSEMaps(U);
2935 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002936 }
2937}
2938
2939/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2940/// This can cause recursive merging of nodes in the DAG.
2941///
2942/// This version assumes From/To have matching types and numbers of result
2943/// values.
2944///
Chris Lattner1e111c72005-09-07 05:37:01 +00002945void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2946 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002947 assert(From != To && "Cannot replace uses of with self");
2948 assert(From->getNumValues() == To->getNumValues() &&
2949 "Cannot use this version of ReplaceAllUsesWith!");
2950 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002951 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002952 return;
2953 }
2954
2955 while (!From->use_empty()) {
2956 // Process users until they are all gone.
2957 SDNode *U = *From->use_begin();
2958
2959 // This node is about to morph, remove its old self from the CSE maps.
2960 RemoveNodeFromCSEMaps(U);
2961
Chris Lattner65113b22005-11-08 22:07:03 +00002962 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2963 I != E; ++I)
2964 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002965 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002966 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002967 To->addUser(U);
2968 }
2969
2970 // Now that we have modified U, add it back to the CSE maps. If it already
2971 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002972 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2973 ReplaceAllUsesWith(U, Existing, Deleted);
2974 // U is now dead.
2975 if (Deleted) Deleted->push_back(U);
2976 DeleteNodeNotInCSEMaps(U);
2977 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002978 }
2979}
2980
Chris Lattner8b52f212005-08-26 18:36:28 +00002981/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2982/// This can cause recursive merging of nodes in the DAG.
2983///
2984/// This version can replace From with any result values. To must match the
2985/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002986void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002987 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002988 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002989 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002990 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002991 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002992 return;
2993 }
2994
2995 while (!From->use_empty()) {
2996 // Process users until they are all gone.
2997 SDNode *U = *From->use_begin();
2998
2999 // This node is about to morph, remove its old self from the CSE maps.
3000 RemoveNodeFromCSEMaps(U);
3001
Chris Lattner65113b22005-11-08 22:07:03 +00003002 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3003 I != E; ++I)
3004 if (I->Val == From) {
3005 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003006 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003007 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003008 ToOp.Val->addUser(U);
3009 }
3010
3011 // Now that we have modified U, add it back to the CSE maps. If it already
3012 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003013 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3014 ReplaceAllUsesWith(U, Existing, Deleted);
3015 // U is now dead.
3016 if (Deleted) Deleted->push_back(U);
3017 DeleteNodeNotInCSEMaps(U);
3018 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003019 }
3020}
3021
Chris Lattner012f2412006-02-17 21:58:01 +00003022/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3023/// uses of other values produced by From.Val alone. The Deleted vector is
3024/// handled the same was as for ReplaceAllUsesWith.
3025void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
3026 std::vector<SDNode*> &Deleted) {
3027 assert(From != To && "Cannot replace a value with itself");
3028 // Handle the simple, trivial, case efficiently.
3029 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
3030 ReplaceAllUsesWith(From, To, &Deleted);
3031 return;
3032 }
3033
Chris Lattnercf5640b2007-02-04 00:14:31 +00003034 // Get all of the users of From.Val. We want these in a nice,
3035 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3036 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003037
3038 while (!Users.empty()) {
3039 // We know that this user uses some value of From. If it is the right
3040 // value, update it.
3041 SDNode *User = Users.back();
3042 Users.pop_back();
3043
3044 for (SDOperand *Op = User->OperandList,
3045 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
3046 if (*Op == From) {
3047 // Okay, we know this user needs to be updated. Remove its old self
3048 // from the CSE maps.
3049 RemoveNodeFromCSEMaps(User);
3050
3051 // Update all operands that match "From".
3052 for (; Op != E; ++Op) {
3053 if (*Op == From) {
3054 From.Val->removeUser(User);
3055 *Op = To;
3056 To.Val->addUser(User);
3057 }
3058 }
3059
3060 // Now that we have modified User, add it back to the CSE maps. If it
3061 // already exists there, recursively merge the results together.
3062 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
3063 unsigned NumDeleted = Deleted.size();
3064 ReplaceAllUsesWith(User, Existing, &Deleted);
3065
3066 // User is now dead.
3067 Deleted.push_back(User);
3068 DeleteNodeNotInCSEMaps(User);
3069
3070 // We have to be careful here, because ReplaceAllUsesWith could have
3071 // deleted a user of From, which means there may be dangling pointers
3072 // in the "Users" setvector. Scan over the deleted node pointers and
3073 // remove them from the setvector.
3074 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
3075 Users.remove(Deleted[i]);
3076 }
3077 break; // Exit the operand scanning loop.
3078 }
3079 }
3080 }
3081}
3082
Chris Lattner7b2880c2005-08-24 22:44:39 +00003083
Evan Chenge6f35d82006-08-01 08:20:41 +00003084/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3085/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003086unsigned SelectionDAG::AssignNodeIds() {
3087 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003088 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3089 SDNode *N = I;
3090 N->setNodeId(Id++);
3091 }
3092 return Id;
3093}
3094
Evan Chenge6f35d82006-08-01 08:20:41 +00003095/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003096/// based on their topological order. It returns the maximum id and a vector
3097/// of the SDNodes* in assigned order by reference.
3098unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003099 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003100 std::vector<unsigned> InDegree(DAGSize);
3101 std::vector<SDNode*> Sources;
3102
3103 // Use a two pass approach to avoid using a std::map which is slow.
3104 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003105 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3106 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003107 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003108 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003109 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003110 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003111 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003112 }
3113
Evan Cheng99157a02006-08-07 22:13:29 +00003114 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003115 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003116 SDNode *N = Sources.back();
3117 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003118 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003119 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3120 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003121 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003122 if (Degree == 0)
3123 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003124 }
3125 }
3126
Evan Chengc384d6c2006-08-02 22:00:34 +00003127 // Second pass, assign the actual topological order as node ids.
3128 Id = 0;
3129 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3130 TI != TE; ++TI)
3131 (*TI)->setNodeId(Id++);
3132
3133 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003134}
3135
3136
Evan Cheng091cba12006-07-27 06:39:06 +00003137
Jim Laskey58b968b2005-08-17 20:08:02 +00003138//===----------------------------------------------------------------------===//
3139// SDNode Class
3140//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003141
Chris Lattner917d2c92006-07-19 00:00:37 +00003142// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003143void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003144void UnarySDNode::ANCHOR() {}
3145void BinarySDNode::ANCHOR() {}
3146void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003147void HandleSDNode::ANCHOR() {}
3148void StringSDNode::ANCHOR() {}
3149void ConstantSDNode::ANCHOR() {}
3150void ConstantFPSDNode::ANCHOR() {}
3151void GlobalAddressSDNode::ANCHOR() {}
3152void FrameIndexSDNode::ANCHOR() {}
3153void JumpTableSDNode::ANCHOR() {}
3154void ConstantPoolSDNode::ANCHOR() {}
3155void BasicBlockSDNode::ANCHOR() {}
3156void SrcValueSDNode::ANCHOR() {}
3157void RegisterSDNode::ANCHOR() {}
3158void ExternalSymbolSDNode::ANCHOR() {}
3159void CondCodeSDNode::ANCHOR() {}
3160void VTSDNode::ANCHOR() {}
3161void LoadSDNode::ANCHOR() {}
3162void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003163
Chris Lattner48b85922007-02-04 02:41:42 +00003164HandleSDNode::~HandleSDNode() {
3165 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003166 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003167}
3168
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003169GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3170 MVT::ValueType VT, int o)
3171 : SDNode(isa<GlobalVariable>(GA) &&
3172 dyn_cast<GlobalVariable>(GA)->isThreadLocal() ?
3173 // Thread Local
3174 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3175 // Non Thread Local
3176 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3177 getSDVTList(VT)), Offset(o) {
3178 TheGlobal = const_cast<GlobalValue*>(GA);
3179}
Chris Lattner48b85922007-02-04 02:41:42 +00003180
Jim Laskey583bd472006-10-27 23:46:08 +00003181/// Profile - Gather unique data for the node.
3182///
3183void SDNode::Profile(FoldingSetNodeID &ID) {
3184 AddNodeIDNode(ID, this);
3185}
3186
Chris Lattnera3255112005-11-08 23:30:28 +00003187/// getValueTypeList - Return a pointer to the specified value type.
3188///
3189MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
3190 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3191 VTs[VT] = VT;
3192 return &VTs[VT];
3193}
Chris Lattnera5682852006-08-07 23:03:03 +00003194
Chris Lattner5c884562005-01-12 18:37:47 +00003195/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3196/// indicated value. This method ignores uses of other values defined by this
3197/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003198bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003199 assert(Value < getNumValues() && "Bad value!");
3200
3201 // If there is only one value, this is easy.
3202 if (getNumValues() == 1)
3203 return use_size() == NUses;
3204 if (Uses.size() < NUses) return false;
3205
Evan Cheng4ee62112006-02-05 06:29:23 +00003206 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003207
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003208 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003209
Chris Lattnerf83482d2006-08-16 20:59:32 +00003210 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003211 SDNode *User = *UI;
3212 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003213 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003214 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3215 if (User->getOperand(i) == TheValue) {
3216 if (NUses == 0)
3217 return false; // too many uses
3218 --NUses;
3219 }
3220 }
3221
3222 // Found exactly the right number of uses?
3223 return NUses == 0;
3224}
3225
3226
Evan Chenge6e97e62006-11-03 07:31:32 +00003227/// isOnlyUse - Return true if this node is the only use of N.
3228///
Evan Cheng4ee62112006-02-05 06:29:23 +00003229bool SDNode::isOnlyUse(SDNode *N) const {
3230 bool Seen = false;
3231 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3232 SDNode *User = *I;
3233 if (User == this)
3234 Seen = true;
3235 else
3236 return false;
3237 }
3238
3239 return Seen;
3240}
3241
Evan Chenge6e97e62006-11-03 07:31:32 +00003242/// isOperand - Return true if this node is an operand of N.
3243///
Evan Chengbfa284f2006-03-03 06:42:32 +00003244bool SDOperand::isOperand(SDNode *N) const {
3245 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3246 if (*this == N->getOperand(i))
3247 return true;
3248 return false;
3249}
3250
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003251bool SDNode::isOperand(SDNode *N) const {
3252 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3253 if (this == N->OperandList[i].Val)
3254 return true;
3255 return false;
3256}
Evan Cheng4ee62112006-02-05 06:29:23 +00003257
Evan Chengc5fc57d2006-11-03 03:05:24 +00003258static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003259 SmallPtrSet<SDNode *, 32> &Visited) {
3260 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003261 return;
3262
3263 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3264 SDNode *Op = N->getOperand(i).Val;
3265 if (Op == P) {
3266 found = true;
3267 return;
3268 }
3269 findPredecessor(Op, P, found, Visited);
3270 }
3271}
3272
Evan Chenge6e97e62006-11-03 07:31:32 +00003273/// isPredecessor - Return true if this node is a predecessor of N. This node
3274/// is either an operand of N or it can be reached by recursively traversing
3275/// up the operands.
3276/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003277bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003278 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003279 bool found = false;
3280 findPredecessor(N, this, found, Visited);
3281 return found;
3282}
3283
Evan Chengc5484282006-10-04 00:56:09 +00003284uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3285 assert(Num < NumOperands && "Invalid child # of SDNode!");
3286 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3287}
3288
Reid Spencer577cc322007-04-01 07:32:19 +00003289std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003290 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003291 default:
3292 if (getOpcode() < ISD::BUILTIN_OP_END)
3293 return "<<Unknown DAG Node>>";
3294 else {
Evan Cheng72261582005-12-20 06:22:03 +00003295 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003296 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003297 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
3298 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00003299
Evan Cheng72261582005-12-20 06:22:03 +00003300 TargetLowering &TLI = G->getTargetLoweringInfo();
3301 const char *Name =
3302 TLI.getTargetNodeName(getOpcode());
3303 if (Name) return Name;
3304 }
3305
3306 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003307 }
3308
Andrew Lenharth95762122005-03-31 21:24:06 +00003309 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003310 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003311 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003312 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003313 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003314 case ISD::AssertSext: return "AssertSext";
3315 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003316
3317 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003318 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003319 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003320 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003321
3322 case ISD::Constant: return "Constant";
3323 case ISD::ConstantFP: return "ConstantFP";
3324 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003325 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003326 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003327 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003328 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003329 case ISD::RETURNADDR: return "RETURNADDR";
3330 case ISD::FRAMEADDR: return "FRAMEADDR";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003331 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3332 case ISD::EHSELECTION: return "EHSELECTION";
Chris Lattner5839bf22005-08-26 17:15:30 +00003333 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003334 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003335 case ISD::INTRINSIC_WO_CHAIN: {
3336 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3337 return Intrinsic::getName((Intrinsic::ID)IID);
3338 }
3339 case ISD::INTRINSIC_VOID:
3340 case ISD::INTRINSIC_W_CHAIN: {
3341 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003342 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003343 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003344
Chris Lattnerb2827b02006-03-19 00:52:58 +00003345 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003346 case ISD::TargetConstant: return "TargetConstant";
3347 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003348 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003349 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003350 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003351 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003352 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003353 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003354
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003355 case ISD::CopyToReg: return "CopyToReg";
3356 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003357 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00003358 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003359 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003360 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003361 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003362 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003363 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003364
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003365 // Unary operators
3366 case ISD::FABS: return "fabs";
3367 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003368 case ISD::FSQRT: return "fsqrt";
3369 case ISD::FSIN: return "fsin";
3370 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003371 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003372
3373 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003374 case ISD::ADD: return "add";
3375 case ISD::SUB: return "sub";
3376 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003377 case ISD::MULHU: return "mulhu";
3378 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003379 case ISD::SDIV: return "sdiv";
3380 case ISD::UDIV: return "udiv";
3381 case ISD::SREM: return "srem";
3382 case ISD::UREM: return "urem";
3383 case ISD::AND: return "and";
3384 case ISD::OR: return "or";
3385 case ISD::XOR: return "xor";
3386 case ISD::SHL: return "shl";
3387 case ISD::SRA: return "sra";
3388 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003389 case ISD::ROTL: return "rotl";
3390 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003391 case ISD::FADD: return "fadd";
3392 case ISD::FSUB: return "fsub";
3393 case ISD::FMUL: return "fmul";
3394 case ISD::FDIV: return "fdiv";
3395 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003396 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00003397 case ISD::VADD: return "vadd";
3398 case ISD::VSUB: return "vsub";
3399 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00003400 case ISD::VSDIV: return "vsdiv";
3401 case ISD::VUDIV: return "vudiv";
3402 case ISD::VAND: return "vand";
3403 case ISD::VOR: return "vor";
3404 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003405
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003406 case ISD::SETCC: return "setcc";
3407 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003408 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003409 case ISD::VSELECT: return "vselect";
3410 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
3411 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
3412 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00003413 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Dan Gohman65956352007-06-13 15:12:02 +00003414 case ISD::VCONCAT_VECTORS: return "vconcat_vectors";
3415 case ISD::VEXTRACT_SUBVECTOR: return "vextract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003416 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
3417 case ISD::VBUILD_VECTOR: return "vbuild_vector";
3418 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
3419 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
3420 case ISD::VBIT_CONVERT: return "vbit_convert";
Chris Lattnerb6541762007-03-04 20:40:38 +00003421 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003422 case ISD::ADDC: return "addc";
3423 case ISD::ADDE: return "adde";
3424 case ISD::SUBC: return "subc";
3425 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003426 case ISD::SHL_PARTS: return "shl_parts";
3427 case ISD::SRA_PARTS: return "sra_parts";
3428 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003429
Chris Lattner7f644642005-04-28 21:44:03 +00003430 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003431 case ISD::SIGN_EXTEND: return "sign_extend";
3432 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003433 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003434 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003435 case ISD::TRUNCATE: return "truncate";
3436 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00003437 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003438 case ISD::FP_EXTEND: return "fp_extend";
3439
3440 case ISD::SINT_TO_FP: return "sint_to_fp";
3441 case ISD::UINT_TO_FP: return "uint_to_fp";
3442 case ISD::FP_TO_SINT: return "fp_to_sint";
3443 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003444 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003445
3446 // Control flow instructions
3447 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003448 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003449 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003450 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003451 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003452 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003453 case ISD::CALLSEQ_START: return "callseq_start";
3454 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003455
3456 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003457 case ISD::LOAD: return "load";
3458 case ISD::STORE: return "store";
3459 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00003460 case ISD::VAARG: return "vaarg";
3461 case ISD::VACOPY: return "vacopy";
3462 case ISD::VAEND: return "vaend";
3463 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003464 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003465 case ISD::EXTRACT_ELEMENT: return "extract_element";
3466 case ISD::BUILD_PAIR: return "build_pair";
3467 case ISD::STACKSAVE: return "stacksave";
3468 case ISD::STACKRESTORE: return "stackrestore";
3469
3470 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003471 case ISD::MEMSET: return "memset";
3472 case ISD::MEMCPY: return "memcpy";
3473 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003474
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003475 // Bit manipulation
3476 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003477 case ISD::CTPOP: return "ctpop";
3478 case ISD::CTTZ: return "cttz";
3479 case ISD::CTLZ: return "ctlz";
3480
Chris Lattner36ce6912005-11-29 06:21:05 +00003481 // Debug info
3482 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003483 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003484
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003485 case ISD::CONDCODE:
3486 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003487 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003488 case ISD::SETOEQ: return "setoeq";
3489 case ISD::SETOGT: return "setogt";
3490 case ISD::SETOGE: return "setoge";
3491 case ISD::SETOLT: return "setolt";
3492 case ISD::SETOLE: return "setole";
3493 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003494
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003495 case ISD::SETO: return "seto";
3496 case ISD::SETUO: return "setuo";
3497 case ISD::SETUEQ: return "setue";
3498 case ISD::SETUGT: return "setugt";
3499 case ISD::SETUGE: return "setuge";
3500 case ISD::SETULT: return "setult";
3501 case ISD::SETULE: return "setule";
3502 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003503
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003504 case ISD::SETEQ: return "seteq";
3505 case ISD::SETGT: return "setgt";
3506 case ISD::SETGE: return "setge";
3507 case ISD::SETLT: return "setlt";
3508 case ISD::SETLE: return "setle";
3509 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003510 }
3511 }
3512}
Chris Lattnerc3aae252005-01-07 07:46:32 +00003513
Evan Cheng144d8f02006-11-09 17:55:04 +00003514const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003515 switch (AM) {
3516 default:
3517 return "";
3518 case ISD::PRE_INC:
3519 return "<pre-inc>";
3520 case ISD::PRE_DEC:
3521 return "<pre-dec>";
3522 case ISD::POST_INC:
3523 return "<post-inc>";
3524 case ISD::POST_DEC:
3525 return "<post-dec>";
3526 }
3527}
3528
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003529void SDNode::dump() const { dump(0); }
3530void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00003531 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003532
3533 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003534 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00003535 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00003536 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00003537 else
Bill Wendling832171c2006-12-07 20:04:42 +00003538 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00003539 }
Bill Wendling832171c2006-12-07 20:04:42 +00003540 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003541
Bill Wendling832171c2006-12-07 20:04:42 +00003542 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003543 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003544 if (i) cerr << ", ";
3545 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003546 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00003547 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003548 }
3549
3550 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003551 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003552 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003553 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003554 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00003555 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00003556 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00003557 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00003558 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00003559 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003560 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00003561 else
Bill Wendling832171c2006-12-07 20:04:42 +00003562 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003563 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003564 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00003565 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003566 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003567 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00003568 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00003569 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00003570 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00003571 else
Bill Wendling832171c2006-12-07 20:04:42 +00003572 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00003573 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003574 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00003575 else
Bill Wendling832171c2006-12-07 20:04:42 +00003576 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003577 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003578 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003579 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3580 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00003581 cerr << LBB->getName() << " ";
3582 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00003583 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00003584 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00003585 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00003586 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00003587 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00003588 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003589 } else if (const ExternalSymbolSDNode *ES =
3590 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003591 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003592 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3593 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00003594 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003595 else
Bill Wendling832171c2006-12-07 20:04:42 +00003596 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00003597 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00003598 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003599 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3600 bool doExt = true;
3601 switch (LD->getExtensionType()) {
3602 default: doExt = false; break;
3603 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003604 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003605 break;
3606 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003607 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003608 break;
3609 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003610 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003611 break;
3612 }
3613 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003614 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003615
Evan Cheng144d8f02006-11-09 17:55:04 +00003616 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003617 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003618 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00003619 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3620 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00003621 cerr << " <trunc "
3622 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00003623
Evan Cheng144d8f02006-11-09 17:55:04 +00003624 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003625 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003626 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003627 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003628}
3629
Chris Lattnerde202b32005-11-09 23:47:37 +00003630static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003631 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3632 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003633 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003634 else
Bill Wendling832171c2006-12-07 20:04:42 +00003635 cerr << "\n" << std::string(indent+2, ' ')
3636 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003637
Chris Lattnerea946cd2005-01-09 20:38:33 +00003638
Bill Wendling832171c2006-12-07 20:04:42 +00003639 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003640 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003641}
3642
Chris Lattnerc3aae252005-01-07 07:46:32 +00003643void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00003644 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00003645 std::vector<const SDNode*> Nodes;
3646 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3647 I != E; ++I)
3648 Nodes.push_back(I);
3649
Chris Lattner49d24712005-01-09 20:26:36 +00003650 std::sort(Nodes.begin(), Nodes.end());
3651
3652 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003653 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003654 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003655 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003656
Jim Laskey26f7fa72006-10-17 19:33:52 +00003657 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003658
Bill Wendling832171c2006-12-07 20:04:42 +00003659 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003660}
3661
Evan Chengd6594ae2006-09-12 21:00:35 +00003662const Type *ConstantPoolSDNode::getType() const {
3663 if (isMachineConstantPoolEntry())
3664 return Val.MachineCPVal->getType();
3665 return Val.ConstVal->getType();
3666}