blob: fe33ff5ed4a4c7fc7cb54b69bb398448df9c01a9 [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"
16#include "llvm/GlobalValue.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000018#include "llvm/Assembly/Writer.h"
19#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000020#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000021#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000022#include "llvm/Target/MRegisterInfo.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000024#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000026#include "llvm/ADT/SetVector.h"
Chris Lattner190a4182006-08-04 17:45:20 +000027#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000028#include "llvm/ADT/StringExtras.h"
Reid Spencer954da372004-07-04 12:19:56 +000029#include <iostream>
Chris Lattner0e12e6e2005-01-07 21:09:16 +000030#include <set>
Chris Lattnerc3aae252005-01-07 07:46:32 +000031#include <cmath>
Jeff Cohenfd161e92005-01-09 20:41:56 +000032#include <algorithm>
Chris Lattnere25738c2004-06-02 04:28:06 +000033using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000034
Chris Lattner0b3e5252006-08-15 19:11:05 +000035/// makeVTList - Return an instance of the SDVTList struct initialized with the
36/// specified members.
37static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
38 SDVTList Res = {VTs, NumVTs};
39 return Res;
40}
41
Jim Laskey58b968b2005-08-17 20:08:02 +000042//===----------------------------------------------------------------------===//
43// ConstantFPSDNode Class
44//===----------------------------------------------------------------------===//
45
46/// isExactlyValue - We don't rely on operator== working on double values, as
47/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
48/// As such, this method can be used to do an exact bit-for-bit comparison of
49/// two floating point values.
50bool ConstantFPSDNode::isExactlyValue(double V) const {
51 return DoubleToBits(V) == DoubleToBits(Value);
52}
53
54//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000055// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000056//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000057
Evan Chenga8df1662006-03-27 06:58:47 +000058/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000059/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000060bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000061 // Look through a bit convert.
62 if (N->getOpcode() == ISD::BIT_CONVERT)
63 N = N->getOperand(0).Val;
64
Evan Chenga8df1662006-03-27 06:58:47 +000065 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000066
67 unsigned i = 0, e = N->getNumOperands();
68
69 // Skip over all of the undef values.
70 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
71 ++i;
72
73 // Do not accept an all-undef vector.
74 if (i == e) return false;
75
76 // Do not accept build_vectors that aren't all constants or which have non-~0
77 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000078 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000079 if (isa<ConstantSDNode>(NotZero)) {
80 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
81 return false;
82 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000083 MVT::ValueType VT = NotZero.getValueType();
84 if (VT== MVT::f64) {
85 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
86 (uint64_t)-1)
87 return false;
88 } else {
89 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
90 (uint32_t)-1)
91 return false;
92 }
Evan Chenga8df1662006-03-27 06:58:47 +000093 } else
Chris Lattner61d43992006-03-25 22:57:01 +000094 return false;
95
96 // Okay, we have at least one ~0 value, check to see if the rest match or are
97 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000098 for (++i; i != e; ++i)
99 if (N->getOperand(i) != NotZero &&
100 N->getOperand(i).getOpcode() != ISD::UNDEF)
101 return false;
102 return true;
103}
104
105
Evan Cheng4a147842006-03-26 09:50:58 +0000106/// isBuildVectorAllZeros - Return true if the specified node is a
107/// BUILD_VECTOR where all of the elements are 0 or undef.
108bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000109 // Look through a bit convert.
110 if (N->getOpcode() == ISD::BIT_CONVERT)
111 N = N->getOperand(0).Val;
112
Evan Cheng4a147842006-03-26 09:50:58 +0000113 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000114
115 unsigned i = 0, e = N->getNumOperands();
116
117 // Skip over all of the undef values.
118 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
119 ++i;
120
121 // Do not accept an all-undef vector.
122 if (i == e) return false;
123
124 // Do not accept build_vectors that aren't all constants or which have non-~0
125 // elements.
126 SDOperand Zero = N->getOperand(i);
127 if (isa<ConstantSDNode>(Zero)) {
128 if (!cast<ConstantSDNode>(Zero)->isNullValue())
129 return false;
130 } else if (isa<ConstantFPSDNode>(Zero)) {
131 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
132 return false;
133 } else
134 return false;
135
136 // Okay, we have at least one ~0 value, check to see if the rest match or are
137 // undefs.
138 for (++i; i != e; ++i)
139 if (N->getOperand(i) != Zero &&
140 N->getOperand(i).getOpcode() != ISD::UNDEF)
141 return false;
142 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000143}
144
Chris Lattnerc3aae252005-01-07 07:46:32 +0000145/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
146/// when given the operation for (X op Y).
147ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
148 // To perform this operation, we just need to swap the L and G bits of the
149 // operation.
150 unsigned OldL = (Operation >> 2) & 1;
151 unsigned OldG = (Operation >> 1) & 1;
152 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
153 (OldL << 1) | // New G bit
154 (OldG << 2)); // New L bit.
155}
156
157/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
158/// 'op' is a valid SetCC operation.
159ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
160 unsigned Operation = Op;
161 if (isInteger)
162 Operation ^= 7; // Flip L, G, E bits, but not U.
163 else
164 Operation ^= 15; // Flip all of the condition bits.
165 if (Operation > ISD::SETTRUE2)
166 Operation &= ~8; // Don't let N and U bits get set.
167 return ISD::CondCode(Operation);
168}
169
170
171/// isSignedOp - For an integer comparison, return 1 if the comparison is a
172/// signed operation and 2 if the result is an unsigned comparison. Return zero
173/// if the operation does not depend on the sign of the input (setne and seteq).
174static int isSignedOp(ISD::CondCode Opcode) {
175 switch (Opcode) {
176 default: assert(0 && "Illegal integer setcc operation!");
177 case ISD::SETEQ:
178 case ISD::SETNE: return 0;
179 case ISD::SETLT:
180 case ISD::SETLE:
181 case ISD::SETGT:
182 case ISD::SETGE: return 1;
183 case ISD::SETULT:
184 case ISD::SETULE:
185 case ISD::SETUGT:
186 case ISD::SETUGE: return 2;
187 }
188}
189
190/// getSetCCOrOperation - Return the result of a logical OR between different
191/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
192/// returns SETCC_INVALID if it is not possible to represent the resultant
193/// comparison.
194ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
195 bool isInteger) {
196 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
197 // Cannot fold a signed integer setcc with an unsigned integer setcc.
198 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000199
Chris Lattnerc3aae252005-01-07 07:46:32 +0000200 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000201
Chris Lattnerc3aae252005-01-07 07:46:32 +0000202 // If the N and U bits get set then the resultant comparison DOES suddenly
203 // care about orderedness, and is true when ordered.
204 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000205 Op &= ~16; // Clear the U bit if the N bit is set.
206
207 // Canonicalize illegal integer setcc's.
208 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
209 Op = ISD::SETNE;
210
Chris Lattnerc3aae252005-01-07 07:46:32 +0000211 return ISD::CondCode(Op);
212}
213
214/// getSetCCAndOperation - Return the result of a logical AND between different
215/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
216/// function returns zero if it is not possible to represent the resultant
217/// comparison.
218ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
219 bool isInteger) {
220 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
221 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000222 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000223
224 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000225 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
226
227 // Canonicalize illegal integer setcc's.
228 if (isInteger) {
229 switch (Result) {
230 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000231 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
232 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
233 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
234 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000235 }
236 }
237
238 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000239}
240
Chris Lattnerb48da392005-01-23 04:39:44 +0000241const TargetMachine &SelectionDAG::getTarget() const {
242 return TLI.getTargetMachine();
243}
244
Jim Laskey58b968b2005-08-17 20:08:02 +0000245//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000246// SDNode Profile Support
247//===----------------------------------------------------------------------===//
248
Jim Laskeydef69b92006-10-27 23:52:51 +0000249/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
250///
Jim Laskey583bd472006-10-27 23:46:08 +0000251static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
252 ID.AddInteger(OpC);
253}
254
255/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
256/// solely with their pointer.
257void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
258 ID.AddPointer(VTList.VTs);
259}
260
Jim Laskeydef69b92006-10-27 23:52:51 +0000261/// AddNodeIDOperand - Add an operands data to the NodeID data.
262///
Jim Laskey583bd472006-10-27 23:46:08 +0000263static void AddNodeIDOperand(FoldingSetNodeID &ID, SDOperand Op) {
264 ID.AddPointer(Op.Val);
265 ID.AddInteger(Op.ResNo);
266}
267
Jim Laskeydef69b92006-10-27 23:52:51 +0000268/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
269///
Jim Laskey583bd472006-10-27 23:46:08 +0000270static void AddNodeIDOperands(FoldingSetNodeID &ID) {
271}
Jim Laskeydef69b92006-10-27 23:52:51 +0000272static void AddNodeIDOperands(FoldingSetNodeID &ID, SDOperand Op) {
Jim Laskey583bd472006-10-27 23:46:08 +0000273 AddNodeIDOperand(ID, Op);
274}
275static void AddNodeIDOperands(FoldingSetNodeID &ID,
276 SDOperand Op1, SDOperand Op2) {
277 AddNodeIDOperand(ID, Op1);
278 AddNodeIDOperand(ID, Op2);
279}
280static void AddNodeIDOperands(FoldingSetNodeID &ID,
281 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
282 AddNodeIDOperand(ID, Op1);
283 AddNodeIDOperand(ID, Op2);
284 AddNodeIDOperand(ID, Op3);
285}
286static void AddNodeIDOperands(FoldingSetNodeID &ID,
287 const SDOperand *Ops, unsigned NumOps) {
288 for (; NumOps; --NumOps, ++Ops)
289 AddNodeIDOperand(ID, *Ops);
290}
291
Jim Laskeydef69b92006-10-27 23:52:51 +0000292/// AddNodeIDOperands - Various routines for adding node info to the NodeID
293/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000294static void AddNodeIDNode(FoldingSetNodeID &ID,
295 unsigned short OpC, SDVTList VTList) {
296 AddNodeIDOpcode(ID, OpC);
297 AddNodeIDValueTypes(ID, VTList);
298 AddNodeIDOperands(ID);
299}
300static void AddNodeIDNode(FoldingSetNodeID &ID,
301 unsigned short OpC, SDVTList VTList,
302 SDOperand Op) {
303 AddNodeIDOpcode(ID, OpC);
304 AddNodeIDValueTypes(ID, VTList);
305 AddNodeIDOperands(ID, Op);
306}
307static void AddNodeIDNode(FoldingSetNodeID &ID,
308 unsigned short OpC, SDVTList VTList,
309 SDOperand Op1, SDOperand Op2) {
310 AddNodeIDOpcode(ID, OpC);
311 AddNodeIDValueTypes(ID, VTList);
312 AddNodeIDOperands(ID, Op1, Op2);
313}
314static void AddNodeIDNode(FoldingSetNodeID &ID,
315 unsigned short OpC, SDVTList VTList,
316 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
317 AddNodeIDOpcode(ID, OpC);
318 AddNodeIDValueTypes(ID, VTList);
Chris Lattner6fb6ef42006-10-28 06:15:26 +0000319 AddNodeIDOperands(ID, Op1, Op2, Op3);
Jim Laskey583bd472006-10-27 23:46:08 +0000320}
321static void AddNodeIDNode(FoldingSetNodeID &ID,
322 unsigned short OpC, SDVTList VTList,
323 const SDOperand *OpList, unsigned N) {
324 AddNodeIDOpcode(ID, OpC);
325 AddNodeIDValueTypes(ID, VTList);
326 AddNodeIDOperands(ID, OpList, N);
327}
328
Jim Laskeydef69b92006-10-27 23:52:51 +0000329/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
330/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000331static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
332 AddNodeIDOpcode(ID, N->getOpcode());
333 // Add the return value info.
334 AddNodeIDValueTypes(ID, N->getVTList());
335 // Add the operand info.
336 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
337
338 // Handle SDNode leafs with special info.
339 if (N->getNumOperands() == 0) {
340 switch (N->getOpcode()) {
341 default: break; // Normal nodes don't need extra info.
342 case ISD::TargetConstant:
343 case ISD::Constant:
344 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
345 break;
346 case ISD::TargetConstantFP:
347 case ISD::ConstantFP:
348 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
349 break;
350 case ISD::TargetGlobalAddress:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000351 case ISD::GlobalAddress: {
352 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
353 ID.AddPointer(GA->getGlobal());
354 ID.AddInteger(GA->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000355 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000356 }
Jim Laskey583bd472006-10-27 23:46:08 +0000357 case ISD::BasicBlock:
358 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
359 break;
360 case ISD::Register:
361 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
362 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000363 case ISD::SRCVALUE: {
364 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
365 ID.AddPointer(SV->getValue());
366 ID.AddInteger(SV->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000367 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000368 }
Jim Laskey583bd472006-10-27 23:46:08 +0000369 case ISD::FrameIndex:
370 case ISD::TargetFrameIndex:
371 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
372 break;
373 case ISD::JumpTable:
374 case ISD::TargetJumpTable:
375 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
376 break;
377 case ISD::ConstantPool:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000378 case ISD::TargetConstantPool: {
379 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
380 ID.AddInteger(CP->getAlignment());
381 ID.AddInteger(CP->getOffset());
382 if (CP->isMachineConstantPoolEntry())
383 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
Jim Laskey583bd472006-10-27 23:46:08 +0000384 else
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000385 ID.AddPointer(CP->getConstVal());
Jim Laskey583bd472006-10-27 23:46:08 +0000386 break;
387 }
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000388 case ISD::LOAD: {
389 LoadSDNode *LD = cast<LoadSDNode>(N);
390 ID.AddInteger(LD->getAddressingMode());
391 ID.AddInteger(LD->getExtensionType());
392 ID.AddInteger(LD->getLoadedVT());
393 ID.AddPointer(LD->getSrcValue());
394 ID.AddInteger(LD->getSrcValueOffset());
395 ID.AddInteger(LD->getAlignment());
396 ID.AddInteger(LD->isVolatile());
397 break;
398 }
399 case ISD::STORE: {
400 StoreSDNode *ST = cast<StoreSDNode>(N);
401 ID.AddInteger(ST->getAddressingMode());
402 ID.AddInteger(ST->isTruncatingStore());
403 ID.AddInteger(ST->getStoredVT());
404 ID.AddPointer(ST->getSrcValue());
405 ID.AddInteger(ST->getSrcValueOffset());
406 ID.AddInteger(ST->getAlignment());
407 ID.AddInteger(ST->isVolatile());
408 break;
409 }
410 }
Jim Laskey583bd472006-10-27 23:46:08 +0000411 }
412}
413
414//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000415// SelectionDAG Class
416//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000417
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000418/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000419/// SelectionDAG.
420void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000421 // Create a dummy node (which is not added to allnodes), that adds a reference
422 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000423 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000424
Chris Lattner190a4182006-08-04 17:45:20 +0000425 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000426
Chris Lattner190a4182006-08-04 17:45:20 +0000427 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000428 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000429 if (I->use_empty())
430 DeadNodes.push_back(I);
431
432 // Process the worklist, deleting the nodes and adding their uses to the
433 // worklist.
434 while (!DeadNodes.empty()) {
435 SDNode *N = DeadNodes.back();
436 DeadNodes.pop_back();
437
438 // Take the node out of the appropriate CSE map.
439 RemoveNodeFromCSEMaps(N);
440
441 // Next, brutally remove the operand list. This is safe to do, as there are
442 // no cycles in the graph.
443 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
444 SDNode *Operand = I->Val;
445 Operand->removeUser(N);
446
447 // Now that we removed this operand, see if there are no uses of it left.
448 if (Operand->use_empty())
449 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000450 }
Chris Lattner190a4182006-08-04 17:45:20 +0000451 delete[] N->OperandList;
452 N->OperandList = 0;
453 N->NumOperands = 0;
454
455 // Finally, remove N itself.
456 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000457 }
458
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000459 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000460 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000461}
462
Evan Cheng130a6472006-10-12 20:34:05 +0000463void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
464 SmallVector<SDNode*, 16> DeadNodes;
465 DeadNodes.push_back(N);
466
467 // Process the worklist, deleting the nodes and adding their uses to the
468 // worklist.
469 while (!DeadNodes.empty()) {
470 SDNode *N = DeadNodes.back();
471 DeadNodes.pop_back();
472
473 // Take the node out of the appropriate CSE map.
474 RemoveNodeFromCSEMaps(N);
475
476 // Next, brutally remove the operand list. This is safe to do, as there are
477 // no cycles in the graph.
478 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
479 SDNode *Operand = I->Val;
480 Operand->removeUser(N);
481
482 // Now that we removed this operand, see if there are no uses of it left.
483 if (Operand->use_empty())
484 DeadNodes.push_back(Operand);
485 }
486 delete[] N->OperandList;
487 N->OperandList = 0;
488 N->NumOperands = 0;
489
490 // Finally, remove N itself.
491 Deleted.push_back(N);
492 AllNodes.erase(N);
493 }
494}
495
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000496void SelectionDAG::DeleteNode(SDNode *N) {
497 assert(N->use_empty() && "Cannot delete a node that is not dead!");
498
499 // First take this out of the appropriate CSE map.
500 RemoveNodeFromCSEMaps(N);
501
Chris Lattner1e111c72005-09-07 05:37:01 +0000502 // Finally, remove uses due to operands of this node, remove from the
503 // AllNodes list, and delete the node.
504 DeleteNodeNotInCSEMaps(N);
505}
506
507void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
508
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000509 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000510 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000511
512 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000513 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
514 I->Val->removeUser(N);
515 delete[] N->OperandList;
516 N->OperandList = 0;
517 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000518
519 delete N;
520}
521
Chris Lattner149c58c2005-08-16 18:17:10 +0000522/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
523/// correspond to it. This is useful when we're about to delete or repurpose
524/// the node. We don't want future request for structurally identical nodes
525/// to return N anymore.
526void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000527 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000528 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000529 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000530 case ISD::STRING:
531 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
532 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000533 case ISD::CONDCODE:
534 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
535 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000536 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000537 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
538 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000539 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000540 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000541 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000542 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000543 Erased =
544 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000545 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000546 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000547 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000548 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
549 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000550 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000551 // Remove it from the CSE Map.
552 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000553 break;
554 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000555#ifndef NDEBUG
556 // Verify that the node was actually in one of the CSE maps, unless it has a
557 // flag result (which cannot be CSE'd) or is one of the special cases that are
558 // not subject to CSE.
559 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000560 !N->isTargetOpcode()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000561 N->dump();
Evan Cheng99157a02006-08-07 22:13:29 +0000562 std::cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000563 assert(0 && "Node is not in map!");
564 }
565#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000566}
567
Chris Lattner8b8749f2005-08-17 19:00:20 +0000568/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
569/// has been taken out and modified in some way. If the specified node already
570/// exists in the CSE maps, do not modify the maps, but return the existing node
571/// instead. If it doesn't exist, add it and return null.
572///
573SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
574 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000575 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000576 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000577
Chris Lattner9f8cc692005-12-19 22:21:21 +0000578 // Check that remaining values produced are not flags.
579 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
580 if (N->getValueType(i) == MVT::Flag)
581 return 0; // Never CSE anything that produces a flag.
582
Chris Lattnera5682852006-08-07 23:03:03 +0000583 SDNode *New = CSEMap.GetOrInsertNode(N);
584 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000585 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000586}
587
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000588/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
589/// were replaced with those specified. If this node is never memoized,
590/// return null, otherwise return a pointer to the slot it would take. If a
591/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000592SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
593 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000594 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000595 return 0; // Never add these nodes.
596
597 // Check that remaining values produced are not flags.
598 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
599 if (N->getValueType(i) == MVT::Flag)
600 return 0; // Never CSE anything that produces a flag.
601
Jim Laskey583bd472006-10-27 23:46:08 +0000602 FoldingSetNodeID ID;
603 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Op);
Chris Lattnera5682852006-08-07 23:03:03 +0000604 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000605}
606
607/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
608/// were replaced with those specified. If this node is never memoized,
609/// return null, otherwise return a pointer to the slot it would take. If a
610/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000611SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
612 SDOperand Op1, SDOperand Op2,
613 void *&InsertPos) {
614 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
615 return 0; // Never add these nodes.
616
617 // Check that remaining values produced are not flags.
618 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
619 if (N->getValueType(i) == MVT::Flag)
620 return 0; // Never CSE anything that produces a flag.
621
Jim Laskey583bd472006-10-27 23:46:08 +0000622 FoldingSetNodeID ID;
623 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +0000624 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
625}
626
627
628/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
629/// were replaced with those specified. If this node is never memoized,
630/// return null, otherwise return a pointer to the slot it would take. If a
631/// node already exists with these operands, the slot will be non-null.
632SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000633 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000634 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000635 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000636 return 0; // Never add these nodes.
637
638 // Check that remaining values produced are not flags.
639 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
640 if (N->getValueType(i) == MVT::Flag)
641 return 0; // Never CSE anything that produces a flag.
642
Jim Laskey583bd472006-10-27 23:46:08 +0000643 FoldingSetNodeID ID;
644 AddNodeIDNode(ID, N->getOpcode(), N->getVTList());
645
Evan Cheng9629aba2006-10-11 01:47:58 +0000646 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
647 ID.AddInteger(LD->getAddressingMode());
648 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000649 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000650 ID.AddPointer(LD->getSrcValue());
651 ID.AddInteger(LD->getSrcValueOffset());
652 ID.AddInteger(LD->getAlignment());
653 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000654 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
655 ID.AddInteger(ST->getAddressingMode());
656 ID.AddInteger(ST->isTruncatingStore());
657 ID.AddInteger(ST->getStoredVT());
658 ID.AddPointer(ST->getSrcValue());
659 ID.AddInteger(ST->getSrcValueOffset());
660 ID.AddInteger(ST->getAlignment());
661 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000662 }
Jim Laskey583bd472006-10-27 23:46:08 +0000663
664 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000665 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000666}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000667
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000668
Chris Lattner78ec3112003-08-11 14:57:33 +0000669SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000670 while (!AllNodes.empty()) {
671 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000672 N->SetNextInBucket(0);
Chris Lattner65113b22005-11-08 22:07:03 +0000673 delete [] N->OperandList;
674 N->OperandList = 0;
675 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000676 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000677 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000678}
679
Chris Lattner0f2287b2005-04-13 02:38:18 +0000680SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000681 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000682 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000683 return getNode(ISD::AND, Op.getValueType(), Op,
684 getConstant(Imm, Op.getValueType()));
685}
686
Chris Lattner36ce6912005-11-29 06:21:05 +0000687SDOperand SelectionDAG::getString(const std::string &Val) {
688 StringSDNode *&N = StringNodes[Val];
689 if (!N) {
690 N = new StringSDNode(Val);
691 AllNodes.push_back(N);
692 }
693 return SDOperand(N, 0);
694}
695
Chris Lattner61b09412006-08-11 21:01:22 +0000696SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000697 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000698 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000699
Chris Lattner61b09412006-08-11 21:01:22 +0000700 // Mask out any bits that are not valid for this constant.
701 Val &= MVT::getIntVTBitMask(VT);
702
703 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000704 FoldingSetNodeID ID;
705 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000706 ID.AddInteger(Val);
707 void *IP = 0;
708 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
709 return SDOperand(E, 0);
710 SDNode *N = new ConstantSDNode(isT, Val, VT);
711 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000712 AllNodes.push_back(N);
713 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000714}
715
Chris Lattner61b09412006-08-11 21:01:22 +0000716
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000717SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
718 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000719 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
720 if (VT == MVT::f32)
721 Val = (float)Val; // Mask out extra precision.
722
Chris Lattnerd8658612005-02-17 20:17:32 +0000723 // Do the map lookup using the actual bit pattern for the floating point
724 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
725 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000726 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000727 FoldingSetNodeID ID;
728 AddNodeIDNode(ID, Opc, getVTList(VT));
729 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000730 void *IP = 0;
731 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
732 return SDOperand(E, 0);
733 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
734 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000735 AllNodes.push_back(N);
736 return SDOperand(N, 0);
737}
738
Chris Lattnerc3aae252005-01-07 07:46:32 +0000739SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000740 MVT::ValueType VT, int Offset,
741 bool isTargetGA) {
742 unsigned Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000743 FoldingSetNodeID ID;
744 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000745 ID.AddPointer(GV);
746 ID.AddInteger(Offset);
747 void *IP = 0;
748 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
749 return SDOperand(E, 0);
750 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
751 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000752 AllNodes.push_back(N);
753 return SDOperand(N, 0);
754}
755
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000756SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
757 bool isTarget) {
758 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000759 FoldingSetNodeID ID;
760 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000761 ID.AddInteger(FI);
762 void *IP = 0;
763 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
764 return SDOperand(E, 0);
765 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
766 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000767 AllNodes.push_back(N);
768 return SDOperand(N, 0);
769}
770
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000771SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
772 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000773 FoldingSetNodeID ID;
774 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000775 ID.AddInteger(JTI);
776 void *IP = 0;
777 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
778 return SDOperand(E, 0);
779 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
780 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000781 AllNodes.push_back(N);
782 return SDOperand(N, 0);
783}
784
Evan Chengb8973bd2006-01-31 22:23:14 +0000785SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000786 unsigned Alignment, int Offset,
787 bool isTarget) {
788 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000789 FoldingSetNodeID ID;
790 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000791 ID.AddInteger(Alignment);
792 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000793 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000794 void *IP = 0;
795 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
796 return SDOperand(E, 0);
797 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
798 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000799 AllNodes.push_back(N);
800 return SDOperand(N, 0);
801}
802
Chris Lattnerc3aae252005-01-07 07:46:32 +0000803
Evan Chengd6594ae2006-09-12 21:00:35 +0000804SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
805 MVT::ValueType VT,
806 unsigned Alignment, int Offset,
807 bool isTarget) {
808 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000809 FoldingSetNodeID ID;
810 AddNodeIDNode(ID, Opc, getVTList(VT));
Evan Chengd6594ae2006-09-12 21:00:35 +0000811 ID.AddInteger(Alignment);
812 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000813 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000814 void *IP = 0;
815 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
816 return SDOperand(E, 0);
817 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
818 CSEMap.InsertNode(N, IP);
819 AllNodes.push_back(N);
820 return SDOperand(N, 0);
821}
822
823
Chris Lattnerc3aae252005-01-07 07:46:32 +0000824SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000825 FoldingSetNodeID ID;
826 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other));
Chris Lattner61b09412006-08-11 21:01:22 +0000827 ID.AddPointer(MBB);
828 void *IP = 0;
829 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
830 return SDOperand(E, 0);
831 SDNode *N = new BasicBlockSDNode(MBB);
832 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000833 AllNodes.push_back(N);
834 return SDOperand(N, 0);
835}
836
Chris Lattner15e4b012005-07-10 00:07:11 +0000837SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
838 if ((unsigned)VT >= ValueTypeNodes.size())
839 ValueTypeNodes.resize(VT+1);
840 if (ValueTypeNodes[VT] == 0) {
841 ValueTypeNodes[VT] = new VTSDNode(VT);
842 AllNodes.push_back(ValueTypeNodes[VT]);
843 }
844
845 return SDOperand(ValueTypeNodes[VT], 0);
846}
847
Chris Lattnerc3aae252005-01-07 07:46:32 +0000848SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
849 SDNode *&N = ExternalSymbols[Sym];
850 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000851 N = new ExternalSymbolSDNode(false, Sym, VT);
852 AllNodes.push_back(N);
853 return SDOperand(N, 0);
854}
855
Chris Lattner809ec112006-01-28 10:09:25 +0000856SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
857 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000858 SDNode *&N = TargetExternalSymbols[Sym];
859 if (N) return SDOperand(N, 0);
860 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000861 AllNodes.push_back(N);
862 return SDOperand(N, 0);
863}
864
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000865SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
866 if ((unsigned)Cond >= CondCodeNodes.size())
867 CondCodeNodes.resize(Cond+1);
868
Chris Lattner079a27a2005-08-09 20:40:02 +0000869 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000870 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000871 AllNodes.push_back(CondCodeNodes[Cond]);
872 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000873 return SDOperand(CondCodeNodes[Cond], 0);
874}
875
Chris Lattner0fdd7682005-08-30 22:38:38 +0000876SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000877 FoldingSetNodeID ID;
878 AddNodeIDNode(ID, ISD::Register, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000879 ID.AddInteger(RegNo);
880 void *IP = 0;
881 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
882 return SDOperand(E, 0);
883 SDNode *N = new RegisterSDNode(RegNo, VT);
884 CSEMap.InsertNode(N, IP);
885 AllNodes.push_back(N);
886 return SDOperand(N, 0);
887}
888
889SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
890 assert((!V || isa<PointerType>(V->getType())) &&
891 "SrcValue is not a pointer?");
892
Jim Laskey583bd472006-10-27 23:46:08 +0000893 FoldingSetNodeID ID;
894 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other));
Chris Lattner61b09412006-08-11 21:01:22 +0000895 ID.AddPointer(V);
896 ID.AddInteger(Offset);
897 void *IP = 0;
898 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
899 return SDOperand(E, 0);
900 SDNode *N = new SrcValueSDNode(V, Offset);
901 CSEMap.InsertNode(N, IP);
902 AllNodes.push_back(N);
903 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000904}
905
Chris Lattner51dabfb2006-10-14 00:41:01 +0000906SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
907 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000908 // These setcc operations always fold.
909 switch (Cond) {
910 default: break;
911 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000912 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000913 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000914 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000915
916 case ISD::SETOEQ:
917 case ISD::SETOGT:
918 case ISD::SETOGE:
919 case ISD::SETOLT:
920 case ISD::SETOLE:
921 case ISD::SETONE:
922 case ISD::SETO:
923 case ISD::SETUO:
924 case ISD::SETUEQ:
925 case ISD::SETUNE:
926 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
927 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000928 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000929
Chris Lattner67255a12005-04-07 18:14:58 +0000930 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
931 uint64_t C2 = N2C->getValue();
932 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
933 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000934
Chris Lattnerc3aae252005-01-07 07:46:32 +0000935 // Sign extend the operands if required
936 if (ISD::isSignedIntSetCC(Cond)) {
937 C1 = N1C->getSignExtended();
938 C2 = N2C->getSignExtended();
939 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000940
Chris Lattnerc3aae252005-01-07 07:46:32 +0000941 switch (Cond) {
942 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000943 case ISD::SETEQ: return getConstant(C1 == C2, VT);
944 case ISD::SETNE: return getConstant(C1 != C2, VT);
945 case ISD::SETULT: return getConstant(C1 < C2, VT);
946 case ISD::SETUGT: return getConstant(C1 > C2, VT);
947 case ISD::SETULE: return getConstant(C1 <= C2, VT);
948 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
949 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
950 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
951 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
952 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000953 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000954 }
Chris Lattner67255a12005-04-07 18:14:58 +0000955 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000956 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
957 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
958 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000959
Chris Lattnerc3aae252005-01-07 07:46:32 +0000960 switch (Cond) {
961 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000962 case ISD::SETEQ: return getConstant(C1 == C2, VT);
963 case ISD::SETNE: return getConstant(C1 != C2, VT);
964 case ISD::SETLT: return getConstant(C1 < C2, VT);
965 case ISD::SETGT: return getConstant(C1 > C2, VT);
966 case ISD::SETLE: return getConstant(C1 <= C2, VT);
967 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000968 }
969 } else {
970 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000971 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000972 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000973
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000974 // Could not fold it.
975 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000976}
977
Chris Lattner51dabfb2006-10-14 00:41:01 +0000978
Chris Lattnerc3aae252005-01-07 07:46:32 +0000979/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000980///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000981SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000982 FoldingSetNodeID ID;
983 AddNodeIDNode(ID, Opcode, getVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000984 void *IP = 0;
985 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
986 return SDOperand(E, 0);
987 SDNode *N = new SDNode(Opcode, VT);
988 CSEMap.InsertNode(N, IP);
989
990 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000991 return SDOperand(N, 0);
992}
993
Chris Lattnerc3aae252005-01-07 07:46:32 +0000994SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
995 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000996 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000997 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000998 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
999 uint64_t Val = C->getValue();
1000 switch (Opcode) {
1001 default: break;
1002 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001003 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001004 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1005 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001006 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
1007 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001008 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001009 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001010 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001011 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001012 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001013 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001014 case ISD::BSWAP:
1015 switch(VT) {
1016 default: assert(0 && "Invalid bswap!"); break;
1017 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1018 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1019 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1020 }
1021 break;
1022 case ISD::CTPOP:
1023 switch(VT) {
1024 default: assert(0 && "Invalid ctpop!"); break;
1025 case MVT::i1: return getConstant(Val != 0, VT);
1026 case MVT::i8:
1027 Tmp1 = (unsigned)Val & 0xFF;
1028 return getConstant(CountPopulation_32(Tmp1), VT);
1029 case MVT::i16:
1030 Tmp1 = (unsigned)Val & 0xFFFF;
1031 return getConstant(CountPopulation_32(Tmp1), VT);
1032 case MVT::i32:
1033 return getConstant(CountPopulation_32((unsigned)Val), VT);
1034 case MVT::i64:
1035 return getConstant(CountPopulation_64(Val), VT);
1036 }
1037 case ISD::CTLZ:
1038 switch(VT) {
1039 default: assert(0 && "Invalid ctlz!"); break;
1040 case MVT::i1: return getConstant(Val == 0, VT);
1041 case MVT::i8:
1042 Tmp1 = (unsigned)Val & 0xFF;
1043 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1044 case MVT::i16:
1045 Tmp1 = (unsigned)Val & 0xFFFF;
1046 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1047 case MVT::i32:
1048 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1049 case MVT::i64:
1050 return getConstant(CountLeadingZeros_64(Val), VT);
1051 }
1052 case ISD::CTTZ:
1053 switch(VT) {
1054 default: assert(0 && "Invalid cttz!"); break;
1055 case MVT::i1: return getConstant(Val == 0, VT);
1056 case MVT::i8:
1057 Tmp1 = (unsigned)Val | 0x100;
1058 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1059 case MVT::i16:
1060 Tmp1 = (unsigned)Val | 0x10000;
1061 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1062 case MVT::i32:
1063 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1064 case MVT::i64:
1065 return getConstant(CountTrailingZeros_64(Val), VT);
1066 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001067 }
1068 }
1069
Chris Lattner94683772005-12-23 05:30:37 +00001070 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001071 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1072 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001073 case ISD::FNEG:
1074 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001075 case ISD::FABS:
1076 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001077 case ISD::FP_ROUND:
1078 case ISD::FP_EXTEND:
1079 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001080 case ISD::FP_TO_SINT:
1081 return getConstant((int64_t)C->getValue(), VT);
1082 case ISD::FP_TO_UINT:
1083 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001084 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001085 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001086 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001087 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001088 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001089 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001090 }
1091
1092 unsigned OpOpcode = Operand.Val->getOpcode();
1093 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001094 case ISD::TokenFactor:
1095 return Operand; // Factor of one node? No factor.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001096 case ISD::SIGN_EXTEND:
1097 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001098 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001099 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1100 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1101 break;
1102 case ISD::ZERO_EXTEND:
1103 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001104 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001105 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001106 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001107 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001108 case ISD::ANY_EXTEND:
1109 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001110 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001111 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1112 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1113 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1114 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001115 case ISD::TRUNCATE:
1116 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001117 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001118 if (OpOpcode == ISD::TRUNCATE)
1119 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001120 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1121 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001122 // If the source is smaller than the dest, we still need an extend.
1123 if (Operand.Val->getOperand(0).getValueType() < VT)
1124 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1125 else if (Operand.Val->getOperand(0).getValueType() > VT)
1126 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1127 else
1128 return Operand.Val->getOperand(0);
1129 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001130 break;
Chris Lattner35481892005-12-23 00:16:34 +00001131 case ISD::BIT_CONVERT:
1132 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001133 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Chris Lattner28b5b1c2006-03-15 22:19:46 +00001134 && "Cannot BIT_CONVERT between two different types!");
Chris Lattner35481892005-12-23 00:16:34 +00001135 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001136 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1137 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001138 if (OpOpcode == ISD::UNDEF)
1139 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001140 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001141 case ISD::SCALAR_TO_VECTOR:
1142 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1143 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1144 "Illegal SCALAR_TO_VECTOR node!");
1145 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001146 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001147 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1148 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001149 Operand.Val->getOperand(0));
1150 if (OpOpcode == ISD::FNEG) // --X -> X
1151 return Operand.Val->getOperand(0);
1152 break;
1153 case ISD::FABS:
1154 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1155 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1156 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001157 }
1158
Chris Lattner43247a12005-08-25 19:12:10 +00001159 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001160 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001161 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001162 FoldingSetNodeID ID;
1163 AddNodeIDNode(ID, Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001164 void *IP = 0;
1165 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1166 return SDOperand(E, 0);
1167 N = new SDNode(Opcode, Operand);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001168 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001169 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001170 } else {
1171 N = new SDNode(Opcode, Operand);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001172 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001173 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001174 AllNodes.push_back(N);
1175 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001176}
1177
Chris Lattner36019aa2005-04-18 03:48:41 +00001178
1179
Chris Lattnerc3aae252005-01-07 07:46:32 +00001180SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1181 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001182#ifndef NDEBUG
1183 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001184 case ISD::TokenFactor:
1185 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1186 N2.getValueType() == MVT::Other && "Invalid token factor!");
1187 break;
Chris Lattner76365122005-01-16 02:23:22 +00001188 case ISD::AND:
1189 case ISD::OR:
1190 case ISD::XOR:
1191 case ISD::UDIV:
1192 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001193 case ISD::MULHU:
1194 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001195 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1196 // fall through
1197 case ISD::ADD:
1198 case ISD::SUB:
1199 case ISD::MUL:
1200 case ISD::SDIV:
1201 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001202 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1203 // fall through.
1204 case ISD::FADD:
1205 case ISD::FSUB:
1206 case ISD::FMUL:
1207 case ISD::FDIV:
1208 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001209 assert(N1.getValueType() == N2.getValueType() &&
1210 N1.getValueType() == VT && "Binary operator types must match!");
1211 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001212 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1213 assert(N1.getValueType() == VT &&
1214 MVT::isFloatingPoint(N1.getValueType()) &&
1215 MVT::isFloatingPoint(N2.getValueType()) &&
1216 "Invalid FCOPYSIGN!");
1217 break;
Chris Lattner76365122005-01-16 02:23:22 +00001218 case ISD::SHL:
1219 case ISD::SRA:
1220 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001221 case ISD::ROTL:
1222 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001223 assert(VT == N1.getValueType() &&
1224 "Shift operators return type must be the same as their first arg");
1225 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001226 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001227 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001228 case ISD::FP_ROUND_INREG: {
1229 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1230 assert(VT == N1.getValueType() && "Not an inreg round!");
1231 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1232 "Cannot FP_ROUND_INREG integer types");
1233 assert(EVT <= VT && "Not rounding down!");
1234 break;
1235 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001236 case ISD::AssertSext:
1237 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001238 case ISD::SIGN_EXTEND_INREG: {
1239 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1240 assert(VT == N1.getValueType() && "Not an inreg extend!");
1241 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1242 "Cannot *_EXTEND_INREG FP types");
1243 assert(EVT <= VT && "Not extending!");
1244 }
1245
Chris Lattner76365122005-01-16 02:23:22 +00001246 default: break;
1247 }
1248#endif
1249
Chris Lattnerc3aae252005-01-07 07:46:32 +00001250 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1251 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1252 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001253 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1254 int64_t Val = N1C->getValue();
1255 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1256 Val <<= 64-FromBits;
1257 Val >>= 64-FromBits;
1258 return getConstant(Val, VT);
1259 }
1260
Chris Lattnerc3aae252005-01-07 07:46:32 +00001261 if (N2C) {
1262 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1263 switch (Opcode) {
1264 case ISD::ADD: return getConstant(C1 + C2, VT);
1265 case ISD::SUB: return getConstant(C1 - C2, VT);
1266 case ISD::MUL: return getConstant(C1 * C2, VT);
1267 case ISD::UDIV:
1268 if (C2) return getConstant(C1 / C2, VT);
1269 break;
1270 case ISD::UREM :
1271 if (C2) return getConstant(C1 % C2, VT);
1272 break;
1273 case ISD::SDIV :
1274 if (C2) return getConstant(N1C->getSignExtended() /
1275 N2C->getSignExtended(), VT);
1276 break;
1277 case ISD::SREM :
1278 if (C2) return getConstant(N1C->getSignExtended() %
1279 N2C->getSignExtended(), VT);
1280 break;
1281 case ISD::AND : return getConstant(C1 & C2, VT);
1282 case ISD::OR : return getConstant(C1 | C2, VT);
1283 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001284 case ISD::SHL : return getConstant(C1 << C2, VT);
1285 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001286 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001287 case ISD::ROTL :
1288 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1289 VT);
1290 case ISD::ROTR :
1291 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1292 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001293 default: break;
1294 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001295 } else { // Cannonicalize constant to RHS if commutative
1296 if (isCommutativeBinOp(Opcode)) {
1297 std::swap(N1C, N2C);
1298 std::swap(N1, N2);
1299 }
1300 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001301 }
1302
1303 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1304 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001305 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001306 if (N2CFP) {
1307 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1308 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001309 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1310 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1311 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1312 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001313 if (C2) return getConstantFP(C1 / C2, VT);
1314 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001315 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001316 if (C2) return getConstantFP(fmod(C1, C2), VT);
1317 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001318 case ISD::FCOPYSIGN: {
1319 union {
1320 double F;
1321 uint64_t I;
1322 } u1;
1323 union {
1324 double F;
1325 int64_t I;
1326 } u2;
1327 u1.F = C1;
1328 u2.F = C2;
1329 if (u2.I < 0) // Sign bit of RHS set?
1330 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1331 else
1332 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1333 return getConstantFP(u1.F, VT);
1334 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001335 default: break;
1336 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001337 } else { // Cannonicalize constant to RHS if commutative
1338 if (isCommutativeBinOp(Opcode)) {
1339 std::swap(N1CFP, N2CFP);
1340 std::swap(N1, N2);
1341 }
1342 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001343 }
Chris Lattner62b57722006-04-20 05:39:12 +00001344
1345 // Canonicalize an UNDEF to the RHS, even over a constant.
1346 if (N1.getOpcode() == ISD::UNDEF) {
1347 if (isCommutativeBinOp(Opcode)) {
1348 std::swap(N1, N2);
1349 } else {
1350 switch (Opcode) {
1351 case ISD::FP_ROUND_INREG:
1352 case ISD::SIGN_EXTEND_INREG:
1353 case ISD::SUB:
1354 case ISD::FSUB:
1355 case ISD::FDIV:
1356 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001357 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001358 return N1; // fold op(undef, arg2) -> undef
1359 case ISD::UDIV:
1360 case ISD::SDIV:
1361 case ISD::UREM:
1362 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001363 case ISD::SRL:
1364 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001365 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1366 }
1367 }
1368 }
1369
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001370 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001371 if (N2.getOpcode() == ISD::UNDEF) {
1372 switch (Opcode) {
1373 case ISD::ADD:
1374 case ISD::SUB:
1375 case ISD::FADD:
1376 case ISD::FSUB:
1377 case ISD::FMUL:
1378 case ISD::FDIV:
1379 case ISD::FREM:
1380 case ISD::UDIV:
1381 case ISD::SDIV:
1382 case ISD::UREM:
1383 case ISD::SREM:
1384 case ISD::XOR:
1385 return N2; // fold op(arg1, undef) -> undef
1386 case ISD::MUL:
1387 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001388 case ISD::SRL:
1389 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001390 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1391 case ISD::OR:
1392 return getConstant(MVT::getIntVTBitMask(VT), VT);
Chris Lattner2cfd6742006-05-08 17:29:49 +00001393 case ISD::SRA:
1394 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001395 }
1396 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001397
Chris Lattner51dabfb2006-10-14 00:41:01 +00001398 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001399 switch (Opcode) {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001400 case ISD::AND:
1401 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1402 // worth handling here.
1403 if (N2C && N2C->getValue() == 0)
1404 return N2;
1405 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001406 case ISD::OR:
1407 case ISD::XOR:
1408 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1409 // worth handling here.
1410 if (N2C && N2C->getValue() == 0)
1411 return N1;
1412 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001413 case ISD::FP_ROUND_INREG:
1414 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1415 break;
1416 case ISD::SIGN_EXTEND_INREG: {
1417 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1418 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001419 break;
1420 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001421 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001422 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1423
Chris Lattner5c6621c2006-09-19 04:51:23 +00001424 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1425 // 64-bit integers into 32-bit parts. Instead of building the extract of
1426 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001427 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001428 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001429
1430 // EXTRACT_ELEMENT of a constant int is also very common.
1431 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1432 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1433 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001434 }
1435 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001436
Nate Begemaneea805e2005-04-13 21:23:31 +00001437 // FIXME: figure out how to safely handle things like
1438 // int foo(int x) { return 1 << (x & 255); }
1439 // int bar() { return foo(256); }
1440#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001441 case ISD::SHL:
1442 case ISD::SRL:
1443 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001444 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001445 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001446 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001447 else if (N2.getOpcode() == ISD::AND)
1448 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1449 // If the and is only masking out bits that cannot effect the shift,
1450 // eliminate the and.
1451 unsigned NumBits = MVT::getSizeInBits(VT);
1452 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1453 return getNode(Opcode, VT, N1, N2.getOperand(0));
1454 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001455 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001456#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001457 }
1458
Chris Lattner27e9b412005-05-11 18:57:39 +00001459 // Memoize this node if possible.
1460 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001461 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001462 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001463 FoldingSetNodeID ID;
1464 AddNodeIDNode(ID, Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00001465 void *IP = 0;
1466 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1467 return SDOperand(E, 0);
1468 N = new SDNode(Opcode, N1, N2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001469 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001470 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001471 } else {
Chris Lattner88de6e72005-05-12 00:17:04 +00001472 N = new SDNode(Opcode, N1, N2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001473 N->setValueTypes(VTs);
Chris Lattner27e9b412005-05-11 18:57:39 +00001474 }
1475
Chris Lattnerc3aae252005-01-07 07:46:32 +00001476 AllNodes.push_back(N);
1477 return SDOperand(N, 0);
1478}
1479
Chris Lattnerc3aae252005-01-07 07:46:32 +00001480SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1481 SDOperand N1, SDOperand N2, SDOperand N3) {
1482 // Perform various simplifications.
1483 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1484 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerf1343c12006-05-12 18:04:28 +00001485 //ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001486 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001487 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001488 // Use FoldSetCC to simplify SETCC's.
1489 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001490 if (Simp.Val) return Simp;
1491 break;
1492 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001493 case ISD::SELECT:
1494 if (N1C)
1495 if (N1C->getValue())
1496 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001497 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001498 return N3; // select false, X, Y -> Y
1499
1500 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001501 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001502 case ISD::BRCOND:
1503 if (N2C)
1504 if (N2C->getValue()) // Unconditional branch
1505 return getNode(ISD::BR, MVT::Other, N1, N3);
1506 else
1507 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001508 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001509 case ISD::VECTOR_SHUFFLE:
1510 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1511 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1512 N3.getOpcode() == ISD::BUILD_VECTOR &&
1513 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1514 "Illegal VECTOR_SHUFFLE node!");
1515 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001516 }
1517
Chris Lattner43247a12005-08-25 19:12:10 +00001518 // Memoize node if it doesn't produce a flag.
1519 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001520 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001521 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001522 FoldingSetNodeID ID;
1523 AddNodeIDNode(ID, Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00001524 void *IP = 0;
1525 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1526 return SDOperand(E, 0);
1527 N = new SDNode(Opcode, N1, N2, N3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001528 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001529 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001530 } else {
1531 N = new SDNode(Opcode, N1, N2, N3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001532 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001533 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001534 AllNodes.push_back(N);
1535 return SDOperand(N, 0);
1536}
1537
1538SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001539 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001540 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001541 SDOperand Ops[] = { N1, N2, N3, N4 };
1542 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001543}
1544
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001545SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1546 SDOperand N1, SDOperand N2, SDOperand N3,
1547 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001548 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1549 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001550}
1551
Evan Cheng7038daf2005-12-10 00:37:58 +00001552SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1553 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001554 const Value *SV, int SVOffset,
1555 bool isVolatile) {
1556 // FIXME: Alignment == 1 for now.
1557 unsigned Alignment = 1;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001558 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001559 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jim Laskey583bd472006-10-27 23:46:08 +00001560 FoldingSetNodeID ID;
1561 AddNodeIDNode(ID, ISD::LOAD, VTs, Chain, Ptr, Undef);
Evan Cheng466685d2006-10-09 20:57:25 +00001562 ID.AddInteger(ISD::UNINDEXED);
1563 ID.AddInteger(ISD::NON_EXTLOAD);
1564 ID.AddInteger(VT);
1565 ID.AddPointer(SV);
1566 ID.AddInteger(SVOffset);
1567 ID.AddInteger(Alignment);
1568 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001569 void *IP = 0;
1570 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1571 return SDOperand(E, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001572 SDNode *N = new LoadSDNode(Chain, Ptr, Undef, ISD::UNINDEXED,
1573 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1574 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001575 N->setValueTypes(VTs);
1576 CSEMap.InsertNode(N, IP);
1577 AllNodes.push_back(N);
1578 return SDOperand(N, 0);
1579}
1580
1581SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
1582 SDOperand Chain, SDOperand Ptr, const Value *SV,
1583 int SVOffset, MVT::ValueType EVT,
1584 bool isVolatile) {
1585 // If they are asking for an extending load from/to the same thing, return a
1586 // normal load.
1587 if (VT == EVT)
1588 ExtType = ISD::NON_EXTLOAD;
1589
1590 if (MVT::isVector(VT))
1591 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1592 else
1593 assert(EVT < VT && "Should only be an extending load, not truncating!");
1594 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1595 "Cannot sign/zero extend a FP/Vector load!");
1596 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1597 "Cannot convert from FP to Int or Int -> FP!");
1598
1599 // FIXME: Alignment == 1 for now.
1600 unsigned Alignment = 1;
1601 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001602 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jim Laskey583bd472006-10-27 23:46:08 +00001603 FoldingSetNodeID ID;
1604 AddNodeIDNode(ID, ISD::LOAD, VTs, Chain, Ptr, Undef);
Evan Cheng466685d2006-10-09 20:57:25 +00001605 ID.AddInteger(ISD::UNINDEXED);
1606 ID.AddInteger(ExtType);
1607 ID.AddInteger(EVT);
1608 ID.AddPointer(SV);
1609 ID.AddInteger(SVOffset);
1610 ID.AddInteger(Alignment);
1611 ID.AddInteger(isVolatile);
1612 void *IP = 0;
1613 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1614 return SDOperand(E, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001615 SDNode *N = new LoadSDNode(Chain, Ptr, Undef, ISD::UNINDEXED, ExtType, EVT,
1616 SV, SVOffset, Alignment, isVolatile);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001617 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001618 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001619 AllNodes.push_back(N);
1620 return SDOperand(N, 0);
1621}
1622
Evan Cheng5270cf12006-10-26 21:53:40 +00001623SDOperand SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1624 SDOperand Offset, ISD::MemOpAddrMode AM){
Evan Cheng2caccca2006-10-17 21:14:32 +00001625 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001626 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1627 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001628 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001629 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Jim Laskey583bd472006-10-27 23:46:08 +00001630 FoldingSetNodeID ID;
1631 AddNodeIDNode(ID, ISD::LOAD, VTs, LD->getChain(), Base, Offset);
Evan Cheng2caccca2006-10-17 21:14:32 +00001632 ID.AddInteger(AM);
1633 ID.AddInteger(LD->getExtensionType());
1634 ID.AddInteger(LD->getLoadedVT());
1635 ID.AddPointer(LD->getSrcValue());
1636 ID.AddInteger(LD->getSrcValueOffset());
1637 ID.AddInteger(LD->getAlignment());
1638 ID.AddInteger(LD->isVolatile());
1639 void *IP = 0;
1640 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1641 return SDOperand(E, 0);
Evan Cheng5270cf12006-10-26 21:53:40 +00001642 SDNode *N = new LoadSDNode(LD->getChain(), Base, Offset, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001643 LD->getExtensionType(), LD->getLoadedVT(),
1644 LD->getSrcValue(), LD->getSrcValueOffset(),
1645 LD->getAlignment(), LD->isVolatile());
1646 N->setValueTypes(VTs);
1647 CSEMap.InsertNode(N, IP);
1648 AllNodes.push_back(N);
1649 return SDOperand(N, 0);
1650}
1651
Evan Cheng7038daf2005-12-10 00:37:58 +00001652SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1653 SDOperand Chain, SDOperand Ptr,
1654 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001655 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1656 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001657 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001658}
1659
Evan Chengad071e12006-10-05 22:57:11 +00001660SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Value,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001661 SDOperand Ptr, const Value *SV, int SVOffset,
1662 bool isVolatile) {
1663 MVT::ValueType VT = Value.getValueType();
1664
1665 // FIXME: Alignment == 1 for now.
1666 unsigned Alignment = 1;
Evan Chengad071e12006-10-05 22:57:11 +00001667 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001668 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1669 SDOperand Ops[] = { Chain, Value, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001670 FoldingSetNodeID ID;
1671 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001672 ID.AddInteger(ISD::UNINDEXED);
1673 ID.AddInteger(false);
1674 ID.AddInteger(VT);
1675 ID.AddPointer(SV);
1676 ID.AddInteger(SVOffset);
1677 ID.AddInteger(Alignment);
1678 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001679 void *IP = 0;
1680 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1681 return SDOperand(E, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001682 SDNode *N = new StoreSDNode(Chain, Value, Ptr, Undef, ISD::UNINDEXED, false,
1683 VT, SV, SVOffset, Alignment, isVolatile);
1684 N->setValueTypes(VTs);
1685 CSEMap.InsertNode(N, IP);
1686 AllNodes.push_back(N);
1687 return SDOperand(N, 0);
1688}
1689
1690SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Value,
1691 SDOperand Ptr, const Value *SV,
1692 int SVOffset, MVT::ValueType SVT,
1693 bool isVolatile) {
1694 MVT::ValueType VT = Value.getValueType();
1695 bool isTrunc = VT != SVT;
1696
1697 assert(VT > SVT && "Not a truncation?");
1698 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1699 "Can't do FP-INT conversion!");
1700
1701 // FIXME: Alignment == 1 for now.
1702 unsigned Alignment = 1;
1703 SDVTList VTs = getVTList(MVT::Other);
1704 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1705 SDOperand Ops[] = { Chain, Value, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001706 FoldingSetNodeID ID;
1707 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001708 ID.AddInteger(ISD::UNINDEXED);
1709 ID.AddInteger(isTrunc);
1710 ID.AddInteger(SVT);
1711 ID.AddPointer(SV);
1712 ID.AddInteger(SVOffset);
1713 ID.AddInteger(Alignment);
1714 ID.AddInteger(isVolatile);
1715 void *IP = 0;
1716 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1717 return SDOperand(E, 0);
1718 SDNode *N = new StoreSDNode(Chain, Value, Ptr, Undef, ISD::UNINDEXED, isTrunc,
1719 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001720 N->setValueTypes(VTs);
1721 CSEMap.InsertNode(N, IP);
1722 AllNodes.push_back(N);
1723 return SDOperand(N, 0);
1724}
1725
Nate Begemanacc398c2006-01-25 18:21:52 +00001726SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1727 SDOperand Chain, SDOperand Ptr,
1728 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001729 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001730 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001731}
1732
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001733SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001734 const SDOperand *Ops, unsigned NumOps) {
1735 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001736 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001737 case 1: return getNode(Opcode, VT, Ops[0]);
1738 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1739 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001740 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001741 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001742
Chris Lattneref847df2005-04-09 03:27:28 +00001743 switch (Opcode) {
1744 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001745 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001746 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001747 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1748 "LHS and RHS of condition must have same type!");
1749 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1750 "True and False arms of SelectCC must have same type!");
1751 assert(Ops[2].getValueType() == VT &&
1752 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001753 break;
1754 }
1755 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001756 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001757 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1758 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001759 break;
1760 }
Chris Lattneref847df2005-04-09 03:27:28 +00001761 }
1762
Chris Lattner385328c2005-05-14 07:42:29 +00001763 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001764 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001765 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001766 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001767 FoldingSetNodeID ID;
1768 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001769 void *IP = 0;
1770 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1771 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001772 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001773 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001774 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001775 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001776 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001777 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001778 }
Chris Lattneref847df2005-04-09 03:27:28 +00001779 AllNodes.push_back(N);
1780 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001781}
1782
Chris Lattner89c34632005-05-14 06:20:26 +00001783SDOperand SelectionDAG::getNode(unsigned Opcode,
1784 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001785 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001786 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1787 Ops, NumOps);
1788}
1789
1790SDOperand SelectionDAG::getNode(unsigned Opcode,
1791 const MVT::ValueType *VTs, unsigned NumVTs,
1792 const SDOperand *Ops, unsigned NumOps) {
1793 if (NumVTs == 1)
1794 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001795 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1796}
1797
1798SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1799 const SDOperand *Ops, unsigned NumOps) {
1800 if (VTList.NumVTs == 1)
1801 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001802
Chris Lattner5f056bf2005-07-10 01:55:33 +00001803 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001804 // FIXME: figure out how to safely handle things like
1805 // int foo(int x) { return 1 << (x & 255); }
1806 // int bar() { return foo(256); }
1807#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001808 case ISD::SRA_PARTS:
1809 case ISD::SRL_PARTS:
1810 case ISD::SHL_PARTS:
1811 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001812 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001813 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1814 else if (N3.getOpcode() == ISD::AND)
1815 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1816 // If the and is only masking out bits that cannot effect the shift,
1817 // eliminate the and.
1818 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1819 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1820 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1821 }
1822 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001823#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001824 }
Chris Lattner89c34632005-05-14 06:20:26 +00001825
Chris Lattner43247a12005-08-25 19:12:10 +00001826 // Memoize the node unless it returns a flag.
1827 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001828 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001829 FoldingSetNodeID ID;
1830 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001831 void *IP = 0;
1832 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1833 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001834 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001835 N->setValueTypes(VTList);
Chris Lattnera5682852006-08-07 23:03:03 +00001836 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001837 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001838 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001839 N->setValueTypes(VTList);
Chris Lattner43247a12005-08-25 19:12:10 +00001840 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001841 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001842 return SDOperand(N, 0);
1843}
1844
Chris Lattner70046e92006-08-15 17:46:01 +00001845SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1846 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001847}
1848
Chris Lattner70046e92006-08-15 17:46:01 +00001849SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001850 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1851 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001852 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001853 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001854 }
1855 std::vector<MVT::ValueType> V;
1856 V.push_back(VT1);
1857 V.push_back(VT2);
1858 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001859 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001860}
Chris Lattner70046e92006-08-15 17:46:01 +00001861SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1862 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001863 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001864 E = VTList.end(); I != E; ++I) {
1865 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1866 (*I)[2] == VT3)
1867 return makeVTList(&(*I)[0], 3);
1868 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001869 std::vector<MVT::ValueType> V;
1870 V.push_back(VT1);
1871 V.push_back(VT2);
1872 V.push_back(VT3);
1873 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001874 return makeVTList(&(*VTList.begin())[0], 3);
1875}
1876
1877SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1878 switch (NumVTs) {
1879 case 0: assert(0 && "Cannot have nodes without results!");
1880 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1881 case 2: return getVTList(VTs[0], VTs[1]);
1882 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1883 default: break;
1884 }
1885
1886 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1887 E = VTList.end(); I != E; ++I) {
1888 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1889
1890 bool NoMatch = false;
1891 for (unsigned i = 2; i != NumVTs; ++i)
1892 if (VTs[i] != (*I)[i]) {
1893 NoMatch = true;
1894 break;
1895 }
1896 if (!NoMatch)
1897 return makeVTList(&*I->begin(), NumVTs);
1898 }
1899
1900 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1901 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001902}
1903
1904
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001905/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1906/// specified operands. If the resultant node already exists in the DAG,
1907/// this does not modify the specified node, instead it returns the node that
1908/// already exists. If the resultant node does not exist in the DAG, the
1909/// input node is returned. As a degenerate case, if you specify the same
1910/// input operands as the node already has, the input node is returned.
1911SDOperand SelectionDAG::
1912UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1913 SDNode *N = InN.Val;
1914 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1915
1916 // Check to see if there is no change.
1917 if (Op == N->getOperand(0)) return InN;
1918
1919 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001920 void *InsertPos = 0;
1921 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1922 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001923
1924 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001925 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001926 RemoveNodeFromCSEMaps(N);
1927
1928 // Now we update the operands.
1929 N->OperandList[0].Val->removeUser(N);
1930 Op.Val->addUser(N);
1931 N->OperandList[0] = Op;
1932
1933 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001934 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001935 return InN;
1936}
1937
1938SDOperand SelectionDAG::
1939UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1940 SDNode *N = InN.Val;
1941 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1942
1943 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001944 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1945 return InN; // No operands changed, just return the input node.
1946
1947 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001948 void *InsertPos = 0;
1949 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1950 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001951
1952 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001953 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001954 RemoveNodeFromCSEMaps(N);
1955
1956 // Now we update the operands.
1957 if (N->OperandList[0] != Op1) {
1958 N->OperandList[0].Val->removeUser(N);
1959 Op1.Val->addUser(N);
1960 N->OperandList[0] = Op1;
1961 }
1962 if (N->OperandList[1] != Op2) {
1963 N->OperandList[1].Val->removeUser(N);
1964 Op2.Val->addUser(N);
1965 N->OperandList[1] = Op2;
1966 }
1967
1968 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001969 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001970 return InN;
1971}
1972
1973SDOperand SelectionDAG::
1974UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001975 SDOperand Ops[] = { Op1, Op2, Op3 };
1976 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001977}
1978
1979SDOperand SelectionDAG::
1980UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1981 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001982 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
1983 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001984}
1985
1986SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00001987UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1988 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001989 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
1990 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00001991}
1992
1993
1994SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001995UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001996 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001997 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001998 "Update with wrong number of operands");
1999
2000 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002001 bool AnyChange = false;
2002 for (unsigned i = 0; i != NumOps; ++i) {
2003 if (Ops[i] != N->getOperand(i)) {
2004 AnyChange = true;
2005 break;
2006 }
2007 }
2008
2009 // No operands changed, just return the input node.
2010 if (!AnyChange) return InN;
2011
2012 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002013 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002014 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002015 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002016
2017 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002018 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002019 RemoveNodeFromCSEMaps(N);
2020
2021 // Now we update the operands.
2022 for (unsigned i = 0; i != NumOps; ++i) {
2023 if (N->OperandList[i] != Ops[i]) {
2024 N->OperandList[i].Val->removeUser(N);
2025 Ops[i].Val->addUser(N);
2026 N->OperandList[i] = Ops[i];
2027 }
2028 }
2029
2030 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002031 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002032 return InN;
2033}
2034
2035
2036
Chris Lattner149c58c2005-08-16 18:17:10 +00002037
2038/// SelectNodeTo - These are used for target selectors to *mutate* the
2039/// specified node to have the specified return type, Target opcode, and
2040/// operands. Note that target opcodes are stored as
2041/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002042///
2043/// Note that SelectNodeTo returns the resultant node. If there is already a
2044/// node of the specified opcode and operands, it returns that node instead of
2045/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002046SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2047 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002048 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002049 FoldingSetNodeID ID;
2050 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs);
Chris Lattner4a283e92006-08-11 18:38:11 +00002051 void *IP = 0;
2052 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002053 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002054
Chris Lattner7651fa42005-08-24 23:00:29 +00002055 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002056
Chris Lattner7651fa42005-08-24 23:00:29 +00002057 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002058 N->setValueTypes(VTs);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002059
Chris Lattner4a283e92006-08-11 18:38:11 +00002060 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002061 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002062}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002063
Evan Cheng95514ba2006-08-26 08:00:10 +00002064SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2065 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002066 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002067 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002068 FoldingSetNodeID ID;
2069 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1);
Chris Lattnera5682852006-08-07 23:03:03 +00002070 void *IP = 0;
2071 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002072 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002073
Chris Lattner149c58c2005-08-16 18:17:10 +00002074 RemoveNodeFromCSEMaps(N);
2075 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002076 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002077 N->setOperands(Op1);
Chris Lattnera5682852006-08-07 23:03:03 +00002078 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002079 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002080}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002081
Evan Cheng95514ba2006-08-26 08:00:10 +00002082SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2083 MVT::ValueType VT, SDOperand Op1,
2084 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002085 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002086 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002087 FoldingSetNodeID ID;
2088 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +00002089 void *IP = 0;
2090 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002091 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002092
Chris Lattner149c58c2005-08-16 18:17:10 +00002093 RemoveNodeFromCSEMaps(N);
2094 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002095 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002096 N->setOperands(Op1, Op2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002097
Chris Lattnera5682852006-08-07 23:03:03 +00002098 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002099 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002100}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002101
Evan Cheng95514ba2006-08-26 08:00:10 +00002102SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2103 MVT::ValueType VT, SDOperand Op1,
2104 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002105 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002106 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002107 FoldingSetNodeID ID;
2108 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2, Op3);
Chris Lattnera5682852006-08-07 23:03:03 +00002109 void *IP = 0;
2110 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002111 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002112
Chris Lattner149c58c2005-08-16 18:17:10 +00002113 RemoveNodeFromCSEMaps(N);
2114 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002115 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002116 N->setOperands(Op1, Op2, Op3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002117
Chris Lattnera5682852006-08-07 23:03:03 +00002118 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002119 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002120}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002121
Evan Cheng95514ba2006-08-26 08:00:10 +00002122SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002123 MVT::ValueType VT, const SDOperand *Ops,
2124 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002125 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002126 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002127 FoldingSetNodeID ID;
2128 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002129 void *IP = 0;
2130 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002131 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002132
Chris Lattner6b09a292005-08-21 18:49:33 +00002133 RemoveNodeFromCSEMaps(N);
2134 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002135 N->setValueTypes(VTs);
Evan Cheng694481e2006-08-27 08:08:54 +00002136 N->setOperands(Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002137
Chris Lattnera5682852006-08-07 23:03:03 +00002138 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002139 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002140}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002141
Evan Cheng95514ba2006-08-26 08:00:10 +00002142SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2143 MVT::ValueType VT1, MVT::ValueType VT2,
2144 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002145 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002146 FoldingSetNodeID ID;
2147 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +00002148 void *IP = 0;
2149 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002150 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002151
Chris Lattner0fb094f2005-11-19 01:44:53 +00002152 RemoveNodeFromCSEMaps(N);
2153 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002154 N->setValueTypes(VTs);
Chris Lattner0fb094f2005-11-19 01:44:53 +00002155 N->setOperands(Op1, Op2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002156
Chris Lattnera5682852006-08-07 23:03:03 +00002157 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002158 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002159}
2160
Evan Cheng95514ba2006-08-26 08:00:10 +00002161SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2162 MVT::ValueType VT1, MVT::ValueType VT2,
2163 SDOperand Op1, SDOperand Op2,
2164 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002165 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002166 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002167 FoldingSetNodeID ID;
2168 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2, Op3);
Chris Lattnera5682852006-08-07 23:03:03 +00002169 void *IP = 0;
2170 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002171 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002172
Chris Lattner0fb094f2005-11-19 01:44:53 +00002173 RemoveNodeFromCSEMaps(N);
2174 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002175 N->setValueTypes(VTs);
Chris Lattner0fb094f2005-11-19 01:44:53 +00002176 N->setOperands(Op1, Op2, Op3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002177
Chris Lattnera5682852006-08-07 23:03:03 +00002178 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002179 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002180}
2181
Chris Lattner0fb094f2005-11-19 01:44:53 +00002182
Evan Cheng6ae46c42006-02-09 07:15:23 +00002183/// getTargetNode - These are used for target selectors to create a new node
2184/// with specified return type(s), target opcode, and operands.
2185///
2186/// Note that getTargetNode returns the resultant node. If there is already a
2187/// node of the specified opcode and operands, it returns that node instead of
2188/// the current one.
2189SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2190 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2191}
2192SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2193 SDOperand Op1) {
2194 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2195}
2196SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2197 SDOperand Op1, SDOperand Op2) {
2198 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2199}
2200SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2201 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2202 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2203}
2204SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002205 const SDOperand *Ops, unsigned NumOps) {
2206 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002207}
2208SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2209 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002210 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002211 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002212}
2213SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002214 MVT::ValueType VT2, SDOperand Op1,
2215 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002216 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002217 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002218 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002219}
2220SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002221 MVT::ValueType VT2, SDOperand Op1,
2222 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002223 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002224 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002225 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002226}
Evan Cheng694481e2006-08-27 08:08:54 +00002227SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2228 MVT::ValueType VT2,
2229 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002230 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002231 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002232}
2233SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2234 MVT::ValueType VT2, MVT::ValueType VT3,
2235 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002236 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002237 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002238 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002239}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002240SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002241 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002242 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002243 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2244 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002245}
2246
Evan Cheng99157a02006-08-07 22:13:29 +00002247/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002248/// This can cause recursive merging of nodes in the DAG.
2249///
Chris Lattner8b52f212005-08-26 18:36:28 +00002250/// This version assumes From/To have a single result value.
2251///
Chris Lattner1e111c72005-09-07 05:37:01 +00002252void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2253 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002254 SDNode *From = FromN.Val, *To = ToN.Val;
2255 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2256 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002257 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002258
Chris Lattner8b8749f2005-08-17 19:00:20 +00002259 while (!From->use_empty()) {
2260 // Process users until they are all gone.
2261 SDNode *U = *From->use_begin();
2262
2263 // This node is about to morph, remove its old self from the CSE maps.
2264 RemoveNodeFromCSEMaps(U);
2265
Chris Lattner65113b22005-11-08 22:07:03 +00002266 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2267 I != E; ++I)
2268 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002269 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002270 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002271 To->addUser(U);
2272 }
2273
2274 // Now that we have modified U, add it back to the CSE maps. If it already
2275 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002276 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2277 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002278 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002279 if (Deleted) Deleted->push_back(U);
2280 DeleteNodeNotInCSEMaps(U);
2281 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002282 }
2283}
2284
2285/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2286/// This can cause recursive merging of nodes in the DAG.
2287///
2288/// This version assumes From/To have matching types and numbers of result
2289/// values.
2290///
Chris Lattner1e111c72005-09-07 05:37:01 +00002291void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2292 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002293 assert(From != To && "Cannot replace uses of with self");
2294 assert(From->getNumValues() == To->getNumValues() &&
2295 "Cannot use this version of ReplaceAllUsesWith!");
2296 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002297 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002298 return;
2299 }
2300
2301 while (!From->use_empty()) {
2302 // Process users until they are all gone.
2303 SDNode *U = *From->use_begin();
2304
2305 // This node is about to morph, remove its old self from the CSE maps.
2306 RemoveNodeFromCSEMaps(U);
2307
Chris Lattner65113b22005-11-08 22:07:03 +00002308 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2309 I != E; ++I)
2310 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002311 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002312 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002313 To->addUser(U);
2314 }
2315
2316 // Now that we have modified U, add it back to the CSE maps. If it already
2317 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002318 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2319 ReplaceAllUsesWith(U, Existing, Deleted);
2320 // U is now dead.
2321 if (Deleted) Deleted->push_back(U);
2322 DeleteNodeNotInCSEMaps(U);
2323 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002324 }
2325}
2326
Chris Lattner8b52f212005-08-26 18:36:28 +00002327/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2328/// This can cause recursive merging of nodes in the DAG.
2329///
2330/// This version can replace From with any result values. To must match the
2331/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002332void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002333 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002334 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002335 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002336 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002337 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002338 return;
2339 }
2340
2341 while (!From->use_empty()) {
2342 // Process users until they are all gone.
2343 SDNode *U = *From->use_begin();
2344
2345 // This node is about to morph, remove its old self from the CSE maps.
2346 RemoveNodeFromCSEMaps(U);
2347
Chris Lattner65113b22005-11-08 22:07:03 +00002348 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2349 I != E; ++I)
2350 if (I->Val == From) {
2351 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002352 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002353 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002354 ToOp.Val->addUser(U);
2355 }
2356
2357 // Now that we have modified U, add it back to the CSE maps. If it already
2358 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002359 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2360 ReplaceAllUsesWith(U, Existing, Deleted);
2361 // U is now dead.
2362 if (Deleted) Deleted->push_back(U);
2363 DeleteNodeNotInCSEMaps(U);
2364 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002365 }
2366}
2367
Chris Lattner012f2412006-02-17 21:58:01 +00002368/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2369/// uses of other values produced by From.Val alone. The Deleted vector is
2370/// handled the same was as for ReplaceAllUsesWith.
2371void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2372 std::vector<SDNode*> &Deleted) {
2373 assert(From != To && "Cannot replace a value with itself");
2374 // Handle the simple, trivial, case efficiently.
2375 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2376 ReplaceAllUsesWith(From, To, &Deleted);
2377 return;
2378 }
2379
2380 // Get all of the users in a nice, deterministically ordered, uniqued set.
2381 SetVector<SDNode*> Users(From.Val->use_begin(), From.Val->use_end());
2382
2383 while (!Users.empty()) {
2384 // We know that this user uses some value of From. If it is the right
2385 // value, update it.
2386 SDNode *User = Users.back();
2387 Users.pop_back();
2388
2389 for (SDOperand *Op = User->OperandList,
2390 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2391 if (*Op == From) {
2392 // Okay, we know this user needs to be updated. Remove its old self
2393 // from the CSE maps.
2394 RemoveNodeFromCSEMaps(User);
2395
2396 // Update all operands that match "From".
2397 for (; Op != E; ++Op) {
2398 if (*Op == From) {
2399 From.Val->removeUser(User);
2400 *Op = To;
2401 To.Val->addUser(User);
2402 }
2403 }
2404
2405 // Now that we have modified User, add it back to the CSE maps. If it
2406 // already exists there, recursively merge the results together.
2407 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2408 unsigned NumDeleted = Deleted.size();
2409 ReplaceAllUsesWith(User, Existing, &Deleted);
2410
2411 // User is now dead.
2412 Deleted.push_back(User);
2413 DeleteNodeNotInCSEMaps(User);
2414
2415 // We have to be careful here, because ReplaceAllUsesWith could have
2416 // deleted a user of From, which means there may be dangling pointers
2417 // in the "Users" setvector. Scan over the deleted node pointers and
2418 // remove them from the setvector.
2419 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2420 Users.remove(Deleted[i]);
2421 }
2422 break; // Exit the operand scanning loop.
2423 }
2424 }
2425 }
2426}
2427
Chris Lattner7b2880c2005-08-24 22:44:39 +00002428
Evan Chenge6f35d82006-08-01 08:20:41 +00002429/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2430/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002431unsigned SelectionDAG::AssignNodeIds() {
2432 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002433 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2434 SDNode *N = I;
2435 N->setNodeId(Id++);
2436 }
2437 return Id;
2438}
2439
Evan Chenge6f35d82006-08-01 08:20:41 +00002440/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002441/// based on their topological order. It returns the maximum id and a vector
2442/// of the SDNodes* in assigned order by reference.
2443unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002444 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002445 std::vector<unsigned> InDegree(DAGSize);
2446 std::vector<SDNode*> Sources;
2447
2448 // Use a two pass approach to avoid using a std::map which is slow.
2449 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002450 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2451 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002452 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002453 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002454 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002455 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002456 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002457 }
2458
Evan Cheng99157a02006-08-07 22:13:29 +00002459 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002460 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002461 SDNode *N = Sources.back();
2462 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002463 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002464 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2465 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002466 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002467 if (Degree == 0)
2468 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002469 }
2470 }
2471
Evan Chengc384d6c2006-08-02 22:00:34 +00002472 // Second pass, assign the actual topological order as node ids.
2473 Id = 0;
2474 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2475 TI != TE; ++TI)
2476 (*TI)->setNodeId(Id++);
2477
2478 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002479}
2480
2481
Evan Cheng091cba12006-07-27 06:39:06 +00002482
Jim Laskey58b968b2005-08-17 20:08:02 +00002483//===----------------------------------------------------------------------===//
2484// SDNode Class
2485//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002486
Chris Lattner917d2c92006-07-19 00:00:37 +00002487// Out-of-line virtual method to give class a home.
2488void SDNode::ANCHOR() {
2489}
2490
Jim Laskey583bd472006-10-27 23:46:08 +00002491/// Profile - Gather unique data for the node.
2492///
2493void SDNode::Profile(FoldingSetNodeID &ID) {
2494 AddNodeIDNode(ID, this);
2495}
2496
Chris Lattnera3255112005-11-08 23:30:28 +00002497/// getValueTypeList - Return a pointer to the specified value type.
2498///
2499MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2500 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2501 VTs[VT] = VT;
2502 return &VTs[VT];
2503}
Chris Lattnera5682852006-08-07 23:03:03 +00002504
Chris Lattner5c884562005-01-12 18:37:47 +00002505/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2506/// indicated value. This method ignores uses of other values defined by this
2507/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002508bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002509 assert(Value < getNumValues() && "Bad value!");
2510
2511 // If there is only one value, this is easy.
2512 if (getNumValues() == 1)
2513 return use_size() == NUses;
2514 if (Uses.size() < NUses) return false;
2515
Evan Cheng4ee62112006-02-05 06:29:23 +00002516 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002517
2518 std::set<SDNode*> UsersHandled;
2519
Chris Lattnerf83482d2006-08-16 20:59:32 +00002520 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002521 SDNode *User = *UI;
2522 if (User->getNumOperands() == 1 ||
2523 UsersHandled.insert(User).second) // First time we've seen this?
2524 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2525 if (User->getOperand(i) == TheValue) {
2526 if (NUses == 0)
2527 return false; // too many uses
2528 --NUses;
2529 }
2530 }
2531
2532 // Found exactly the right number of uses?
2533 return NUses == 0;
2534}
2535
2536
Evan Cheng4ee62112006-02-05 06:29:23 +00002537// isOnlyUse - Return true if this node is the only use of N.
2538bool SDNode::isOnlyUse(SDNode *N) const {
2539 bool Seen = false;
2540 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2541 SDNode *User = *I;
2542 if (User == this)
2543 Seen = true;
2544 else
2545 return false;
2546 }
2547
2548 return Seen;
2549}
2550
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002551// isOperand - Return true if this node is an operand of N.
Evan Chengbfa284f2006-03-03 06:42:32 +00002552bool SDOperand::isOperand(SDNode *N) const {
2553 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2554 if (*this == N->getOperand(i))
2555 return true;
2556 return false;
2557}
2558
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002559bool SDNode::isOperand(SDNode *N) const {
2560 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2561 if (this == N->OperandList[i].Val)
2562 return true;
2563 return false;
2564}
Evan Cheng4ee62112006-02-05 06:29:23 +00002565
Evan Chengc5fc57d2006-11-03 03:05:24 +00002566static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
2567 std::set<SDNode *> &Visited) {
2568 if (found || !Visited.insert(N).second)
2569 return;
2570
2571 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2572 SDNode *Op = N->getOperand(i).Val;
2573 if (Op == P) {
2574 found = true;
2575 return;
2576 }
2577 findPredecessor(Op, P, found, Visited);
2578 }
2579}
2580
2581// isPredecessor - Return true if this node is a predecessor of N.
2582bool SDNode::isPredecessor(SDNode *N) const {
2583 std::set<SDNode *> Visited;
2584 bool found = false;
2585 findPredecessor(N, this, found, Visited);
2586 return found;
2587}
2588
Evan Chengc5484282006-10-04 00:56:09 +00002589uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2590 assert(Num < NumOperands && "Invalid child # of SDNode!");
2591 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2592}
2593
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002594const char *SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002595 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002596 default:
2597 if (getOpcode() < ISD::BUILTIN_OP_END)
2598 return "<<Unknown DAG Node>>";
2599 else {
Evan Cheng72261582005-12-20 06:22:03 +00002600 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002601 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002602 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2603 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002604
Evan Cheng72261582005-12-20 06:22:03 +00002605 TargetLowering &TLI = G->getTargetLoweringInfo();
2606 const char *Name =
2607 TLI.getTargetNodeName(getOpcode());
2608 if (Name) return Name;
2609 }
2610
2611 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002612 }
2613
Andrew Lenharth95762122005-03-31 21:24:06 +00002614 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002615 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002616 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002617 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002618 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002619 case ISD::AssertSext: return "AssertSext";
2620 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002621
2622 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002623 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002624 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002625 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002626
2627 case ISD::Constant: return "Constant";
2628 case ISD::ConstantFP: return "ConstantFP";
2629 case ISD::GlobalAddress: return "GlobalAddress";
2630 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002631 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002632 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Chris Lattner5839bf22005-08-26 17:15:30 +00002633 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002634 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002635 case ISD::INTRINSIC_WO_CHAIN: {
2636 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2637 return Intrinsic::getName((Intrinsic::ID)IID);
2638 }
2639 case ISD::INTRINSIC_VOID:
2640 case ISD::INTRINSIC_W_CHAIN: {
2641 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002642 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002643 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002644
Chris Lattnerb2827b02006-03-19 00:52:58 +00002645 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002646 case ISD::TargetConstant: return "TargetConstant";
2647 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002648 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2649 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002650 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002651 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002652 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002653
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002654 case ISD::CopyToReg: return "CopyToReg";
2655 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002656 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002657 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002658 case ISD::INLINEASM: return "inlineasm";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002659 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002660 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002661 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002662
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002663 // Unary operators
2664 case ISD::FABS: return "fabs";
2665 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002666 case ISD::FSQRT: return "fsqrt";
2667 case ISD::FSIN: return "fsin";
2668 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002669 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002670
2671 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002672 case ISD::ADD: return "add";
2673 case ISD::SUB: return "sub";
2674 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002675 case ISD::MULHU: return "mulhu";
2676 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002677 case ISD::SDIV: return "sdiv";
2678 case ISD::UDIV: return "udiv";
2679 case ISD::SREM: return "srem";
2680 case ISD::UREM: return "urem";
2681 case ISD::AND: return "and";
2682 case ISD::OR: return "or";
2683 case ISD::XOR: return "xor";
2684 case ISD::SHL: return "shl";
2685 case ISD::SRA: return "sra";
2686 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002687 case ISD::ROTL: return "rotl";
2688 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002689 case ISD::FADD: return "fadd";
2690 case ISD::FSUB: return "fsub";
2691 case ISD::FMUL: return "fmul";
2692 case ISD::FDIV: return "fdiv";
2693 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002694 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002695 case ISD::VADD: return "vadd";
2696 case ISD::VSUB: return "vsub";
2697 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002698 case ISD::VSDIV: return "vsdiv";
2699 case ISD::VUDIV: return "vudiv";
2700 case ISD::VAND: return "vand";
2701 case ISD::VOR: return "vor";
2702 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002703
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002704 case ISD::SETCC: return "setcc";
2705 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002706 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002707 case ISD::VSELECT: return "vselect";
2708 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2709 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2710 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002711 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002712 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2713 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2714 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2715 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2716 case ISD::VBIT_CONVERT: return "vbit_convert";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002717 case ISD::ADDC: return "addc";
2718 case ISD::ADDE: return "adde";
2719 case ISD::SUBC: return "subc";
2720 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002721 case ISD::SHL_PARTS: return "shl_parts";
2722 case ISD::SRA_PARTS: return "sra_parts";
2723 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002724
Chris Lattner7f644642005-04-28 21:44:03 +00002725 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002726 case ISD::SIGN_EXTEND: return "sign_extend";
2727 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002728 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002729 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002730 case ISD::TRUNCATE: return "truncate";
2731 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002732 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002733 case ISD::FP_EXTEND: return "fp_extend";
2734
2735 case ISD::SINT_TO_FP: return "sint_to_fp";
2736 case ISD::UINT_TO_FP: return "uint_to_fp";
2737 case ISD::FP_TO_SINT: return "fp_to_sint";
2738 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002739 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002740
2741 // Control flow instructions
2742 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002743 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002744 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002745 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002746 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002747 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002748 case ISD::CALLSEQ_START: return "callseq_start";
2749 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002750
2751 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002752 case ISD::LOAD: return "load";
2753 case ISD::STORE: return "store";
2754 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002755 case ISD::VAARG: return "vaarg";
2756 case ISD::VACOPY: return "vacopy";
2757 case ISD::VAEND: return "vaend";
2758 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002759 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002760 case ISD::EXTRACT_ELEMENT: return "extract_element";
2761 case ISD::BUILD_PAIR: return "build_pair";
2762 case ISD::STACKSAVE: return "stacksave";
2763 case ISD::STACKRESTORE: return "stackrestore";
2764
2765 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002766 case ISD::MEMSET: return "memset";
2767 case ISD::MEMCPY: return "memcpy";
2768 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002769
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002770 // Bit manipulation
2771 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002772 case ISD::CTPOP: return "ctpop";
2773 case ISD::CTTZ: return "cttz";
2774 case ISD::CTLZ: return "ctlz";
2775
Chris Lattner36ce6912005-11-29 06:21:05 +00002776 // Debug info
2777 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002778 case ISD::DEBUG_LOC: return "debug_loc";
Jim Laskeyabf6d172006-01-05 01:25:28 +00002779 case ISD::DEBUG_LABEL: return "debug_label";
Chris Lattner36ce6912005-11-29 06:21:05 +00002780
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002781 case ISD::CONDCODE:
2782 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002783 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002784 case ISD::SETOEQ: return "setoeq";
2785 case ISD::SETOGT: return "setogt";
2786 case ISD::SETOGE: return "setoge";
2787 case ISD::SETOLT: return "setolt";
2788 case ISD::SETOLE: return "setole";
2789 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002790
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002791 case ISD::SETO: return "seto";
2792 case ISD::SETUO: return "setuo";
2793 case ISD::SETUEQ: return "setue";
2794 case ISD::SETUGT: return "setugt";
2795 case ISD::SETUGE: return "setuge";
2796 case ISD::SETULT: return "setult";
2797 case ISD::SETULE: return "setule";
2798 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002799
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002800 case ISD::SETEQ: return "seteq";
2801 case ISD::SETGT: return "setgt";
2802 case ISD::SETGE: return "setge";
2803 case ISD::SETLT: return "setlt";
2804 case ISD::SETLE: return "setle";
2805 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002806 }
2807 }
2808}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002809
Evan Cheng2caccca2006-10-17 21:14:32 +00002810const char *SDNode::getAddressingModeName(ISD::MemOpAddrMode AM) {
2811 switch (AM) {
2812 default:
2813 return "";
2814 case ISD::PRE_INC:
2815 return "<pre-inc>";
2816 case ISD::PRE_DEC:
2817 return "<pre-dec>";
2818 case ISD::POST_INC:
2819 return "<post-inc>";
2820 case ISD::POST_DEC:
2821 return "<post-dec>";
2822 }
2823}
2824
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002825void SDNode::dump() const { dump(0); }
2826void SDNode::dump(const SelectionDAG *G) const {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002827 std::cerr << (void*)this << ": ";
2828
2829 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
2830 if (i) std::cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002831 if (getValueType(i) == MVT::Other)
2832 std::cerr << "ch";
2833 else
2834 std::cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002835 }
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002836 std::cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002837
2838 std::cerr << " ";
2839 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2840 if (i) std::cerr << ", ";
2841 std::cerr << (void*)getOperand(i).Val;
2842 if (unsigned RN = getOperand(i).ResNo)
2843 std::cerr << ":" << RN;
2844 }
2845
2846 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
2847 std::cerr << "<" << CSDN->getValue() << ">";
2848 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
2849 std::cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002850 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00002851 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00002852 int offset = GADN->getOffset();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002853 std::cerr << "<";
2854 WriteAsOperand(std::cerr, GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00002855 if (offset > 0)
2856 std::cerr << " + " << offset;
2857 else
2858 std::cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002859 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002860 std::cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00002861 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
2862 std::cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002863 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00002864 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00002865 if (CP->isMachineConstantPoolEntry())
2866 std::cerr << "<" << *CP->getMachineCPVal() << ">";
2867 else
2868 std::cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00002869 if (offset > 0)
2870 std::cerr << " + " << offset;
2871 else
2872 std::cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002873 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002874 std::cerr << "<";
2875 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2876 if (LBB)
2877 std::cerr << LBB->getName() << " ";
2878 std::cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00002879 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00002880 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner7228aa72005-08-19 21:21:16 +00002881 std::cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
2882 } else {
2883 std::cerr << " #" << R->getReg();
2884 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002885 } else if (const ExternalSymbolSDNode *ES =
2886 dyn_cast<ExternalSymbolSDNode>(this)) {
2887 std::cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002888 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2889 if (M->getValue())
2890 std::cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
2891 else
2892 std::cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00002893 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
2894 std::cerr << ":" << getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002895 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
2896 bool doExt = true;
2897 switch (LD->getExtensionType()) {
2898 default: doExt = false; break;
2899 case ISD::EXTLOAD:
2900 std::cerr << " <anyext ";
2901 break;
2902 case ISD::SEXTLOAD:
2903 std::cerr << " <sext ";
2904 break;
2905 case ISD::ZEXTLOAD:
2906 std::cerr << " <zext ";
2907 break;
2908 }
2909 if (doExt)
Evan Cheng2e49f092006-10-11 07:10:22 +00002910 std::cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002911
Evan Cheng2caccca2006-10-17 21:14:32 +00002912 const char *AM = getAddressingModeName(LD->getAddressingMode());
2913 if (AM != "")
2914 std::cerr << " " << AM;
2915 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
2916 if (ST->isTruncatingStore())
2917 std::cerr << " <trunc "
2918 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
2919
2920 const char *AM = getAddressingModeName(ST->getAddressingMode());
2921 if (AM != "")
2922 std::cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002923 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002924}
2925
Chris Lattnerde202b32005-11-09 23:47:37 +00002926static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002927 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2928 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002929 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002930 else
2931 std::cerr << "\n" << std::string(indent+2, ' ')
2932 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002933
Chris Lattnerea946cd2005-01-09 20:38:33 +00002934
2935 std::cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002936 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002937}
2938
Chris Lattnerc3aae252005-01-07 07:46:32 +00002939void SelectionDAG::dump() const {
2940 std::cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00002941 std::vector<const SDNode*> Nodes;
2942 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
2943 I != E; ++I)
2944 Nodes.push_back(I);
2945
Chris Lattner49d24712005-01-09 20:26:36 +00002946 std::sort(Nodes.begin(), Nodes.end());
2947
2948 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002949 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002950 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002951 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00002952
Jim Laskey26f7fa72006-10-17 19:33:52 +00002953 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002954
Chris Lattnerc3aae252005-01-07 07:46:32 +00002955 std::cerr << "\n\n";
2956}
2957
Evan Chengd6594ae2006-09-12 21:00:35 +00002958const Type *ConstantPoolSDNode::getType() const {
2959 if (isMachineConstantPoolEntry())
2960 return Val.MachineCPVal->getType();
2961 return Val.ConstVal->getType();
2962}