blob: 5f92df3f2d54d59baf6b64ab073292a035290961 [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"
Chris Lattner0e12e6e2005-01-07 21:09:16 +000029#include <set>
Jeff Cohenfd161e92005-01-09 20:41:56 +000030#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000031#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner0b3e5252006-08-15 19:11:05 +000034/// makeVTList - Return an instance of the SDVTList struct initialized with the
35/// specified members.
36static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
37 SDVTList Res = {VTs, NumVTs};
38 return Res;
39}
40
Jim Laskey58b968b2005-08-17 20:08:02 +000041//===----------------------------------------------------------------------===//
42// ConstantFPSDNode Class
43//===----------------------------------------------------------------------===//
44
45/// isExactlyValue - We don't rely on operator== working on double values, as
46/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
47/// As such, this method can be used to do an exact bit-for-bit comparison of
48/// two floating point values.
49bool ConstantFPSDNode::isExactlyValue(double V) const {
50 return DoubleToBits(V) == DoubleToBits(Value);
51}
52
53//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000054// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000055//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000056
Evan Chenga8df1662006-03-27 06:58:47 +000057/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000058/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000059bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000060 // Look through a bit convert.
61 if (N->getOpcode() == ISD::BIT_CONVERT)
62 N = N->getOperand(0).Val;
63
Evan Chenga8df1662006-03-27 06:58:47 +000064 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000065
66 unsigned i = 0, e = N->getNumOperands();
67
68 // Skip over all of the undef values.
69 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
70 ++i;
71
72 // Do not accept an all-undef vector.
73 if (i == e) return false;
74
75 // Do not accept build_vectors that aren't all constants or which have non-~0
76 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000077 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000078 if (isa<ConstantSDNode>(NotZero)) {
79 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
80 return false;
81 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000082 MVT::ValueType VT = NotZero.getValueType();
83 if (VT== MVT::f64) {
84 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
85 (uint64_t)-1)
86 return false;
87 } else {
88 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
89 (uint32_t)-1)
90 return false;
91 }
Evan Chenga8df1662006-03-27 06:58:47 +000092 } else
Chris Lattner61d43992006-03-25 22:57:01 +000093 return false;
94
95 // Okay, we have at least one ~0 value, check to see if the rest match or are
96 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000097 for (++i; i != e; ++i)
98 if (N->getOperand(i) != NotZero &&
99 N->getOperand(i).getOpcode() != ISD::UNDEF)
100 return false;
101 return true;
102}
103
104
Evan Cheng4a147842006-03-26 09:50:58 +0000105/// isBuildVectorAllZeros - Return true if the specified node is a
106/// BUILD_VECTOR where all of the elements are 0 or undef.
107bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000108 // Look through a bit convert.
109 if (N->getOpcode() == ISD::BIT_CONVERT)
110 N = N->getOperand(0).Val;
111
Evan Cheng4a147842006-03-26 09:50:58 +0000112 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000113
114 unsigned i = 0, e = N->getNumOperands();
115
116 // Skip over all of the undef values.
117 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
118 ++i;
119
120 // Do not accept an all-undef vector.
121 if (i == e) return false;
122
123 // Do not accept build_vectors that aren't all constants or which have non-~0
124 // elements.
125 SDOperand Zero = N->getOperand(i);
126 if (isa<ConstantSDNode>(Zero)) {
127 if (!cast<ConstantSDNode>(Zero)->isNullValue())
128 return false;
129 } else if (isa<ConstantFPSDNode>(Zero)) {
130 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
131 return false;
132 } else
133 return false;
134
135 // Okay, we have at least one ~0 value, check to see if the rest match or are
136 // undefs.
137 for (++i; i != e; ++i)
138 if (N->getOperand(i) != Zero &&
139 N->getOperand(i).getOpcode() != ISD::UNDEF)
140 return false;
141 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000142}
143
Chris Lattnerc3aae252005-01-07 07:46:32 +0000144/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
145/// when given the operation for (X op Y).
146ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
147 // To perform this operation, we just need to swap the L and G bits of the
148 // operation.
149 unsigned OldL = (Operation >> 2) & 1;
150 unsigned OldG = (Operation >> 1) & 1;
151 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
152 (OldL << 1) | // New G bit
153 (OldG << 2)); // New L bit.
154}
155
156/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
157/// 'op' is a valid SetCC operation.
158ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
159 unsigned Operation = Op;
160 if (isInteger)
161 Operation ^= 7; // Flip L, G, E bits, but not U.
162 else
163 Operation ^= 15; // Flip all of the condition bits.
164 if (Operation > ISD::SETTRUE2)
165 Operation &= ~8; // Don't let N and U bits get set.
166 return ISD::CondCode(Operation);
167}
168
169
170/// isSignedOp - For an integer comparison, return 1 if the comparison is a
171/// signed operation and 2 if the result is an unsigned comparison. Return zero
172/// if the operation does not depend on the sign of the input (setne and seteq).
173static int isSignedOp(ISD::CondCode Opcode) {
174 switch (Opcode) {
175 default: assert(0 && "Illegal integer setcc operation!");
176 case ISD::SETEQ:
177 case ISD::SETNE: return 0;
178 case ISD::SETLT:
179 case ISD::SETLE:
180 case ISD::SETGT:
181 case ISD::SETGE: return 1;
182 case ISD::SETULT:
183 case ISD::SETULE:
184 case ISD::SETUGT:
185 case ISD::SETUGE: return 2;
186 }
187}
188
189/// getSetCCOrOperation - Return the result of a logical OR between different
190/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
191/// returns SETCC_INVALID if it is not possible to represent the resultant
192/// comparison.
193ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
194 bool isInteger) {
195 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
196 // Cannot fold a signed integer setcc with an unsigned integer setcc.
197 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000198
Chris Lattnerc3aae252005-01-07 07:46:32 +0000199 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000200
Chris Lattnerc3aae252005-01-07 07:46:32 +0000201 // If the N and U bits get set then the resultant comparison DOES suddenly
202 // care about orderedness, and is true when ordered.
203 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000204 Op &= ~16; // Clear the U bit if the N bit is set.
205
206 // Canonicalize illegal integer setcc's.
207 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
208 Op = ISD::SETNE;
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210 return ISD::CondCode(Op);
211}
212
213/// getSetCCAndOperation - Return the result of a logical AND between different
214/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
215/// function returns zero if it is not possible to represent the resultant
216/// comparison.
217ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
218 bool isInteger) {
219 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
220 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000221 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000222
223 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000224 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
225
226 // Canonicalize illegal integer setcc's.
227 if (isInteger) {
228 switch (Result) {
229 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000230 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
231 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
232 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
233 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000234 }
235 }
236
237 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000238}
239
Chris Lattnerb48da392005-01-23 04:39:44 +0000240const TargetMachine &SelectionDAG::getTarget() const {
241 return TLI.getTargetMachine();
242}
243
Jim Laskey58b968b2005-08-17 20:08:02 +0000244//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000245// SDNode Profile Support
246//===----------------------------------------------------------------------===//
247
Jim Laskeydef69b92006-10-27 23:52:51 +0000248/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
249///
Jim Laskey583bd472006-10-27 23:46:08 +0000250static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
251 ID.AddInteger(OpC);
252}
253
254/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
255/// solely with their pointer.
256void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
257 ID.AddPointer(VTList.VTs);
258}
259
Jim Laskeydef69b92006-10-27 23:52:51 +0000260/// AddNodeIDOperand - Add an operands data to the NodeID data.
261///
Jim Laskey583bd472006-10-27 23:46:08 +0000262static void AddNodeIDOperand(FoldingSetNodeID &ID, SDOperand Op) {
263 ID.AddPointer(Op.Val);
264 ID.AddInteger(Op.ResNo);
265}
266
Jim Laskeydef69b92006-10-27 23:52:51 +0000267/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
268///
Jim Laskey583bd472006-10-27 23:46:08 +0000269static void AddNodeIDOperands(FoldingSetNodeID &ID) {
270}
Jim Laskeydef69b92006-10-27 23:52:51 +0000271static void AddNodeIDOperands(FoldingSetNodeID &ID, SDOperand Op) {
Jim Laskey583bd472006-10-27 23:46:08 +0000272 AddNodeIDOperand(ID, Op);
273}
274static void AddNodeIDOperands(FoldingSetNodeID &ID,
275 SDOperand Op1, SDOperand Op2) {
276 AddNodeIDOperand(ID, Op1);
277 AddNodeIDOperand(ID, Op2);
278}
279static void AddNodeIDOperands(FoldingSetNodeID &ID,
280 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
281 AddNodeIDOperand(ID, Op1);
282 AddNodeIDOperand(ID, Op2);
283 AddNodeIDOperand(ID, Op3);
284}
285static void AddNodeIDOperands(FoldingSetNodeID &ID,
286 const SDOperand *Ops, unsigned NumOps) {
287 for (; NumOps; --NumOps, ++Ops)
288 AddNodeIDOperand(ID, *Ops);
289}
290
Jim Laskeydef69b92006-10-27 23:52:51 +0000291/// AddNodeIDOperands - Various routines for adding node info to the NodeID
292/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000293static void AddNodeIDNode(FoldingSetNodeID &ID,
294 unsigned short OpC, SDVTList VTList) {
295 AddNodeIDOpcode(ID, OpC);
296 AddNodeIDValueTypes(ID, VTList);
297 AddNodeIDOperands(ID);
298}
299static void AddNodeIDNode(FoldingSetNodeID &ID,
300 unsigned short OpC, SDVTList VTList,
301 SDOperand Op) {
302 AddNodeIDOpcode(ID, OpC);
303 AddNodeIDValueTypes(ID, VTList);
304 AddNodeIDOperands(ID, Op);
305}
306static void AddNodeIDNode(FoldingSetNodeID &ID,
307 unsigned short OpC, SDVTList VTList,
308 SDOperand Op1, SDOperand Op2) {
309 AddNodeIDOpcode(ID, OpC);
310 AddNodeIDValueTypes(ID, VTList);
311 AddNodeIDOperands(ID, Op1, Op2);
312}
313static void AddNodeIDNode(FoldingSetNodeID &ID,
314 unsigned short OpC, SDVTList VTList,
315 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
316 AddNodeIDOpcode(ID, OpC);
317 AddNodeIDValueTypes(ID, VTList);
Chris Lattner6fb6ef42006-10-28 06:15:26 +0000318 AddNodeIDOperands(ID, Op1, Op2, Op3);
Jim Laskey583bd472006-10-27 23:46:08 +0000319}
320static void AddNodeIDNode(FoldingSetNodeID &ID,
321 unsigned short OpC, SDVTList VTList,
322 const SDOperand *OpList, unsigned N) {
323 AddNodeIDOpcode(ID, OpC);
324 AddNodeIDValueTypes(ID, VTList);
325 AddNodeIDOperands(ID, OpList, N);
326}
327
Jim Laskeydef69b92006-10-27 23:52:51 +0000328/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
329/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000330static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
331 AddNodeIDOpcode(ID, N->getOpcode());
332 // Add the return value info.
333 AddNodeIDValueTypes(ID, N->getVTList());
334 // Add the operand info.
335 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
336
337 // Handle SDNode leafs with special info.
338 if (N->getNumOperands() == 0) {
339 switch (N->getOpcode()) {
340 default: break; // Normal nodes don't need extra info.
341 case ISD::TargetConstant:
342 case ISD::Constant:
343 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
344 break;
345 case ISD::TargetConstantFP:
346 case ISD::ConstantFP:
347 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
348 break;
349 case ISD::TargetGlobalAddress:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000350 case ISD::GlobalAddress: {
351 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
352 ID.AddPointer(GA->getGlobal());
353 ID.AddInteger(GA->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000354 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000355 }
Jim Laskey583bd472006-10-27 23:46:08 +0000356 case ISD::BasicBlock:
357 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
358 break;
359 case ISD::Register:
360 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
361 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000362 case ISD::SRCVALUE: {
363 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
364 ID.AddPointer(SV->getValue());
365 ID.AddInteger(SV->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000366 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000367 }
Jim Laskey583bd472006-10-27 23:46:08 +0000368 case ISD::FrameIndex:
369 case ISD::TargetFrameIndex:
370 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
371 break;
372 case ISD::JumpTable:
373 case ISD::TargetJumpTable:
374 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
375 break;
376 case ISD::ConstantPool:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000377 case ISD::TargetConstantPool: {
378 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
379 ID.AddInteger(CP->getAlignment());
380 ID.AddInteger(CP->getOffset());
381 if (CP->isMachineConstantPoolEntry())
382 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
Jim Laskey583bd472006-10-27 23:46:08 +0000383 else
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000384 ID.AddPointer(CP->getConstVal());
Jim Laskey583bd472006-10-27 23:46:08 +0000385 break;
386 }
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000387 case ISD::LOAD: {
388 LoadSDNode *LD = cast<LoadSDNode>(N);
389 ID.AddInteger(LD->getAddressingMode());
390 ID.AddInteger(LD->getExtensionType());
391 ID.AddInteger(LD->getLoadedVT());
392 ID.AddPointer(LD->getSrcValue());
393 ID.AddInteger(LD->getSrcValueOffset());
394 ID.AddInteger(LD->getAlignment());
395 ID.AddInteger(LD->isVolatile());
396 break;
397 }
398 case ISD::STORE: {
399 StoreSDNode *ST = cast<StoreSDNode>(N);
400 ID.AddInteger(ST->getAddressingMode());
401 ID.AddInteger(ST->isTruncatingStore());
402 ID.AddInteger(ST->getStoredVT());
403 ID.AddPointer(ST->getSrcValue());
404 ID.AddInteger(ST->getSrcValueOffset());
405 ID.AddInteger(ST->getAlignment());
406 ID.AddInteger(ST->isVolatile());
407 break;
408 }
409 }
Jim Laskey583bd472006-10-27 23:46:08 +0000410 }
411}
412
413//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000414// SelectionDAG Class
415//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000416
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000417/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000418/// SelectionDAG.
419void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000420 // Create a dummy node (which is not added to allnodes), that adds a reference
421 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000422 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000423
Chris Lattner190a4182006-08-04 17:45:20 +0000424 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000425
Chris Lattner190a4182006-08-04 17:45:20 +0000426 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000427 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000428 if (I->use_empty())
429 DeadNodes.push_back(I);
430
431 // Process the worklist, deleting the nodes and adding their uses to the
432 // worklist.
433 while (!DeadNodes.empty()) {
434 SDNode *N = DeadNodes.back();
435 DeadNodes.pop_back();
436
437 // Take the node out of the appropriate CSE map.
438 RemoveNodeFromCSEMaps(N);
439
440 // Next, brutally remove the operand list. This is safe to do, as there are
441 // no cycles in the graph.
442 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
443 SDNode *Operand = I->Val;
444 Operand->removeUser(N);
445
446 // Now that we removed this operand, see if there are no uses of it left.
447 if (Operand->use_empty())
448 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000449 }
Chris Lattner190a4182006-08-04 17:45:20 +0000450 delete[] N->OperandList;
451 N->OperandList = 0;
452 N->NumOperands = 0;
453
454 // Finally, remove N itself.
455 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000456 }
457
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000458 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000459 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000460}
461
Evan Cheng130a6472006-10-12 20:34:05 +0000462void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
463 SmallVector<SDNode*, 16> DeadNodes;
464 DeadNodes.push_back(N);
465
466 // Process the worklist, deleting the nodes and adding their uses to the
467 // worklist.
468 while (!DeadNodes.empty()) {
469 SDNode *N = DeadNodes.back();
470 DeadNodes.pop_back();
471
472 // Take the node out of the appropriate CSE map.
473 RemoveNodeFromCSEMaps(N);
474
475 // Next, brutally remove the operand list. This is safe to do, as there are
476 // no cycles in the graph.
477 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
478 SDNode *Operand = I->Val;
479 Operand->removeUser(N);
480
481 // Now that we removed this operand, see if there are no uses of it left.
482 if (Operand->use_empty())
483 DeadNodes.push_back(Operand);
484 }
485 delete[] N->OperandList;
486 N->OperandList = 0;
487 N->NumOperands = 0;
488
489 // Finally, remove N itself.
490 Deleted.push_back(N);
491 AllNodes.erase(N);
492 }
493}
494
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000495void SelectionDAG::DeleteNode(SDNode *N) {
496 assert(N->use_empty() && "Cannot delete a node that is not dead!");
497
498 // First take this out of the appropriate CSE map.
499 RemoveNodeFromCSEMaps(N);
500
Chris Lattner1e111c72005-09-07 05:37:01 +0000501 // Finally, remove uses due to operands of this node, remove from the
502 // AllNodes list, and delete the node.
503 DeleteNodeNotInCSEMaps(N);
504}
505
506void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
507
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000508 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000509 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000510
511 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000512 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
513 I->Val->removeUser(N);
514 delete[] N->OperandList;
515 N->OperandList = 0;
516 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000517
518 delete N;
519}
520
Chris Lattner149c58c2005-08-16 18:17:10 +0000521/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
522/// correspond to it. This is useful when we're about to delete or repurpose
523/// the node. We don't want future request for structurally identical nodes
524/// to return N anymore.
525void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000526 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000527 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000528 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000529 case ISD::STRING:
530 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
531 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000532 case ISD::CONDCODE:
533 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
534 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000535 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000536 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
537 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000538 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000539 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000540 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000541 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000542 Erased =
543 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000544 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000545 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000546 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000547 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
548 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000549 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000550 // Remove it from the CSE Map.
551 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000552 break;
553 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000554#ifndef NDEBUG
555 // Verify that the node was actually in one of the CSE maps, unless it has a
556 // flag result (which cannot be CSE'd) or is one of the special cases that are
557 // not subject to CSE.
558 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000559 !N->isTargetOpcode()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000560 N->dump();
Bill Wendling832171c2006-12-07 20:04:42 +0000561 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000562 assert(0 && "Node is not in map!");
563 }
564#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000565}
566
Chris Lattner8b8749f2005-08-17 19:00:20 +0000567/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
568/// has been taken out and modified in some way. If the specified node already
569/// exists in the CSE maps, do not modify the maps, but return the existing node
570/// instead. If it doesn't exist, add it and return null.
571///
572SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
573 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000574 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000575 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000576
Chris Lattner9f8cc692005-12-19 22:21:21 +0000577 // Check that remaining values produced are not flags.
578 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
579 if (N->getValueType(i) == MVT::Flag)
580 return 0; // Never CSE anything that produces a flag.
581
Chris Lattnera5682852006-08-07 23:03:03 +0000582 SDNode *New = CSEMap.GetOrInsertNode(N);
583 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000584 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000585}
586
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000587/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
588/// were replaced with those specified. If this node is never memoized,
589/// return null, otherwise return a pointer to the slot it would take. If a
590/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000591SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
592 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000593 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000594 return 0; // Never add these nodes.
595
596 // Check that remaining values produced are not flags.
597 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
598 if (N->getValueType(i) == MVT::Flag)
599 return 0; // Never CSE anything that produces a flag.
600
Jim Laskey583bd472006-10-27 23:46:08 +0000601 FoldingSetNodeID ID;
602 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Op);
Chris Lattnera5682852006-08-07 23:03:03 +0000603 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000604}
605
606/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
607/// were replaced with those specified. If this node is never memoized,
608/// return null, otherwise return a pointer to the slot it would take. If a
609/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000610SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
611 SDOperand Op1, SDOperand Op2,
612 void *&InsertPos) {
613 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
614 return 0; // Never add these nodes.
615
616 // Check that remaining values produced are not flags.
617 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
618 if (N->getValueType(i) == MVT::Flag)
619 return 0; // Never CSE anything that produces a flag.
620
Jim Laskey583bd472006-10-27 23:46:08 +0000621 FoldingSetNodeID ID;
622 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +0000623 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
624}
625
626
627/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
628/// were replaced with those specified. If this node is never memoized,
629/// return null, otherwise return a pointer to the slot it would take. If a
630/// node already exists with these operands, the slot will be non-null.
631SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000632 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000633 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000634 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000635 return 0; // Never add these nodes.
636
637 // Check that remaining values produced are not flags.
638 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
639 if (N->getValueType(i) == MVT::Flag)
640 return 0; // Never CSE anything that produces a flag.
641
Jim Laskey583bd472006-10-27 23:46:08 +0000642 FoldingSetNodeID ID;
643 AddNodeIDNode(ID, N->getOpcode(), N->getVTList());
644
Evan Cheng9629aba2006-10-11 01:47:58 +0000645 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
646 ID.AddInteger(LD->getAddressingMode());
647 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000648 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000649 ID.AddPointer(LD->getSrcValue());
650 ID.AddInteger(LD->getSrcValueOffset());
651 ID.AddInteger(LD->getAlignment());
652 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000653 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
654 ID.AddInteger(ST->getAddressingMode());
655 ID.AddInteger(ST->isTruncatingStore());
656 ID.AddInteger(ST->getStoredVT());
657 ID.AddPointer(ST->getSrcValue());
658 ID.AddInteger(ST->getSrcValueOffset());
659 ID.AddInteger(ST->getAlignment());
660 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000661 }
Jim Laskey583bd472006-10-27 23:46:08 +0000662
663 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000664 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000665}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000666
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000667
Chris Lattner78ec3112003-08-11 14:57:33 +0000668SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000669 while (!AllNodes.empty()) {
670 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000671 N->SetNextInBucket(0);
Chris Lattner65113b22005-11-08 22:07:03 +0000672 delete [] N->OperandList;
673 N->OperandList = 0;
674 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000675 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000676 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000677}
678
Chris Lattner0f2287b2005-04-13 02:38:18 +0000679SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000680 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000681 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000682 return getNode(ISD::AND, Op.getValueType(), Op,
683 getConstant(Imm, Op.getValueType()));
684}
685
Chris Lattner36ce6912005-11-29 06:21:05 +0000686SDOperand SelectionDAG::getString(const std::string &Val) {
687 StringSDNode *&N = StringNodes[Val];
688 if (!N) {
689 N = new StringSDNode(Val);
690 AllNodes.push_back(N);
691 }
692 return SDOperand(N, 0);
693}
694
Chris Lattner61b09412006-08-11 21:01:22 +0000695SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000696 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000697 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000698
Chris Lattner61b09412006-08-11 21:01:22 +0000699 // Mask out any bits that are not valid for this constant.
700 Val &= MVT::getIntVTBitMask(VT);
701
702 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000703 FoldingSetNodeID ID;
704 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000705 ID.AddInteger(Val);
706 void *IP = 0;
707 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
708 return SDOperand(E, 0);
709 SDNode *N = new ConstantSDNode(isT, Val, VT);
710 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000711 AllNodes.push_back(N);
712 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000713}
714
Chris Lattner61b09412006-08-11 21:01:22 +0000715
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000716SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
717 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000718 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
719 if (VT == MVT::f32)
720 Val = (float)Val; // Mask out extra precision.
721
Chris Lattnerd8658612005-02-17 20:17:32 +0000722 // Do the map lookup using the actual bit pattern for the floating point
723 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
724 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000725 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000726 FoldingSetNodeID ID;
727 AddNodeIDNode(ID, Opc, getVTList(VT));
728 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000729 void *IP = 0;
730 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
731 return SDOperand(E, 0);
732 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
733 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000734 AllNodes.push_back(N);
735 return SDOperand(N, 0);
736}
737
Chris Lattnerc3aae252005-01-07 07:46:32 +0000738SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000739 MVT::ValueType VT, int Offset,
740 bool isTargetGA) {
741 unsigned Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000742 FoldingSetNodeID ID;
743 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000744 ID.AddPointer(GV);
745 ID.AddInteger(Offset);
746 void *IP = 0;
747 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
748 return SDOperand(E, 0);
749 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
750 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000751 AllNodes.push_back(N);
752 return SDOperand(N, 0);
753}
754
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000755SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
756 bool isTarget) {
757 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000758 FoldingSetNodeID ID;
759 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000760 ID.AddInteger(FI);
761 void *IP = 0;
762 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
763 return SDOperand(E, 0);
764 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
765 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000766 AllNodes.push_back(N);
767 return SDOperand(N, 0);
768}
769
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000770SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
771 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000772 FoldingSetNodeID ID;
773 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000774 ID.AddInteger(JTI);
775 void *IP = 0;
776 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
777 return SDOperand(E, 0);
778 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
779 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000780 AllNodes.push_back(N);
781 return SDOperand(N, 0);
782}
783
Evan Chengb8973bd2006-01-31 22:23:14 +0000784SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000785 unsigned Alignment, int Offset,
786 bool isTarget) {
787 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000788 FoldingSetNodeID ID;
789 AddNodeIDNode(ID, Opc, getVTList(VT));
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000790 ID.AddInteger(Alignment);
791 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000792 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000793 void *IP = 0;
794 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
795 return SDOperand(E, 0);
796 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
797 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000798 AllNodes.push_back(N);
799 return SDOperand(N, 0);
800}
801
Chris Lattnerc3aae252005-01-07 07:46:32 +0000802
Evan Chengd6594ae2006-09-12 21:00:35 +0000803SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
804 MVT::ValueType VT,
805 unsigned Alignment, int Offset,
806 bool isTarget) {
807 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000808 FoldingSetNodeID ID;
809 AddNodeIDNode(ID, Opc, getVTList(VT));
Evan Chengd6594ae2006-09-12 21:00:35 +0000810 ID.AddInteger(Alignment);
811 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000812 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000813 void *IP = 0;
814 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
815 return SDOperand(E, 0);
816 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
817 CSEMap.InsertNode(N, IP);
818 AllNodes.push_back(N);
819 return SDOperand(N, 0);
820}
821
822
Chris Lattnerc3aae252005-01-07 07:46:32 +0000823SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000824 FoldingSetNodeID ID;
825 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other));
Chris Lattner61b09412006-08-11 21:01:22 +0000826 ID.AddPointer(MBB);
827 void *IP = 0;
828 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
829 return SDOperand(E, 0);
830 SDNode *N = new BasicBlockSDNode(MBB);
831 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000832 AllNodes.push_back(N);
833 return SDOperand(N, 0);
834}
835
Chris Lattner15e4b012005-07-10 00:07:11 +0000836SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
837 if ((unsigned)VT >= ValueTypeNodes.size())
838 ValueTypeNodes.resize(VT+1);
839 if (ValueTypeNodes[VT] == 0) {
840 ValueTypeNodes[VT] = new VTSDNode(VT);
841 AllNodes.push_back(ValueTypeNodes[VT]);
842 }
843
844 return SDOperand(ValueTypeNodes[VT], 0);
845}
846
Chris Lattnerc3aae252005-01-07 07:46:32 +0000847SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
848 SDNode *&N = ExternalSymbols[Sym];
849 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000850 N = new ExternalSymbolSDNode(false, Sym, VT);
851 AllNodes.push_back(N);
852 return SDOperand(N, 0);
853}
854
Chris Lattner809ec112006-01-28 10:09:25 +0000855SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
856 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000857 SDNode *&N = TargetExternalSymbols[Sym];
858 if (N) return SDOperand(N, 0);
859 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000860 AllNodes.push_back(N);
861 return SDOperand(N, 0);
862}
863
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000864SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
865 if ((unsigned)Cond >= CondCodeNodes.size())
866 CondCodeNodes.resize(Cond+1);
867
Chris Lattner079a27a2005-08-09 20:40:02 +0000868 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000869 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000870 AllNodes.push_back(CondCodeNodes[Cond]);
871 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000872 return SDOperand(CondCodeNodes[Cond], 0);
873}
874
Chris Lattner0fdd7682005-08-30 22:38:38 +0000875SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000876 FoldingSetNodeID ID;
877 AddNodeIDNode(ID, ISD::Register, getVTList(VT));
Chris Lattner61b09412006-08-11 21:01:22 +0000878 ID.AddInteger(RegNo);
879 void *IP = 0;
880 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
881 return SDOperand(E, 0);
882 SDNode *N = new RegisterSDNode(RegNo, VT);
883 CSEMap.InsertNode(N, IP);
884 AllNodes.push_back(N);
885 return SDOperand(N, 0);
886}
887
888SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
889 assert((!V || isa<PointerType>(V->getType())) &&
890 "SrcValue is not a pointer?");
891
Jim Laskey583bd472006-10-27 23:46:08 +0000892 FoldingSetNodeID ID;
893 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other));
Chris Lattner61b09412006-08-11 21:01:22 +0000894 ID.AddPointer(V);
895 ID.AddInteger(Offset);
896 void *IP = 0;
897 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
898 return SDOperand(E, 0);
899 SDNode *N = new SrcValueSDNode(V, Offset);
900 CSEMap.InsertNode(N, IP);
901 AllNodes.push_back(N);
902 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000903}
904
Chris Lattner51dabfb2006-10-14 00:41:01 +0000905SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
906 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000907 // These setcc operations always fold.
908 switch (Cond) {
909 default: break;
910 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000911 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000912 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000913 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000914
915 case ISD::SETOEQ:
916 case ISD::SETOGT:
917 case ISD::SETOGE:
918 case ISD::SETOLT:
919 case ISD::SETOLE:
920 case ISD::SETONE:
921 case ISD::SETO:
922 case ISD::SETUO:
923 case ISD::SETUEQ:
924 case ISD::SETUNE:
925 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
926 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000927 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000928
Chris Lattner67255a12005-04-07 18:14:58 +0000929 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
930 uint64_t C2 = N2C->getValue();
931 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
932 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000933
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934 // Sign extend the operands if required
935 if (ISD::isSignedIntSetCC(Cond)) {
936 C1 = N1C->getSignExtended();
937 C2 = N2C->getSignExtended();
938 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000939
Chris Lattnerc3aae252005-01-07 07:46:32 +0000940 switch (Cond) {
941 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000942 case ISD::SETEQ: return getConstant(C1 == C2, VT);
943 case ISD::SETNE: return getConstant(C1 != C2, VT);
944 case ISD::SETULT: return getConstant(C1 < C2, VT);
945 case ISD::SETUGT: return getConstant(C1 > C2, VT);
946 case ISD::SETULE: return getConstant(C1 <= C2, VT);
947 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
948 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
949 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
950 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
951 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000952 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000953 }
Chris Lattner67255a12005-04-07 18:14:58 +0000954 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000955 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
956 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
957 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000958
Chris Lattnerc3aae252005-01-07 07:46:32 +0000959 switch (Cond) {
960 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000961 case ISD::SETEQ: return getConstant(C1 == C2, VT);
962 case ISD::SETNE: return getConstant(C1 != C2, VT);
963 case ISD::SETLT: return getConstant(C1 < C2, VT);
964 case ISD::SETGT: return getConstant(C1 > C2, VT);
965 case ISD::SETLE: return getConstant(C1 <= C2, VT);
966 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000967 }
968 } else {
969 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000970 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000971 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000972
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000973 // Could not fold it.
974 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000975}
976
Chris Lattner51dabfb2006-10-14 00:41:01 +0000977
Chris Lattnerc3aae252005-01-07 07:46:32 +0000978/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000979///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000980SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000981 FoldingSetNodeID ID;
982 AddNodeIDNode(ID, Opcode, getVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000983 void *IP = 0;
984 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
985 return SDOperand(E, 0);
986 SDNode *N = new SDNode(Opcode, VT);
987 CSEMap.InsertNode(N, IP);
988
989 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000990 return SDOperand(N, 0);
991}
992
Chris Lattnerc3aae252005-01-07 07:46:32 +0000993SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
994 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000995 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000996 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000997 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
998 uint64_t Val = C->getValue();
999 switch (Opcode) {
1000 default: break;
1001 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001002 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001003 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1004 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001005 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
1006 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001007 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001008 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001009 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001010 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001011 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001012 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001013 case ISD::BSWAP:
1014 switch(VT) {
1015 default: assert(0 && "Invalid bswap!"); break;
1016 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1017 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1018 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1019 }
1020 break;
1021 case ISD::CTPOP:
1022 switch(VT) {
1023 default: assert(0 && "Invalid ctpop!"); break;
1024 case MVT::i1: return getConstant(Val != 0, VT);
1025 case MVT::i8:
1026 Tmp1 = (unsigned)Val & 0xFF;
1027 return getConstant(CountPopulation_32(Tmp1), VT);
1028 case MVT::i16:
1029 Tmp1 = (unsigned)Val & 0xFFFF;
1030 return getConstant(CountPopulation_32(Tmp1), VT);
1031 case MVT::i32:
1032 return getConstant(CountPopulation_32((unsigned)Val), VT);
1033 case MVT::i64:
1034 return getConstant(CountPopulation_64(Val), VT);
1035 }
1036 case ISD::CTLZ:
1037 switch(VT) {
1038 default: assert(0 && "Invalid ctlz!"); break;
1039 case MVT::i1: return getConstant(Val == 0, VT);
1040 case MVT::i8:
1041 Tmp1 = (unsigned)Val & 0xFF;
1042 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1043 case MVT::i16:
1044 Tmp1 = (unsigned)Val & 0xFFFF;
1045 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1046 case MVT::i32:
1047 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1048 case MVT::i64:
1049 return getConstant(CountLeadingZeros_64(Val), VT);
1050 }
1051 case ISD::CTTZ:
1052 switch(VT) {
1053 default: assert(0 && "Invalid cttz!"); break;
1054 case MVT::i1: return getConstant(Val == 0, VT);
1055 case MVT::i8:
1056 Tmp1 = (unsigned)Val | 0x100;
1057 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1058 case MVT::i16:
1059 Tmp1 = (unsigned)Val | 0x10000;
1060 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1061 case MVT::i32:
1062 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1063 case MVT::i64:
1064 return getConstant(CountTrailingZeros_64(Val), VT);
1065 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001066 }
1067 }
1068
Chris Lattner94683772005-12-23 05:30:37 +00001069 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001070 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1071 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001072 case ISD::FNEG:
1073 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001074 case ISD::FABS:
1075 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001076 case ISD::FP_ROUND:
1077 case ISD::FP_EXTEND:
1078 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001079 case ISD::FP_TO_SINT:
1080 return getConstant((int64_t)C->getValue(), VT);
1081 case ISD::FP_TO_UINT:
1082 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001083 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001084 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001085 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001086 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001087 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001088 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001089 }
1090
1091 unsigned OpOpcode = Operand.Val->getOpcode();
1092 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001093 case ISD::TokenFactor:
1094 return Operand; // Factor of one node? No factor.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001095 case ISD::SIGN_EXTEND:
1096 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001097 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001098 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1099 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1100 break;
1101 case ISD::ZERO_EXTEND:
1102 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001103 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001104 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001105 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001106 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001107 case ISD::ANY_EXTEND:
1108 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001109 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001110 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1111 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1112 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1113 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001114 case ISD::TRUNCATE:
1115 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001116 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001117 if (OpOpcode == ISD::TRUNCATE)
1118 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001119 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1120 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001121 // If the source is smaller than the dest, we still need an extend.
1122 if (Operand.Val->getOperand(0).getValueType() < VT)
1123 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1124 else if (Operand.Val->getOperand(0).getValueType() > VT)
1125 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1126 else
1127 return Operand.Val->getOperand(0);
1128 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001129 break;
Chris Lattner35481892005-12-23 00:16:34 +00001130 case ISD::BIT_CONVERT:
1131 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001132 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001133 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001134 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001135 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1136 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001137 if (OpOpcode == ISD::UNDEF)
1138 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001139 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001140 case ISD::SCALAR_TO_VECTOR:
1141 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1142 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1143 "Illegal SCALAR_TO_VECTOR node!");
1144 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001145 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001146 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1147 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001148 Operand.Val->getOperand(0));
1149 if (OpOpcode == ISD::FNEG) // --X -> X
1150 return Operand.Val->getOperand(0);
1151 break;
1152 case ISD::FABS:
1153 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1154 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1155 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001156 }
1157
Chris Lattner43247a12005-08-25 19:12:10 +00001158 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001159 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001160 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001161 FoldingSetNodeID ID;
1162 AddNodeIDNode(ID, Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001163 void *IP = 0;
1164 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1165 return SDOperand(E, 0);
1166 N = new SDNode(Opcode, Operand);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001167 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001168 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001169 } else {
1170 N = new SDNode(Opcode, Operand);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001171 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001172 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001173 AllNodes.push_back(N);
1174 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001175}
1176
Chris Lattner36019aa2005-04-18 03:48:41 +00001177
1178
Chris Lattnerc3aae252005-01-07 07:46:32 +00001179SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1180 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001181#ifndef NDEBUG
1182 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001183 case ISD::TokenFactor:
1184 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1185 N2.getValueType() == MVT::Other && "Invalid token factor!");
1186 break;
Chris Lattner76365122005-01-16 02:23:22 +00001187 case ISD::AND:
1188 case ISD::OR:
1189 case ISD::XOR:
1190 case ISD::UDIV:
1191 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001192 case ISD::MULHU:
1193 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001194 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1195 // fall through
1196 case ISD::ADD:
1197 case ISD::SUB:
1198 case ISD::MUL:
1199 case ISD::SDIV:
1200 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001201 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1202 // fall through.
1203 case ISD::FADD:
1204 case ISD::FSUB:
1205 case ISD::FMUL:
1206 case ISD::FDIV:
1207 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001208 assert(N1.getValueType() == N2.getValueType() &&
1209 N1.getValueType() == VT && "Binary operator types must match!");
1210 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001211 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1212 assert(N1.getValueType() == VT &&
1213 MVT::isFloatingPoint(N1.getValueType()) &&
1214 MVT::isFloatingPoint(N2.getValueType()) &&
1215 "Invalid FCOPYSIGN!");
1216 break;
Chris Lattner76365122005-01-16 02:23:22 +00001217 case ISD::SHL:
1218 case ISD::SRA:
1219 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001220 case ISD::ROTL:
1221 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001222 assert(VT == N1.getValueType() &&
1223 "Shift operators return type must be the same as their first arg");
1224 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001225 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001226 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001227 case ISD::FP_ROUND_INREG: {
1228 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1229 assert(VT == N1.getValueType() && "Not an inreg round!");
1230 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1231 "Cannot FP_ROUND_INREG integer types");
1232 assert(EVT <= VT && "Not rounding down!");
1233 break;
1234 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001235 case ISD::AssertSext:
1236 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001237 case ISD::SIGN_EXTEND_INREG: {
1238 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1239 assert(VT == N1.getValueType() && "Not an inreg extend!");
1240 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1241 "Cannot *_EXTEND_INREG FP types");
1242 assert(EVT <= VT && "Not extending!");
1243 }
1244
Chris Lattner76365122005-01-16 02:23:22 +00001245 default: break;
1246 }
1247#endif
1248
Chris Lattnerc3aae252005-01-07 07:46:32 +00001249 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1250 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1251 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001252 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1253 int64_t Val = N1C->getValue();
1254 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1255 Val <<= 64-FromBits;
1256 Val >>= 64-FromBits;
1257 return getConstant(Val, VT);
1258 }
1259
Chris Lattnerc3aae252005-01-07 07:46:32 +00001260 if (N2C) {
1261 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1262 switch (Opcode) {
1263 case ISD::ADD: return getConstant(C1 + C2, VT);
1264 case ISD::SUB: return getConstant(C1 - C2, VT);
1265 case ISD::MUL: return getConstant(C1 * C2, VT);
1266 case ISD::UDIV:
1267 if (C2) return getConstant(C1 / C2, VT);
1268 break;
1269 case ISD::UREM :
1270 if (C2) return getConstant(C1 % C2, VT);
1271 break;
1272 case ISD::SDIV :
1273 if (C2) return getConstant(N1C->getSignExtended() /
1274 N2C->getSignExtended(), VT);
1275 break;
1276 case ISD::SREM :
1277 if (C2) return getConstant(N1C->getSignExtended() %
1278 N2C->getSignExtended(), VT);
1279 break;
1280 case ISD::AND : return getConstant(C1 & C2, VT);
1281 case ISD::OR : return getConstant(C1 | C2, VT);
1282 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001283 case ISD::SHL : return getConstant(C1 << C2, VT);
1284 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001285 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001286 case ISD::ROTL :
1287 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1288 VT);
1289 case ISD::ROTR :
1290 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1291 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001292 default: break;
1293 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001294 } else { // Cannonicalize constant to RHS if commutative
1295 if (isCommutativeBinOp(Opcode)) {
1296 std::swap(N1C, N2C);
1297 std::swap(N1, N2);
1298 }
1299 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001300 }
1301
1302 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1303 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001304 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001305 if (N2CFP) {
1306 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1307 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001308 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1309 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1310 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1311 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001312 if (C2) return getConstantFP(C1 / C2, VT);
1313 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001314 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001315 if (C2) return getConstantFP(fmod(C1, C2), VT);
1316 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001317 case ISD::FCOPYSIGN: {
1318 union {
1319 double F;
1320 uint64_t I;
1321 } u1;
1322 union {
1323 double F;
1324 int64_t I;
1325 } u2;
1326 u1.F = C1;
1327 u2.F = C2;
1328 if (u2.I < 0) // Sign bit of RHS set?
1329 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1330 else
1331 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1332 return getConstantFP(u1.F, VT);
1333 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001334 default: break;
1335 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001336 } else { // Cannonicalize constant to RHS if commutative
1337 if (isCommutativeBinOp(Opcode)) {
1338 std::swap(N1CFP, N2CFP);
1339 std::swap(N1, N2);
1340 }
1341 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001342 }
Chris Lattner62b57722006-04-20 05:39:12 +00001343
1344 // Canonicalize an UNDEF to the RHS, even over a constant.
1345 if (N1.getOpcode() == ISD::UNDEF) {
1346 if (isCommutativeBinOp(Opcode)) {
1347 std::swap(N1, N2);
1348 } else {
1349 switch (Opcode) {
1350 case ISD::FP_ROUND_INREG:
1351 case ISD::SIGN_EXTEND_INREG:
1352 case ISD::SUB:
1353 case ISD::FSUB:
1354 case ISD::FDIV:
1355 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001356 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001357 return N1; // fold op(undef, arg2) -> undef
1358 case ISD::UDIV:
1359 case ISD::SDIV:
1360 case ISD::UREM:
1361 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001362 case ISD::SRL:
1363 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001364 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1365 }
1366 }
1367 }
1368
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001369 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001370 if (N2.getOpcode() == ISD::UNDEF) {
1371 switch (Opcode) {
1372 case ISD::ADD:
1373 case ISD::SUB:
1374 case ISD::FADD:
1375 case ISD::FSUB:
1376 case ISD::FMUL:
1377 case ISD::FDIV:
1378 case ISD::FREM:
1379 case ISD::UDIV:
1380 case ISD::SDIV:
1381 case ISD::UREM:
1382 case ISD::SREM:
1383 case ISD::XOR:
1384 return N2; // fold op(arg1, undef) -> undef
1385 case ISD::MUL:
1386 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001387 case ISD::SRL:
1388 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001389 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1390 case ISD::OR:
1391 return getConstant(MVT::getIntVTBitMask(VT), VT);
Chris Lattner2cfd6742006-05-08 17:29:49 +00001392 case ISD::SRA:
1393 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001394 }
1395 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001396
Chris Lattner51dabfb2006-10-14 00:41:01 +00001397 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001398 switch (Opcode) {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001399 case ISD::AND:
1400 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1401 // worth handling here.
1402 if (N2C && N2C->getValue() == 0)
1403 return N2;
1404 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001405 case ISD::OR:
1406 case ISD::XOR:
1407 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1408 // worth handling here.
1409 if (N2C && N2C->getValue() == 0)
1410 return N1;
1411 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001412 case ISD::FP_ROUND_INREG:
1413 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1414 break;
1415 case ISD::SIGN_EXTEND_INREG: {
1416 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1417 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001418 break;
1419 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001420 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001421 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1422
Chris Lattner5c6621c2006-09-19 04:51:23 +00001423 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1424 // 64-bit integers into 32-bit parts. Instead of building the extract of
1425 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001426 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001427 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001428
1429 // EXTRACT_ELEMENT of a constant int is also very common.
1430 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1431 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1432 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001433 }
1434 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001435
Nate Begemaneea805e2005-04-13 21:23:31 +00001436 // FIXME: figure out how to safely handle things like
1437 // int foo(int x) { return 1 << (x & 255); }
1438 // int bar() { return foo(256); }
1439#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001440 case ISD::SHL:
1441 case ISD::SRL:
1442 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001443 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001444 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001445 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001446 else if (N2.getOpcode() == ISD::AND)
1447 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1448 // If the and is only masking out bits that cannot effect the shift,
1449 // eliminate the and.
1450 unsigned NumBits = MVT::getSizeInBits(VT);
1451 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1452 return getNode(Opcode, VT, N1, N2.getOperand(0));
1453 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001454 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001455#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001456 }
1457
Chris Lattner27e9b412005-05-11 18:57:39 +00001458 // Memoize this node if possible.
1459 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001460 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001461 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001462 FoldingSetNodeID ID;
1463 AddNodeIDNode(ID, Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00001464 void *IP = 0;
1465 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1466 return SDOperand(E, 0);
1467 N = new SDNode(Opcode, N1, N2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001468 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001469 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001470 } else {
Chris Lattner88de6e72005-05-12 00:17:04 +00001471 N = new SDNode(Opcode, N1, N2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001472 N->setValueTypes(VTs);
Chris Lattner27e9b412005-05-11 18:57:39 +00001473 }
1474
Chris Lattnerc3aae252005-01-07 07:46:32 +00001475 AllNodes.push_back(N);
1476 return SDOperand(N, 0);
1477}
1478
Chris Lattnerc3aae252005-01-07 07:46:32 +00001479SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1480 SDOperand N1, SDOperand N2, SDOperand N3) {
1481 // Perform various simplifications.
1482 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1483 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001484 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001485 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001486 // Use FoldSetCC to simplify SETCC's.
1487 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001488 if (Simp.Val) return Simp;
1489 break;
1490 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001491 case ISD::SELECT:
1492 if (N1C)
1493 if (N1C->getValue())
1494 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001495 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001496 return N3; // select false, X, Y -> Y
1497
1498 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001499 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001500 case ISD::BRCOND:
1501 if (N2C)
1502 if (N2C->getValue()) // Unconditional branch
1503 return getNode(ISD::BR, MVT::Other, N1, N3);
1504 else
1505 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001506 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001507 case ISD::VECTOR_SHUFFLE:
1508 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1509 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1510 N3.getOpcode() == ISD::BUILD_VECTOR &&
1511 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1512 "Illegal VECTOR_SHUFFLE node!");
1513 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001514 }
1515
Chris Lattner43247a12005-08-25 19:12:10 +00001516 // Memoize node if it doesn't produce a flag.
1517 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001518 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001519 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001520 FoldingSetNodeID ID;
1521 AddNodeIDNode(ID, Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00001522 void *IP = 0;
1523 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1524 return SDOperand(E, 0);
1525 N = new SDNode(Opcode, N1, N2, N3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001526 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001527 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001528 } else {
1529 N = new SDNode(Opcode, N1, N2, N3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001530 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001531 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001532 AllNodes.push_back(N);
1533 return SDOperand(N, 0);
1534}
1535
1536SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001537 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001538 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001539 SDOperand Ops[] = { N1, N2, N3, N4 };
1540 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001541}
1542
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001543SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1544 SDOperand N1, SDOperand N2, SDOperand N3,
1545 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001546 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1547 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001548}
1549
Evan Cheng7038daf2005-12-10 00:37:58 +00001550SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1551 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001552 const Value *SV, int SVOffset,
1553 bool isVolatile) {
1554 // FIXME: Alignment == 1 for now.
1555 unsigned Alignment = 1;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001556 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001557 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jim Laskey583bd472006-10-27 23:46:08 +00001558 FoldingSetNodeID ID;
1559 AddNodeIDNode(ID, ISD::LOAD, VTs, Chain, Ptr, Undef);
Evan Cheng466685d2006-10-09 20:57:25 +00001560 ID.AddInteger(ISD::UNINDEXED);
1561 ID.AddInteger(ISD::NON_EXTLOAD);
1562 ID.AddInteger(VT);
1563 ID.AddPointer(SV);
1564 ID.AddInteger(SVOffset);
1565 ID.AddInteger(Alignment);
1566 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001567 void *IP = 0;
1568 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1569 return SDOperand(E, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001570 SDNode *N = new LoadSDNode(Chain, Ptr, Undef, ISD::UNINDEXED,
1571 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1572 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001573 N->setValueTypes(VTs);
1574 CSEMap.InsertNode(N, IP);
1575 AllNodes.push_back(N);
1576 return SDOperand(N, 0);
1577}
1578
1579SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
1580 SDOperand Chain, SDOperand Ptr, const Value *SV,
1581 int SVOffset, MVT::ValueType EVT,
1582 bool isVolatile) {
1583 // If they are asking for an extending load from/to the same thing, return a
1584 // normal load.
1585 if (VT == EVT)
1586 ExtType = ISD::NON_EXTLOAD;
1587
1588 if (MVT::isVector(VT))
1589 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1590 else
1591 assert(EVT < VT && "Should only be an extending load, not truncating!");
1592 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1593 "Cannot sign/zero extend a FP/Vector load!");
1594 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1595 "Cannot convert from FP to Int or Int -> FP!");
1596
1597 // FIXME: Alignment == 1 for now.
1598 unsigned Alignment = 1;
1599 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001600 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jim Laskey583bd472006-10-27 23:46:08 +00001601 FoldingSetNodeID ID;
1602 AddNodeIDNode(ID, ISD::LOAD, VTs, Chain, Ptr, Undef);
Evan Cheng466685d2006-10-09 20:57:25 +00001603 ID.AddInteger(ISD::UNINDEXED);
1604 ID.AddInteger(ExtType);
1605 ID.AddInteger(EVT);
1606 ID.AddPointer(SV);
1607 ID.AddInteger(SVOffset);
1608 ID.AddInteger(Alignment);
1609 ID.AddInteger(isVolatile);
1610 void *IP = 0;
1611 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1612 return SDOperand(E, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001613 SDNode *N = new LoadSDNode(Chain, Ptr, Undef, ISD::UNINDEXED, ExtType, EVT,
1614 SV, SVOffset, Alignment, isVolatile);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001615 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001616 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001617 AllNodes.push_back(N);
1618 return SDOperand(N, 0);
1619}
1620
Evan Cheng144d8f02006-11-09 17:55:04 +00001621SDOperand
1622SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1623 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00001624 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001625 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1626 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001627 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001628 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Jim Laskey583bd472006-10-27 23:46:08 +00001629 FoldingSetNodeID ID;
1630 AddNodeIDNode(ID, ISD::LOAD, VTs, LD->getChain(), Base, Offset);
Evan Cheng2caccca2006-10-17 21:14:32 +00001631 ID.AddInteger(AM);
1632 ID.AddInteger(LD->getExtensionType());
1633 ID.AddInteger(LD->getLoadedVT());
1634 ID.AddPointer(LD->getSrcValue());
1635 ID.AddInteger(LD->getSrcValueOffset());
1636 ID.AddInteger(LD->getAlignment());
1637 ID.AddInteger(LD->isVolatile());
1638 void *IP = 0;
1639 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1640 return SDOperand(E, 0);
Evan Cheng5270cf12006-10-26 21:53:40 +00001641 SDNode *N = new LoadSDNode(LD->getChain(), Base, Offset, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001642 LD->getExtensionType(), LD->getLoadedVT(),
1643 LD->getSrcValue(), LD->getSrcValueOffset(),
1644 LD->getAlignment(), LD->isVolatile());
1645 N->setValueTypes(VTs);
1646 CSEMap.InsertNode(N, IP);
1647 AllNodes.push_back(N);
1648 return SDOperand(N, 0);
1649}
1650
Evan Cheng7038daf2005-12-10 00:37:58 +00001651SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1652 SDOperand Chain, SDOperand Ptr,
1653 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001654 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1655 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001656 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001657}
1658
Jeff Cohend41b30d2006-11-05 19:31:28 +00001659SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001660 SDOperand Ptr, const Value *SV, int SVOffset,
1661 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001662 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001663
1664 // FIXME: Alignment == 1 for now.
1665 unsigned Alignment = 1;
Evan Chengad071e12006-10-05 22:57:11 +00001666 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001667 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001668 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001669 FoldingSetNodeID ID;
1670 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001671 ID.AddInteger(ISD::UNINDEXED);
1672 ID.AddInteger(false);
1673 ID.AddInteger(VT);
1674 ID.AddPointer(SV);
1675 ID.AddInteger(SVOffset);
1676 ID.AddInteger(Alignment);
1677 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001678 void *IP = 0;
1679 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1680 return SDOperand(E, 0);
Jeff Cohend41b30d2006-11-05 19:31:28 +00001681 SDNode *N = new StoreSDNode(Chain, Val, Ptr, Undef, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001682 VT, SV, SVOffset, Alignment, isVolatile);
1683 N->setValueTypes(VTs);
1684 CSEMap.InsertNode(N, IP);
1685 AllNodes.push_back(N);
1686 return SDOperand(N, 0);
1687}
1688
Jeff Cohend41b30d2006-11-05 19:31:28 +00001689SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001690 SDOperand Ptr, const Value *SV,
1691 int SVOffset, MVT::ValueType SVT,
1692 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001693 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001694 bool isTrunc = VT != SVT;
1695
1696 assert(VT > SVT && "Not a truncation?");
1697 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1698 "Can't do FP-INT conversion!");
1699
1700 // FIXME: Alignment == 1 for now.
1701 unsigned Alignment = 1;
1702 SDVTList VTs = getVTList(MVT::Other);
1703 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001704 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001705 FoldingSetNodeID ID;
1706 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001707 ID.AddInteger(ISD::UNINDEXED);
1708 ID.AddInteger(isTrunc);
1709 ID.AddInteger(SVT);
1710 ID.AddPointer(SV);
1711 ID.AddInteger(SVOffset);
1712 ID.AddInteger(Alignment);
1713 ID.AddInteger(isVolatile);
1714 void *IP = 0;
1715 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1716 return SDOperand(E, 0);
Jeff Cohend41b30d2006-11-05 19:31:28 +00001717 SDNode *N = new StoreSDNode(Chain, Val, Ptr, Undef, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001718 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001719 N->setValueTypes(VTs);
1720 CSEMap.InsertNode(N, IP);
1721 AllNodes.push_back(N);
1722 return SDOperand(N, 0);
1723}
1724
Evan Cheng144d8f02006-11-09 17:55:04 +00001725SDOperand
1726SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1727 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00001728 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1729 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1730 "Store is already a indexed store!");
1731 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1732 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1733 FoldingSetNodeID ID;
1734 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1735 ID.AddInteger(AM);
1736 ID.AddInteger(ST->isTruncatingStore());
1737 ID.AddInteger(ST->getStoredVT());
1738 ID.AddPointer(ST->getSrcValue());
1739 ID.AddInteger(ST->getSrcValueOffset());
1740 ID.AddInteger(ST->getAlignment());
1741 ID.AddInteger(ST->isVolatile());
1742 void *IP = 0;
1743 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1744 return SDOperand(E, 0);
1745 SDNode *N = new StoreSDNode(ST->getChain(), ST->getValue(),
1746 Base, Offset, AM,
1747 ST->isTruncatingStore(), ST->getStoredVT(),
1748 ST->getSrcValue(), ST->getSrcValueOffset(),
1749 ST->getAlignment(), ST->isVolatile());
1750 N->setValueTypes(VTs);
1751 CSEMap.InsertNode(N, IP);
1752 AllNodes.push_back(N);
1753 return SDOperand(N, 0);
1754}
1755
Nate Begemanacc398c2006-01-25 18:21:52 +00001756SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1757 SDOperand Chain, SDOperand Ptr,
1758 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001759 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001760 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001761}
1762
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001763SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001764 const SDOperand *Ops, unsigned NumOps) {
1765 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001766 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001767 case 1: return getNode(Opcode, VT, Ops[0]);
1768 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1769 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001770 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001771 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001772
Chris Lattneref847df2005-04-09 03:27:28 +00001773 switch (Opcode) {
1774 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001775 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001776 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001777 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1778 "LHS and RHS of condition must have same type!");
1779 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1780 "True and False arms of SelectCC must have same type!");
1781 assert(Ops[2].getValueType() == VT &&
1782 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001783 break;
1784 }
1785 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001786 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001787 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1788 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001789 break;
1790 }
Chris Lattneref847df2005-04-09 03:27:28 +00001791 }
1792
Chris Lattner385328c2005-05-14 07:42:29 +00001793 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001794 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001795 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001796 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001797 FoldingSetNodeID ID;
1798 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001799 void *IP = 0;
1800 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1801 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001802 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001803 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001804 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001805 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001806 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001807 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001808 }
Chris Lattneref847df2005-04-09 03:27:28 +00001809 AllNodes.push_back(N);
1810 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001811}
1812
Chris Lattner89c34632005-05-14 06:20:26 +00001813SDOperand SelectionDAG::getNode(unsigned Opcode,
1814 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001815 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001816 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1817 Ops, NumOps);
1818}
1819
1820SDOperand SelectionDAG::getNode(unsigned Opcode,
1821 const MVT::ValueType *VTs, unsigned NumVTs,
1822 const SDOperand *Ops, unsigned NumOps) {
1823 if (NumVTs == 1)
1824 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001825 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1826}
1827
1828SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1829 const SDOperand *Ops, unsigned NumOps) {
1830 if (VTList.NumVTs == 1)
1831 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001832
Chris Lattner5f056bf2005-07-10 01:55:33 +00001833 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001834 // FIXME: figure out how to safely handle things like
1835 // int foo(int x) { return 1 << (x & 255); }
1836 // int bar() { return foo(256); }
1837#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001838 case ISD::SRA_PARTS:
1839 case ISD::SRL_PARTS:
1840 case ISD::SHL_PARTS:
1841 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001842 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001843 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1844 else if (N3.getOpcode() == ISD::AND)
1845 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1846 // If the and is only masking out bits that cannot effect the shift,
1847 // eliminate the and.
1848 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1849 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1850 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1851 }
1852 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001853#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001854 }
Chris Lattner89c34632005-05-14 06:20:26 +00001855
Chris Lattner43247a12005-08-25 19:12:10 +00001856 // Memoize the node unless it returns a flag.
1857 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001858 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001859 FoldingSetNodeID ID;
1860 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001861 void *IP = 0;
1862 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1863 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001864 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001865 N->setValueTypes(VTList);
Chris Lattnera5682852006-08-07 23:03:03 +00001866 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001867 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001868 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001869 N->setValueTypes(VTList);
Chris Lattner43247a12005-08-25 19:12:10 +00001870 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001871 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001872 return SDOperand(N, 0);
1873}
1874
Chris Lattner70046e92006-08-15 17:46:01 +00001875SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1876 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001877}
1878
Chris Lattner70046e92006-08-15 17:46:01 +00001879SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001880 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1881 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001882 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001883 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001884 }
1885 std::vector<MVT::ValueType> V;
1886 V.push_back(VT1);
1887 V.push_back(VT2);
1888 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001889 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001890}
Chris Lattner70046e92006-08-15 17:46:01 +00001891SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1892 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001893 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001894 E = VTList.end(); I != E; ++I) {
1895 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1896 (*I)[2] == VT3)
1897 return makeVTList(&(*I)[0], 3);
1898 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001899 std::vector<MVT::ValueType> V;
1900 V.push_back(VT1);
1901 V.push_back(VT2);
1902 V.push_back(VT3);
1903 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001904 return makeVTList(&(*VTList.begin())[0], 3);
1905}
1906
1907SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1908 switch (NumVTs) {
1909 case 0: assert(0 && "Cannot have nodes without results!");
1910 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1911 case 2: return getVTList(VTs[0], VTs[1]);
1912 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1913 default: break;
1914 }
1915
1916 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1917 E = VTList.end(); I != E; ++I) {
1918 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1919
1920 bool NoMatch = false;
1921 for (unsigned i = 2; i != NumVTs; ++i)
1922 if (VTs[i] != (*I)[i]) {
1923 NoMatch = true;
1924 break;
1925 }
1926 if (!NoMatch)
1927 return makeVTList(&*I->begin(), NumVTs);
1928 }
1929
1930 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1931 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001932}
1933
1934
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001935/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1936/// specified operands. If the resultant node already exists in the DAG,
1937/// this does not modify the specified node, instead it returns the node that
1938/// already exists. If the resultant node does not exist in the DAG, the
1939/// input node is returned. As a degenerate case, if you specify the same
1940/// input operands as the node already has, the input node is returned.
1941SDOperand SelectionDAG::
1942UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1943 SDNode *N = InN.Val;
1944 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1945
1946 // Check to see if there is no change.
1947 if (Op == N->getOperand(0)) return InN;
1948
1949 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001950 void *InsertPos = 0;
1951 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1952 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001953
1954 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001955 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001956 RemoveNodeFromCSEMaps(N);
1957
1958 // Now we update the operands.
1959 N->OperandList[0].Val->removeUser(N);
1960 Op.Val->addUser(N);
1961 N->OperandList[0] = Op;
1962
1963 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001964 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001965 return InN;
1966}
1967
1968SDOperand SelectionDAG::
1969UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1970 SDNode *N = InN.Val;
1971 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1972
1973 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001974 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1975 return InN; // No operands changed, just return the input node.
1976
1977 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001978 void *InsertPos = 0;
1979 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1980 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001981
1982 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001983 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001984 RemoveNodeFromCSEMaps(N);
1985
1986 // Now we update the operands.
1987 if (N->OperandList[0] != Op1) {
1988 N->OperandList[0].Val->removeUser(N);
1989 Op1.Val->addUser(N);
1990 N->OperandList[0] = Op1;
1991 }
1992 if (N->OperandList[1] != Op2) {
1993 N->OperandList[1].Val->removeUser(N);
1994 Op2.Val->addUser(N);
1995 N->OperandList[1] = Op2;
1996 }
1997
1998 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001999 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002000 return InN;
2001}
2002
2003SDOperand SelectionDAG::
2004UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002005 SDOperand Ops[] = { Op1, Op2, Op3 };
2006 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002007}
2008
2009SDOperand SelectionDAG::
2010UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2011 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002012 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2013 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002014}
2015
2016SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002017UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2018 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002019 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2020 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002021}
2022
2023
2024SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002025UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002026 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002027 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002028 "Update with wrong number of operands");
2029
2030 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002031 bool AnyChange = false;
2032 for (unsigned i = 0; i != NumOps; ++i) {
2033 if (Ops[i] != N->getOperand(i)) {
2034 AnyChange = true;
2035 break;
2036 }
2037 }
2038
2039 // No operands changed, just return the input node.
2040 if (!AnyChange) return InN;
2041
2042 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002043 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002044 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002045 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002046
2047 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002048 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002049 RemoveNodeFromCSEMaps(N);
2050
2051 // Now we update the operands.
2052 for (unsigned i = 0; i != NumOps; ++i) {
2053 if (N->OperandList[i] != Ops[i]) {
2054 N->OperandList[i].Val->removeUser(N);
2055 Ops[i].Val->addUser(N);
2056 N->OperandList[i] = Ops[i];
2057 }
2058 }
2059
2060 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002061 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002062 return InN;
2063}
2064
2065
2066
Chris Lattner149c58c2005-08-16 18:17:10 +00002067
2068/// SelectNodeTo - These are used for target selectors to *mutate* the
2069/// specified node to have the specified return type, Target opcode, and
2070/// operands. Note that target opcodes are stored as
2071/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002072///
2073/// Note that SelectNodeTo returns the resultant node. If there is already a
2074/// node of the specified opcode and operands, it returns that node instead of
2075/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002076SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2077 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002078 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002079 FoldingSetNodeID ID;
2080 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs);
Chris Lattner4a283e92006-08-11 18:38:11 +00002081 void *IP = 0;
2082 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002083 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002084
Chris Lattner7651fa42005-08-24 23:00:29 +00002085 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002086
Chris Lattner7651fa42005-08-24 23:00:29 +00002087 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002088 N->setValueTypes(VTs);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002089
Chris Lattner4a283e92006-08-11 18:38:11 +00002090 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002091 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002092}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002093
Evan Cheng95514ba2006-08-26 08:00:10 +00002094SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2095 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002096 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002097 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002098 FoldingSetNodeID ID;
2099 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1);
Chris Lattnera5682852006-08-07 23:03:03 +00002100 void *IP = 0;
2101 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002102 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002103
Chris Lattner149c58c2005-08-16 18:17:10 +00002104 RemoveNodeFromCSEMaps(N);
2105 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002106 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002107 N->setOperands(Op1);
Chris Lattnera5682852006-08-07 23:03:03 +00002108 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002109 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002110}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002111
Evan Cheng95514ba2006-08-26 08:00:10 +00002112SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2113 MVT::ValueType VT, SDOperand Op1,
2114 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002115 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002116 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002117 FoldingSetNodeID ID;
2118 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +00002119 void *IP = 0;
2120 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002121 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002122
Chris Lattner149c58c2005-08-16 18:17:10 +00002123 RemoveNodeFromCSEMaps(N);
2124 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002125 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002126 N->setOperands(Op1, Op2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002127
Chris Lattnera5682852006-08-07 23:03:03 +00002128 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002129 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002130}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002131
Evan Cheng95514ba2006-08-26 08:00:10 +00002132SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2133 MVT::ValueType VT, SDOperand Op1,
2134 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002135 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002136 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002137 FoldingSetNodeID ID;
2138 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2, Op3);
Chris Lattnera5682852006-08-07 23:03:03 +00002139 void *IP = 0;
2140 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002141 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002142
Chris Lattner149c58c2005-08-16 18:17:10 +00002143 RemoveNodeFromCSEMaps(N);
2144 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002145 N->setValueTypes(VTs);
Chris Lattner149c58c2005-08-16 18:17:10 +00002146 N->setOperands(Op1, Op2, Op3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002147
Chris Lattnera5682852006-08-07 23:03:03 +00002148 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002149 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002150}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002151
Evan Cheng95514ba2006-08-26 08:00:10 +00002152SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002153 MVT::ValueType VT, const SDOperand *Ops,
2154 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002155 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002156 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002157 FoldingSetNodeID ID;
2158 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002159 void *IP = 0;
2160 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002161 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002162
Chris Lattner6b09a292005-08-21 18:49:33 +00002163 RemoveNodeFromCSEMaps(N);
2164 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002165 N->setValueTypes(VTs);
Evan Cheng694481e2006-08-27 08:08:54 +00002166 N->setOperands(Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002167
Chris Lattnera5682852006-08-07 23:03:03 +00002168 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002169 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002170}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002171
Evan Cheng95514ba2006-08-26 08:00:10 +00002172SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2173 MVT::ValueType VT1, MVT::ValueType VT2,
2174 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002175 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002176 FoldingSetNodeID ID;
2177 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2);
Chris Lattnera5682852006-08-07 23:03:03 +00002178 void *IP = 0;
2179 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002180 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002181
Chris Lattner0fb094f2005-11-19 01:44:53 +00002182 RemoveNodeFromCSEMaps(N);
2183 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002184 N->setValueTypes(VTs);
Chris Lattner0fb094f2005-11-19 01:44:53 +00002185 N->setOperands(Op1, Op2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002186
Chris Lattnera5682852006-08-07 23:03:03 +00002187 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002188 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002189}
2190
Evan Cheng95514ba2006-08-26 08:00:10 +00002191SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2192 MVT::ValueType VT1, MVT::ValueType VT2,
2193 SDOperand Op1, SDOperand Op2,
2194 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002195 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002196 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002197 FoldingSetNodeID ID;
2198 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Op1, Op2, Op3);
Chris Lattnera5682852006-08-07 23:03:03 +00002199 void *IP = 0;
2200 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002201 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002202
Chris Lattner0fb094f2005-11-19 01:44:53 +00002203 RemoveNodeFromCSEMaps(N);
2204 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
Chris Lattner0b3e5252006-08-15 19:11:05 +00002205 N->setValueTypes(VTs);
Chris Lattner0fb094f2005-11-19 01:44:53 +00002206 N->setOperands(Op1, Op2, Op3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002207
Chris Lattnera5682852006-08-07 23:03:03 +00002208 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002209 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002210}
2211
Chris Lattner0fb094f2005-11-19 01:44:53 +00002212
Evan Cheng6ae46c42006-02-09 07:15:23 +00002213/// getTargetNode - These are used for target selectors to create a new node
2214/// with specified return type(s), target opcode, and operands.
2215///
2216/// Note that getTargetNode returns the resultant node. If there is already a
2217/// node of the specified opcode and operands, it returns that node instead of
2218/// the current one.
2219SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2220 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2221}
2222SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2223 SDOperand Op1) {
2224 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2225}
2226SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2227 SDOperand Op1, SDOperand Op2) {
2228 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2229}
2230SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2231 SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2232 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2233}
2234SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002235 const SDOperand *Ops, unsigned NumOps) {
2236 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002237}
2238SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2239 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002240 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002241 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002242}
2243SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002244 MVT::ValueType VT2, SDOperand Op1,
2245 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002246 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002247 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002248 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002249}
2250SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002251 MVT::ValueType VT2, SDOperand Op1,
2252 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002253 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002254 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002255 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002256}
Evan Cheng694481e2006-08-27 08:08:54 +00002257SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2258 MVT::ValueType VT2,
2259 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002260 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002261 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002262}
2263SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2264 MVT::ValueType VT2, MVT::ValueType VT3,
2265 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002266 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002267 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002268 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002269}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002270SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002271 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002272 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002273 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2274 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002275}
2276
Evan Cheng99157a02006-08-07 22:13:29 +00002277/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002278/// This can cause recursive merging of nodes in the DAG.
2279///
Chris Lattner8b52f212005-08-26 18:36:28 +00002280/// This version assumes From/To have a single result value.
2281///
Chris Lattner1e111c72005-09-07 05:37:01 +00002282void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2283 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002284 SDNode *From = FromN.Val, *To = ToN.Val;
2285 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2286 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002287 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002288
Chris Lattner8b8749f2005-08-17 19:00:20 +00002289 while (!From->use_empty()) {
2290 // Process users until they are all gone.
2291 SDNode *U = *From->use_begin();
2292
2293 // This node is about to morph, remove its old self from the CSE maps.
2294 RemoveNodeFromCSEMaps(U);
2295
Chris Lattner65113b22005-11-08 22:07:03 +00002296 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2297 I != E; ++I)
2298 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002299 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002300 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002301 To->addUser(U);
2302 }
2303
2304 // Now that we have modified U, add it back to the CSE maps. If it already
2305 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002306 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2307 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002308 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002309 if (Deleted) Deleted->push_back(U);
2310 DeleteNodeNotInCSEMaps(U);
2311 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002312 }
2313}
2314
2315/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2316/// This can cause recursive merging of nodes in the DAG.
2317///
2318/// This version assumes From/To have matching types and numbers of result
2319/// values.
2320///
Chris Lattner1e111c72005-09-07 05:37:01 +00002321void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2322 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002323 assert(From != To && "Cannot replace uses of with self");
2324 assert(From->getNumValues() == To->getNumValues() &&
2325 "Cannot use this version of ReplaceAllUsesWith!");
2326 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002327 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002328 return;
2329 }
2330
2331 while (!From->use_empty()) {
2332 // Process users until they are all gone.
2333 SDNode *U = *From->use_begin();
2334
2335 // This node is about to morph, remove its old self from the CSE maps.
2336 RemoveNodeFromCSEMaps(U);
2337
Chris Lattner65113b22005-11-08 22:07:03 +00002338 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2339 I != E; ++I)
2340 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002341 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002342 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002343 To->addUser(U);
2344 }
2345
2346 // Now that we have modified U, add it back to the CSE maps. If it already
2347 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002348 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2349 ReplaceAllUsesWith(U, Existing, Deleted);
2350 // U is now dead.
2351 if (Deleted) Deleted->push_back(U);
2352 DeleteNodeNotInCSEMaps(U);
2353 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002354 }
2355}
2356
Chris Lattner8b52f212005-08-26 18:36:28 +00002357/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2358/// This can cause recursive merging of nodes in the DAG.
2359///
2360/// This version can replace From with any result values. To must match the
2361/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002362void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002363 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002364 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002365 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002366 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002367 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002368 return;
2369 }
2370
2371 while (!From->use_empty()) {
2372 // Process users until they are all gone.
2373 SDNode *U = *From->use_begin();
2374
2375 // This node is about to morph, remove its old self from the CSE maps.
2376 RemoveNodeFromCSEMaps(U);
2377
Chris Lattner65113b22005-11-08 22:07:03 +00002378 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2379 I != E; ++I)
2380 if (I->Val == From) {
2381 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002382 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002383 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002384 ToOp.Val->addUser(U);
2385 }
2386
2387 // Now that we have modified U, add it back to the CSE maps. If it already
2388 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002389 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2390 ReplaceAllUsesWith(U, Existing, Deleted);
2391 // U is now dead.
2392 if (Deleted) Deleted->push_back(U);
2393 DeleteNodeNotInCSEMaps(U);
2394 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002395 }
2396}
2397
Chris Lattner012f2412006-02-17 21:58:01 +00002398/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2399/// uses of other values produced by From.Val alone. The Deleted vector is
2400/// handled the same was as for ReplaceAllUsesWith.
2401void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2402 std::vector<SDNode*> &Deleted) {
2403 assert(From != To && "Cannot replace a value with itself");
2404 // Handle the simple, trivial, case efficiently.
2405 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2406 ReplaceAllUsesWith(From, To, &Deleted);
2407 return;
2408 }
2409
2410 // Get all of the users in a nice, deterministically ordered, uniqued set.
2411 SetVector<SDNode*> Users(From.Val->use_begin(), From.Val->use_end());
2412
2413 while (!Users.empty()) {
2414 // We know that this user uses some value of From. If it is the right
2415 // value, update it.
2416 SDNode *User = Users.back();
2417 Users.pop_back();
2418
2419 for (SDOperand *Op = User->OperandList,
2420 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2421 if (*Op == From) {
2422 // Okay, we know this user needs to be updated. Remove its old self
2423 // from the CSE maps.
2424 RemoveNodeFromCSEMaps(User);
2425
2426 // Update all operands that match "From".
2427 for (; Op != E; ++Op) {
2428 if (*Op == From) {
2429 From.Val->removeUser(User);
2430 *Op = To;
2431 To.Val->addUser(User);
2432 }
2433 }
2434
2435 // Now that we have modified User, add it back to the CSE maps. If it
2436 // already exists there, recursively merge the results together.
2437 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2438 unsigned NumDeleted = Deleted.size();
2439 ReplaceAllUsesWith(User, Existing, &Deleted);
2440
2441 // User is now dead.
2442 Deleted.push_back(User);
2443 DeleteNodeNotInCSEMaps(User);
2444
2445 // We have to be careful here, because ReplaceAllUsesWith could have
2446 // deleted a user of From, which means there may be dangling pointers
2447 // in the "Users" setvector. Scan over the deleted node pointers and
2448 // remove them from the setvector.
2449 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2450 Users.remove(Deleted[i]);
2451 }
2452 break; // Exit the operand scanning loop.
2453 }
2454 }
2455 }
2456}
2457
Chris Lattner7b2880c2005-08-24 22:44:39 +00002458
Evan Chenge6f35d82006-08-01 08:20:41 +00002459/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2460/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002461unsigned SelectionDAG::AssignNodeIds() {
2462 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002463 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2464 SDNode *N = I;
2465 N->setNodeId(Id++);
2466 }
2467 return Id;
2468}
2469
Evan Chenge6f35d82006-08-01 08:20:41 +00002470/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002471/// based on their topological order. It returns the maximum id and a vector
2472/// of the SDNodes* in assigned order by reference.
2473unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002474 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002475 std::vector<unsigned> InDegree(DAGSize);
2476 std::vector<SDNode*> Sources;
2477
2478 // Use a two pass approach to avoid using a std::map which is slow.
2479 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002480 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2481 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002482 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002483 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002484 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002485 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002486 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002487 }
2488
Evan Cheng99157a02006-08-07 22:13:29 +00002489 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002490 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002491 SDNode *N = Sources.back();
2492 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002493 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002494 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2495 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002496 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002497 if (Degree == 0)
2498 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002499 }
2500 }
2501
Evan Chengc384d6c2006-08-02 22:00:34 +00002502 // Second pass, assign the actual topological order as node ids.
2503 Id = 0;
2504 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2505 TI != TE; ++TI)
2506 (*TI)->setNodeId(Id++);
2507
2508 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002509}
2510
2511
Evan Cheng091cba12006-07-27 06:39:06 +00002512
Jim Laskey58b968b2005-08-17 20:08:02 +00002513//===----------------------------------------------------------------------===//
2514// SDNode Class
2515//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002516
Chris Lattner917d2c92006-07-19 00:00:37 +00002517// Out-of-line virtual method to give class a home.
2518void SDNode::ANCHOR() {
2519}
2520
Jim Laskey583bd472006-10-27 23:46:08 +00002521/// Profile - Gather unique data for the node.
2522///
2523void SDNode::Profile(FoldingSetNodeID &ID) {
2524 AddNodeIDNode(ID, this);
2525}
2526
Chris Lattnera3255112005-11-08 23:30:28 +00002527/// getValueTypeList - Return a pointer to the specified value type.
2528///
2529MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2530 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2531 VTs[VT] = VT;
2532 return &VTs[VT];
2533}
Chris Lattnera5682852006-08-07 23:03:03 +00002534
Chris Lattner5c884562005-01-12 18:37:47 +00002535/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2536/// indicated value. This method ignores uses of other values defined by this
2537/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002538bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002539 assert(Value < getNumValues() && "Bad value!");
2540
2541 // If there is only one value, this is easy.
2542 if (getNumValues() == 1)
2543 return use_size() == NUses;
2544 if (Uses.size() < NUses) return false;
2545
Evan Cheng4ee62112006-02-05 06:29:23 +00002546 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002547
2548 std::set<SDNode*> UsersHandled;
2549
Chris Lattnerf83482d2006-08-16 20:59:32 +00002550 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002551 SDNode *User = *UI;
2552 if (User->getNumOperands() == 1 ||
2553 UsersHandled.insert(User).second) // First time we've seen this?
2554 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2555 if (User->getOperand(i) == TheValue) {
2556 if (NUses == 0)
2557 return false; // too many uses
2558 --NUses;
2559 }
2560 }
2561
2562 // Found exactly the right number of uses?
2563 return NUses == 0;
2564}
2565
2566
Evan Chenge6e97e62006-11-03 07:31:32 +00002567/// isOnlyUse - Return true if this node is the only use of N.
2568///
Evan Cheng4ee62112006-02-05 06:29:23 +00002569bool SDNode::isOnlyUse(SDNode *N) const {
2570 bool Seen = false;
2571 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2572 SDNode *User = *I;
2573 if (User == this)
2574 Seen = true;
2575 else
2576 return false;
2577 }
2578
2579 return Seen;
2580}
2581
Evan Chenge6e97e62006-11-03 07:31:32 +00002582/// isOperand - Return true if this node is an operand of N.
2583///
Evan Chengbfa284f2006-03-03 06:42:32 +00002584bool SDOperand::isOperand(SDNode *N) const {
2585 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2586 if (*this == N->getOperand(i))
2587 return true;
2588 return false;
2589}
2590
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002591bool SDNode::isOperand(SDNode *N) const {
2592 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2593 if (this == N->OperandList[i].Val)
2594 return true;
2595 return false;
2596}
Evan Cheng4ee62112006-02-05 06:29:23 +00002597
Evan Chengc5fc57d2006-11-03 03:05:24 +00002598static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
2599 std::set<SDNode *> &Visited) {
2600 if (found || !Visited.insert(N).second)
2601 return;
2602
2603 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2604 SDNode *Op = N->getOperand(i).Val;
2605 if (Op == P) {
2606 found = true;
2607 return;
2608 }
2609 findPredecessor(Op, P, found, Visited);
2610 }
2611}
2612
Evan Chenge6e97e62006-11-03 07:31:32 +00002613/// isPredecessor - Return true if this node is a predecessor of N. This node
2614/// is either an operand of N or it can be reached by recursively traversing
2615/// up the operands.
2616/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00002617bool SDNode::isPredecessor(SDNode *N) const {
2618 std::set<SDNode *> Visited;
2619 bool found = false;
2620 findPredecessor(N, this, found, Visited);
2621 return found;
2622}
2623
Evan Chengc5484282006-10-04 00:56:09 +00002624uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2625 assert(Num < NumOperands && "Invalid child # of SDNode!");
2626 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2627}
2628
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002629const char *SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002630 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002631 default:
2632 if (getOpcode() < ISD::BUILTIN_OP_END)
2633 return "<<Unknown DAG Node>>";
2634 else {
Evan Cheng72261582005-12-20 06:22:03 +00002635 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002636 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002637 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2638 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002639
Evan Cheng72261582005-12-20 06:22:03 +00002640 TargetLowering &TLI = G->getTargetLoweringInfo();
2641 const char *Name =
2642 TLI.getTargetNodeName(getOpcode());
2643 if (Name) return Name;
2644 }
2645
2646 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002647 }
2648
Andrew Lenharth95762122005-03-31 21:24:06 +00002649 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002650 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002651 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002652 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002653 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002654 case ISD::AssertSext: return "AssertSext";
2655 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002656
2657 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002658 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002659 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002660 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002661
2662 case ISD::Constant: return "Constant";
2663 case ISD::ConstantFP: return "ConstantFP";
2664 case ISD::GlobalAddress: return "GlobalAddress";
2665 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002666 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002667 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Chris Lattner5839bf22005-08-26 17:15:30 +00002668 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002669 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002670 case ISD::INTRINSIC_WO_CHAIN: {
2671 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2672 return Intrinsic::getName((Intrinsic::ID)IID);
2673 }
2674 case ISD::INTRINSIC_VOID:
2675 case ISD::INTRINSIC_W_CHAIN: {
2676 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002677 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002678 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002679
Chris Lattnerb2827b02006-03-19 00:52:58 +00002680 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002681 case ISD::TargetConstant: return "TargetConstant";
2682 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002683 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2684 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002685 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002686 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002687 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002688
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002689 case ISD::CopyToReg: return "CopyToReg";
2690 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002691 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002692 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002693 case ISD::INLINEASM: return "inlineasm";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002694 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002695 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002696 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002697
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002698 // Unary operators
2699 case ISD::FABS: return "fabs";
2700 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002701 case ISD::FSQRT: return "fsqrt";
2702 case ISD::FSIN: return "fsin";
2703 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002704 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002705
2706 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002707 case ISD::ADD: return "add";
2708 case ISD::SUB: return "sub";
2709 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002710 case ISD::MULHU: return "mulhu";
2711 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002712 case ISD::SDIV: return "sdiv";
2713 case ISD::UDIV: return "udiv";
2714 case ISD::SREM: return "srem";
2715 case ISD::UREM: return "urem";
2716 case ISD::AND: return "and";
2717 case ISD::OR: return "or";
2718 case ISD::XOR: return "xor";
2719 case ISD::SHL: return "shl";
2720 case ISD::SRA: return "sra";
2721 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002722 case ISD::ROTL: return "rotl";
2723 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002724 case ISD::FADD: return "fadd";
2725 case ISD::FSUB: return "fsub";
2726 case ISD::FMUL: return "fmul";
2727 case ISD::FDIV: return "fdiv";
2728 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002729 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002730 case ISD::VADD: return "vadd";
2731 case ISD::VSUB: return "vsub";
2732 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002733 case ISD::VSDIV: return "vsdiv";
2734 case ISD::VUDIV: return "vudiv";
2735 case ISD::VAND: return "vand";
2736 case ISD::VOR: return "vor";
2737 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002738
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002739 case ISD::SETCC: return "setcc";
2740 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002741 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002742 case ISD::VSELECT: return "vselect";
2743 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2744 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2745 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002746 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002747 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2748 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2749 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2750 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2751 case ISD::VBIT_CONVERT: return "vbit_convert";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002752 case ISD::ADDC: return "addc";
2753 case ISD::ADDE: return "adde";
2754 case ISD::SUBC: return "subc";
2755 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002756 case ISD::SHL_PARTS: return "shl_parts";
2757 case ISD::SRA_PARTS: return "sra_parts";
2758 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002759
Chris Lattner7f644642005-04-28 21:44:03 +00002760 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002761 case ISD::SIGN_EXTEND: return "sign_extend";
2762 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002763 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002764 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002765 case ISD::TRUNCATE: return "truncate";
2766 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002767 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002768 case ISD::FP_EXTEND: return "fp_extend";
2769
2770 case ISD::SINT_TO_FP: return "sint_to_fp";
2771 case ISD::UINT_TO_FP: return "uint_to_fp";
2772 case ISD::FP_TO_SINT: return "fp_to_sint";
2773 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002774 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002775
2776 // Control flow instructions
2777 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002778 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002779 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002780 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002781 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002782 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002783 case ISD::CALLSEQ_START: return "callseq_start";
2784 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002785
2786 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002787 case ISD::LOAD: return "load";
2788 case ISD::STORE: return "store";
2789 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002790 case ISD::VAARG: return "vaarg";
2791 case ISD::VACOPY: return "vacopy";
2792 case ISD::VAEND: return "vaend";
2793 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002794 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002795 case ISD::EXTRACT_ELEMENT: return "extract_element";
2796 case ISD::BUILD_PAIR: return "build_pair";
2797 case ISD::STACKSAVE: return "stacksave";
2798 case ISD::STACKRESTORE: return "stackrestore";
2799
2800 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002801 case ISD::MEMSET: return "memset";
2802 case ISD::MEMCPY: return "memcpy";
2803 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002804
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002805 // Bit manipulation
2806 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002807 case ISD::CTPOP: return "ctpop";
2808 case ISD::CTTZ: return "cttz";
2809 case ISD::CTLZ: return "ctlz";
2810
Chris Lattner36ce6912005-11-29 06:21:05 +00002811 // Debug info
2812 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002813 case ISD::DEBUG_LOC: return "debug_loc";
Jim Laskeyabf6d172006-01-05 01:25:28 +00002814 case ISD::DEBUG_LABEL: return "debug_label";
Chris Lattner36ce6912005-11-29 06:21:05 +00002815
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002816 case ISD::CONDCODE:
2817 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002818 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002819 case ISD::SETOEQ: return "setoeq";
2820 case ISD::SETOGT: return "setogt";
2821 case ISD::SETOGE: return "setoge";
2822 case ISD::SETOLT: return "setolt";
2823 case ISD::SETOLE: return "setole";
2824 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002825
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002826 case ISD::SETO: return "seto";
2827 case ISD::SETUO: return "setuo";
2828 case ISD::SETUEQ: return "setue";
2829 case ISD::SETUGT: return "setugt";
2830 case ISD::SETUGE: return "setuge";
2831 case ISD::SETULT: return "setult";
2832 case ISD::SETULE: return "setule";
2833 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002834
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002835 case ISD::SETEQ: return "seteq";
2836 case ISD::SETGT: return "setgt";
2837 case ISD::SETGE: return "setge";
2838 case ISD::SETLT: return "setlt";
2839 case ISD::SETLE: return "setle";
2840 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002841 }
2842 }
2843}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002844
Evan Cheng144d8f02006-11-09 17:55:04 +00002845const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002846 switch (AM) {
2847 default:
2848 return "";
2849 case ISD::PRE_INC:
2850 return "<pre-inc>";
2851 case ISD::PRE_DEC:
2852 return "<pre-dec>";
2853 case ISD::POST_INC:
2854 return "<post-inc>";
2855 case ISD::POST_DEC:
2856 return "<post-dec>";
2857 }
2858}
2859
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002860void SDNode::dump() const { dump(0); }
2861void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00002862 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002863
2864 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002865 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002866 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00002867 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00002868 else
Bill Wendling832171c2006-12-07 20:04:42 +00002869 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002870 }
Bill Wendling832171c2006-12-07 20:04:42 +00002871 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002872
Bill Wendling832171c2006-12-07 20:04:42 +00002873 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002874 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002875 if (i) cerr << ", ";
2876 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002877 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00002878 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002879 }
2880
2881 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002882 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002883 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002884 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002885 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00002886 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00002887 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00002888 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00002889 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00002890 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002891 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00002892 else
Bill Wendling832171c2006-12-07 20:04:42 +00002893 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002894 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002895 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00002896 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002897 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002898 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00002899 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00002900 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00002901 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00002902 else
Bill Wendling832171c2006-12-07 20:04:42 +00002903 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00002904 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002905 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00002906 else
Bill Wendling832171c2006-12-07 20:04:42 +00002907 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002908 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002909 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002910 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2911 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00002912 cerr << LBB->getName() << " ";
2913 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00002914 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00002915 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00002916 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00002917 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00002918 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00002919 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002920 } else if (const ExternalSymbolSDNode *ES =
2921 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002922 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002923 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2924 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00002925 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002926 else
Bill Wendling832171c2006-12-07 20:04:42 +00002927 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00002928 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002929 cerr << ":" << getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002930 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
2931 bool doExt = true;
2932 switch (LD->getExtensionType()) {
2933 default: doExt = false; break;
2934 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002935 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002936 break;
2937 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002938 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002939 break;
2940 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002941 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002942 break;
2943 }
2944 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00002945 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002946
Evan Cheng144d8f02006-11-09 17:55:04 +00002947 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002948 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002949 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00002950 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
2951 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00002952 cerr << " <trunc "
2953 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00002954
Evan Cheng144d8f02006-11-09 17:55:04 +00002955 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002956 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002957 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002958 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002959}
2960
Chris Lattnerde202b32005-11-09 23:47:37 +00002961static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002962 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2963 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002964 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002965 else
Bill Wendling832171c2006-12-07 20:04:42 +00002966 cerr << "\n" << std::string(indent+2, ' ')
2967 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002968
Chris Lattnerea946cd2005-01-09 20:38:33 +00002969
Bill Wendling832171c2006-12-07 20:04:42 +00002970 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002971 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002972}
2973
Chris Lattnerc3aae252005-01-07 07:46:32 +00002974void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00002975 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00002976 std::vector<const SDNode*> Nodes;
2977 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
2978 I != E; ++I)
2979 Nodes.push_back(I);
2980
Chris Lattner49d24712005-01-09 20:26:36 +00002981 std::sort(Nodes.begin(), Nodes.end());
2982
2983 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002984 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002985 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002986 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00002987
Jim Laskey26f7fa72006-10-17 19:33:52 +00002988 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002989
Bill Wendling832171c2006-12-07 20:04:42 +00002990 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002991}
2992
Evan Chengd6594ae2006-09-12 21:00:35 +00002993const Type *ConstantPoolSDNode::getType() const {
2994 if (isMachineConstantPoolEntry())
2995 return Val.MachineCPVal->getType();
2996 return Val.ConstVal->getType();
2997}