blob: dddb1a957f75e86d2cbda93ed86749d6a6e49c21 [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()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000515 N->dump();
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;
Chris Lattner63e3f142007-02-04 07:28:00 +0000600 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), 0, 0);
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
620 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000621 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000622}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000623
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000624
Chris Lattner78ec3112003-08-11 14:57:33 +0000625SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000626 while (!AllNodes.empty()) {
627 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000628 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000629 if (N->OperandsNeedDelete)
630 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000631 N->OperandList = 0;
632 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000633 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000634 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000635}
636
Chris Lattner0f2287b2005-04-13 02:38:18 +0000637SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000638 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000639 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000640 return getNode(ISD::AND, Op.getValueType(), Op,
641 getConstant(Imm, Op.getValueType()));
642}
643
Chris Lattner36ce6912005-11-29 06:21:05 +0000644SDOperand SelectionDAG::getString(const std::string &Val) {
645 StringSDNode *&N = StringNodes[Val];
646 if (!N) {
647 N = new StringSDNode(Val);
648 AllNodes.push_back(N);
649 }
650 return SDOperand(N, 0);
651}
652
Chris Lattner61b09412006-08-11 21:01:22 +0000653SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000654 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000655 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000656
Chris Lattner61b09412006-08-11 21:01:22 +0000657 // Mask out any bits that are not valid for this constant.
658 Val &= MVT::getIntVTBitMask(VT);
659
660 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000661 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000662 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000663 ID.AddInteger(Val);
664 void *IP = 0;
665 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
666 return SDOperand(E, 0);
667 SDNode *N = new ConstantSDNode(isT, Val, VT);
668 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000669 AllNodes.push_back(N);
670 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000671}
672
Chris Lattner61b09412006-08-11 21:01:22 +0000673
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000674SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
675 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000676 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
677 if (VT == MVT::f32)
678 Val = (float)Val; // Mask out extra precision.
679
Chris Lattnerd8658612005-02-17 20:17:32 +0000680 // Do the map lookup using the actual bit pattern for the floating point
681 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
682 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000683 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000684 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000685 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000686 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000687 void *IP = 0;
688 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
689 return SDOperand(E, 0);
690 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
691 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000692 AllNodes.push_back(N);
693 return SDOperand(N, 0);
694}
695
Chris Lattnerc3aae252005-01-07 07:46:32 +0000696SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000697 MVT::ValueType VT, int Offset,
698 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000699 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
700 unsigned Opc;
701 if (GVar && GVar->isThreadLocal())
702 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
703 else
704 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000705 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000706 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000707 ID.AddPointer(GV);
708 ID.AddInteger(Offset);
709 void *IP = 0;
710 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
711 return SDOperand(E, 0);
712 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
713 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000714 AllNodes.push_back(N);
715 return SDOperand(N, 0);
716}
717
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000718SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
719 bool isTarget) {
720 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000721 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000722 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000723 ID.AddInteger(FI);
724 void *IP = 0;
725 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
726 return SDOperand(E, 0);
727 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
728 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000729 AllNodes.push_back(N);
730 return SDOperand(N, 0);
731}
732
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000733SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
734 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000735 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000736 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000737 ID.AddInteger(JTI);
738 void *IP = 0;
739 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
740 return SDOperand(E, 0);
741 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
742 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000743 AllNodes.push_back(N);
744 return SDOperand(N, 0);
745}
746
Evan Chengb8973bd2006-01-31 22:23:14 +0000747SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000748 unsigned Alignment, int Offset,
749 bool isTarget) {
750 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000751 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000752 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000753 ID.AddInteger(Alignment);
754 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000755 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000756 void *IP = 0;
757 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
758 return SDOperand(E, 0);
759 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
760 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000761 AllNodes.push_back(N);
762 return SDOperand(N, 0);
763}
764
Chris Lattnerc3aae252005-01-07 07:46:32 +0000765
Evan Chengd6594ae2006-09-12 21:00:35 +0000766SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
767 MVT::ValueType VT,
768 unsigned Alignment, int Offset,
769 bool isTarget) {
770 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000771 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000772 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000773 ID.AddInteger(Alignment);
774 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000775 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000776 void *IP = 0;
777 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
778 return SDOperand(E, 0);
779 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
780 CSEMap.InsertNode(N, IP);
781 AllNodes.push_back(N);
782 return SDOperand(N, 0);
783}
784
785
Chris Lattnerc3aae252005-01-07 07:46:32 +0000786SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000787 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000788 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000789 ID.AddPointer(MBB);
790 void *IP = 0;
791 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
792 return SDOperand(E, 0);
793 SDNode *N = new BasicBlockSDNode(MBB);
794 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000795 AllNodes.push_back(N);
796 return SDOperand(N, 0);
797}
798
Chris Lattner15e4b012005-07-10 00:07:11 +0000799SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
800 if ((unsigned)VT >= ValueTypeNodes.size())
801 ValueTypeNodes.resize(VT+1);
802 if (ValueTypeNodes[VT] == 0) {
803 ValueTypeNodes[VT] = new VTSDNode(VT);
804 AllNodes.push_back(ValueTypeNodes[VT]);
805 }
806
807 return SDOperand(ValueTypeNodes[VT], 0);
808}
809
Chris Lattnerc3aae252005-01-07 07:46:32 +0000810SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
811 SDNode *&N = ExternalSymbols[Sym];
812 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000813 N = new ExternalSymbolSDNode(false, Sym, VT);
814 AllNodes.push_back(N);
815 return SDOperand(N, 0);
816}
817
Chris Lattner809ec112006-01-28 10:09:25 +0000818SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
819 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000820 SDNode *&N = TargetExternalSymbols[Sym];
821 if (N) return SDOperand(N, 0);
822 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000823 AllNodes.push_back(N);
824 return SDOperand(N, 0);
825}
826
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000827SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
828 if ((unsigned)Cond >= CondCodeNodes.size())
829 CondCodeNodes.resize(Cond+1);
830
Chris Lattner079a27a2005-08-09 20:40:02 +0000831 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000832 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000833 AllNodes.push_back(CondCodeNodes[Cond]);
834 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000835 return SDOperand(CondCodeNodes[Cond], 0);
836}
837
Chris Lattner0fdd7682005-08-30 22:38:38 +0000838SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000839 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000840 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000841 ID.AddInteger(RegNo);
842 void *IP = 0;
843 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
844 return SDOperand(E, 0);
845 SDNode *N = new RegisterSDNode(RegNo, VT);
846 CSEMap.InsertNode(N, IP);
847 AllNodes.push_back(N);
848 return SDOperand(N, 0);
849}
850
851SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
852 assert((!V || isa<PointerType>(V->getType())) &&
853 "SrcValue is not a pointer?");
854
Jim Laskey583bd472006-10-27 23:46:08 +0000855 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000856 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000857 ID.AddPointer(V);
858 ID.AddInteger(Offset);
859 void *IP = 0;
860 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
861 return SDOperand(E, 0);
862 SDNode *N = new SrcValueSDNode(V, Offset);
863 CSEMap.InsertNode(N, IP);
864 AllNodes.push_back(N);
865 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000866}
867
Chris Lattner51dabfb2006-10-14 00:41:01 +0000868SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
869 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000870 // These setcc operations always fold.
871 switch (Cond) {
872 default: break;
873 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000874 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000875 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000876 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000877
878 case ISD::SETOEQ:
879 case ISD::SETOGT:
880 case ISD::SETOGE:
881 case ISD::SETOLT:
882 case ISD::SETOLE:
883 case ISD::SETONE:
884 case ISD::SETO:
885 case ISD::SETUO:
886 case ISD::SETUEQ:
887 case ISD::SETUNE:
888 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
889 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000890 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000891
Chris Lattner67255a12005-04-07 18:14:58 +0000892 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
893 uint64_t C2 = N2C->getValue();
894 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
895 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000896
Chris Lattnerc3aae252005-01-07 07:46:32 +0000897 // Sign extend the operands if required
898 if (ISD::isSignedIntSetCC(Cond)) {
899 C1 = N1C->getSignExtended();
900 C2 = N2C->getSignExtended();
901 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000902
Chris Lattnerc3aae252005-01-07 07:46:32 +0000903 switch (Cond) {
904 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000905 case ISD::SETEQ: return getConstant(C1 == C2, VT);
906 case ISD::SETNE: return getConstant(C1 != C2, VT);
907 case ISD::SETULT: return getConstant(C1 < C2, VT);
908 case ISD::SETUGT: return getConstant(C1 > C2, VT);
909 case ISD::SETULE: return getConstant(C1 <= C2, VT);
910 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
911 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
912 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
913 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
914 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000915 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000916 }
Chris Lattner67255a12005-04-07 18:14:58 +0000917 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000918 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
919 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
920 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000921
Chris Lattnerc3aae252005-01-07 07:46:32 +0000922 switch (Cond) {
923 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000924 case ISD::SETEQ: return getConstant(C1 == C2, VT);
925 case ISD::SETNE: return getConstant(C1 != C2, VT);
926 case ISD::SETLT: return getConstant(C1 < C2, VT);
927 case ISD::SETGT: return getConstant(C1 > C2, VT);
928 case ISD::SETLE: return getConstant(C1 <= C2, VT);
929 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000930 }
931 } else {
932 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000933 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000935
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000936 // Could not fold it.
937 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000938}
939
Chris Lattner51dabfb2006-10-14 00:41:01 +0000940
Chris Lattnerc3aae252005-01-07 07:46:32 +0000941/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000942///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000943SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000944 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000945 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +0000946 void *IP = 0;
947 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
948 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +0000949 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000950 CSEMap.InsertNode(N, IP);
951
952 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000953 return SDOperand(N, 0);
954}
955
Chris Lattnerc3aae252005-01-07 07:46:32 +0000956SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
957 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000958 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000959 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000960 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
961 uint64_t Val = C->getValue();
962 switch (Opcode) {
963 default: break;
964 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +0000965 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +0000966 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
967 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +0000968 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
969 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000970 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000971 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +0000972 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000973 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +0000974 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000975 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000976 case ISD::BSWAP:
977 switch(VT) {
978 default: assert(0 && "Invalid bswap!"); break;
979 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
980 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
981 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
982 }
983 break;
984 case ISD::CTPOP:
985 switch(VT) {
986 default: assert(0 && "Invalid ctpop!"); break;
987 case MVT::i1: return getConstant(Val != 0, VT);
988 case MVT::i8:
989 Tmp1 = (unsigned)Val & 0xFF;
990 return getConstant(CountPopulation_32(Tmp1), VT);
991 case MVT::i16:
992 Tmp1 = (unsigned)Val & 0xFFFF;
993 return getConstant(CountPopulation_32(Tmp1), VT);
994 case MVT::i32:
995 return getConstant(CountPopulation_32((unsigned)Val), VT);
996 case MVT::i64:
997 return getConstant(CountPopulation_64(Val), VT);
998 }
999 case ISD::CTLZ:
1000 switch(VT) {
1001 default: assert(0 && "Invalid ctlz!"); break;
1002 case MVT::i1: return getConstant(Val == 0, VT);
1003 case MVT::i8:
1004 Tmp1 = (unsigned)Val & 0xFF;
1005 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1006 case MVT::i16:
1007 Tmp1 = (unsigned)Val & 0xFFFF;
1008 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1009 case MVT::i32:
1010 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1011 case MVT::i64:
1012 return getConstant(CountLeadingZeros_64(Val), VT);
1013 }
1014 case ISD::CTTZ:
1015 switch(VT) {
1016 default: assert(0 && "Invalid cttz!"); break;
1017 case MVT::i1: return getConstant(Val == 0, VT);
1018 case MVT::i8:
1019 Tmp1 = (unsigned)Val | 0x100;
1020 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1021 case MVT::i16:
1022 Tmp1 = (unsigned)Val | 0x10000;
1023 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1024 case MVT::i32:
1025 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1026 case MVT::i64:
1027 return getConstant(CountTrailingZeros_64(Val), VT);
1028 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001029 }
1030 }
1031
Chris Lattner94683772005-12-23 05:30:37 +00001032 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001033 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1034 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001035 case ISD::FNEG:
1036 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001037 case ISD::FABS:
1038 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001039 case ISD::FP_ROUND:
1040 case ISD::FP_EXTEND:
1041 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001042 case ISD::FP_TO_SINT:
1043 return getConstant((int64_t)C->getValue(), VT);
1044 case ISD::FP_TO_UINT:
1045 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001046 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001047 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001048 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001049 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001050 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001051 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001052 }
1053
1054 unsigned OpOpcode = Operand.Val->getOpcode();
1055 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001056 case ISD::TokenFactor:
1057 return Operand; // Factor of one node? No factor.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001058 case ISD::FP_ROUND:
1059 case ISD::FP_EXTEND:
1060 assert(MVT::isFloatingPoint(VT) &&
1061 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1062 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001063 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001064 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1065 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001066 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001067 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001068 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1069 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1070 break;
1071 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001072 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1073 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001074 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001075 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001076 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001077 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001078 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001079 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001080 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1081 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001082 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001083 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001084 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1085 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1086 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1087 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001088 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001089 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1090 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001091 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001092 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001093 if (OpOpcode == ISD::TRUNCATE)
1094 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001095 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1096 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001097 // If the source is smaller than the dest, we still need an extend.
1098 if (Operand.Val->getOperand(0).getValueType() < VT)
1099 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1100 else if (Operand.Val->getOperand(0).getValueType() > VT)
1101 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1102 else
1103 return Operand.Val->getOperand(0);
1104 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001105 break;
Chris Lattner35481892005-12-23 00:16:34 +00001106 case ISD::BIT_CONVERT:
1107 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001108 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001109 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001110 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001111 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1112 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001113 if (OpOpcode == ISD::UNDEF)
1114 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001115 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001116 case ISD::SCALAR_TO_VECTOR:
1117 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1118 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1119 "Illegal SCALAR_TO_VECTOR node!");
1120 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001121 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001122 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1123 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001124 Operand.Val->getOperand(0));
1125 if (OpOpcode == ISD::FNEG) // --X -> X
1126 return Operand.Val->getOperand(0);
1127 break;
1128 case ISD::FABS:
1129 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1130 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1131 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001132 }
1133
Chris Lattner43247a12005-08-25 19:12:10 +00001134 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001135 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001136 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001137 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001138 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001139 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001140 void *IP = 0;
1141 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1142 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001143 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001144 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001145 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001146 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001147 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001148 AllNodes.push_back(N);
1149 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001150}
1151
Chris Lattner36019aa2005-04-18 03:48:41 +00001152
1153
Chris Lattnerc3aae252005-01-07 07:46:32 +00001154SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1155 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001156#ifndef NDEBUG
1157 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001158 case ISD::TokenFactor:
1159 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1160 N2.getValueType() == MVT::Other && "Invalid token factor!");
1161 break;
Chris Lattner76365122005-01-16 02:23:22 +00001162 case ISD::AND:
1163 case ISD::OR:
1164 case ISD::XOR:
1165 case ISD::UDIV:
1166 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001167 case ISD::MULHU:
1168 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001169 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1170 // fall through
1171 case ISD::ADD:
1172 case ISD::SUB:
1173 case ISD::MUL:
1174 case ISD::SDIV:
1175 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001176 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1177 // fall through.
1178 case ISD::FADD:
1179 case ISD::FSUB:
1180 case ISD::FMUL:
1181 case ISD::FDIV:
1182 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001183 assert(N1.getValueType() == N2.getValueType() &&
1184 N1.getValueType() == VT && "Binary operator types must match!");
1185 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001186 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1187 assert(N1.getValueType() == VT &&
1188 MVT::isFloatingPoint(N1.getValueType()) &&
1189 MVT::isFloatingPoint(N2.getValueType()) &&
1190 "Invalid FCOPYSIGN!");
1191 break;
Chris Lattner76365122005-01-16 02:23:22 +00001192 case ISD::SHL:
1193 case ISD::SRA:
1194 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001195 case ISD::ROTL:
1196 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001197 assert(VT == N1.getValueType() &&
1198 "Shift operators return type must be the same as their first arg");
1199 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001200 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001201 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001202 case ISD::FP_ROUND_INREG: {
1203 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1204 assert(VT == N1.getValueType() && "Not an inreg round!");
1205 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1206 "Cannot FP_ROUND_INREG integer types");
1207 assert(EVT <= VT && "Not rounding down!");
1208 break;
1209 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001210 case ISD::AssertSext:
1211 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001212 case ISD::SIGN_EXTEND_INREG: {
1213 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1214 assert(VT == N1.getValueType() && "Not an inreg extend!");
1215 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1216 "Cannot *_EXTEND_INREG FP types");
1217 assert(EVT <= VT && "Not extending!");
1218 }
1219
Chris Lattner76365122005-01-16 02:23:22 +00001220 default: break;
1221 }
1222#endif
1223
Chris Lattnerc3aae252005-01-07 07:46:32 +00001224 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1225 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1226 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001227 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1228 int64_t Val = N1C->getValue();
1229 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1230 Val <<= 64-FromBits;
1231 Val >>= 64-FromBits;
1232 return getConstant(Val, VT);
1233 }
1234
Chris Lattnerc3aae252005-01-07 07:46:32 +00001235 if (N2C) {
1236 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1237 switch (Opcode) {
1238 case ISD::ADD: return getConstant(C1 + C2, VT);
1239 case ISD::SUB: return getConstant(C1 - C2, VT);
1240 case ISD::MUL: return getConstant(C1 * C2, VT);
1241 case ISD::UDIV:
1242 if (C2) return getConstant(C1 / C2, VT);
1243 break;
1244 case ISD::UREM :
1245 if (C2) return getConstant(C1 % C2, VT);
1246 break;
1247 case ISD::SDIV :
1248 if (C2) return getConstant(N1C->getSignExtended() /
1249 N2C->getSignExtended(), VT);
1250 break;
1251 case ISD::SREM :
1252 if (C2) return getConstant(N1C->getSignExtended() %
1253 N2C->getSignExtended(), VT);
1254 break;
1255 case ISD::AND : return getConstant(C1 & C2, VT);
1256 case ISD::OR : return getConstant(C1 | C2, VT);
1257 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001258 case ISD::SHL : return getConstant(C1 << C2, VT);
1259 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001260 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001261 case ISD::ROTL :
1262 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1263 VT);
1264 case ISD::ROTR :
1265 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1266 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001267 default: break;
1268 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001269 } else { // Cannonicalize constant to RHS if commutative
1270 if (isCommutativeBinOp(Opcode)) {
1271 std::swap(N1C, N2C);
1272 std::swap(N1, N2);
1273 }
1274 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001275 }
1276
1277 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1278 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001279 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001280 if (N2CFP) {
1281 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1282 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001283 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1284 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1285 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1286 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001287 if (C2) return getConstantFP(C1 / C2, VT);
1288 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001289 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001290 if (C2) return getConstantFP(fmod(C1, C2), VT);
1291 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001292 case ISD::FCOPYSIGN: {
1293 union {
1294 double F;
1295 uint64_t I;
1296 } u1;
Chris Lattner3c232c82006-03-05 23:57:58 +00001297 u1.F = C1;
Chris Lattner964dd862007-04-25 00:00:45 +00001298 if (int64_t(DoubleToBits(C2)) < 0) // Sign bit of RHS set?
Chris Lattner3c232c82006-03-05 23:57:58 +00001299 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1300 else
1301 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1302 return getConstantFP(u1.F, VT);
1303 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001304 default: break;
1305 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001306 } else { // Cannonicalize constant to RHS if commutative
1307 if (isCommutativeBinOp(Opcode)) {
1308 std::swap(N1CFP, N2CFP);
1309 std::swap(N1, N2);
1310 }
1311 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001312 }
Chris Lattner62b57722006-04-20 05:39:12 +00001313
1314 // Canonicalize an UNDEF to the RHS, even over a constant.
1315 if (N1.getOpcode() == ISD::UNDEF) {
1316 if (isCommutativeBinOp(Opcode)) {
1317 std::swap(N1, N2);
1318 } else {
1319 switch (Opcode) {
1320 case ISD::FP_ROUND_INREG:
1321 case ISD::SIGN_EXTEND_INREG:
1322 case ISD::SUB:
1323 case ISD::FSUB:
1324 case ISD::FDIV:
1325 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001326 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001327 return N1; // fold op(undef, arg2) -> undef
1328 case ISD::UDIV:
1329 case ISD::SDIV:
1330 case ISD::UREM:
1331 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001332 case ISD::SRL:
1333 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001334 if (!MVT::isVector(VT))
1335 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1336 // For vectors, we can't easily build an all zero vector, just return
1337 // the LHS.
1338 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00001339 }
1340 }
1341 }
1342
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001343 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001344 if (N2.getOpcode() == ISD::UNDEF) {
1345 switch (Opcode) {
1346 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001347 case ISD::ADDC:
1348 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001349 case ISD::SUB:
1350 case ISD::FADD:
1351 case ISD::FSUB:
1352 case ISD::FMUL:
1353 case ISD::FDIV:
1354 case ISD::FREM:
1355 case ISD::UDIV:
1356 case ISD::SDIV:
1357 case ISD::UREM:
1358 case ISD::SREM:
1359 case ISD::XOR:
1360 return N2; // fold op(arg1, undef) -> undef
1361 case ISD::MUL:
1362 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001363 case ISD::SRL:
1364 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001365 if (!MVT::isVector(VT))
1366 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1367 // For vectors, we can't easily build an all zero vector, just return
1368 // the LHS.
1369 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001370 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00001371 if (!MVT::isVector(VT))
1372 return getConstant(MVT::getIntVTBitMask(VT), VT);
1373 // For vectors, we can't easily build an all one vector, just return
1374 // the LHS.
1375 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00001376 case ISD::SRA:
1377 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001378 }
1379 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001380
Chris Lattner51dabfb2006-10-14 00:41:01 +00001381 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001382 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001383 case ISD::TokenFactor:
1384 // Fold trivial token factors.
1385 if (N1.getOpcode() == ISD::EntryToken) return N2;
1386 if (N2.getOpcode() == ISD::EntryToken) return N1;
1387 break;
1388
Chris Lattner51dabfb2006-10-14 00:41:01 +00001389 case ISD::AND:
1390 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1391 // worth handling here.
1392 if (N2C && N2C->getValue() == 0)
1393 return N2;
1394 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001395 case ISD::OR:
1396 case ISD::XOR:
1397 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1398 // worth handling here.
1399 if (N2C && N2C->getValue() == 0)
1400 return N1;
1401 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001402 case ISD::FP_ROUND_INREG:
1403 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1404 break;
1405 case ISD::SIGN_EXTEND_INREG: {
1406 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1407 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001408 break;
1409 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001410 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001411 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1412
Chris Lattner5c6621c2006-09-19 04:51:23 +00001413 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1414 // 64-bit integers into 32-bit parts. Instead of building the extract of
1415 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001416 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001417 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001418
1419 // EXTRACT_ELEMENT of a constant int is also very common.
1420 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1421 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1422 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001423 }
1424 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001425
Nate Begemaneea805e2005-04-13 21:23:31 +00001426 // FIXME: figure out how to safely handle things like
1427 // int foo(int x) { return 1 << (x & 255); }
1428 // int bar() { return foo(256); }
1429#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001430 case ISD::SHL:
1431 case ISD::SRL:
1432 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001433 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001434 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001435 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001436 else if (N2.getOpcode() == ISD::AND)
1437 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1438 // If the and is only masking out bits that cannot effect the shift,
1439 // eliminate the and.
1440 unsigned NumBits = MVT::getSizeInBits(VT);
1441 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1442 return getNode(Opcode, VT, N1, N2.getOperand(0));
1443 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001444 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001445#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001446 }
1447
Chris Lattner27e9b412005-05-11 18:57:39 +00001448 // Memoize this node if possible.
1449 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001450 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001451 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001452 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00001453 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001454 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00001455 void *IP = 0;
1456 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1457 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001458 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00001459 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001460 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001461 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00001462 }
1463
Chris Lattnerc3aae252005-01-07 07:46:32 +00001464 AllNodes.push_back(N);
1465 return SDOperand(N, 0);
1466}
1467
Chris Lattnerc3aae252005-01-07 07:46:32 +00001468SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1469 SDOperand N1, SDOperand N2, SDOperand N3) {
1470 // Perform various simplifications.
1471 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1472 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001473 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001474 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001475 // Use FoldSetCC to simplify SETCC's.
1476 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001477 if (Simp.Val) return Simp;
1478 break;
1479 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001480 case ISD::SELECT:
1481 if (N1C)
1482 if (N1C->getValue())
1483 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001484 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001485 return N3; // select false, X, Y -> Y
1486
1487 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001488 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001489 case ISD::BRCOND:
1490 if (N2C)
1491 if (N2C->getValue()) // Unconditional branch
1492 return getNode(ISD::BR, MVT::Other, N1, N3);
1493 else
1494 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001495 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001496 case ISD::VECTOR_SHUFFLE:
1497 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1498 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1499 N3.getOpcode() == ISD::BUILD_VECTOR &&
1500 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1501 "Illegal VECTOR_SHUFFLE node!");
1502 break;
Chris Lattner4829b1c2007-04-12 05:58:43 +00001503 case ISD::VBIT_CONVERT:
1504 // Fold vbit_convert nodes from a type to themselves.
1505 if (N1.getValueType() == MVT::Vector) {
1506 assert(isa<ConstantSDNode>(*(N1.Val->op_end()-2)) &&
1507 isa<VTSDNode>(*(N1.Val->op_end()-1)) && "Malformed vector input!");
1508 if (*(N1.Val->op_end()-2) == N2 && *(N1.Val->op_end()-1) == N3)
1509 return N1;
1510 }
1511 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001512 }
1513
Chris Lattner43247a12005-08-25 19:12:10 +00001514 // Memoize node if it doesn't produce a flag.
1515 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001516 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001517 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001518 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00001519 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001520 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00001521 void *IP = 0;
1522 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1523 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001524 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00001525 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001526 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001527 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00001528 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001529 AllNodes.push_back(N);
1530 return SDOperand(N, 0);
1531}
1532
1533SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001534 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001535 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001536 SDOperand Ops[] = { N1, N2, N3, N4 };
1537 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001538}
1539
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001540SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1541 SDOperand N1, SDOperand N2, SDOperand N3,
1542 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001543 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1544 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001545}
1546
Evan Cheng7038daf2005-12-10 00:37:58 +00001547SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1548 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001549 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001550 bool isVolatile, unsigned Alignment) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00001551 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001552 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001553 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001554 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001555 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001556 ID.AddInteger(ISD::UNINDEXED);
1557 ID.AddInteger(ISD::NON_EXTLOAD);
1558 ID.AddInteger(VT);
1559 ID.AddPointer(SV);
1560 ID.AddInteger(SVOffset);
1561 ID.AddInteger(Alignment);
1562 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001563 void *IP = 0;
1564 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1565 return SDOperand(E, 0);
Christopher Lamb95c218a2007-04-22 23:15:30 +00001566 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1567 const Type *Ty = 0;
1568 if (VT != MVT::Vector && VT != MVT::iPTR) {
1569 Ty = MVT::getTypeForValueType(VT);
1570 } else if (SV) {
1571 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
1572 assert(PT && "Value for load must be a pointer");
1573 Ty = PT->getElementType();
1574 }
1575 assert(Ty && "Could not get type information for load");
1576 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1577 }
Chris Lattnerab4ed592007-02-04 07:37:24 +00001578 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001579 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1580 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001581 CSEMap.InsertNode(N, IP);
1582 AllNodes.push_back(N);
1583 return SDOperand(N, 0);
1584}
1585
1586SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00001587 SDOperand Chain, SDOperand Ptr,
1588 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00001589 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001590 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00001591 // If they are asking for an extending load from/to the same thing, return a
1592 // normal load.
1593 if (VT == EVT)
1594 ExtType = ISD::NON_EXTLOAD;
1595
1596 if (MVT::isVector(VT))
1597 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1598 else
1599 assert(EVT < VT && "Should only be an extending load, not truncating!");
1600 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1601 "Cannot sign/zero extend a FP/Vector load!");
1602 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1603 "Cannot convert from FP to Int or Int -> FP!");
1604
Evan Cheng466685d2006-10-09 20:57:25 +00001605 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001606 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001607 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001608 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001609 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001610 ID.AddInteger(ISD::UNINDEXED);
1611 ID.AddInteger(ExtType);
1612 ID.AddInteger(EVT);
1613 ID.AddPointer(SV);
1614 ID.AddInteger(SVOffset);
1615 ID.AddInteger(Alignment);
1616 ID.AddInteger(isVolatile);
1617 void *IP = 0;
1618 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1619 return SDOperand(E, 0);
Christopher Lamb95c218a2007-04-22 23:15:30 +00001620 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1621 const Type *Ty = 0;
1622 if (VT != MVT::Vector && VT != MVT::iPTR) {
1623 Ty = MVT::getTypeForValueType(VT);
1624 } else if (SV) {
1625 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
1626 assert(PT && "Value for load must be a pointer");
1627 Ty = PT->getElementType();
1628 }
1629 assert(Ty && "Could not get type information for load");
1630 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1631 }
Chris Lattnerab4ed592007-02-04 07:37:24 +00001632 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001633 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001634 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001635 AllNodes.push_back(N);
1636 return SDOperand(N, 0);
1637}
1638
Evan Cheng144d8f02006-11-09 17:55:04 +00001639SDOperand
1640SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1641 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00001642 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001643 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1644 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001645 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001646 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00001647 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00001648 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001649 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00001650 ID.AddInteger(AM);
1651 ID.AddInteger(LD->getExtensionType());
1652 ID.AddInteger(LD->getLoadedVT());
1653 ID.AddPointer(LD->getSrcValue());
1654 ID.AddInteger(LD->getSrcValueOffset());
1655 ID.AddInteger(LD->getAlignment());
1656 ID.AddInteger(LD->isVolatile());
1657 void *IP = 0;
1658 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1659 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001660 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001661 LD->getExtensionType(), LD->getLoadedVT(),
1662 LD->getSrcValue(), LD->getSrcValueOffset(),
1663 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00001664 CSEMap.InsertNode(N, IP);
1665 AllNodes.push_back(N);
1666 return SDOperand(N, 0);
1667}
1668
Evan Cheng7038daf2005-12-10 00:37:58 +00001669SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1670 SDOperand Chain, SDOperand Ptr,
1671 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001672 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1673 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001674 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001675}
1676
Jeff Cohend41b30d2006-11-05 19:31:28 +00001677SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001678 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001679 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001680 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001681
Evan Chengad071e12006-10-05 22:57:11 +00001682 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001683 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001684 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001685 FoldingSetNodeID ID;
1686 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001687 ID.AddInteger(ISD::UNINDEXED);
1688 ID.AddInteger(false);
1689 ID.AddInteger(VT);
1690 ID.AddPointer(SV);
1691 ID.AddInteger(SVOffset);
1692 ID.AddInteger(Alignment);
1693 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001694 void *IP = 0;
1695 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1696 return SDOperand(E, 0);
Christopher Lamb95c218a2007-04-22 23:15:30 +00001697 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1698 const Type *Ty = 0;
1699 if (VT != MVT::Vector && VT != MVT::iPTR) {
1700 Ty = MVT::getTypeForValueType(VT);
1701 } else if (SV) {
1702 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
1703 assert(PT && "Value for store must be a pointer");
1704 Ty = PT->getElementType();
1705 }
1706 assert(Ty && "Could not get type information for store");
1707 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1708 }
Chris Lattnerab4ed592007-02-04 07:37:24 +00001709 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001710 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001711 CSEMap.InsertNode(N, IP);
1712 AllNodes.push_back(N);
1713 return SDOperand(N, 0);
1714}
1715
Jeff Cohend41b30d2006-11-05 19:31:28 +00001716SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001717 SDOperand Ptr, const Value *SV,
1718 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00001719 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001720 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001721 bool isTrunc = VT != SVT;
1722
1723 assert(VT > SVT && "Not a truncation?");
1724 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1725 "Can't do FP-INT conversion!");
1726
Evan Cheng8b2794a2006-10-13 21:14:26 +00001727 SDVTList VTs = getVTList(MVT::Other);
1728 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001729 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001730 FoldingSetNodeID ID;
1731 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001732 ID.AddInteger(ISD::UNINDEXED);
1733 ID.AddInteger(isTrunc);
1734 ID.AddInteger(SVT);
1735 ID.AddPointer(SV);
1736 ID.AddInteger(SVOffset);
1737 ID.AddInteger(Alignment);
1738 ID.AddInteger(isVolatile);
1739 void *IP = 0;
1740 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1741 return SDOperand(E, 0);
Christopher Lamb95c218a2007-04-22 23:15:30 +00001742 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1743 const Type *Ty = 0;
1744 if (VT != MVT::Vector && VT != MVT::iPTR) {
1745 Ty = MVT::getTypeForValueType(VT);
1746 } else if (SV) {
1747 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
1748 assert(PT && "Value for store must be a pointer");
1749 Ty = PT->getElementType();
1750 }
1751 assert(Ty && "Could not get type information for store");
1752 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1753 }
Chris Lattnerab4ed592007-02-04 07:37:24 +00001754 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001755 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001756 CSEMap.InsertNode(N, IP);
1757 AllNodes.push_back(N);
1758 return SDOperand(N, 0);
1759}
1760
Evan Cheng144d8f02006-11-09 17:55:04 +00001761SDOperand
1762SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1763 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00001764 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1765 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1766 "Store is already a indexed store!");
1767 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1768 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1769 FoldingSetNodeID ID;
1770 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1771 ID.AddInteger(AM);
1772 ID.AddInteger(ST->isTruncatingStore());
1773 ID.AddInteger(ST->getStoredVT());
1774 ID.AddPointer(ST->getSrcValue());
1775 ID.AddInteger(ST->getSrcValueOffset());
1776 ID.AddInteger(ST->getAlignment());
1777 ID.AddInteger(ST->isVolatile());
1778 void *IP = 0;
1779 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1780 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001781 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00001782 ST->isTruncatingStore(), ST->getStoredVT(),
1783 ST->getSrcValue(), ST->getSrcValueOffset(),
1784 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00001785 CSEMap.InsertNode(N, IP);
1786 AllNodes.push_back(N);
1787 return SDOperand(N, 0);
1788}
1789
Nate Begemanacc398c2006-01-25 18:21:52 +00001790SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1791 SDOperand Chain, SDOperand Ptr,
1792 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001793 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001794 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001795}
1796
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001797SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001798 const SDOperand *Ops, unsigned NumOps) {
1799 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001800 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001801 case 1: return getNode(Opcode, VT, Ops[0]);
1802 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1803 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001804 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001805 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001806
Chris Lattneref847df2005-04-09 03:27:28 +00001807 switch (Opcode) {
1808 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001809 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001810 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001811 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1812 "LHS and RHS of condition must have same type!");
1813 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1814 "True and False arms of SelectCC must have same type!");
1815 assert(Ops[2].getValueType() == VT &&
1816 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001817 break;
1818 }
1819 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001820 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001821 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1822 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001823 break;
1824 }
Chris Lattneref847df2005-04-09 03:27:28 +00001825 }
1826
Chris Lattner385328c2005-05-14 07:42:29 +00001827 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001828 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001829 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001830 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001831 FoldingSetNodeID ID;
1832 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001833 void *IP = 0;
1834 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1835 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001836 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001837 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001838 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00001839 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001840 }
Chris Lattneref847df2005-04-09 03:27:28 +00001841 AllNodes.push_back(N);
1842 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001843}
1844
Chris Lattner89c34632005-05-14 06:20:26 +00001845SDOperand SelectionDAG::getNode(unsigned Opcode,
1846 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001847 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001848 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1849 Ops, NumOps);
1850}
1851
1852SDOperand SelectionDAG::getNode(unsigned Opcode,
1853 const MVT::ValueType *VTs, unsigned NumVTs,
1854 const SDOperand *Ops, unsigned NumOps) {
1855 if (NumVTs == 1)
1856 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001857 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1858}
1859
1860SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1861 const SDOperand *Ops, unsigned NumOps) {
1862 if (VTList.NumVTs == 1)
1863 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001864
Chris Lattner5f056bf2005-07-10 01:55:33 +00001865 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001866 // FIXME: figure out how to safely handle things like
1867 // int foo(int x) { return 1 << (x & 255); }
1868 // int bar() { return foo(256); }
1869#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001870 case ISD::SRA_PARTS:
1871 case ISD::SRL_PARTS:
1872 case ISD::SHL_PARTS:
1873 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001874 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001875 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1876 else if (N3.getOpcode() == ISD::AND)
1877 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1878 // If the and is only masking out bits that cannot effect the shift,
1879 // eliminate the and.
1880 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1881 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1882 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1883 }
1884 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001885#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001886 }
Chris Lattner89c34632005-05-14 06:20:26 +00001887
Chris Lattner43247a12005-08-25 19:12:10 +00001888 // Memoize the node unless it returns a flag.
1889 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001890 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001891 FoldingSetNodeID ID;
1892 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001893 void *IP = 0;
1894 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1895 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001896 if (NumOps == 1)
1897 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1898 else if (NumOps == 2)
1899 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1900 else if (NumOps == 3)
1901 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1902 else
1903 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001904 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001905 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001906 if (NumOps == 1)
1907 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1908 else if (NumOps == 2)
1909 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1910 else if (NumOps == 3)
1911 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1912 else
1913 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001914 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001915 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001916 return SDOperand(N, 0);
1917}
1918
Chris Lattner70046e92006-08-15 17:46:01 +00001919SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1920 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001921}
1922
Chris Lattner70046e92006-08-15 17:46:01 +00001923SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001924 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1925 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001926 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001927 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001928 }
1929 std::vector<MVT::ValueType> V;
1930 V.push_back(VT1);
1931 V.push_back(VT2);
1932 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001933 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001934}
Chris Lattner70046e92006-08-15 17:46:01 +00001935SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1936 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001937 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001938 E = VTList.end(); I != E; ++I) {
1939 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1940 (*I)[2] == VT3)
1941 return makeVTList(&(*I)[0], 3);
1942 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001943 std::vector<MVT::ValueType> V;
1944 V.push_back(VT1);
1945 V.push_back(VT2);
1946 V.push_back(VT3);
1947 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001948 return makeVTList(&(*VTList.begin())[0], 3);
1949}
1950
1951SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1952 switch (NumVTs) {
1953 case 0: assert(0 && "Cannot have nodes without results!");
1954 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1955 case 2: return getVTList(VTs[0], VTs[1]);
1956 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1957 default: break;
1958 }
1959
1960 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1961 E = VTList.end(); I != E; ++I) {
1962 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1963
1964 bool NoMatch = false;
1965 for (unsigned i = 2; i != NumVTs; ++i)
1966 if (VTs[i] != (*I)[i]) {
1967 NoMatch = true;
1968 break;
1969 }
1970 if (!NoMatch)
1971 return makeVTList(&*I->begin(), NumVTs);
1972 }
1973
1974 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1975 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001976}
1977
1978
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001979/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1980/// specified operands. If the resultant node already exists in the DAG,
1981/// this does not modify the specified node, instead it returns the node that
1982/// already exists. If the resultant node does not exist in the DAG, the
1983/// input node is returned. As a degenerate case, if you specify the same
1984/// input operands as the node already has, the input node is returned.
1985SDOperand SelectionDAG::
1986UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1987 SDNode *N = InN.Val;
1988 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1989
1990 // Check to see if there is no change.
1991 if (Op == N->getOperand(0)) return InN;
1992
1993 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001994 void *InsertPos = 0;
1995 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1996 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001997
1998 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001999 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002000 RemoveNodeFromCSEMaps(N);
2001
2002 // Now we update the operands.
2003 N->OperandList[0].Val->removeUser(N);
2004 Op.Val->addUser(N);
2005 N->OperandList[0] = Op;
2006
2007 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002008 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002009 return InN;
2010}
2011
2012SDOperand SelectionDAG::
2013UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2014 SDNode *N = InN.Val;
2015 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2016
2017 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002018 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2019 return InN; // No operands changed, just return the input node.
2020
2021 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002022 void *InsertPos = 0;
2023 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2024 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002025
2026 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002027 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002028 RemoveNodeFromCSEMaps(N);
2029
2030 // Now we update the operands.
2031 if (N->OperandList[0] != Op1) {
2032 N->OperandList[0].Val->removeUser(N);
2033 Op1.Val->addUser(N);
2034 N->OperandList[0] = Op1;
2035 }
2036 if (N->OperandList[1] != Op2) {
2037 N->OperandList[1].Val->removeUser(N);
2038 Op2.Val->addUser(N);
2039 N->OperandList[1] = Op2;
2040 }
2041
2042 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002043 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002044 return InN;
2045}
2046
2047SDOperand SelectionDAG::
2048UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002049 SDOperand Ops[] = { Op1, Op2, Op3 };
2050 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002051}
2052
2053SDOperand SelectionDAG::
2054UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2055 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002056 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2057 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002058}
2059
2060SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002061UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2062 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002063 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2064 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002065}
2066
2067
2068SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002069UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002070 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002071 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002072 "Update with wrong number of operands");
2073
2074 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002075 bool AnyChange = false;
2076 for (unsigned i = 0; i != NumOps; ++i) {
2077 if (Ops[i] != N->getOperand(i)) {
2078 AnyChange = true;
2079 break;
2080 }
2081 }
2082
2083 // No operands changed, just return the input node.
2084 if (!AnyChange) return InN;
2085
2086 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002087 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002088 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002089 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002090
2091 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002092 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002093 RemoveNodeFromCSEMaps(N);
2094
2095 // Now we update the operands.
2096 for (unsigned i = 0; i != NumOps; ++i) {
2097 if (N->OperandList[i] != Ops[i]) {
2098 N->OperandList[i].Val->removeUser(N);
2099 Ops[i].Val->addUser(N);
2100 N->OperandList[i] = Ops[i];
2101 }
2102 }
2103
2104 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002105 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002106 return InN;
2107}
2108
2109
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002110/// MorphNodeTo - This frees the operands of the current node, resets the
2111/// opcode, types, and operands to the specified value. This should only be
2112/// used by the SelectionDAG class.
2113void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2114 const SDOperand *Ops, unsigned NumOps) {
2115 NodeType = Opc;
2116 ValueList = L.VTs;
2117 NumValues = L.NumVTs;
2118
2119 // Clear the operands list, updating used nodes to remove this from their
2120 // use list.
2121 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2122 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002123
2124 // If NumOps is larger than the # of operands we currently have, reallocate
2125 // the operand list.
2126 if (NumOps > NumOperands) {
2127 if (OperandsNeedDelete)
2128 delete [] OperandList;
2129 OperandList = new SDOperand[NumOps];
2130 OperandsNeedDelete = true;
2131 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002132
2133 // Assign the new operands.
2134 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002135
2136 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2137 OperandList[i] = Ops[i];
2138 SDNode *N = OperandList[i].Val;
2139 N->Uses.push_back(this);
2140 }
2141}
Chris Lattner149c58c2005-08-16 18:17:10 +00002142
2143/// SelectNodeTo - These are used for target selectors to *mutate* the
2144/// specified node to have the specified return type, Target opcode, and
2145/// operands. Note that target opcodes are stored as
2146/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002147///
2148/// Note that SelectNodeTo returns the resultant node. If there is already a
2149/// node of the specified opcode and operands, it returns that node instead of
2150/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002151SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2152 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002153 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002154 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002155 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002156 void *IP = 0;
2157 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002158 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002159
Chris Lattner7651fa42005-08-24 23:00:29 +00002160 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002161
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002162 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002163
Chris Lattner4a283e92006-08-11 18:38:11 +00002164 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002165 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002166}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002167
Evan Cheng95514ba2006-08-26 08:00:10 +00002168SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2169 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002170 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002171 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002172 SDOperand Ops[] = { Op1 };
2173
Jim Laskey583bd472006-10-27 23:46:08 +00002174 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002175 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002176 void *IP = 0;
2177 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002178 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002179
Chris Lattner149c58c2005-08-16 18:17:10 +00002180 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002181 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002182 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002183 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002184}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002185
Evan Cheng95514ba2006-08-26 08:00:10 +00002186SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2187 MVT::ValueType VT, SDOperand Op1,
2188 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002189 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002190 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002191 SDOperand Ops[] = { Op1, Op2 };
2192
Jim Laskey583bd472006-10-27 23:46:08 +00002193 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002194 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002195 void *IP = 0;
2196 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002197 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002198
Chris Lattner149c58c2005-08-16 18:17:10 +00002199 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002200
Chris Lattner63e3f142007-02-04 07:28:00 +00002201 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002202
Chris Lattnera5682852006-08-07 23:03:03 +00002203 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002204 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002205}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002206
Evan Cheng95514ba2006-08-26 08:00:10 +00002207SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2208 MVT::ValueType VT, SDOperand Op1,
2209 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002210 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002211 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002212 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002213 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002214 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002215 void *IP = 0;
2216 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002217 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002218
Chris Lattner149c58c2005-08-16 18:17:10 +00002219 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002220
Chris Lattner63e3f142007-02-04 07:28:00 +00002221 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002222
Chris Lattnera5682852006-08-07 23:03:03 +00002223 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002224 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002225}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002226
Evan Cheng95514ba2006-08-26 08:00:10 +00002227SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002228 MVT::ValueType VT, const SDOperand *Ops,
2229 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002230 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002231 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002232 FoldingSetNodeID ID;
2233 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002234 void *IP = 0;
2235 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002236 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002237
Chris Lattner6b09a292005-08-21 18:49:33 +00002238 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002239 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002240
Chris Lattnera5682852006-08-07 23:03:03 +00002241 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002242 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002243}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002244
Evan Cheng95514ba2006-08-26 08:00:10 +00002245SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2246 MVT::ValueType VT1, MVT::ValueType VT2,
2247 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002248 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002249 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002250 SDOperand Ops[] = { Op1, Op2 };
2251 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002252 void *IP = 0;
2253 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002254 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002255
Chris Lattner0fb094f2005-11-19 01:44:53 +00002256 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002257 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002258 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002259 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002260}
2261
Evan Cheng95514ba2006-08-26 08:00:10 +00002262SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2263 MVT::ValueType VT1, MVT::ValueType VT2,
2264 SDOperand Op1, SDOperand Op2,
2265 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002266 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002267 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002268 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002269 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002270 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002271 void *IP = 0;
2272 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002273 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002274
Chris Lattner0fb094f2005-11-19 01:44:53 +00002275 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002276
Chris Lattner63e3f142007-02-04 07:28:00 +00002277 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002278 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002279 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002280}
2281
Chris Lattner0fb094f2005-11-19 01:44:53 +00002282
Evan Cheng6ae46c42006-02-09 07:15:23 +00002283/// getTargetNode - These are used for target selectors to create a new node
2284/// with specified return type(s), target opcode, and operands.
2285///
2286/// Note that getTargetNode returns the resultant node. If there is already a
2287/// node of the specified opcode and operands, it returns that node instead of
2288/// the current one.
2289SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2290 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2291}
2292SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2293 SDOperand Op1) {
2294 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2295}
2296SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2297 SDOperand Op1, SDOperand Op2) {
2298 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2299}
2300SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002301 SDOperand Op1, SDOperand Op2,
2302 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002303 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2304}
2305SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002306 const SDOperand *Ops, unsigned NumOps) {
2307 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002308}
2309SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2310 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002311 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002312 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002313}
2314SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002315 MVT::ValueType VT2, SDOperand Op1,
2316 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002317 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002318 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002319 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002320}
2321SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002322 MVT::ValueType VT2, SDOperand Op1,
2323 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002324 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002325 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002326 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002327}
Evan Cheng694481e2006-08-27 08:08:54 +00002328SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2329 MVT::ValueType VT2,
2330 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002331 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002332 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002333}
2334SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2335 MVT::ValueType VT2, MVT::ValueType VT3,
2336 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002337 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002338 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002339 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002340}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002341SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2342 MVT::ValueType VT2, MVT::ValueType VT3,
2343 SDOperand Op1, SDOperand Op2,
2344 SDOperand Op3) {
2345 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2346 SDOperand Ops[] = { Op1, Op2, Op3 };
2347 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2348}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002349SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002350 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002351 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002352 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2353 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002354}
2355
Evan Cheng99157a02006-08-07 22:13:29 +00002356/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002357/// This can cause recursive merging of nodes in the DAG.
2358///
Chris Lattner8b52f212005-08-26 18:36:28 +00002359/// This version assumes From/To have a single result value.
2360///
Chris Lattner1e111c72005-09-07 05:37:01 +00002361void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2362 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002363 SDNode *From = FromN.Val, *To = ToN.Val;
2364 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2365 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002366 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002367
Chris Lattner8b8749f2005-08-17 19:00:20 +00002368 while (!From->use_empty()) {
2369 // Process users until they are all gone.
2370 SDNode *U = *From->use_begin();
2371
2372 // This node is about to morph, remove its old self from the CSE maps.
2373 RemoveNodeFromCSEMaps(U);
2374
Chris Lattner65113b22005-11-08 22:07:03 +00002375 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2376 I != E; ++I)
2377 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002378 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002379 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002380 To->addUser(U);
2381 }
2382
2383 // Now that we have modified U, add it back to the CSE maps. If it already
2384 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002385 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2386 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002387 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002388 if (Deleted) Deleted->push_back(U);
2389 DeleteNodeNotInCSEMaps(U);
2390 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002391 }
2392}
2393
2394/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2395/// This can cause recursive merging of nodes in the DAG.
2396///
2397/// This version assumes From/To have matching types and numbers of result
2398/// values.
2399///
Chris Lattner1e111c72005-09-07 05:37:01 +00002400void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2401 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002402 assert(From != To && "Cannot replace uses of with self");
2403 assert(From->getNumValues() == To->getNumValues() &&
2404 "Cannot use this version of ReplaceAllUsesWith!");
2405 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002406 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002407 return;
2408 }
2409
2410 while (!From->use_empty()) {
2411 // Process users until they are all gone.
2412 SDNode *U = *From->use_begin();
2413
2414 // This node is about to morph, remove its old self from the CSE maps.
2415 RemoveNodeFromCSEMaps(U);
2416
Chris Lattner65113b22005-11-08 22:07:03 +00002417 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2418 I != E; ++I)
2419 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002420 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002421 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002422 To->addUser(U);
2423 }
2424
2425 // Now that we have modified U, add it back to the CSE maps. If it already
2426 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002427 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2428 ReplaceAllUsesWith(U, Existing, Deleted);
2429 // U is now dead.
2430 if (Deleted) Deleted->push_back(U);
2431 DeleteNodeNotInCSEMaps(U);
2432 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002433 }
2434}
2435
Chris Lattner8b52f212005-08-26 18:36:28 +00002436/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2437/// This can cause recursive merging of nodes in the DAG.
2438///
2439/// This version can replace From with any result values. To must match the
2440/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002441void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002442 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002443 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002444 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002445 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002446 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002447 return;
2448 }
2449
2450 while (!From->use_empty()) {
2451 // Process users until they are all gone.
2452 SDNode *U = *From->use_begin();
2453
2454 // This node is about to morph, remove its old self from the CSE maps.
2455 RemoveNodeFromCSEMaps(U);
2456
Chris Lattner65113b22005-11-08 22:07:03 +00002457 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2458 I != E; ++I)
2459 if (I->Val == From) {
2460 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002461 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002462 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002463 ToOp.Val->addUser(U);
2464 }
2465
2466 // Now that we have modified U, add it back to the CSE maps. If it already
2467 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002468 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2469 ReplaceAllUsesWith(U, Existing, Deleted);
2470 // U is now dead.
2471 if (Deleted) Deleted->push_back(U);
2472 DeleteNodeNotInCSEMaps(U);
2473 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002474 }
2475}
2476
Chris Lattner012f2412006-02-17 21:58:01 +00002477/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2478/// uses of other values produced by From.Val alone. The Deleted vector is
2479/// handled the same was as for ReplaceAllUsesWith.
2480void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2481 std::vector<SDNode*> &Deleted) {
2482 assert(From != To && "Cannot replace a value with itself");
2483 // Handle the simple, trivial, case efficiently.
2484 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2485 ReplaceAllUsesWith(From, To, &Deleted);
2486 return;
2487 }
2488
Chris Lattnercf5640b2007-02-04 00:14:31 +00002489 // Get all of the users of From.Val. We want these in a nice,
2490 // deterministically ordered and uniqued set, so we use a SmallSetVector.
2491 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00002492
2493 while (!Users.empty()) {
2494 // We know that this user uses some value of From. If it is the right
2495 // value, update it.
2496 SDNode *User = Users.back();
2497 Users.pop_back();
2498
2499 for (SDOperand *Op = User->OperandList,
2500 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2501 if (*Op == From) {
2502 // Okay, we know this user needs to be updated. Remove its old self
2503 // from the CSE maps.
2504 RemoveNodeFromCSEMaps(User);
2505
2506 // Update all operands that match "From".
2507 for (; Op != E; ++Op) {
2508 if (*Op == From) {
2509 From.Val->removeUser(User);
2510 *Op = To;
2511 To.Val->addUser(User);
2512 }
2513 }
2514
2515 // Now that we have modified User, add it back to the CSE maps. If it
2516 // already exists there, recursively merge the results together.
2517 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2518 unsigned NumDeleted = Deleted.size();
2519 ReplaceAllUsesWith(User, Existing, &Deleted);
2520
2521 // User is now dead.
2522 Deleted.push_back(User);
2523 DeleteNodeNotInCSEMaps(User);
2524
2525 // We have to be careful here, because ReplaceAllUsesWith could have
2526 // deleted a user of From, which means there may be dangling pointers
2527 // in the "Users" setvector. Scan over the deleted node pointers and
2528 // remove them from the setvector.
2529 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2530 Users.remove(Deleted[i]);
2531 }
2532 break; // Exit the operand scanning loop.
2533 }
2534 }
2535 }
2536}
2537
Chris Lattner7b2880c2005-08-24 22:44:39 +00002538
Evan Chenge6f35d82006-08-01 08:20:41 +00002539/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2540/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002541unsigned SelectionDAG::AssignNodeIds() {
2542 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002543 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2544 SDNode *N = I;
2545 N->setNodeId(Id++);
2546 }
2547 return Id;
2548}
2549
Evan Chenge6f35d82006-08-01 08:20:41 +00002550/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002551/// based on their topological order. It returns the maximum id and a vector
2552/// of the SDNodes* in assigned order by reference.
2553unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002554 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002555 std::vector<unsigned> InDegree(DAGSize);
2556 std::vector<SDNode*> Sources;
2557
2558 // Use a two pass approach to avoid using a std::map which is slow.
2559 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002560 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2561 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002562 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002563 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002564 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002565 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002566 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002567 }
2568
Evan Cheng99157a02006-08-07 22:13:29 +00002569 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002570 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002571 SDNode *N = Sources.back();
2572 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002573 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002574 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2575 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002576 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002577 if (Degree == 0)
2578 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002579 }
2580 }
2581
Evan Chengc384d6c2006-08-02 22:00:34 +00002582 // Second pass, assign the actual topological order as node ids.
2583 Id = 0;
2584 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2585 TI != TE; ++TI)
2586 (*TI)->setNodeId(Id++);
2587
2588 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002589}
2590
2591
Evan Cheng091cba12006-07-27 06:39:06 +00002592
Jim Laskey58b968b2005-08-17 20:08:02 +00002593//===----------------------------------------------------------------------===//
2594// SDNode Class
2595//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002596
Chris Lattner917d2c92006-07-19 00:00:37 +00002597// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002598void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00002599void UnarySDNode::ANCHOR() {}
2600void BinarySDNode::ANCHOR() {}
2601void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002602void HandleSDNode::ANCHOR() {}
2603void StringSDNode::ANCHOR() {}
2604void ConstantSDNode::ANCHOR() {}
2605void ConstantFPSDNode::ANCHOR() {}
2606void GlobalAddressSDNode::ANCHOR() {}
2607void FrameIndexSDNode::ANCHOR() {}
2608void JumpTableSDNode::ANCHOR() {}
2609void ConstantPoolSDNode::ANCHOR() {}
2610void BasicBlockSDNode::ANCHOR() {}
2611void SrcValueSDNode::ANCHOR() {}
2612void RegisterSDNode::ANCHOR() {}
2613void ExternalSymbolSDNode::ANCHOR() {}
2614void CondCodeSDNode::ANCHOR() {}
2615void VTSDNode::ANCHOR() {}
2616void LoadSDNode::ANCHOR() {}
2617void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00002618
Chris Lattner48b85922007-02-04 02:41:42 +00002619HandleSDNode::~HandleSDNode() {
2620 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002621 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00002622}
2623
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00002624GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
2625 MVT::ValueType VT, int o)
2626 : SDNode(isa<GlobalVariable>(GA) &&
2627 dyn_cast<GlobalVariable>(GA)->isThreadLocal() ?
2628 // Thread Local
2629 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
2630 // Non Thread Local
2631 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
2632 getSDVTList(VT)), Offset(o) {
2633 TheGlobal = const_cast<GlobalValue*>(GA);
2634}
Chris Lattner48b85922007-02-04 02:41:42 +00002635
Jim Laskey583bd472006-10-27 23:46:08 +00002636/// Profile - Gather unique data for the node.
2637///
2638void SDNode::Profile(FoldingSetNodeID &ID) {
2639 AddNodeIDNode(ID, this);
2640}
2641
Chris Lattnera3255112005-11-08 23:30:28 +00002642/// getValueTypeList - Return a pointer to the specified value type.
2643///
2644MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2645 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2646 VTs[VT] = VT;
2647 return &VTs[VT];
2648}
Chris Lattnera5682852006-08-07 23:03:03 +00002649
Chris Lattner5c884562005-01-12 18:37:47 +00002650/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2651/// indicated value. This method ignores uses of other values defined by this
2652/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002653bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002654 assert(Value < getNumValues() && "Bad value!");
2655
2656 // If there is only one value, this is easy.
2657 if (getNumValues() == 1)
2658 return use_size() == NUses;
2659 if (Uses.size() < NUses) return false;
2660
Evan Cheng4ee62112006-02-05 06:29:23 +00002661 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002662
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002663 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00002664
Chris Lattnerf83482d2006-08-16 20:59:32 +00002665 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002666 SDNode *User = *UI;
2667 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002668 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00002669 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2670 if (User->getOperand(i) == TheValue) {
2671 if (NUses == 0)
2672 return false; // too many uses
2673 --NUses;
2674 }
2675 }
2676
2677 // Found exactly the right number of uses?
2678 return NUses == 0;
2679}
2680
2681
Evan Chenge6e97e62006-11-03 07:31:32 +00002682/// isOnlyUse - Return true if this node is the only use of N.
2683///
Evan Cheng4ee62112006-02-05 06:29:23 +00002684bool SDNode::isOnlyUse(SDNode *N) const {
2685 bool Seen = false;
2686 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2687 SDNode *User = *I;
2688 if (User == this)
2689 Seen = true;
2690 else
2691 return false;
2692 }
2693
2694 return Seen;
2695}
2696
Evan Chenge6e97e62006-11-03 07:31:32 +00002697/// isOperand - Return true if this node is an operand of N.
2698///
Evan Chengbfa284f2006-03-03 06:42:32 +00002699bool SDOperand::isOperand(SDNode *N) const {
2700 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2701 if (*this == N->getOperand(i))
2702 return true;
2703 return false;
2704}
2705
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002706bool SDNode::isOperand(SDNode *N) const {
2707 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2708 if (this == N->OperandList[i].Val)
2709 return true;
2710 return false;
2711}
Evan Cheng4ee62112006-02-05 06:29:23 +00002712
Evan Chengc5fc57d2006-11-03 03:05:24 +00002713static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002714 SmallPtrSet<SDNode *, 32> &Visited) {
2715 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00002716 return;
2717
2718 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2719 SDNode *Op = N->getOperand(i).Val;
2720 if (Op == P) {
2721 found = true;
2722 return;
2723 }
2724 findPredecessor(Op, P, found, Visited);
2725 }
2726}
2727
Evan Chenge6e97e62006-11-03 07:31:32 +00002728/// isPredecessor - Return true if this node is a predecessor of N. This node
2729/// is either an operand of N or it can be reached by recursively traversing
2730/// up the operands.
2731/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00002732bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002733 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00002734 bool found = false;
2735 findPredecessor(N, this, found, Visited);
2736 return found;
2737}
2738
Evan Chengc5484282006-10-04 00:56:09 +00002739uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2740 assert(Num < NumOperands && "Invalid child # of SDNode!");
2741 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2742}
2743
Reid Spencer577cc322007-04-01 07:32:19 +00002744std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002745 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002746 default:
2747 if (getOpcode() < ISD::BUILTIN_OP_END)
2748 return "<<Unknown DAG Node>>";
2749 else {
Evan Cheng72261582005-12-20 06:22:03 +00002750 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002751 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002752 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2753 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002754
Evan Cheng72261582005-12-20 06:22:03 +00002755 TargetLowering &TLI = G->getTargetLoweringInfo();
2756 const char *Name =
2757 TLI.getTargetNodeName(getOpcode());
2758 if (Name) return Name;
2759 }
2760
2761 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002762 }
2763
Andrew Lenharth95762122005-03-31 21:24:06 +00002764 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002765 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002766 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002767 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002768 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002769 case ISD::AssertSext: return "AssertSext";
2770 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002771
2772 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002773 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002774 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002775 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002776
2777 case ISD::Constant: return "Constant";
2778 case ISD::ConstantFP: return "ConstantFP";
2779 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002780 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002781 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002782 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002783 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00002784 case ISD::RETURNADDR: return "RETURNADDR";
2785 case ISD::FRAMEADDR: return "FRAMEADDR";
Jim Laskeyb180aa12007-02-21 22:53:45 +00002786 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
2787 case ISD::EHSELECTION: return "EHSELECTION";
Chris Lattner5839bf22005-08-26 17:15:30 +00002788 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002789 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002790 case ISD::INTRINSIC_WO_CHAIN: {
2791 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2792 return Intrinsic::getName((Intrinsic::ID)IID);
2793 }
2794 case ISD::INTRINSIC_VOID:
2795 case ISD::INTRINSIC_W_CHAIN: {
2796 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002797 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002798 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002799
Chris Lattnerb2827b02006-03-19 00:52:58 +00002800 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002801 case ISD::TargetConstant: return "TargetConstant";
2802 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002803 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002804 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002805 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002806 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002807 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002808 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002809
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002810 case ISD::CopyToReg: return "CopyToReg";
2811 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002812 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002813 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002814 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00002815 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002816 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002817 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002818 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002819
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002820 // Unary operators
2821 case ISD::FABS: return "fabs";
2822 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002823 case ISD::FSQRT: return "fsqrt";
2824 case ISD::FSIN: return "fsin";
2825 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002826 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002827
2828 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002829 case ISD::ADD: return "add";
2830 case ISD::SUB: return "sub";
2831 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002832 case ISD::MULHU: return "mulhu";
2833 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002834 case ISD::SDIV: return "sdiv";
2835 case ISD::UDIV: return "udiv";
2836 case ISD::SREM: return "srem";
2837 case ISD::UREM: return "urem";
2838 case ISD::AND: return "and";
2839 case ISD::OR: return "or";
2840 case ISD::XOR: return "xor";
2841 case ISD::SHL: return "shl";
2842 case ISD::SRA: return "sra";
2843 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002844 case ISD::ROTL: return "rotl";
2845 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002846 case ISD::FADD: return "fadd";
2847 case ISD::FSUB: return "fsub";
2848 case ISD::FMUL: return "fmul";
2849 case ISD::FDIV: return "fdiv";
2850 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002851 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002852 case ISD::VADD: return "vadd";
2853 case ISD::VSUB: return "vsub";
2854 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002855 case ISD::VSDIV: return "vsdiv";
2856 case ISD::VUDIV: return "vudiv";
2857 case ISD::VAND: return "vand";
2858 case ISD::VOR: return "vor";
2859 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002860
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002861 case ISD::SETCC: return "setcc";
2862 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002863 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002864 case ISD::VSELECT: return "vselect";
2865 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2866 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2867 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002868 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002869 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2870 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2871 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2872 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2873 case ISD::VBIT_CONVERT: return "vbit_convert";
Chris Lattnerb6541762007-03-04 20:40:38 +00002874 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002875 case ISD::ADDC: return "addc";
2876 case ISD::ADDE: return "adde";
2877 case ISD::SUBC: return "subc";
2878 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002879 case ISD::SHL_PARTS: return "shl_parts";
2880 case ISD::SRA_PARTS: return "sra_parts";
2881 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002882
Chris Lattner7f644642005-04-28 21:44:03 +00002883 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002884 case ISD::SIGN_EXTEND: return "sign_extend";
2885 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002886 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002887 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002888 case ISD::TRUNCATE: return "truncate";
2889 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002890 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002891 case ISD::FP_EXTEND: return "fp_extend";
2892
2893 case ISD::SINT_TO_FP: return "sint_to_fp";
2894 case ISD::UINT_TO_FP: return "uint_to_fp";
2895 case ISD::FP_TO_SINT: return "fp_to_sint";
2896 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002897 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002898
2899 // Control flow instructions
2900 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002901 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002902 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002903 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002904 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002905 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002906 case ISD::CALLSEQ_START: return "callseq_start";
2907 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002908
2909 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002910 case ISD::LOAD: return "load";
2911 case ISD::STORE: return "store";
2912 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002913 case ISD::VAARG: return "vaarg";
2914 case ISD::VACOPY: return "vacopy";
2915 case ISD::VAEND: return "vaend";
2916 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002917 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002918 case ISD::EXTRACT_ELEMENT: return "extract_element";
2919 case ISD::BUILD_PAIR: return "build_pair";
2920 case ISD::STACKSAVE: return "stacksave";
2921 case ISD::STACKRESTORE: return "stackrestore";
2922
2923 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002924 case ISD::MEMSET: return "memset";
2925 case ISD::MEMCPY: return "memcpy";
2926 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002927
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002928 // Bit manipulation
2929 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002930 case ISD::CTPOP: return "ctpop";
2931 case ISD::CTTZ: return "cttz";
2932 case ISD::CTLZ: return "ctlz";
2933
Chris Lattner36ce6912005-11-29 06:21:05 +00002934 // Debug info
2935 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002936 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00002937
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002938 case ISD::CONDCODE:
2939 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002940 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002941 case ISD::SETOEQ: return "setoeq";
2942 case ISD::SETOGT: return "setogt";
2943 case ISD::SETOGE: return "setoge";
2944 case ISD::SETOLT: return "setolt";
2945 case ISD::SETOLE: return "setole";
2946 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002947
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002948 case ISD::SETO: return "seto";
2949 case ISD::SETUO: return "setuo";
2950 case ISD::SETUEQ: return "setue";
2951 case ISD::SETUGT: return "setugt";
2952 case ISD::SETUGE: return "setuge";
2953 case ISD::SETULT: return "setult";
2954 case ISD::SETULE: return "setule";
2955 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002956
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002957 case ISD::SETEQ: return "seteq";
2958 case ISD::SETGT: return "setgt";
2959 case ISD::SETGE: return "setge";
2960 case ISD::SETLT: return "setlt";
2961 case ISD::SETLE: return "setle";
2962 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002963 }
2964 }
2965}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002966
Evan Cheng144d8f02006-11-09 17:55:04 +00002967const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002968 switch (AM) {
2969 default:
2970 return "";
2971 case ISD::PRE_INC:
2972 return "<pre-inc>";
2973 case ISD::PRE_DEC:
2974 return "<pre-dec>";
2975 case ISD::POST_INC:
2976 return "<post-inc>";
2977 case ISD::POST_DEC:
2978 return "<post-dec>";
2979 }
2980}
2981
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002982void SDNode::dump() const { dump(0); }
2983void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00002984 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002985
2986 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002987 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002988 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00002989 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00002990 else
Bill Wendling832171c2006-12-07 20:04:42 +00002991 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002992 }
Bill Wendling832171c2006-12-07 20:04:42 +00002993 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002994
Bill Wendling832171c2006-12-07 20:04:42 +00002995 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002996 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002997 if (i) cerr << ", ";
2998 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002999 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00003000 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003001 }
3002
3003 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003004 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003005 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003006 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003007 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00003008 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00003009 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00003010 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00003011 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00003012 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003013 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00003014 else
Bill Wendling832171c2006-12-07 20:04:42 +00003015 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003016 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003017 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00003018 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003019 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003020 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00003021 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00003022 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00003023 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00003024 else
Bill Wendling832171c2006-12-07 20:04:42 +00003025 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00003026 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003027 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00003028 else
Bill Wendling832171c2006-12-07 20:04:42 +00003029 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003030 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003031 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003032 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3033 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00003034 cerr << LBB->getName() << " ";
3035 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00003036 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00003037 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00003038 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00003039 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00003040 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00003041 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003042 } else if (const ExternalSymbolSDNode *ES =
3043 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003044 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003045 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3046 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00003047 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003048 else
Bill Wendling832171c2006-12-07 20:04:42 +00003049 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00003050 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00003051 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003052 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3053 bool doExt = true;
3054 switch (LD->getExtensionType()) {
3055 default: doExt = false; break;
3056 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003057 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003058 break;
3059 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003060 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003061 break;
3062 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003063 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003064 break;
3065 }
3066 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003067 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003068
Evan Cheng144d8f02006-11-09 17:55:04 +00003069 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003070 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003071 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00003072 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3073 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00003074 cerr << " <trunc "
3075 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00003076
Evan Cheng144d8f02006-11-09 17:55:04 +00003077 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003078 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003079 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003080 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003081}
3082
Chris Lattnerde202b32005-11-09 23:47:37 +00003083static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003084 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3085 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003086 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003087 else
Bill Wendling832171c2006-12-07 20:04:42 +00003088 cerr << "\n" << std::string(indent+2, ' ')
3089 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003090
Chris Lattnerea946cd2005-01-09 20:38:33 +00003091
Bill Wendling832171c2006-12-07 20:04:42 +00003092 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003093 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003094}
3095
Chris Lattnerc3aae252005-01-07 07:46:32 +00003096void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00003097 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00003098 std::vector<const SDNode*> Nodes;
3099 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3100 I != E; ++I)
3101 Nodes.push_back(I);
3102
Chris Lattner49d24712005-01-09 20:26:36 +00003103 std::sort(Nodes.begin(), Nodes.end());
3104
3105 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003106 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003107 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003108 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003109
Jim Laskey26f7fa72006-10-17 19:33:52 +00003110 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003111
Bill Wendling832171c2006-12-07 20:04:42 +00003112 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003113}
3114
Evan Chengd6594ae2006-09-12 21:00:35 +00003115const Type *ConstantPoolSDNode::getType() const {
3116 if (isMachineConstantPoolEntry())
3117 return Val.MachineCPVal->getType();
3118 return Val.ConstVal->getType();
3119}