blob: 5ed5822434652b83f2221b04cd4f39afdf65a352 [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 Lattnerd48c5e82007-02-04 00:24:41 +000027#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000028#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000029#include "llvm/ADT/StringExtras.h"
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/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
261///
Jim Laskey583bd472006-10-27 23:46:08 +0000262static void AddNodeIDOperands(FoldingSetNodeID &ID,
263 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000264 for (; NumOps; --NumOps, ++Ops) {
265 ID.AddPointer(Ops->Val);
266 ID.AddInteger(Ops->ResNo);
267 }
Jim Laskey583bd472006-10-27 23:46:08 +0000268}
269
Jim Laskey583bd472006-10-27 23:46:08 +0000270static void AddNodeIDNode(FoldingSetNodeID &ID,
271 unsigned short OpC, SDVTList VTList,
272 const SDOperand *OpList, unsigned N) {
273 AddNodeIDOpcode(ID, OpC);
274 AddNodeIDValueTypes(ID, VTList);
275 AddNodeIDOperands(ID, OpList, N);
276}
277
Jim Laskeydef69b92006-10-27 23:52:51 +0000278/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
279/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000280static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
281 AddNodeIDOpcode(ID, N->getOpcode());
282 // Add the return value info.
283 AddNodeIDValueTypes(ID, N->getVTList());
284 // Add the operand info.
285 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
286
287 // Handle SDNode leafs with special info.
288 if (N->getNumOperands() == 0) {
289 switch (N->getOpcode()) {
290 default: break; // Normal nodes don't need extra info.
291 case ISD::TargetConstant:
292 case ISD::Constant:
293 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
294 break;
295 case ISD::TargetConstantFP:
296 case ISD::ConstantFP:
297 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
298 break;
299 case ISD::TargetGlobalAddress:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000300 case ISD::GlobalAddress: {
301 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
302 ID.AddPointer(GA->getGlobal());
303 ID.AddInteger(GA->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000304 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000305 }
Jim Laskey583bd472006-10-27 23:46:08 +0000306 case ISD::BasicBlock:
307 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
308 break;
309 case ISD::Register:
310 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
311 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000312 case ISD::SRCVALUE: {
313 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
314 ID.AddPointer(SV->getValue());
315 ID.AddInteger(SV->getOffset());
Jim Laskey583bd472006-10-27 23:46:08 +0000316 break;
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000317 }
Jim Laskey583bd472006-10-27 23:46:08 +0000318 case ISD::FrameIndex:
319 case ISD::TargetFrameIndex:
320 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
321 break;
322 case ISD::JumpTable:
323 case ISD::TargetJumpTable:
324 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
325 break;
326 case ISD::ConstantPool:
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000327 case ISD::TargetConstantPool: {
328 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
329 ID.AddInteger(CP->getAlignment());
330 ID.AddInteger(CP->getOffset());
331 if (CP->isMachineConstantPoolEntry())
332 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
Jim Laskey583bd472006-10-27 23:46:08 +0000333 else
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000334 ID.AddPointer(CP->getConstVal());
Jim Laskey583bd472006-10-27 23:46:08 +0000335 break;
336 }
Jim Laskey1c6f01a2006-10-28 17:25:28 +0000337 case ISD::LOAD: {
338 LoadSDNode *LD = cast<LoadSDNode>(N);
339 ID.AddInteger(LD->getAddressingMode());
340 ID.AddInteger(LD->getExtensionType());
341 ID.AddInteger(LD->getLoadedVT());
342 ID.AddPointer(LD->getSrcValue());
343 ID.AddInteger(LD->getSrcValueOffset());
344 ID.AddInteger(LD->getAlignment());
345 ID.AddInteger(LD->isVolatile());
346 break;
347 }
348 case ISD::STORE: {
349 StoreSDNode *ST = cast<StoreSDNode>(N);
350 ID.AddInteger(ST->getAddressingMode());
351 ID.AddInteger(ST->isTruncatingStore());
352 ID.AddInteger(ST->getStoredVT());
353 ID.AddPointer(ST->getSrcValue());
354 ID.AddInteger(ST->getSrcValueOffset());
355 ID.AddInteger(ST->getAlignment());
356 ID.AddInteger(ST->isVolatile());
357 break;
358 }
359 }
Jim Laskey583bd472006-10-27 23:46:08 +0000360 }
361}
362
363//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000364// SelectionDAG Class
365//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000366
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000367/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000368/// SelectionDAG.
369void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000370 // Create a dummy node (which is not added to allnodes), that adds a reference
371 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000372 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000373
Chris Lattner190a4182006-08-04 17:45:20 +0000374 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000375
Chris Lattner190a4182006-08-04 17:45:20 +0000376 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000377 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000378 if (I->use_empty())
379 DeadNodes.push_back(I);
380
381 // Process the worklist, deleting the nodes and adding their uses to the
382 // worklist.
383 while (!DeadNodes.empty()) {
384 SDNode *N = DeadNodes.back();
385 DeadNodes.pop_back();
386
387 // Take the node out of the appropriate CSE map.
388 RemoveNodeFromCSEMaps(N);
389
390 // Next, brutally remove the operand list. This is safe to do, as there are
391 // no cycles in the graph.
392 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
393 SDNode *Operand = I->Val;
394 Operand->removeUser(N);
395
396 // Now that we removed this operand, see if there are no uses of it left.
397 if (Operand->use_empty())
398 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000399 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000400 if (N->OperandsNeedDelete)
401 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000402 N->OperandList = 0;
403 N->NumOperands = 0;
404
405 // Finally, remove N itself.
406 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000407 }
408
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000409 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000410 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000411}
412
Evan Cheng130a6472006-10-12 20:34:05 +0000413void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
414 SmallVector<SDNode*, 16> DeadNodes;
415 DeadNodes.push_back(N);
416
417 // Process the worklist, deleting the nodes and adding their uses to the
418 // worklist.
419 while (!DeadNodes.empty()) {
420 SDNode *N = DeadNodes.back();
421 DeadNodes.pop_back();
422
423 // Take the node out of the appropriate CSE map.
424 RemoveNodeFromCSEMaps(N);
425
426 // Next, brutally remove the operand list. This is safe to do, as there are
427 // no cycles in the graph.
428 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
429 SDNode *Operand = I->Val;
430 Operand->removeUser(N);
431
432 // Now that we removed this operand, see if there are no uses of it left.
433 if (Operand->use_empty())
434 DeadNodes.push_back(Operand);
435 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000436 if (N->OperandsNeedDelete)
437 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000438 N->OperandList = 0;
439 N->NumOperands = 0;
440
441 // Finally, remove N itself.
442 Deleted.push_back(N);
443 AllNodes.erase(N);
444 }
445}
446
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000447void SelectionDAG::DeleteNode(SDNode *N) {
448 assert(N->use_empty() && "Cannot delete a node that is not dead!");
449
450 // First take this out of the appropriate CSE map.
451 RemoveNodeFromCSEMaps(N);
452
Chris Lattner1e111c72005-09-07 05:37:01 +0000453 // Finally, remove uses due to operands of this node, remove from the
454 // AllNodes list, and delete the node.
455 DeleteNodeNotInCSEMaps(N);
456}
457
458void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
459
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000460 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000461 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000462
463 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000464 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
465 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000466 if (N->OperandsNeedDelete)
467 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000468 N->OperandList = 0;
469 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000470
471 delete N;
472}
473
Chris Lattner149c58c2005-08-16 18:17:10 +0000474/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
475/// correspond to it. This is useful when we're about to delete or repurpose
476/// the node. We don't want future request for structurally identical nodes
477/// to return N anymore.
478void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000479 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000480 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000481 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000482 case ISD::STRING:
483 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
484 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000485 case ISD::CONDCODE:
486 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
487 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000488 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000489 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
490 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000491 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000492 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000493 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000494 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000495 Erased =
496 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000497 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000498 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000499 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000500 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
501 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000502 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000503 // Remove it from the CSE Map.
504 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000505 break;
506 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000507#ifndef NDEBUG
508 // Verify that the node was actually in one of the CSE maps, unless it has a
509 // flag result (which cannot be CSE'd) or is one of the special cases that are
510 // not subject to CSE.
511 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000512 !N->isTargetOpcode()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000513 N->dump();
Bill Wendling832171c2006-12-07 20:04:42 +0000514 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000515 assert(0 && "Node is not in map!");
516 }
517#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000518}
519
Chris Lattner8b8749f2005-08-17 19:00:20 +0000520/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
521/// has been taken out and modified in some way. If the specified node already
522/// exists in the CSE maps, do not modify the maps, but return the existing node
523/// instead. If it doesn't exist, add it and return null.
524///
525SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
526 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000527 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000528 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000529
Chris Lattner9f8cc692005-12-19 22:21:21 +0000530 // Check that remaining values produced are not flags.
531 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
532 if (N->getValueType(i) == MVT::Flag)
533 return 0; // Never CSE anything that produces a flag.
534
Chris Lattnera5682852006-08-07 23:03:03 +0000535 SDNode *New = CSEMap.GetOrInsertNode(N);
536 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000537 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000538}
539
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000540/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
541/// were replaced with those specified. If this node is never memoized,
542/// return null, otherwise return a pointer to the slot it would take. If a
543/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000544SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
545 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000546 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000547 return 0; // Never add these nodes.
548
549 // Check that remaining values produced are not flags.
550 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
551 if (N->getValueType(i) == MVT::Flag)
552 return 0; // Never CSE anything that produces a flag.
553
Chris Lattner63e3f142007-02-04 07:28:00 +0000554 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000555 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000556 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000557 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000558}
559
560/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
561/// were replaced with those specified. If this node is never memoized,
562/// return null, otherwise return a pointer to the slot it would take. If a
563/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000564SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
565 SDOperand Op1, SDOperand Op2,
566 void *&InsertPos) {
567 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
568 return 0; // Never add these nodes.
569
570 // Check that remaining values produced are not flags.
571 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
572 if (N->getValueType(i) == MVT::Flag)
573 return 0; // Never CSE anything that produces a flag.
574
Chris Lattner63e3f142007-02-04 07:28:00 +0000575 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000576 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000577 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000578 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
579}
580
581
582/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
583/// were replaced with those specified. If this node is never memoized,
584/// return null, otherwise return a pointer to the slot it would take. If a
585/// node already exists with these operands, the slot will be non-null.
586SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000587 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000588 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000589 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000590 return 0; // Never add these nodes.
591
592 // Check that remaining values produced are not flags.
593 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
594 if (N->getValueType(i) == MVT::Flag)
595 return 0; // Never CSE anything that produces a flag.
596
Jim Laskey583bd472006-10-27 23:46:08 +0000597 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000598 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000599
Evan Cheng9629aba2006-10-11 01:47:58 +0000600 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
601 ID.AddInteger(LD->getAddressingMode());
602 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000603 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000604 ID.AddPointer(LD->getSrcValue());
605 ID.AddInteger(LD->getSrcValueOffset());
606 ID.AddInteger(LD->getAlignment());
607 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000608 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
609 ID.AddInteger(ST->getAddressingMode());
610 ID.AddInteger(ST->isTruncatingStore());
611 ID.AddInteger(ST->getStoredVT());
612 ID.AddPointer(ST->getSrcValue());
613 ID.AddInteger(ST->getSrcValueOffset());
614 ID.AddInteger(ST->getAlignment());
615 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000616 }
Jim Laskey583bd472006-10-27 23:46:08 +0000617
618 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000619 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000620}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000621
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000622
Chris Lattner78ec3112003-08-11 14:57:33 +0000623SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000624 while (!AllNodes.empty()) {
625 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000626 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000627 if (N->OperandsNeedDelete)
628 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000629 N->OperandList = 0;
630 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000631 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000632 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000633}
634
Chris Lattner0f2287b2005-04-13 02:38:18 +0000635SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000636 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000637 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000638 return getNode(ISD::AND, Op.getValueType(), Op,
639 getConstant(Imm, Op.getValueType()));
640}
641
Chris Lattner36ce6912005-11-29 06:21:05 +0000642SDOperand SelectionDAG::getString(const std::string &Val) {
643 StringSDNode *&N = StringNodes[Val];
644 if (!N) {
645 N = new StringSDNode(Val);
646 AllNodes.push_back(N);
647 }
648 return SDOperand(N, 0);
649}
650
Chris Lattner61b09412006-08-11 21:01:22 +0000651SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000652 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000653 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000654
Chris Lattner61b09412006-08-11 21:01:22 +0000655 // Mask out any bits that are not valid for this constant.
656 Val &= MVT::getIntVTBitMask(VT);
657
658 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000659 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000660 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000661 ID.AddInteger(Val);
662 void *IP = 0;
663 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
664 return SDOperand(E, 0);
665 SDNode *N = new ConstantSDNode(isT, Val, VT);
666 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000667 AllNodes.push_back(N);
668 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000669}
670
Chris Lattner61b09412006-08-11 21:01:22 +0000671
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000672SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
673 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000674 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
675 if (VT == MVT::f32)
676 Val = (float)Val; // Mask out extra precision.
677
Chris Lattnerd8658612005-02-17 20:17:32 +0000678 // Do the map lookup using the actual bit pattern for the floating point
679 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
680 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000681 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000682 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000683 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000684 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000685 void *IP = 0;
686 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
687 return SDOperand(E, 0);
688 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
689 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000690 AllNodes.push_back(N);
691 return SDOperand(N, 0);
692}
693
Chris Lattnerc3aae252005-01-07 07:46:32 +0000694SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000695 MVT::ValueType VT, int Offset,
696 bool isTargetGA) {
697 unsigned Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000698 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000699 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000700 ID.AddPointer(GV);
701 ID.AddInteger(Offset);
702 void *IP = 0;
703 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
704 return SDOperand(E, 0);
705 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
706 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000707 AllNodes.push_back(N);
708 return SDOperand(N, 0);
709}
710
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000711SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
712 bool isTarget) {
713 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000714 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000715 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000716 ID.AddInteger(FI);
717 void *IP = 0;
718 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
719 return SDOperand(E, 0);
720 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
721 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000722 AllNodes.push_back(N);
723 return SDOperand(N, 0);
724}
725
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000726SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
727 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000728 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000729 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000730 ID.AddInteger(JTI);
731 void *IP = 0;
732 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
733 return SDOperand(E, 0);
734 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
735 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000736 AllNodes.push_back(N);
737 return SDOperand(N, 0);
738}
739
Evan Chengb8973bd2006-01-31 22:23:14 +0000740SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000741 unsigned Alignment, int Offset,
742 bool isTarget) {
743 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000744 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000745 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000746 ID.AddInteger(Alignment);
747 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000748 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000749 void *IP = 0;
750 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
751 return SDOperand(E, 0);
752 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
753 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000754 AllNodes.push_back(N);
755 return SDOperand(N, 0);
756}
757
Chris Lattnerc3aae252005-01-07 07:46:32 +0000758
Evan Chengd6594ae2006-09-12 21:00:35 +0000759SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
760 MVT::ValueType VT,
761 unsigned Alignment, int Offset,
762 bool isTarget) {
763 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000764 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000765 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000766 ID.AddInteger(Alignment);
767 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000768 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000769 void *IP = 0;
770 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
771 return SDOperand(E, 0);
772 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
773 CSEMap.InsertNode(N, IP);
774 AllNodes.push_back(N);
775 return SDOperand(N, 0);
776}
777
778
Chris Lattnerc3aae252005-01-07 07:46:32 +0000779SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000780 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000781 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000782 ID.AddPointer(MBB);
783 void *IP = 0;
784 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
785 return SDOperand(E, 0);
786 SDNode *N = new BasicBlockSDNode(MBB);
787 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000788 AllNodes.push_back(N);
789 return SDOperand(N, 0);
790}
791
Chris Lattner15e4b012005-07-10 00:07:11 +0000792SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
793 if ((unsigned)VT >= ValueTypeNodes.size())
794 ValueTypeNodes.resize(VT+1);
795 if (ValueTypeNodes[VT] == 0) {
796 ValueTypeNodes[VT] = new VTSDNode(VT);
797 AllNodes.push_back(ValueTypeNodes[VT]);
798 }
799
800 return SDOperand(ValueTypeNodes[VT], 0);
801}
802
Chris Lattnerc3aae252005-01-07 07:46:32 +0000803SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
804 SDNode *&N = ExternalSymbols[Sym];
805 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000806 N = new ExternalSymbolSDNode(false, Sym, VT);
807 AllNodes.push_back(N);
808 return SDOperand(N, 0);
809}
810
Chris Lattner809ec112006-01-28 10:09:25 +0000811SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
812 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000813 SDNode *&N = TargetExternalSymbols[Sym];
814 if (N) return SDOperand(N, 0);
815 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000816 AllNodes.push_back(N);
817 return SDOperand(N, 0);
818}
819
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000820SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
821 if ((unsigned)Cond >= CondCodeNodes.size())
822 CondCodeNodes.resize(Cond+1);
823
Chris Lattner079a27a2005-08-09 20:40:02 +0000824 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000825 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000826 AllNodes.push_back(CondCodeNodes[Cond]);
827 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000828 return SDOperand(CondCodeNodes[Cond], 0);
829}
830
Chris Lattner0fdd7682005-08-30 22:38:38 +0000831SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000832 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000833 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000834 ID.AddInteger(RegNo);
835 void *IP = 0;
836 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
837 return SDOperand(E, 0);
838 SDNode *N = new RegisterSDNode(RegNo, VT);
839 CSEMap.InsertNode(N, IP);
840 AllNodes.push_back(N);
841 return SDOperand(N, 0);
842}
843
844SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
845 assert((!V || isa<PointerType>(V->getType())) &&
846 "SrcValue is not a pointer?");
847
Jim Laskey583bd472006-10-27 23:46:08 +0000848 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000849 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000850 ID.AddPointer(V);
851 ID.AddInteger(Offset);
852 void *IP = 0;
853 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
854 return SDOperand(E, 0);
855 SDNode *N = new SrcValueSDNode(V, Offset);
856 CSEMap.InsertNode(N, IP);
857 AllNodes.push_back(N);
858 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000859}
860
Chris Lattner51dabfb2006-10-14 00:41:01 +0000861SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
862 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000863 // These setcc operations always fold.
864 switch (Cond) {
865 default: break;
866 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000867 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000868 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000869 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000870
871 case ISD::SETOEQ:
872 case ISD::SETOGT:
873 case ISD::SETOGE:
874 case ISD::SETOLT:
875 case ISD::SETOLE:
876 case ISD::SETONE:
877 case ISD::SETO:
878 case ISD::SETUO:
879 case ISD::SETUEQ:
880 case ISD::SETUNE:
881 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
882 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000883 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000884
Chris Lattner67255a12005-04-07 18:14:58 +0000885 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
886 uint64_t C2 = N2C->getValue();
887 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
888 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000889
Chris Lattnerc3aae252005-01-07 07:46:32 +0000890 // Sign extend the operands if required
891 if (ISD::isSignedIntSetCC(Cond)) {
892 C1 = N1C->getSignExtended();
893 C2 = N2C->getSignExtended();
894 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000895
Chris Lattnerc3aae252005-01-07 07:46:32 +0000896 switch (Cond) {
897 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000898 case ISD::SETEQ: return getConstant(C1 == C2, VT);
899 case ISD::SETNE: return getConstant(C1 != C2, VT);
900 case ISD::SETULT: return getConstant(C1 < C2, VT);
901 case ISD::SETUGT: return getConstant(C1 > C2, VT);
902 case ISD::SETULE: return getConstant(C1 <= C2, VT);
903 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
904 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
905 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
906 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
907 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000908 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000909 }
Chris Lattner67255a12005-04-07 18:14:58 +0000910 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000911 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
912 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
913 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000914
Chris Lattnerc3aae252005-01-07 07:46:32 +0000915 switch (Cond) {
916 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000917 case ISD::SETEQ: return getConstant(C1 == C2, VT);
918 case ISD::SETNE: return getConstant(C1 != C2, VT);
919 case ISD::SETLT: return getConstant(C1 < C2, VT);
920 case ISD::SETGT: return getConstant(C1 > C2, VT);
921 case ISD::SETLE: return getConstant(C1 <= C2, VT);
922 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000923 }
924 } else {
925 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000926 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000927 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000928
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000929 // Could not fold it.
930 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000931}
932
Chris Lattner51dabfb2006-10-14 00:41:01 +0000933
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000935///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000936SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000937 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000938 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +0000939 void *IP = 0;
940 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
941 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000942 SDNode *N = new SDNode(Opcode, 0, 0);
943 N->setValueTypes(SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000944 CSEMap.InsertNode(N, IP);
945
946 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000947 return SDOperand(N, 0);
948}
949
Chris Lattnerc3aae252005-01-07 07:46:32 +0000950SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
951 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000952 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000953 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000954 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
955 uint64_t Val = C->getValue();
956 switch (Opcode) {
957 default: break;
958 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +0000959 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +0000960 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
961 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +0000962 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
963 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000964 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000965 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +0000966 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000967 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +0000968 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000969 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000970 case ISD::BSWAP:
971 switch(VT) {
972 default: assert(0 && "Invalid bswap!"); break;
973 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
974 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
975 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
976 }
977 break;
978 case ISD::CTPOP:
979 switch(VT) {
980 default: assert(0 && "Invalid ctpop!"); break;
981 case MVT::i1: return getConstant(Val != 0, VT);
982 case MVT::i8:
983 Tmp1 = (unsigned)Val & 0xFF;
984 return getConstant(CountPopulation_32(Tmp1), VT);
985 case MVT::i16:
986 Tmp1 = (unsigned)Val & 0xFFFF;
987 return getConstant(CountPopulation_32(Tmp1), VT);
988 case MVT::i32:
989 return getConstant(CountPopulation_32((unsigned)Val), VT);
990 case MVT::i64:
991 return getConstant(CountPopulation_64(Val), VT);
992 }
993 case ISD::CTLZ:
994 switch(VT) {
995 default: assert(0 && "Invalid ctlz!"); break;
996 case MVT::i1: return getConstant(Val == 0, VT);
997 case MVT::i8:
998 Tmp1 = (unsigned)Val & 0xFF;
999 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1000 case MVT::i16:
1001 Tmp1 = (unsigned)Val & 0xFFFF;
1002 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1003 case MVT::i32:
1004 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1005 case MVT::i64:
1006 return getConstant(CountLeadingZeros_64(Val), VT);
1007 }
1008 case ISD::CTTZ:
1009 switch(VT) {
1010 default: assert(0 && "Invalid cttz!"); break;
1011 case MVT::i1: return getConstant(Val == 0, VT);
1012 case MVT::i8:
1013 Tmp1 = (unsigned)Val | 0x100;
1014 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1015 case MVT::i16:
1016 Tmp1 = (unsigned)Val | 0x10000;
1017 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1018 case MVT::i32:
1019 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1020 case MVT::i64:
1021 return getConstant(CountTrailingZeros_64(Val), VT);
1022 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001023 }
1024 }
1025
Chris Lattner94683772005-12-23 05:30:37 +00001026 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001027 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1028 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001029 case ISD::FNEG:
1030 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001031 case ISD::FABS:
1032 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001033 case ISD::FP_ROUND:
1034 case ISD::FP_EXTEND:
1035 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001036 case ISD::FP_TO_SINT:
1037 return getConstant((int64_t)C->getValue(), VT);
1038 case ISD::FP_TO_UINT:
1039 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001040 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001041 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001042 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001043 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001044 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001045 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001046 }
1047
1048 unsigned OpOpcode = Operand.Val->getOpcode();
1049 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001050 case ISD::TokenFactor:
1051 return Operand; // Factor of one node? No factor.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001052 case ISD::SIGN_EXTEND:
1053 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001054 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001055 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1056 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1057 break;
1058 case ISD::ZERO_EXTEND:
1059 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001060 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001061 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001062 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001063 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001064 case ISD::ANY_EXTEND:
1065 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001066 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001067 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1068 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1069 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1070 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001071 case ISD::TRUNCATE:
1072 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001073 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001074 if (OpOpcode == ISD::TRUNCATE)
1075 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001076 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1077 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001078 // If the source is smaller than the dest, we still need an extend.
1079 if (Operand.Val->getOperand(0).getValueType() < VT)
1080 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1081 else if (Operand.Val->getOperand(0).getValueType() > VT)
1082 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1083 else
1084 return Operand.Val->getOperand(0);
1085 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001086 break;
Chris Lattner35481892005-12-23 00:16:34 +00001087 case ISD::BIT_CONVERT:
1088 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001089 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001090 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001091 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001092 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1093 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001094 if (OpOpcode == ISD::UNDEF)
1095 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001096 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001097 case ISD::SCALAR_TO_VECTOR:
1098 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1099 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1100 "Illegal SCALAR_TO_VECTOR node!");
1101 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001102 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001103 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1104 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001105 Operand.Val->getOperand(0));
1106 if (OpOpcode == ISD::FNEG) // --X -> X
1107 return Operand.Val->getOperand(0);
1108 break;
1109 case ISD::FABS:
1110 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1111 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1112 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001113 }
1114
Chris Lattner43247a12005-08-25 19:12:10 +00001115 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001116 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00001117 SDOperand Ops[1] = { Operand };
Chris Lattner43247a12005-08-25 19:12:10 +00001118 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001119 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001120 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001121 void *IP = 0;
1122 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1123 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001124 N = new SDNode(Opcode, Ops, 1);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001125 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001126 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001127 } else {
Chris Lattner63e3f142007-02-04 07:28:00 +00001128 N = new SDNode(Opcode, Ops, 1);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001129 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001130 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001131 AllNodes.push_back(N);
1132 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001133}
1134
Chris Lattner36019aa2005-04-18 03:48:41 +00001135
1136
Chris Lattnerc3aae252005-01-07 07:46:32 +00001137SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1138 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001139#ifndef NDEBUG
1140 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001141 case ISD::TokenFactor:
1142 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1143 N2.getValueType() == MVT::Other && "Invalid token factor!");
1144 break;
Chris Lattner76365122005-01-16 02:23:22 +00001145 case ISD::AND:
1146 case ISD::OR:
1147 case ISD::XOR:
1148 case ISD::UDIV:
1149 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001150 case ISD::MULHU:
1151 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001152 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1153 // fall through
1154 case ISD::ADD:
1155 case ISD::SUB:
1156 case ISD::MUL:
1157 case ISD::SDIV:
1158 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001159 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1160 // fall through.
1161 case ISD::FADD:
1162 case ISD::FSUB:
1163 case ISD::FMUL:
1164 case ISD::FDIV:
1165 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001166 assert(N1.getValueType() == N2.getValueType() &&
1167 N1.getValueType() == VT && "Binary operator types must match!");
1168 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001169 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1170 assert(N1.getValueType() == VT &&
1171 MVT::isFloatingPoint(N1.getValueType()) &&
1172 MVT::isFloatingPoint(N2.getValueType()) &&
1173 "Invalid FCOPYSIGN!");
1174 break;
Chris Lattner76365122005-01-16 02:23:22 +00001175 case ISD::SHL:
1176 case ISD::SRA:
1177 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001178 case ISD::ROTL:
1179 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001180 assert(VT == N1.getValueType() &&
1181 "Shift operators return type must be the same as their first arg");
1182 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001183 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001184 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001185 case ISD::FP_ROUND_INREG: {
1186 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1187 assert(VT == N1.getValueType() && "Not an inreg round!");
1188 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1189 "Cannot FP_ROUND_INREG integer types");
1190 assert(EVT <= VT && "Not rounding down!");
1191 break;
1192 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001193 case ISD::AssertSext:
1194 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001195 case ISD::SIGN_EXTEND_INREG: {
1196 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1197 assert(VT == N1.getValueType() && "Not an inreg extend!");
1198 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1199 "Cannot *_EXTEND_INREG FP types");
1200 assert(EVT <= VT && "Not extending!");
1201 }
1202
Chris Lattner76365122005-01-16 02:23:22 +00001203 default: break;
1204 }
1205#endif
1206
Chris Lattnerc3aae252005-01-07 07:46:32 +00001207 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1208 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1209 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001210 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1211 int64_t Val = N1C->getValue();
1212 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1213 Val <<= 64-FromBits;
1214 Val >>= 64-FromBits;
1215 return getConstant(Val, VT);
1216 }
1217
Chris Lattnerc3aae252005-01-07 07:46:32 +00001218 if (N2C) {
1219 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1220 switch (Opcode) {
1221 case ISD::ADD: return getConstant(C1 + C2, VT);
1222 case ISD::SUB: return getConstant(C1 - C2, VT);
1223 case ISD::MUL: return getConstant(C1 * C2, VT);
1224 case ISD::UDIV:
1225 if (C2) return getConstant(C1 / C2, VT);
1226 break;
1227 case ISD::UREM :
1228 if (C2) return getConstant(C1 % C2, VT);
1229 break;
1230 case ISD::SDIV :
1231 if (C2) return getConstant(N1C->getSignExtended() /
1232 N2C->getSignExtended(), VT);
1233 break;
1234 case ISD::SREM :
1235 if (C2) return getConstant(N1C->getSignExtended() %
1236 N2C->getSignExtended(), VT);
1237 break;
1238 case ISD::AND : return getConstant(C1 & C2, VT);
1239 case ISD::OR : return getConstant(C1 | C2, VT);
1240 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001241 case ISD::SHL : return getConstant(C1 << C2, VT);
1242 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001243 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001244 case ISD::ROTL :
1245 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1246 VT);
1247 case ISD::ROTR :
1248 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1249 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001250 default: break;
1251 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001252 } else { // Cannonicalize constant to RHS if commutative
1253 if (isCommutativeBinOp(Opcode)) {
1254 std::swap(N1C, N2C);
1255 std::swap(N1, N2);
1256 }
1257 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001258 }
1259
1260 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1261 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001262 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001263 if (N2CFP) {
1264 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1265 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001266 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1267 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1268 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1269 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001270 if (C2) return getConstantFP(C1 / C2, VT);
1271 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001272 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001273 if (C2) return getConstantFP(fmod(C1, C2), VT);
1274 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001275 case ISD::FCOPYSIGN: {
1276 union {
1277 double F;
1278 uint64_t I;
1279 } u1;
1280 union {
1281 double F;
1282 int64_t I;
1283 } u2;
1284 u1.F = C1;
1285 u2.F = C2;
1286 if (u2.I < 0) // Sign bit of RHS set?
1287 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1288 else
1289 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1290 return getConstantFP(u1.F, VT);
1291 }
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(N1CFP, N2CFP);
1297 std::swap(N1, N2);
1298 }
1299 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001300 }
Chris Lattner62b57722006-04-20 05:39:12 +00001301
1302 // Canonicalize an UNDEF to the RHS, even over a constant.
1303 if (N1.getOpcode() == ISD::UNDEF) {
1304 if (isCommutativeBinOp(Opcode)) {
1305 std::swap(N1, N2);
1306 } else {
1307 switch (Opcode) {
1308 case ISD::FP_ROUND_INREG:
1309 case ISD::SIGN_EXTEND_INREG:
1310 case ISD::SUB:
1311 case ISD::FSUB:
1312 case ISD::FDIV:
1313 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001314 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001315 return N1; // fold op(undef, arg2) -> undef
1316 case ISD::UDIV:
1317 case ISD::SDIV:
1318 case ISD::UREM:
1319 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001320 case ISD::SRL:
1321 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001322 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1323 }
1324 }
1325 }
1326
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001327 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001328 if (N2.getOpcode() == ISD::UNDEF) {
1329 switch (Opcode) {
1330 case ISD::ADD:
1331 case ISD::SUB:
1332 case ISD::FADD:
1333 case ISD::FSUB:
1334 case ISD::FMUL:
1335 case ISD::FDIV:
1336 case ISD::FREM:
1337 case ISD::UDIV:
1338 case ISD::SDIV:
1339 case ISD::UREM:
1340 case ISD::SREM:
1341 case ISD::XOR:
1342 return N2; // fold op(arg1, undef) -> undef
1343 case ISD::MUL:
1344 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001345 case ISD::SRL:
1346 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001347 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1348 case ISD::OR:
1349 return getConstant(MVT::getIntVTBitMask(VT), VT);
Chris Lattner2cfd6742006-05-08 17:29:49 +00001350 case ISD::SRA:
1351 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001352 }
1353 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001354
Chris Lattner51dabfb2006-10-14 00:41:01 +00001355 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001356 switch (Opcode) {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001357 case ISD::AND:
1358 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1359 // worth handling here.
1360 if (N2C && N2C->getValue() == 0)
1361 return N2;
1362 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001363 case ISD::OR:
1364 case ISD::XOR:
1365 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1366 // worth handling here.
1367 if (N2C && N2C->getValue() == 0)
1368 return N1;
1369 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001370 case ISD::FP_ROUND_INREG:
1371 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1372 break;
1373 case ISD::SIGN_EXTEND_INREG: {
1374 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1375 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001376 break;
1377 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001378 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001379 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1380
Chris Lattner5c6621c2006-09-19 04:51:23 +00001381 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1382 // 64-bit integers into 32-bit parts. Instead of building the extract of
1383 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001384 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001385 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001386
1387 // EXTRACT_ELEMENT of a constant int is also very common.
1388 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1389 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1390 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001391 }
1392 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001393
Nate Begemaneea805e2005-04-13 21:23:31 +00001394 // FIXME: figure out how to safely handle things like
1395 // int foo(int x) { return 1 << (x & 255); }
1396 // int bar() { return foo(256); }
1397#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001398 case ISD::SHL:
1399 case ISD::SRL:
1400 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001401 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001402 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001403 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001404 else if (N2.getOpcode() == ISD::AND)
1405 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1406 // If the and is only masking out bits that cannot effect the shift,
1407 // eliminate the and.
1408 unsigned NumBits = MVT::getSizeInBits(VT);
1409 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1410 return getNode(Opcode, VT, N1, N2.getOperand(0));
1411 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001412 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001413#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001414 }
1415
Chris Lattner27e9b412005-05-11 18:57:39 +00001416 // Memoize this node if possible.
1417 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001418 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00001419 SDOperand Ops[] = { N1, N2 };
Chris Lattner70814bc2006-01-29 07:58:15 +00001420 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001421 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001422 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00001423 void *IP = 0;
1424 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1425 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001426 N = new SDNode(Opcode, Ops, 2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001427 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001428 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001429 } else {
Chris Lattner63e3f142007-02-04 07:28:00 +00001430 N = new SDNode(Opcode, Ops, 2);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001431 N->setValueTypes(VTs);
Chris Lattner27e9b412005-05-11 18:57:39 +00001432 }
1433
Chris Lattnerc3aae252005-01-07 07:46:32 +00001434 AllNodes.push_back(N);
1435 return SDOperand(N, 0);
1436}
1437
Chris Lattnerc3aae252005-01-07 07:46:32 +00001438SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1439 SDOperand N1, SDOperand N2, SDOperand N3) {
1440 // Perform various simplifications.
1441 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1442 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001443 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001444 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001445 // Use FoldSetCC to simplify SETCC's.
1446 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001447 if (Simp.Val) return Simp;
1448 break;
1449 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001450 case ISD::SELECT:
1451 if (N1C)
1452 if (N1C->getValue())
1453 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001454 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001455 return N3; // select false, X, Y -> Y
1456
1457 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001458 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001459 case ISD::BRCOND:
1460 if (N2C)
1461 if (N2C->getValue()) // Unconditional branch
1462 return getNode(ISD::BR, MVT::Other, N1, N3);
1463 else
1464 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001465 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001466 case ISD::VECTOR_SHUFFLE:
1467 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1468 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1469 N3.getOpcode() == ISD::BUILD_VECTOR &&
1470 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1471 "Illegal VECTOR_SHUFFLE node!");
1472 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001473 }
1474
Chris Lattner43247a12005-08-25 19:12:10 +00001475 // Memoize node if it doesn't produce a flag.
1476 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001477 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00001478 SDOperand Ops[] = { N1, N2, N3 };
Chris Lattner43247a12005-08-25 19:12:10 +00001479 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001480 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001481 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00001482 void *IP = 0;
1483 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1484 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001485 N = new SDNode(Opcode, Ops, 3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001486 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001487 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001488 } else {
Chris Lattner63e3f142007-02-04 07:28:00 +00001489 N = new SDNode(Opcode, Ops, 3);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001490 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001491 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001492 AllNodes.push_back(N);
1493 return SDOperand(N, 0);
1494}
1495
1496SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001497 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001498 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001499 SDOperand Ops[] = { N1, N2, N3, N4 };
1500 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001501}
1502
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001503SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1504 SDOperand N1, SDOperand N2, SDOperand N3,
1505 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001506 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1507 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001508}
1509
Evan Cheng7038daf2005-12-10 00:37:58 +00001510SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1511 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001512 const Value *SV, int SVOffset,
1513 bool isVolatile) {
1514 // FIXME: Alignment == 1 for now.
1515 unsigned Alignment = 1;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001516 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001517 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001518 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001519 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001520 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001521 ID.AddInteger(ISD::UNINDEXED);
1522 ID.AddInteger(ISD::NON_EXTLOAD);
1523 ID.AddInteger(VT);
1524 ID.AddPointer(SV);
1525 ID.AddInteger(SVOffset);
1526 ID.AddInteger(Alignment);
1527 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001528 void *IP = 0;
1529 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1530 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001531 SDNode *N = new LoadSDNode(Ops, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001532 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1533 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001534 N->setValueTypes(VTs);
1535 CSEMap.InsertNode(N, IP);
1536 AllNodes.push_back(N);
1537 return SDOperand(N, 0);
1538}
1539
1540SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00001541 SDOperand Chain, SDOperand Ptr,
1542 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00001543 int SVOffset, MVT::ValueType EVT,
1544 bool isVolatile) {
1545 // If they are asking for an extending load from/to the same thing, return a
1546 // normal load.
1547 if (VT == EVT)
1548 ExtType = ISD::NON_EXTLOAD;
1549
1550 if (MVT::isVector(VT))
1551 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1552 else
1553 assert(EVT < VT && "Should only be an extending load, not truncating!");
1554 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1555 "Cannot sign/zero extend a FP/Vector load!");
1556 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1557 "Cannot convert from FP to Int or Int -> FP!");
1558
1559 // FIXME: Alignment == 1 for now.
1560 unsigned Alignment = 1;
1561 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001562 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001563 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001564 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001565 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001566 ID.AddInteger(ISD::UNINDEXED);
1567 ID.AddInteger(ExtType);
1568 ID.AddInteger(EVT);
1569 ID.AddPointer(SV);
1570 ID.AddInteger(SVOffset);
1571 ID.AddInteger(Alignment);
1572 ID.AddInteger(isVolatile);
1573 void *IP = 0;
1574 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1575 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001576 SDNode *N = new LoadSDNode(Ops, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001577 SV, SVOffset, Alignment, isVolatile);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001578 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001579 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001580 AllNodes.push_back(N);
1581 return SDOperand(N, 0);
1582}
1583
Evan Cheng144d8f02006-11-09 17:55:04 +00001584SDOperand
1585SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1586 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00001587 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001588 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1589 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001590 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001591 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00001592 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00001593 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001594 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00001595 ID.AddInteger(AM);
1596 ID.AddInteger(LD->getExtensionType());
1597 ID.AddInteger(LD->getLoadedVT());
1598 ID.AddPointer(LD->getSrcValue());
1599 ID.AddInteger(LD->getSrcValueOffset());
1600 ID.AddInteger(LD->getAlignment());
1601 ID.AddInteger(LD->isVolatile());
1602 void *IP = 0;
1603 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1604 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001605 SDNode *N = new LoadSDNode(Ops, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001606 LD->getExtensionType(), LD->getLoadedVT(),
1607 LD->getSrcValue(), LD->getSrcValueOffset(),
1608 LD->getAlignment(), LD->isVolatile());
1609 N->setValueTypes(VTs);
1610 CSEMap.InsertNode(N, IP);
1611 AllNodes.push_back(N);
1612 return SDOperand(N, 0);
1613}
1614
Evan Cheng7038daf2005-12-10 00:37:58 +00001615SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1616 SDOperand Chain, SDOperand Ptr,
1617 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001618 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1619 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001620 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001621}
1622
Jeff Cohend41b30d2006-11-05 19:31:28 +00001623SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001624 SDOperand Ptr, const Value *SV, int SVOffset,
1625 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001626 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001627
1628 // FIXME: Alignment == 1 for now.
1629 unsigned Alignment = 1;
Evan Chengad071e12006-10-05 22:57:11 +00001630 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001631 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001632 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001633 FoldingSetNodeID ID;
1634 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001635 ID.AddInteger(ISD::UNINDEXED);
1636 ID.AddInteger(false);
1637 ID.AddInteger(VT);
1638 ID.AddPointer(SV);
1639 ID.AddInteger(SVOffset);
1640 ID.AddInteger(Alignment);
1641 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001642 void *IP = 0;
1643 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1644 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001645 SDNode *N = new StoreSDNode(Ops, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001646 VT, SV, SVOffset, Alignment, isVolatile);
1647 N->setValueTypes(VTs);
1648 CSEMap.InsertNode(N, IP);
1649 AllNodes.push_back(N);
1650 return SDOperand(N, 0);
1651}
1652
Jeff Cohend41b30d2006-11-05 19:31:28 +00001653SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001654 SDOperand Ptr, const Value *SV,
1655 int SVOffset, MVT::ValueType SVT,
1656 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001657 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001658 bool isTrunc = VT != SVT;
1659
1660 assert(VT > SVT && "Not a truncation?");
1661 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1662 "Can't do FP-INT conversion!");
1663
1664 // FIXME: Alignment == 1 for now.
1665 unsigned Alignment = 1;
1666 SDVTList VTs = getVTList(MVT::Other);
1667 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(isTrunc);
1673 ID.AddInteger(SVT);
1674 ID.AddPointer(SV);
1675 ID.AddInteger(SVOffset);
1676 ID.AddInteger(Alignment);
1677 ID.AddInteger(isVolatile);
1678 void *IP = 0;
1679 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1680 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001681 SDNode *N = new StoreSDNode(Ops, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001682 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001683 N->setValueTypes(VTs);
1684 CSEMap.InsertNode(N, IP);
1685 AllNodes.push_back(N);
1686 return SDOperand(N, 0);
1687}
1688
Evan Cheng144d8f02006-11-09 17:55:04 +00001689SDOperand
1690SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1691 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00001692 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1693 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1694 "Store is already a indexed store!");
1695 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1696 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1697 FoldingSetNodeID ID;
1698 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1699 ID.AddInteger(AM);
1700 ID.AddInteger(ST->isTruncatingStore());
1701 ID.AddInteger(ST->getStoredVT());
1702 ID.AddPointer(ST->getSrcValue());
1703 ID.AddInteger(ST->getSrcValueOffset());
1704 ID.AddInteger(ST->getAlignment());
1705 ID.AddInteger(ST->isVolatile());
1706 void *IP = 0;
1707 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1708 return SDOperand(E, 0);
Chris Lattner63e3f142007-02-04 07:28:00 +00001709 SDNode *N = new StoreSDNode(Ops, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00001710 ST->isTruncatingStore(), ST->getStoredVT(),
1711 ST->getSrcValue(), ST->getSrcValueOffset(),
1712 ST->getAlignment(), ST->isVolatile());
1713 N->setValueTypes(VTs);
1714 CSEMap.InsertNode(N, IP);
1715 AllNodes.push_back(N);
1716 return SDOperand(N, 0);
1717}
1718
Nate Begemanacc398c2006-01-25 18:21:52 +00001719SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1720 SDOperand Chain, SDOperand Ptr,
1721 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001722 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001723 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001724}
1725
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001726SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001727 const SDOperand *Ops, unsigned NumOps) {
1728 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001729 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001730 case 1: return getNode(Opcode, VT, Ops[0]);
1731 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1732 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001733 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001734 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001735
Chris Lattneref847df2005-04-09 03:27:28 +00001736 switch (Opcode) {
1737 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001738 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001739 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001740 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1741 "LHS and RHS of condition must have same type!");
1742 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1743 "True and False arms of SelectCC must have same type!");
1744 assert(Ops[2].getValueType() == VT &&
1745 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001746 break;
1747 }
1748 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001749 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001750 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1751 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001752 break;
1753 }
Chris Lattneref847df2005-04-09 03:27:28 +00001754 }
1755
Chris Lattner385328c2005-05-14 07:42:29 +00001756 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001757 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001758 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001759 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001760 FoldingSetNodeID ID;
1761 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001762 void *IP = 0;
1763 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1764 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001765 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001766 N->setValueTypes(VTs);
Chris Lattnera5682852006-08-07 23:03:03 +00001767 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001768 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001769 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001770 N->setValueTypes(VTs);
Chris Lattner43247a12005-08-25 19:12:10 +00001771 }
Chris Lattneref847df2005-04-09 03:27:28 +00001772 AllNodes.push_back(N);
1773 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001774}
1775
Chris Lattner89c34632005-05-14 06:20:26 +00001776SDOperand SelectionDAG::getNode(unsigned Opcode,
1777 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001778 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001779 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1780 Ops, NumOps);
1781}
1782
1783SDOperand SelectionDAG::getNode(unsigned Opcode,
1784 const MVT::ValueType *VTs, unsigned NumVTs,
1785 const SDOperand *Ops, unsigned NumOps) {
1786 if (NumVTs == 1)
1787 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001788 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1789}
1790
1791SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1792 const SDOperand *Ops, unsigned NumOps) {
1793 if (VTList.NumVTs == 1)
1794 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001795
Chris Lattner5f056bf2005-07-10 01:55:33 +00001796 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001797 // FIXME: figure out how to safely handle things like
1798 // int foo(int x) { return 1 << (x & 255); }
1799 // int bar() { return foo(256); }
1800#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001801 case ISD::SRA_PARTS:
1802 case ISD::SRL_PARTS:
1803 case ISD::SHL_PARTS:
1804 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001805 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001806 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1807 else if (N3.getOpcode() == ISD::AND)
1808 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1809 // If the and is only masking out bits that cannot effect the shift,
1810 // eliminate the and.
1811 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1812 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1813 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1814 }
1815 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001816#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001817 }
Chris Lattner89c34632005-05-14 06:20:26 +00001818
Chris Lattner43247a12005-08-25 19:12:10 +00001819 // Memoize the node unless it returns a flag.
1820 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001821 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001822 FoldingSetNodeID ID;
1823 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001824 void *IP = 0;
1825 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1826 return SDOperand(E, 0);
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001827 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001828 N->setValueTypes(VTList);
Chris Lattnera5682852006-08-07 23:03:03 +00001829 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001830 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001831 N = new SDNode(Opcode, Ops, NumOps);
Chris Lattner0b3e5252006-08-15 19:11:05 +00001832 N->setValueTypes(VTList);
Chris Lattner43247a12005-08-25 19:12:10 +00001833 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001834 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001835 return SDOperand(N, 0);
1836}
1837
Chris Lattner70046e92006-08-15 17:46:01 +00001838SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1839 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001840}
1841
Chris Lattner70046e92006-08-15 17:46:01 +00001842SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001843 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1844 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001845 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001846 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001847 }
1848 std::vector<MVT::ValueType> V;
1849 V.push_back(VT1);
1850 V.push_back(VT2);
1851 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001852 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001853}
Chris Lattner70046e92006-08-15 17:46:01 +00001854SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1855 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001856 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001857 E = VTList.end(); I != E; ++I) {
1858 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1859 (*I)[2] == VT3)
1860 return makeVTList(&(*I)[0], 3);
1861 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001862 std::vector<MVT::ValueType> V;
1863 V.push_back(VT1);
1864 V.push_back(VT2);
1865 V.push_back(VT3);
1866 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001867 return makeVTList(&(*VTList.begin())[0], 3);
1868}
1869
1870SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1871 switch (NumVTs) {
1872 case 0: assert(0 && "Cannot have nodes without results!");
1873 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1874 case 2: return getVTList(VTs[0], VTs[1]);
1875 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1876 default: break;
1877 }
1878
1879 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1880 E = VTList.end(); I != E; ++I) {
1881 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1882
1883 bool NoMatch = false;
1884 for (unsigned i = 2; i != NumVTs; ++i)
1885 if (VTs[i] != (*I)[i]) {
1886 NoMatch = true;
1887 break;
1888 }
1889 if (!NoMatch)
1890 return makeVTList(&*I->begin(), NumVTs);
1891 }
1892
1893 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1894 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001895}
1896
1897
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001898/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1899/// specified operands. If the resultant node already exists in the DAG,
1900/// this does not modify the specified node, instead it returns the node that
1901/// already exists. If the resultant node does not exist in the DAG, the
1902/// input node is returned. As a degenerate case, if you specify the same
1903/// input operands as the node already has, the input node is returned.
1904SDOperand SelectionDAG::
1905UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1906 SDNode *N = InN.Val;
1907 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1908
1909 // Check to see if there is no change.
1910 if (Op == N->getOperand(0)) return InN;
1911
1912 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001913 void *InsertPos = 0;
1914 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1915 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001916
1917 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001918 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001919 RemoveNodeFromCSEMaps(N);
1920
1921 // Now we update the operands.
1922 N->OperandList[0].Val->removeUser(N);
1923 Op.Val->addUser(N);
1924 N->OperandList[0] = Op;
1925
1926 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001927 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001928 return InN;
1929}
1930
1931SDOperand SelectionDAG::
1932UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1933 SDNode *N = InN.Val;
1934 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1935
1936 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001937 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1938 return InN; // No operands changed, just return the input node.
1939
1940 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001941 void *InsertPos = 0;
1942 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1943 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001944
1945 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001946 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001947 RemoveNodeFromCSEMaps(N);
1948
1949 // Now we update the operands.
1950 if (N->OperandList[0] != Op1) {
1951 N->OperandList[0].Val->removeUser(N);
1952 Op1.Val->addUser(N);
1953 N->OperandList[0] = Op1;
1954 }
1955 if (N->OperandList[1] != Op2) {
1956 N->OperandList[1].Val->removeUser(N);
1957 Op2.Val->addUser(N);
1958 N->OperandList[1] = Op2;
1959 }
1960
1961 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001962 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001963 return InN;
1964}
1965
1966SDOperand SelectionDAG::
1967UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001968 SDOperand Ops[] = { Op1, Op2, Op3 };
1969 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001970}
1971
1972SDOperand SelectionDAG::
1973UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1974 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001975 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
1976 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001977}
1978
1979SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00001980UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1981 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001982 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
1983 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00001984}
1985
1986
1987SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001988UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001989 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001990 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001991 "Update with wrong number of operands");
1992
1993 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001994 bool AnyChange = false;
1995 for (unsigned i = 0; i != NumOps; ++i) {
1996 if (Ops[i] != N->getOperand(i)) {
1997 AnyChange = true;
1998 break;
1999 }
2000 }
2001
2002 // No operands changed, just return the input node.
2003 if (!AnyChange) return InN;
2004
2005 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002006 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002007 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002008 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002009
2010 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002011 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002012 RemoveNodeFromCSEMaps(N);
2013
2014 // Now we update the operands.
2015 for (unsigned i = 0; i != NumOps; ++i) {
2016 if (N->OperandList[i] != Ops[i]) {
2017 N->OperandList[i].Val->removeUser(N);
2018 Ops[i].Val->addUser(N);
2019 N->OperandList[i] = Ops[i];
2020 }
2021 }
2022
2023 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002024 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002025 return InN;
2026}
2027
2028
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002029/// MorphNodeTo - This frees the operands of the current node, resets the
2030/// opcode, types, and operands to the specified value. This should only be
2031/// used by the SelectionDAG class.
2032void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2033 const SDOperand *Ops, unsigned NumOps) {
2034 NodeType = Opc;
2035 ValueList = L.VTs;
2036 NumValues = L.NumVTs;
2037
2038 // Clear the operands list, updating used nodes to remove this from their
2039 // use list.
2040 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2041 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002042
2043 // If NumOps is larger than the # of operands we currently have, reallocate
2044 // the operand list.
2045 if (NumOps > NumOperands) {
2046 if (OperandsNeedDelete)
2047 delete [] OperandList;
2048 OperandList = new SDOperand[NumOps];
2049 OperandsNeedDelete = true;
2050 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002051
2052 // Assign the new operands.
2053 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002054
2055 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2056 OperandList[i] = Ops[i];
2057 SDNode *N = OperandList[i].Val;
2058 N->Uses.push_back(this);
2059 }
2060}
Chris Lattner149c58c2005-08-16 18:17:10 +00002061
2062/// SelectNodeTo - These are used for target selectors to *mutate* the
2063/// specified node to have the specified return type, Target opcode, and
2064/// operands. Note that target opcodes are stored as
2065/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002066///
2067/// Note that SelectNodeTo returns the resultant node. If there is already a
2068/// node of the specified opcode and operands, it returns that node instead of
2069/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002070SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2071 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002072 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002073 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002074 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002075 void *IP = 0;
2076 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002077 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002078
Chris Lattner7651fa42005-08-24 23:00:29 +00002079 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002080
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002081 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002082
Chris Lattner4a283e92006-08-11 18:38:11 +00002083 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002084 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002085}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002086
Evan Cheng95514ba2006-08-26 08:00:10 +00002087SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2088 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002089 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002090 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002091 SDOperand Ops[] = { Op1 };
2092
Jim Laskey583bd472006-10-27 23:46:08 +00002093 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002094 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002095 void *IP = 0;
2096 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002097 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002098
Chris Lattner149c58c2005-08-16 18:17:10 +00002099 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002100 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002101 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002102 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002103}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002104
Evan Cheng95514ba2006-08-26 08:00:10 +00002105SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2106 MVT::ValueType VT, SDOperand Op1,
2107 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002108 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002109 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002110 SDOperand Ops[] = { Op1, Op2 };
2111
Jim Laskey583bd472006-10-27 23:46:08 +00002112 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002113 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002114 void *IP = 0;
2115 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002116 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002117
Chris Lattner149c58c2005-08-16 18:17:10 +00002118 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002119
Chris Lattner63e3f142007-02-04 07:28:00 +00002120 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002121
Chris Lattnera5682852006-08-07 23:03:03 +00002122 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002123 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002124}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002125
Evan Cheng95514ba2006-08-26 08:00:10 +00002126SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2127 MVT::ValueType VT, SDOperand Op1,
2128 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002129 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002130 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002131 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002132 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002133 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002134 void *IP = 0;
2135 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002136 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002137
Chris Lattner149c58c2005-08-16 18:17:10 +00002138 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002139
Chris Lattner63e3f142007-02-04 07:28:00 +00002140 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002141
Chris Lattnera5682852006-08-07 23:03:03 +00002142 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002143 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002144}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002145
Evan Cheng95514ba2006-08-26 08:00:10 +00002146SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002147 MVT::ValueType VT, const SDOperand *Ops,
2148 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002149 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002150 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002151 FoldingSetNodeID ID;
2152 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002153 void *IP = 0;
2154 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002155 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002156
Chris Lattner6b09a292005-08-21 18:49:33 +00002157 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002158 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002159
Chris Lattnera5682852006-08-07 23:03:03 +00002160 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002161 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002162}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002163
Evan Cheng95514ba2006-08-26 08:00:10 +00002164SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2165 MVT::ValueType VT1, MVT::ValueType VT2,
2166 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002167 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002168 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002169 SDOperand Ops[] = { Op1, Op2 };
2170 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002171 void *IP = 0;
2172 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002173 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002174
Chris Lattner0fb094f2005-11-19 01:44:53 +00002175 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002176 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002177 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002178 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002179}
2180
Evan Cheng95514ba2006-08-26 08:00:10 +00002181SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2182 MVT::ValueType VT1, MVT::ValueType VT2,
2183 SDOperand Op1, SDOperand Op2,
2184 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002185 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002186 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002187 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002188 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002189 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002190 void *IP = 0;
2191 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002192 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002193
Chris Lattner0fb094f2005-11-19 01:44:53 +00002194 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002195
Chris Lattner63e3f142007-02-04 07:28:00 +00002196 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002197 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002198 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002199}
2200
Chris Lattner0fb094f2005-11-19 01:44:53 +00002201
Evan Cheng6ae46c42006-02-09 07:15:23 +00002202/// getTargetNode - These are used for target selectors to create a new node
2203/// with specified return type(s), target opcode, and operands.
2204///
2205/// Note that getTargetNode returns the resultant node. If there is already a
2206/// node of the specified opcode and operands, it returns that node instead of
2207/// the current one.
2208SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2209 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2210}
2211SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2212 SDOperand Op1) {
2213 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2214}
2215SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2216 SDOperand Op1, SDOperand Op2) {
2217 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2218}
2219SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002220 SDOperand Op1, SDOperand Op2,
2221 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002222 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2223}
2224SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002225 const SDOperand *Ops, unsigned NumOps) {
2226 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002227}
2228SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2229 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002230 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002231 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002232}
2233SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002234 MVT::ValueType VT2, SDOperand Op1,
2235 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002236 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002237 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002238 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002239}
2240SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002241 MVT::ValueType VT2, SDOperand Op1,
2242 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002243 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002244 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002245 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002246}
Evan Cheng694481e2006-08-27 08:08:54 +00002247SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2248 MVT::ValueType VT2,
2249 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002250 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002251 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002252}
2253SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2254 MVT::ValueType VT2, MVT::ValueType VT3,
2255 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002256 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002257 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002258 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002259}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002260SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002261 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002262 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002263 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2264 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002265}
2266
Evan Cheng99157a02006-08-07 22:13:29 +00002267/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002268/// This can cause recursive merging of nodes in the DAG.
2269///
Chris Lattner8b52f212005-08-26 18:36:28 +00002270/// This version assumes From/To have a single result value.
2271///
Chris Lattner1e111c72005-09-07 05:37:01 +00002272void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2273 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002274 SDNode *From = FromN.Val, *To = ToN.Val;
2275 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2276 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002277 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002278
Chris Lattner8b8749f2005-08-17 19:00:20 +00002279 while (!From->use_empty()) {
2280 // Process users until they are all gone.
2281 SDNode *U = *From->use_begin();
2282
2283 // This node is about to morph, remove its old self from the CSE maps.
2284 RemoveNodeFromCSEMaps(U);
2285
Chris Lattner65113b22005-11-08 22:07:03 +00002286 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2287 I != E; ++I)
2288 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002289 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002290 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002291 To->addUser(U);
2292 }
2293
2294 // Now that we have modified U, add it back to the CSE maps. If it already
2295 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002296 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2297 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002298 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002299 if (Deleted) Deleted->push_back(U);
2300 DeleteNodeNotInCSEMaps(U);
2301 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002302 }
2303}
2304
2305/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2306/// This can cause recursive merging of nodes in the DAG.
2307///
2308/// This version assumes From/To have matching types and numbers of result
2309/// values.
2310///
Chris Lattner1e111c72005-09-07 05:37:01 +00002311void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2312 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002313 assert(From != To && "Cannot replace uses of with self");
2314 assert(From->getNumValues() == To->getNumValues() &&
2315 "Cannot use this version of ReplaceAllUsesWith!");
2316 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002317 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002318 return;
2319 }
2320
2321 while (!From->use_empty()) {
2322 // Process users until they are all gone.
2323 SDNode *U = *From->use_begin();
2324
2325 // This node is about to morph, remove its old self from the CSE maps.
2326 RemoveNodeFromCSEMaps(U);
2327
Chris Lattner65113b22005-11-08 22:07:03 +00002328 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2329 I != E; ++I)
2330 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002331 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002332 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002333 To->addUser(U);
2334 }
2335
2336 // Now that we have modified U, add it back to the CSE maps. If it already
2337 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002338 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2339 ReplaceAllUsesWith(U, Existing, Deleted);
2340 // U is now dead.
2341 if (Deleted) Deleted->push_back(U);
2342 DeleteNodeNotInCSEMaps(U);
2343 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002344 }
2345}
2346
Chris Lattner8b52f212005-08-26 18:36:28 +00002347/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2348/// This can cause recursive merging of nodes in the DAG.
2349///
2350/// This version can replace From with any result values. To must match the
2351/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002352void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002353 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002354 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002355 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002356 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002357 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002358 return;
2359 }
2360
2361 while (!From->use_empty()) {
2362 // Process users until they are all gone.
2363 SDNode *U = *From->use_begin();
2364
2365 // This node is about to morph, remove its old self from the CSE maps.
2366 RemoveNodeFromCSEMaps(U);
2367
Chris Lattner65113b22005-11-08 22:07:03 +00002368 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2369 I != E; ++I)
2370 if (I->Val == From) {
2371 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002372 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002373 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002374 ToOp.Val->addUser(U);
2375 }
2376
2377 // Now that we have modified U, add it back to the CSE maps. If it already
2378 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002379 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2380 ReplaceAllUsesWith(U, Existing, Deleted);
2381 // U is now dead.
2382 if (Deleted) Deleted->push_back(U);
2383 DeleteNodeNotInCSEMaps(U);
2384 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002385 }
2386}
2387
Chris Lattner012f2412006-02-17 21:58:01 +00002388/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2389/// uses of other values produced by From.Val alone. The Deleted vector is
2390/// handled the same was as for ReplaceAllUsesWith.
2391void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2392 std::vector<SDNode*> &Deleted) {
2393 assert(From != To && "Cannot replace a value with itself");
2394 // Handle the simple, trivial, case efficiently.
2395 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2396 ReplaceAllUsesWith(From, To, &Deleted);
2397 return;
2398 }
2399
Chris Lattnercf5640b2007-02-04 00:14:31 +00002400 // Get all of the users of From.Val. We want these in a nice,
2401 // deterministically ordered and uniqued set, so we use a SmallSetVector.
2402 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00002403
2404 while (!Users.empty()) {
2405 // We know that this user uses some value of From. If it is the right
2406 // value, update it.
2407 SDNode *User = Users.back();
2408 Users.pop_back();
2409
2410 for (SDOperand *Op = User->OperandList,
2411 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2412 if (*Op == From) {
2413 // Okay, we know this user needs to be updated. Remove its old self
2414 // from the CSE maps.
2415 RemoveNodeFromCSEMaps(User);
2416
2417 // Update all operands that match "From".
2418 for (; Op != E; ++Op) {
2419 if (*Op == From) {
2420 From.Val->removeUser(User);
2421 *Op = To;
2422 To.Val->addUser(User);
2423 }
2424 }
2425
2426 // Now that we have modified User, add it back to the CSE maps. If it
2427 // already exists there, recursively merge the results together.
2428 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2429 unsigned NumDeleted = Deleted.size();
2430 ReplaceAllUsesWith(User, Existing, &Deleted);
2431
2432 // User is now dead.
2433 Deleted.push_back(User);
2434 DeleteNodeNotInCSEMaps(User);
2435
2436 // We have to be careful here, because ReplaceAllUsesWith could have
2437 // deleted a user of From, which means there may be dangling pointers
2438 // in the "Users" setvector. Scan over the deleted node pointers and
2439 // remove them from the setvector.
2440 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2441 Users.remove(Deleted[i]);
2442 }
2443 break; // Exit the operand scanning loop.
2444 }
2445 }
2446 }
2447}
2448
Chris Lattner7b2880c2005-08-24 22:44:39 +00002449
Evan Chenge6f35d82006-08-01 08:20:41 +00002450/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2451/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002452unsigned SelectionDAG::AssignNodeIds() {
2453 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002454 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2455 SDNode *N = I;
2456 N->setNodeId(Id++);
2457 }
2458 return Id;
2459}
2460
Evan Chenge6f35d82006-08-01 08:20:41 +00002461/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002462/// based on their topological order. It returns the maximum id and a vector
2463/// of the SDNodes* in assigned order by reference.
2464unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002465 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002466 std::vector<unsigned> InDegree(DAGSize);
2467 std::vector<SDNode*> Sources;
2468
2469 // Use a two pass approach to avoid using a std::map which is slow.
2470 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002471 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2472 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002473 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002474 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002475 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002476 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002477 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002478 }
2479
Evan Cheng99157a02006-08-07 22:13:29 +00002480 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002481 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002482 SDNode *N = Sources.back();
2483 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002484 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002485 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2486 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002487 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002488 if (Degree == 0)
2489 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002490 }
2491 }
2492
Evan Chengc384d6c2006-08-02 22:00:34 +00002493 // Second pass, assign the actual topological order as node ids.
2494 Id = 0;
2495 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2496 TI != TE; ++TI)
2497 (*TI)->setNodeId(Id++);
2498
2499 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002500}
2501
2502
Evan Cheng091cba12006-07-27 06:39:06 +00002503
Jim Laskey58b968b2005-08-17 20:08:02 +00002504//===----------------------------------------------------------------------===//
2505// SDNode Class
2506//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002507
Chris Lattner917d2c92006-07-19 00:00:37 +00002508// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002509void SDNode::ANCHOR() {}
2510void HandleSDNode::ANCHOR() {}
2511void StringSDNode::ANCHOR() {}
2512void ConstantSDNode::ANCHOR() {}
2513void ConstantFPSDNode::ANCHOR() {}
2514void GlobalAddressSDNode::ANCHOR() {}
2515void FrameIndexSDNode::ANCHOR() {}
2516void JumpTableSDNode::ANCHOR() {}
2517void ConstantPoolSDNode::ANCHOR() {}
2518void BasicBlockSDNode::ANCHOR() {}
2519void SrcValueSDNode::ANCHOR() {}
2520void RegisterSDNode::ANCHOR() {}
2521void ExternalSymbolSDNode::ANCHOR() {}
2522void CondCodeSDNode::ANCHOR() {}
2523void VTSDNode::ANCHOR() {}
2524void LoadSDNode::ANCHOR() {}
2525void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00002526
Chris Lattner48b85922007-02-04 02:41:42 +00002527HandleSDNode::~HandleSDNode() {
2528 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002529 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00002530}
2531
2532
Jim Laskey583bd472006-10-27 23:46:08 +00002533/// Profile - Gather unique data for the node.
2534///
2535void SDNode::Profile(FoldingSetNodeID &ID) {
2536 AddNodeIDNode(ID, this);
2537}
2538
Chris Lattnera3255112005-11-08 23:30:28 +00002539/// getValueTypeList - Return a pointer to the specified value type.
2540///
2541MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2542 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2543 VTs[VT] = VT;
2544 return &VTs[VT];
2545}
Chris Lattnera5682852006-08-07 23:03:03 +00002546
Chris Lattner5c884562005-01-12 18:37:47 +00002547/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2548/// indicated value. This method ignores uses of other values defined by this
2549/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002550bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002551 assert(Value < getNumValues() && "Bad value!");
2552
2553 // If there is only one value, this is easy.
2554 if (getNumValues() == 1)
2555 return use_size() == NUses;
2556 if (Uses.size() < NUses) return false;
2557
Evan Cheng4ee62112006-02-05 06:29:23 +00002558 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002559
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002560 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00002561
Chris Lattnerf83482d2006-08-16 20:59:32 +00002562 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002563 SDNode *User = *UI;
2564 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002565 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00002566 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2567 if (User->getOperand(i) == TheValue) {
2568 if (NUses == 0)
2569 return false; // too many uses
2570 --NUses;
2571 }
2572 }
2573
2574 // Found exactly the right number of uses?
2575 return NUses == 0;
2576}
2577
2578
Evan Chenge6e97e62006-11-03 07:31:32 +00002579/// isOnlyUse - Return true if this node is the only use of N.
2580///
Evan Cheng4ee62112006-02-05 06:29:23 +00002581bool SDNode::isOnlyUse(SDNode *N) const {
2582 bool Seen = false;
2583 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2584 SDNode *User = *I;
2585 if (User == this)
2586 Seen = true;
2587 else
2588 return false;
2589 }
2590
2591 return Seen;
2592}
2593
Evan Chenge6e97e62006-11-03 07:31:32 +00002594/// isOperand - Return true if this node is an operand of N.
2595///
Evan Chengbfa284f2006-03-03 06:42:32 +00002596bool SDOperand::isOperand(SDNode *N) const {
2597 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2598 if (*this == N->getOperand(i))
2599 return true;
2600 return false;
2601}
2602
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002603bool SDNode::isOperand(SDNode *N) const {
2604 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2605 if (this == N->OperandList[i].Val)
2606 return true;
2607 return false;
2608}
Evan Cheng4ee62112006-02-05 06:29:23 +00002609
Evan Chengc5fc57d2006-11-03 03:05:24 +00002610static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002611 SmallPtrSet<SDNode *, 32> &Visited) {
2612 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00002613 return;
2614
2615 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2616 SDNode *Op = N->getOperand(i).Val;
2617 if (Op == P) {
2618 found = true;
2619 return;
2620 }
2621 findPredecessor(Op, P, found, Visited);
2622 }
2623}
2624
Evan Chenge6e97e62006-11-03 07:31:32 +00002625/// isPredecessor - Return true if this node is a predecessor of N. This node
2626/// is either an operand of N or it can be reached by recursively traversing
2627/// up the operands.
2628/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00002629bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002630 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00002631 bool found = false;
2632 findPredecessor(N, this, found, Visited);
2633 return found;
2634}
2635
Evan Chengc5484282006-10-04 00:56:09 +00002636uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2637 assert(Num < NumOperands && "Invalid child # of SDNode!");
2638 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2639}
2640
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002641const char *SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002642 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002643 default:
2644 if (getOpcode() < ISD::BUILTIN_OP_END)
2645 return "<<Unknown DAG Node>>";
2646 else {
Evan Cheng72261582005-12-20 06:22:03 +00002647 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002648 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002649 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2650 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002651
Evan Cheng72261582005-12-20 06:22:03 +00002652 TargetLowering &TLI = G->getTargetLoweringInfo();
2653 const char *Name =
2654 TLI.getTargetNodeName(getOpcode());
2655 if (Name) return Name;
2656 }
2657
2658 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002659 }
2660
Andrew Lenharth95762122005-03-31 21:24:06 +00002661 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002662 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002663 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002664 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002665 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002666 case ISD::AssertSext: return "AssertSext";
2667 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002668
2669 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002670 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002671 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002672 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002673
2674 case ISD::Constant: return "Constant";
2675 case ISD::ConstantFP: return "ConstantFP";
2676 case ISD::GlobalAddress: return "GlobalAddress";
2677 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002678 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002679 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00002680 case ISD::RETURNADDR: return "RETURNADDR";
2681 case ISD::FRAMEADDR: return "FRAMEADDR";
Chris Lattner5839bf22005-08-26 17:15:30 +00002682 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002683 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002684 case ISD::INTRINSIC_WO_CHAIN: {
2685 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2686 return Intrinsic::getName((Intrinsic::ID)IID);
2687 }
2688 case ISD::INTRINSIC_VOID:
2689 case ISD::INTRINSIC_W_CHAIN: {
2690 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002691 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002692 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002693
Chris Lattnerb2827b02006-03-19 00:52:58 +00002694 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002695 case ISD::TargetConstant: return "TargetConstant";
2696 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002697 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2698 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002699 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002700 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002701 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002702
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002703 case ISD::CopyToReg: return "CopyToReg";
2704 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002705 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002706 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002707 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00002708 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002709 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002710 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002711 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002712
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002713 // Unary operators
2714 case ISD::FABS: return "fabs";
2715 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002716 case ISD::FSQRT: return "fsqrt";
2717 case ISD::FSIN: return "fsin";
2718 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002719 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002720
2721 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002722 case ISD::ADD: return "add";
2723 case ISD::SUB: return "sub";
2724 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002725 case ISD::MULHU: return "mulhu";
2726 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002727 case ISD::SDIV: return "sdiv";
2728 case ISD::UDIV: return "udiv";
2729 case ISD::SREM: return "srem";
2730 case ISD::UREM: return "urem";
2731 case ISD::AND: return "and";
2732 case ISD::OR: return "or";
2733 case ISD::XOR: return "xor";
2734 case ISD::SHL: return "shl";
2735 case ISD::SRA: return "sra";
2736 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002737 case ISD::ROTL: return "rotl";
2738 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002739 case ISD::FADD: return "fadd";
2740 case ISD::FSUB: return "fsub";
2741 case ISD::FMUL: return "fmul";
2742 case ISD::FDIV: return "fdiv";
2743 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002744 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002745 case ISD::VADD: return "vadd";
2746 case ISD::VSUB: return "vsub";
2747 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002748 case ISD::VSDIV: return "vsdiv";
2749 case ISD::VUDIV: return "vudiv";
2750 case ISD::VAND: return "vand";
2751 case ISD::VOR: return "vor";
2752 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002753
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002754 case ISD::SETCC: return "setcc";
2755 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002756 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002757 case ISD::VSELECT: return "vselect";
2758 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2759 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2760 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002761 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002762 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2763 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2764 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2765 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2766 case ISD::VBIT_CONVERT: return "vbit_convert";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002767 case ISD::ADDC: return "addc";
2768 case ISD::ADDE: return "adde";
2769 case ISD::SUBC: return "subc";
2770 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002771 case ISD::SHL_PARTS: return "shl_parts";
2772 case ISD::SRA_PARTS: return "sra_parts";
2773 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002774
Chris Lattner7f644642005-04-28 21:44:03 +00002775 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002776 case ISD::SIGN_EXTEND: return "sign_extend";
2777 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002778 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002779 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002780 case ISD::TRUNCATE: return "truncate";
2781 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002782 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002783 case ISD::FP_EXTEND: return "fp_extend";
2784
2785 case ISD::SINT_TO_FP: return "sint_to_fp";
2786 case ISD::UINT_TO_FP: return "uint_to_fp";
2787 case ISD::FP_TO_SINT: return "fp_to_sint";
2788 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002789 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002790
2791 // Control flow instructions
2792 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002793 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002794 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002795 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002796 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002797 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002798 case ISD::CALLSEQ_START: return "callseq_start";
2799 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002800
2801 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002802 case ISD::LOAD: return "load";
2803 case ISD::STORE: return "store";
2804 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002805 case ISD::VAARG: return "vaarg";
2806 case ISD::VACOPY: return "vacopy";
2807 case ISD::VAEND: return "vaend";
2808 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002809 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002810 case ISD::EXTRACT_ELEMENT: return "extract_element";
2811 case ISD::BUILD_PAIR: return "build_pair";
2812 case ISD::STACKSAVE: return "stacksave";
2813 case ISD::STACKRESTORE: return "stackrestore";
2814
2815 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002816 case ISD::MEMSET: return "memset";
2817 case ISD::MEMCPY: return "memcpy";
2818 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002819
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002820 // Bit manipulation
2821 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002822 case ISD::CTPOP: return "ctpop";
2823 case ISD::CTTZ: return "cttz";
2824 case ISD::CTLZ: return "ctlz";
2825
Chris Lattner36ce6912005-11-29 06:21:05 +00002826 // Debug info
2827 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002828 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00002829
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002830 case ISD::CONDCODE:
2831 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002832 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002833 case ISD::SETOEQ: return "setoeq";
2834 case ISD::SETOGT: return "setogt";
2835 case ISD::SETOGE: return "setoge";
2836 case ISD::SETOLT: return "setolt";
2837 case ISD::SETOLE: return "setole";
2838 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002839
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002840 case ISD::SETO: return "seto";
2841 case ISD::SETUO: return "setuo";
2842 case ISD::SETUEQ: return "setue";
2843 case ISD::SETUGT: return "setugt";
2844 case ISD::SETUGE: return "setuge";
2845 case ISD::SETULT: return "setult";
2846 case ISD::SETULE: return "setule";
2847 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002848
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002849 case ISD::SETEQ: return "seteq";
2850 case ISD::SETGT: return "setgt";
2851 case ISD::SETGE: return "setge";
2852 case ISD::SETLT: return "setlt";
2853 case ISD::SETLE: return "setle";
2854 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002855 }
2856 }
2857}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002858
Evan Cheng144d8f02006-11-09 17:55:04 +00002859const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002860 switch (AM) {
2861 default:
2862 return "";
2863 case ISD::PRE_INC:
2864 return "<pre-inc>";
2865 case ISD::PRE_DEC:
2866 return "<pre-dec>";
2867 case ISD::POST_INC:
2868 return "<post-inc>";
2869 case ISD::POST_DEC:
2870 return "<post-dec>";
2871 }
2872}
2873
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002874void SDNode::dump() const { dump(0); }
2875void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00002876 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002877
2878 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002879 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002880 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00002881 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00002882 else
Bill Wendling832171c2006-12-07 20:04:42 +00002883 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002884 }
Bill Wendling832171c2006-12-07 20:04:42 +00002885 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002886
Bill Wendling832171c2006-12-07 20:04:42 +00002887 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002888 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002889 if (i) cerr << ", ";
2890 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002891 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00002892 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002893 }
2894
2895 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002896 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002897 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002898 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002899 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00002900 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00002901 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00002902 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00002903 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00002904 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002905 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00002906 else
Bill Wendling832171c2006-12-07 20:04:42 +00002907 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002908 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002909 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00002910 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002911 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002912 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00002913 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00002914 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00002915 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00002916 else
Bill Wendling832171c2006-12-07 20:04:42 +00002917 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00002918 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002919 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00002920 else
Bill Wendling832171c2006-12-07 20:04:42 +00002921 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002922 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002923 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002924 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2925 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00002926 cerr << LBB->getName() << " ";
2927 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00002928 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00002929 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00002930 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00002931 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00002932 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00002933 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002934 } else if (const ExternalSymbolSDNode *ES =
2935 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002936 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002937 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2938 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00002939 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002940 else
Bill Wendling832171c2006-12-07 20:04:42 +00002941 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00002942 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002943 cerr << ":" << getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002944 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
2945 bool doExt = true;
2946 switch (LD->getExtensionType()) {
2947 default: doExt = false; break;
2948 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002949 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002950 break;
2951 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002952 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002953 break;
2954 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002955 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002956 break;
2957 }
2958 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00002959 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002960
Evan Cheng144d8f02006-11-09 17:55:04 +00002961 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002962 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002963 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00002964 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
2965 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00002966 cerr << " <trunc "
2967 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00002968
Evan Cheng144d8f02006-11-09 17:55:04 +00002969 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002970 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002971 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002972 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002973}
2974
Chris Lattnerde202b32005-11-09 23:47:37 +00002975static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002976 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2977 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002978 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002979 else
Bill Wendling832171c2006-12-07 20:04:42 +00002980 cerr << "\n" << std::string(indent+2, ' ')
2981 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002982
Chris Lattnerea946cd2005-01-09 20:38:33 +00002983
Bill Wendling832171c2006-12-07 20:04:42 +00002984 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002985 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002986}
2987
Chris Lattnerc3aae252005-01-07 07:46:32 +00002988void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00002989 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00002990 std::vector<const SDNode*> Nodes;
2991 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
2992 I != E; ++I)
2993 Nodes.push_back(I);
2994
Chris Lattner49d24712005-01-09 20:26:36 +00002995 std::sort(Nodes.begin(), Nodes.end());
2996
2997 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002998 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002999 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003000 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003001
Jim Laskey26f7fa72006-10-17 19:33:52 +00003002 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003003
Bill Wendling832171c2006-12-07 20:04:42 +00003004 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003005}
3006
Evan Chengd6594ae2006-09-12 21:00:35 +00003007const Type *ConstantPoolSDNode::getType() const {
3008 if (isMachineConstantPoolEntry())
3009 return Val.MachineCPVal->getType();
3010 return Val.ConstVal->getType();
3011}