blob: 75fbf8afb9c4ac987bd258fd3d63ec971a2d4caa [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"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000017#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000018#include "llvm/Intrinsics.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000022#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000023#include "llvm/Target/MRegisterInfo.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000024#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000025#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000027#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000028#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000029#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000030#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000031#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000032#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000033using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000034
Chris Lattner0b3e5252006-08-15 19:11:05 +000035/// makeVTList - Return an instance of the SDVTList struct initialized with the
36/// specified members.
37static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
38 SDVTList Res = {VTs, NumVTs};
39 return Res;
40}
41
Jim Laskey58b968b2005-08-17 20:08:02 +000042//===----------------------------------------------------------------------===//
43// ConstantFPSDNode Class
44//===----------------------------------------------------------------------===//
45
46/// isExactlyValue - We don't rely on operator== working on double values, as
47/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
48/// As such, this method can be used to do an exact bit-for-bit comparison of
49/// two floating point values.
50bool ConstantFPSDNode::isExactlyValue(double V) const {
51 return DoubleToBits(V) == DoubleToBits(Value);
52}
53
54//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000055// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000056//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000057
Evan Chenga8df1662006-03-27 06:58:47 +000058/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000059/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000060bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000061 // Look through a bit convert.
62 if (N->getOpcode() == ISD::BIT_CONVERT)
63 N = N->getOperand(0).Val;
64
Evan Chenga8df1662006-03-27 06:58:47 +000065 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000066
67 unsigned i = 0, e = N->getNumOperands();
68
69 // Skip over all of the undef values.
70 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
71 ++i;
72
73 // Do not accept an all-undef vector.
74 if (i == e) return false;
75
76 // Do not accept build_vectors that aren't all constants or which have non-~0
77 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000078 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000079 if (isa<ConstantSDNode>(NotZero)) {
80 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
81 return false;
82 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000083 MVT::ValueType VT = NotZero.getValueType();
84 if (VT== MVT::f64) {
85 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
86 (uint64_t)-1)
87 return false;
88 } else {
89 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
90 (uint32_t)-1)
91 return false;
92 }
Evan Chenga8df1662006-03-27 06:58:47 +000093 } else
Chris Lattner61d43992006-03-25 22:57:01 +000094 return false;
95
96 // Okay, we have at least one ~0 value, check to see if the rest match or are
97 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000098 for (++i; i != e; ++i)
99 if (N->getOperand(i) != NotZero &&
100 N->getOperand(i).getOpcode() != ISD::UNDEF)
101 return false;
102 return true;
103}
104
105
Evan Cheng4a147842006-03-26 09:50:58 +0000106/// isBuildVectorAllZeros - Return true if the specified node is a
107/// BUILD_VECTOR where all of the elements are 0 or undef.
108bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000109 // Look through a bit convert.
110 if (N->getOpcode() == ISD::BIT_CONVERT)
111 N = N->getOperand(0).Val;
112
Evan Cheng4a147842006-03-26 09:50:58 +0000113 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000114
115 unsigned i = 0, e = N->getNumOperands();
116
117 // Skip over all of the undef values.
118 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
119 ++i;
120
121 // Do not accept an all-undef vector.
122 if (i == e) return false;
123
124 // Do not accept build_vectors that aren't all constants or which have non-~0
125 // elements.
126 SDOperand Zero = N->getOperand(i);
127 if (isa<ConstantSDNode>(Zero)) {
128 if (!cast<ConstantSDNode>(Zero)->isNullValue())
129 return false;
130 } else if (isa<ConstantFPSDNode>(Zero)) {
131 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
132 return false;
133 } else
134 return false;
135
136 // Okay, we have at least one ~0 value, check to see if the rest match or are
137 // undefs.
138 for (++i; i != e; ++i)
139 if (N->getOperand(i) != Zero &&
140 N->getOperand(i).getOpcode() != ISD::UNDEF)
141 return false;
142 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000143}
144
Chris Lattnerc3aae252005-01-07 07:46:32 +0000145/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
146/// when given the operation for (X op Y).
147ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
148 // To perform this operation, we just need to swap the L and G bits of the
149 // operation.
150 unsigned OldL = (Operation >> 2) & 1;
151 unsigned OldG = (Operation >> 1) & 1;
152 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
153 (OldL << 1) | // New G bit
154 (OldG << 2)); // New L bit.
155}
156
157/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
158/// 'op' is a valid SetCC operation.
159ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
160 unsigned Operation = Op;
161 if (isInteger)
162 Operation ^= 7; // Flip L, G, E bits, but not U.
163 else
164 Operation ^= 15; // Flip all of the condition bits.
165 if (Operation > ISD::SETTRUE2)
166 Operation &= ~8; // Don't let N and U bits get set.
167 return ISD::CondCode(Operation);
168}
169
170
171/// isSignedOp - For an integer comparison, return 1 if the comparison is a
172/// signed operation and 2 if the result is an unsigned comparison. Return zero
173/// if the operation does not depend on the sign of the input (setne and seteq).
174static int isSignedOp(ISD::CondCode Opcode) {
175 switch (Opcode) {
176 default: assert(0 && "Illegal integer setcc operation!");
177 case ISD::SETEQ:
178 case ISD::SETNE: return 0;
179 case ISD::SETLT:
180 case ISD::SETLE:
181 case ISD::SETGT:
182 case ISD::SETGE: return 1;
183 case ISD::SETULT:
184 case ISD::SETULE:
185 case ISD::SETUGT:
186 case ISD::SETUGE: return 2;
187 }
188}
189
190/// getSetCCOrOperation - Return the result of a logical OR between different
191/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
192/// returns SETCC_INVALID if it is not possible to represent the resultant
193/// comparison.
194ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
195 bool isInteger) {
196 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
197 // Cannot fold a signed integer setcc with an unsigned integer setcc.
198 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000199
Chris Lattnerc3aae252005-01-07 07:46:32 +0000200 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000201
Chris Lattnerc3aae252005-01-07 07:46:32 +0000202 // If the N and U bits get set then the resultant comparison DOES suddenly
203 // care about orderedness, and is true when ordered.
204 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000205 Op &= ~16; // Clear the U bit if the N bit is set.
206
207 // Canonicalize illegal integer setcc's.
208 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
209 Op = ISD::SETNE;
210
Chris Lattnerc3aae252005-01-07 07:46:32 +0000211 return ISD::CondCode(Op);
212}
213
214/// getSetCCAndOperation - Return the result of a logical AND between different
215/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
216/// function returns zero if it is not possible to represent the resultant
217/// comparison.
218ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
219 bool isInteger) {
220 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
221 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000222 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000223
224 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000225 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
226
227 // Canonicalize illegal integer setcc's.
228 if (isInteger) {
229 switch (Result) {
230 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000231 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
232 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
233 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
234 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000235 }
236 }
237
238 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000239}
240
Chris Lattnerb48da392005-01-23 04:39:44 +0000241const TargetMachine &SelectionDAG::getTarget() const {
242 return TLI.getTargetMachine();
243}
244
Jim Laskey58b968b2005-08-17 20:08:02 +0000245//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000246// SDNode Profile Support
247//===----------------------------------------------------------------------===//
248
Jim Laskeydef69b92006-10-27 23:52:51 +0000249/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
250///
Jim Laskey583bd472006-10-27 23:46:08 +0000251static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
252 ID.AddInteger(OpC);
253}
254
255/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
256/// solely with their pointer.
257void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
258 ID.AddPointer(VTList.VTs);
259}
260
Jim Laskeydef69b92006-10-27 23:52:51 +0000261/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
262///
Jim Laskey583bd472006-10-27 23:46:08 +0000263static void AddNodeIDOperands(FoldingSetNodeID &ID,
264 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000265 for (; NumOps; --NumOps, ++Ops) {
266 ID.AddPointer(Ops->Val);
267 ID.AddInteger(Ops->ResNo);
268 }
Jim Laskey583bd472006-10-27 23:46:08 +0000269}
270
Jim Laskey583bd472006-10-27 23:46:08 +0000271static void AddNodeIDNode(FoldingSetNodeID &ID,
272 unsigned short OpC, SDVTList VTList,
273 const SDOperand *OpList, unsigned N) {
274 AddNodeIDOpcode(ID, OpC);
275 AddNodeIDValueTypes(ID, VTList);
276 AddNodeIDOperands(ID, OpList, N);
277}
278
Jim Laskeydef69b92006-10-27 23:52:51 +0000279/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
280/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000281static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
282 AddNodeIDOpcode(ID, N->getOpcode());
283 // Add the return value info.
284 AddNodeIDValueTypes(ID, N->getVTList());
285 // Add the operand info.
286 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
287
288 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000289 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:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000300 case ISD::GlobalAddress:
301 case ISD::TargetGlobalTLSAddress:
302 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000303 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
304 ID.AddPointer(GA->getGlobal());
305 ID.AddInteger(GA->getOffset());
306 break;
307 }
308 case ISD::BasicBlock:
309 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
310 break;
311 case ISD::Register:
312 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
313 break;
314 case ISD::SRCVALUE: {
315 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
316 ID.AddPointer(SV->getValue());
317 ID.AddInteger(SV->getOffset());
318 break;
319 }
320 case ISD::FrameIndex:
321 case ISD::TargetFrameIndex:
322 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
323 break;
324 case ISD::JumpTable:
325 case ISD::TargetJumpTable:
326 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
327 break;
328 case ISD::ConstantPool:
329 case ISD::TargetConstantPool: {
330 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
331 ID.AddInteger(CP->getAlignment());
332 ID.AddInteger(CP->getOffset());
333 if (CP->isMachineConstantPoolEntry())
334 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
335 else
336 ID.AddPointer(CP->getConstVal());
337 break;
338 }
339 case ISD::LOAD: {
340 LoadSDNode *LD = cast<LoadSDNode>(N);
341 ID.AddInteger(LD->getAddressingMode());
342 ID.AddInteger(LD->getExtensionType());
343 ID.AddInteger(LD->getLoadedVT());
344 ID.AddPointer(LD->getSrcValue());
345 ID.AddInteger(LD->getSrcValueOffset());
346 ID.AddInteger(LD->getAlignment());
347 ID.AddInteger(LD->isVolatile());
348 break;
349 }
350 case ISD::STORE: {
351 StoreSDNode *ST = cast<StoreSDNode>(N);
352 ID.AddInteger(ST->getAddressingMode());
353 ID.AddInteger(ST->isTruncatingStore());
354 ID.AddInteger(ST->getStoredVT());
355 ID.AddPointer(ST->getSrcValue());
356 ID.AddInteger(ST->getSrcValueOffset());
357 ID.AddInteger(ST->getAlignment());
358 ID.AddInteger(ST->isVolatile());
359 break;
360 }
Jim Laskey583bd472006-10-27 23:46:08 +0000361 }
362}
363
364//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000365// SelectionDAG Class
366//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000367
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000368/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000369/// SelectionDAG.
370void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000371 // Create a dummy node (which is not added to allnodes), that adds a reference
372 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000373 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000374
Chris Lattner190a4182006-08-04 17:45:20 +0000375 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000376
Chris Lattner190a4182006-08-04 17:45:20 +0000377 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000378 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000379 if (I->use_empty())
380 DeadNodes.push_back(I);
381
382 // Process the worklist, deleting the nodes and adding their uses to the
383 // worklist.
384 while (!DeadNodes.empty()) {
385 SDNode *N = DeadNodes.back();
386 DeadNodes.pop_back();
387
388 // Take the node out of the appropriate CSE map.
389 RemoveNodeFromCSEMaps(N);
390
391 // Next, brutally remove the operand list. This is safe to do, as there are
392 // no cycles in the graph.
393 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
394 SDNode *Operand = I->Val;
395 Operand->removeUser(N);
396
397 // Now that we removed this operand, see if there are no uses of it left.
398 if (Operand->use_empty())
399 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000400 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000401 if (N->OperandsNeedDelete)
402 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000403 N->OperandList = 0;
404 N->NumOperands = 0;
405
406 // Finally, remove N itself.
407 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000408 }
409
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000410 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000411 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000412}
413
Evan Cheng130a6472006-10-12 20:34:05 +0000414void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
415 SmallVector<SDNode*, 16> DeadNodes;
416 DeadNodes.push_back(N);
417
418 // Process the worklist, deleting the nodes and adding their uses to the
419 // worklist.
420 while (!DeadNodes.empty()) {
421 SDNode *N = DeadNodes.back();
422 DeadNodes.pop_back();
423
424 // Take the node out of the appropriate CSE map.
425 RemoveNodeFromCSEMaps(N);
426
427 // Next, brutally remove the operand list. This is safe to do, as there are
428 // no cycles in the graph.
429 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
430 SDNode *Operand = I->Val;
431 Operand->removeUser(N);
432
433 // Now that we removed this operand, see if there are no uses of it left.
434 if (Operand->use_empty())
435 DeadNodes.push_back(Operand);
436 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000437 if (N->OperandsNeedDelete)
438 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000439 N->OperandList = 0;
440 N->NumOperands = 0;
441
442 // Finally, remove N itself.
443 Deleted.push_back(N);
444 AllNodes.erase(N);
445 }
446}
447
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000448void SelectionDAG::DeleteNode(SDNode *N) {
449 assert(N->use_empty() && "Cannot delete a node that is not dead!");
450
451 // First take this out of the appropriate CSE map.
452 RemoveNodeFromCSEMaps(N);
453
Chris Lattner1e111c72005-09-07 05:37:01 +0000454 // Finally, remove uses due to operands of this node, remove from the
455 // AllNodes list, and delete the node.
456 DeleteNodeNotInCSEMaps(N);
457}
458
459void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
460
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000461 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000462 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000463
464 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000465 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
466 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000467 if (N->OperandsNeedDelete)
468 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000469 N->OperandList = 0;
470 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000471
472 delete N;
473}
474
Chris Lattner149c58c2005-08-16 18:17:10 +0000475/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
476/// correspond to it. This is useful when we're about to delete or repurpose
477/// the node. We don't want future request for structurally identical nodes
478/// to return N anymore.
479void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000480 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000481 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000482 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000483 case ISD::STRING:
484 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
485 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000486 case ISD::CONDCODE:
487 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
488 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000489 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000490 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
491 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000492 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000493 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000494 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000495 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000496 Erased =
497 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000498 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000499 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000500 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000501 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
502 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000503 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000504 // Remove it from the CSE Map.
505 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000506 break;
507 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000508#ifndef NDEBUG
509 // Verify that the node was actually in one of the CSE maps, unless it has a
510 // flag result (which cannot be CSE'd) or is one of the special cases that are
511 // not subject to CSE.
512 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000513 !N->isTargetOpcode()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000514 N->dump();
Bill Wendling832171c2006-12-07 20:04:42 +0000515 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000516 assert(0 && "Node is not in map!");
517 }
518#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000519}
520
Chris Lattner8b8749f2005-08-17 19:00:20 +0000521/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
522/// has been taken out and modified in some way. If the specified node already
523/// exists in the CSE maps, do not modify the maps, but return the existing node
524/// instead. If it doesn't exist, add it and return null.
525///
526SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
527 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000528 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000529 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000530
Chris Lattner9f8cc692005-12-19 22:21:21 +0000531 // Check that remaining values produced are not flags.
532 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
533 if (N->getValueType(i) == MVT::Flag)
534 return 0; // Never CSE anything that produces a flag.
535
Chris Lattnera5682852006-08-07 23:03:03 +0000536 SDNode *New = CSEMap.GetOrInsertNode(N);
537 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000538 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000539}
540
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000541/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
542/// were replaced with those specified. If this node is never memoized,
543/// return null, otherwise return a pointer to the slot it would take. If a
544/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000545SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
546 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000547 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000548 return 0; // Never add these nodes.
549
550 // Check that remaining values produced are not flags.
551 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
552 if (N->getValueType(i) == MVT::Flag)
553 return 0; // Never CSE anything that produces a flag.
554
Chris Lattner63e3f142007-02-04 07:28:00 +0000555 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000556 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000557 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000558 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000559}
560
561/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
562/// were replaced with those specified. If this node is never memoized,
563/// return null, otherwise return a pointer to the slot it would take. If a
564/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000565SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
566 SDOperand Op1, SDOperand Op2,
567 void *&InsertPos) {
568 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
569 return 0; // Never add these nodes.
570
571 // Check that remaining values produced are not flags.
572 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
573 if (N->getValueType(i) == MVT::Flag)
574 return 0; // Never CSE anything that produces a flag.
575
Chris Lattner63e3f142007-02-04 07:28:00 +0000576 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000577 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000578 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000579 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
580}
581
582
583/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
584/// were replaced with those specified. If this node is never memoized,
585/// return null, otherwise return a pointer to the slot it would take. If a
586/// node already exists with these operands, the slot will be non-null.
587SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000588 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000589 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000590 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000591 return 0; // Never add these nodes.
592
593 // Check that remaining values produced are not flags.
594 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
595 if (N->getValueType(i) == MVT::Flag)
596 return 0; // Never CSE anything that produces a flag.
597
Jim Laskey583bd472006-10-27 23:46:08 +0000598 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000599 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000600
Evan Cheng9629aba2006-10-11 01:47:58 +0000601 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
602 ID.AddInteger(LD->getAddressingMode());
603 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000604 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000605 ID.AddPointer(LD->getSrcValue());
606 ID.AddInteger(LD->getSrcValueOffset());
607 ID.AddInteger(LD->getAlignment());
608 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000609 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
610 ID.AddInteger(ST->getAddressingMode());
611 ID.AddInteger(ST->isTruncatingStore());
612 ID.AddInteger(ST->getStoredVT());
613 ID.AddPointer(ST->getSrcValue());
614 ID.AddInteger(ST->getSrcValueOffset());
615 ID.AddInteger(ST->getAlignment());
616 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000617 }
Jim Laskey583bd472006-10-27 23:46:08 +0000618
619 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000620 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000621}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000622
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000623
Chris Lattner78ec3112003-08-11 14:57:33 +0000624SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000625 while (!AllNodes.empty()) {
626 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000627 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000628 if (N->OperandsNeedDelete)
629 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000630 N->OperandList = 0;
631 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000632 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000633 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000634}
635
Chris Lattner0f2287b2005-04-13 02:38:18 +0000636SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000637 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000638 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000639 return getNode(ISD::AND, Op.getValueType(), Op,
640 getConstant(Imm, Op.getValueType()));
641}
642
Chris Lattner36ce6912005-11-29 06:21:05 +0000643SDOperand SelectionDAG::getString(const std::string &Val) {
644 StringSDNode *&N = StringNodes[Val];
645 if (!N) {
646 N = new StringSDNode(Val);
647 AllNodes.push_back(N);
648 }
649 return SDOperand(N, 0);
650}
651
Chris Lattner61b09412006-08-11 21:01:22 +0000652SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000653 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000654 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000655
Chris Lattner61b09412006-08-11 21:01:22 +0000656 // Mask out any bits that are not valid for this constant.
657 Val &= MVT::getIntVTBitMask(VT);
658
659 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000660 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000661 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000662 ID.AddInteger(Val);
663 void *IP = 0;
664 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
665 return SDOperand(E, 0);
666 SDNode *N = new ConstantSDNode(isT, Val, VT);
667 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000668 AllNodes.push_back(N);
669 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000670}
671
Chris Lattner61b09412006-08-11 21:01:22 +0000672
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000673SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
674 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000675 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
676 if (VT == MVT::f32)
677 Val = (float)Val; // Mask out extra precision.
678
Chris Lattnerd8658612005-02-17 20:17:32 +0000679 // Do the map lookup using the actual bit pattern for the floating point
680 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
681 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000682 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000683 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000684 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000685 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000686 void *IP = 0;
687 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
688 return SDOperand(E, 0);
689 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
690 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000691 AllNodes.push_back(N);
692 return SDOperand(N, 0);
693}
694
Chris Lattnerc3aae252005-01-07 07:46:32 +0000695SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000696 MVT::ValueType VT, int Offset,
697 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000698 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
699 unsigned Opc;
700 if (GVar && GVar->isThreadLocal())
701 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
702 else
703 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000704 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000705 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000706 ID.AddPointer(GV);
707 ID.AddInteger(Offset);
708 void *IP = 0;
709 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
710 return SDOperand(E, 0);
711 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
712 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000713 AllNodes.push_back(N);
714 return SDOperand(N, 0);
715}
716
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000717SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
718 bool isTarget) {
719 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000720 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000721 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000722 ID.AddInteger(FI);
723 void *IP = 0;
724 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
725 return SDOperand(E, 0);
726 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
727 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000728 AllNodes.push_back(N);
729 return SDOperand(N, 0);
730}
731
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000732SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
733 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000734 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000735 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000736 ID.AddInteger(JTI);
737 void *IP = 0;
738 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
739 return SDOperand(E, 0);
740 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
741 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000742 AllNodes.push_back(N);
743 return SDOperand(N, 0);
744}
745
Evan Chengb8973bd2006-01-31 22:23:14 +0000746SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000747 unsigned Alignment, int Offset,
748 bool isTarget) {
749 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000750 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000751 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000752 ID.AddInteger(Alignment);
753 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000754 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000755 void *IP = 0;
756 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
757 return SDOperand(E, 0);
758 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
759 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000760 AllNodes.push_back(N);
761 return SDOperand(N, 0);
762}
763
Chris Lattnerc3aae252005-01-07 07:46:32 +0000764
Evan Chengd6594ae2006-09-12 21:00:35 +0000765SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
766 MVT::ValueType VT,
767 unsigned Alignment, int Offset,
768 bool isTarget) {
769 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000770 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000771 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000772 ID.AddInteger(Alignment);
773 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000774 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000775 void *IP = 0;
776 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
777 return SDOperand(E, 0);
778 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
779 CSEMap.InsertNode(N, IP);
780 AllNodes.push_back(N);
781 return SDOperand(N, 0);
782}
783
784
Chris Lattnerc3aae252005-01-07 07:46:32 +0000785SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000786 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000787 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000788 ID.AddPointer(MBB);
789 void *IP = 0;
790 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
791 return SDOperand(E, 0);
792 SDNode *N = new BasicBlockSDNode(MBB);
793 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000794 AllNodes.push_back(N);
795 return SDOperand(N, 0);
796}
797
Chris Lattner15e4b012005-07-10 00:07:11 +0000798SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
799 if ((unsigned)VT >= ValueTypeNodes.size())
800 ValueTypeNodes.resize(VT+1);
801 if (ValueTypeNodes[VT] == 0) {
802 ValueTypeNodes[VT] = new VTSDNode(VT);
803 AllNodes.push_back(ValueTypeNodes[VT]);
804 }
805
806 return SDOperand(ValueTypeNodes[VT], 0);
807}
808
Chris Lattnerc3aae252005-01-07 07:46:32 +0000809SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
810 SDNode *&N = ExternalSymbols[Sym];
811 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000812 N = new ExternalSymbolSDNode(false, Sym, VT);
813 AllNodes.push_back(N);
814 return SDOperand(N, 0);
815}
816
Chris Lattner809ec112006-01-28 10:09:25 +0000817SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
818 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000819 SDNode *&N = TargetExternalSymbols[Sym];
820 if (N) return SDOperand(N, 0);
821 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000822 AllNodes.push_back(N);
823 return SDOperand(N, 0);
824}
825
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000826SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
827 if ((unsigned)Cond >= CondCodeNodes.size())
828 CondCodeNodes.resize(Cond+1);
829
Chris Lattner079a27a2005-08-09 20:40:02 +0000830 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000831 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000832 AllNodes.push_back(CondCodeNodes[Cond]);
833 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000834 return SDOperand(CondCodeNodes[Cond], 0);
835}
836
Chris Lattner0fdd7682005-08-30 22:38:38 +0000837SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000838 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000839 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000840 ID.AddInteger(RegNo);
841 void *IP = 0;
842 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
843 return SDOperand(E, 0);
844 SDNode *N = new RegisterSDNode(RegNo, VT);
845 CSEMap.InsertNode(N, IP);
846 AllNodes.push_back(N);
847 return SDOperand(N, 0);
848}
849
850SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
851 assert((!V || isa<PointerType>(V->getType())) &&
852 "SrcValue is not a pointer?");
853
Jim Laskey583bd472006-10-27 23:46:08 +0000854 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000855 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000856 ID.AddPointer(V);
857 ID.AddInteger(Offset);
858 void *IP = 0;
859 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
860 return SDOperand(E, 0);
861 SDNode *N = new SrcValueSDNode(V, Offset);
862 CSEMap.InsertNode(N, IP);
863 AllNodes.push_back(N);
864 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000865}
866
Chris Lattner51dabfb2006-10-14 00:41:01 +0000867SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
868 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000869 // These setcc operations always fold.
870 switch (Cond) {
871 default: break;
872 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000873 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000874 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000875 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000876
877 case ISD::SETOEQ:
878 case ISD::SETOGT:
879 case ISD::SETOGE:
880 case ISD::SETOLT:
881 case ISD::SETOLE:
882 case ISD::SETONE:
883 case ISD::SETO:
884 case ISD::SETUO:
885 case ISD::SETUEQ:
886 case ISD::SETUNE:
887 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
888 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000889 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000890
Chris Lattner67255a12005-04-07 18:14:58 +0000891 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
892 uint64_t C2 = N2C->getValue();
893 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
894 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000895
Chris Lattnerc3aae252005-01-07 07:46:32 +0000896 // Sign extend the operands if required
897 if (ISD::isSignedIntSetCC(Cond)) {
898 C1 = N1C->getSignExtended();
899 C2 = N2C->getSignExtended();
900 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000901
Chris Lattnerc3aae252005-01-07 07:46:32 +0000902 switch (Cond) {
903 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000904 case ISD::SETEQ: return getConstant(C1 == C2, VT);
905 case ISD::SETNE: return getConstant(C1 != C2, VT);
906 case ISD::SETULT: return getConstant(C1 < C2, VT);
907 case ISD::SETUGT: return getConstant(C1 > C2, VT);
908 case ISD::SETULE: return getConstant(C1 <= C2, VT);
909 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
910 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
911 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
912 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
913 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000914 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000915 }
Chris Lattner67255a12005-04-07 18:14:58 +0000916 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000917 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
918 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
919 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000920
Chris Lattnerc3aae252005-01-07 07:46:32 +0000921 switch (Cond) {
922 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000923 case ISD::SETEQ: return getConstant(C1 == C2, VT);
924 case ISD::SETNE: return getConstant(C1 != C2, VT);
925 case ISD::SETLT: return getConstant(C1 < C2, VT);
926 case ISD::SETGT: return getConstant(C1 > C2, VT);
927 case ISD::SETLE: return getConstant(C1 <= C2, VT);
928 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000929 }
930 } else {
931 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000932 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000933 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000934
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000935 // Could not fold it.
936 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000937}
938
Chris Lattner51dabfb2006-10-14 00:41:01 +0000939
Chris Lattnerc3aae252005-01-07 07:46:32 +0000940/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000941///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000942SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000943 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000944 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +0000945 void *IP = 0;
946 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
947 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +0000948 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000949 CSEMap.InsertNode(N, IP);
950
951 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000952 return SDOperand(N, 0);
953}
954
Chris Lattnerc3aae252005-01-07 07:46:32 +0000955SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
956 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000957 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000958 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000959 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
960 uint64_t Val = C->getValue();
961 switch (Opcode) {
962 default: break;
963 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +0000964 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +0000965 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
966 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +0000967 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
968 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000969 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000970 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +0000971 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000972 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +0000973 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000974 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000975 case ISD::BSWAP:
976 switch(VT) {
977 default: assert(0 && "Invalid bswap!"); break;
978 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
979 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
980 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
981 }
982 break;
983 case ISD::CTPOP:
984 switch(VT) {
985 default: assert(0 && "Invalid ctpop!"); break;
986 case MVT::i1: return getConstant(Val != 0, VT);
987 case MVT::i8:
988 Tmp1 = (unsigned)Val & 0xFF;
989 return getConstant(CountPopulation_32(Tmp1), VT);
990 case MVT::i16:
991 Tmp1 = (unsigned)Val & 0xFFFF;
992 return getConstant(CountPopulation_32(Tmp1), VT);
993 case MVT::i32:
994 return getConstant(CountPopulation_32((unsigned)Val), VT);
995 case MVT::i64:
996 return getConstant(CountPopulation_64(Val), VT);
997 }
998 case ISD::CTLZ:
999 switch(VT) {
1000 default: assert(0 && "Invalid ctlz!"); break;
1001 case MVT::i1: return getConstant(Val == 0, VT);
1002 case MVT::i8:
1003 Tmp1 = (unsigned)Val & 0xFF;
1004 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1005 case MVT::i16:
1006 Tmp1 = (unsigned)Val & 0xFFFF;
1007 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1008 case MVT::i32:
1009 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1010 case MVT::i64:
1011 return getConstant(CountLeadingZeros_64(Val), VT);
1012 }
1013 case ISD::CTTZ:
1014 switch(VT) {
1015 default: assert(0 && "Invalid cttz!"); break;
1016 case MVT::i1: return getConstant(Val == 0, VT);
1017 case MVT::i8:
1018 Tmp1 = (unsigned)Val | 0x100;
1019 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1020 case MVT::i16:
1021 Tmp1 = (unsigned)Val | 0x10000;
1022 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1023 case MVT::i32:
1024 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1025 case MVT::i64:
1026 return getConstant(CountTrailingZeros_64(Val), VT);
1027 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001028 }
1029 }
1030
Chris Lattner94683772005-12-23 05:30:37 +00001031 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001032 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1033 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001034 case ISD::FNEG:
1035 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001036 case ISD::FABS:
1037 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001038 case ISD::FP_ROUND:
1039 case ISD::FP_EXTEND:
1040 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001041 case ISD::FP_TO_SINT:
1042 return getConstant((int64_t)C->getValue(), VT);
1043 case ISD::FP_TO_UINT:
1044 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001045 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001046 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001047 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001048 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001049 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001050 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001051 }
1052
1053 unsigned OpOpcode = Operand.Val->getOpcode();
1054 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001055 case ISD::TokenFactor:
1056 return Operand; // Factor of one node? No factor.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001057 case ISD::FP_ROUND:
1058 case ISD::FP_EXTEND:
1059 assert(MVT::isFloatingPoint(VT) &&
1060 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1061 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001062 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001063 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1064 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001065 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001066 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001067 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1068 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1069 break;
1070 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001071 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1072 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001073 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001074 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001075 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001076 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001077 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001078 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001079 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1080 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001081 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001082 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001083 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1084 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1085 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1086 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001087 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001088 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1089 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001090 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001091 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001092 if (OpOpcode == ISD::TRUNCATE)
1093 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001094 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1095 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001096 // If the source is smaller than the dest, we still need an extend.
1097 if (Operand.Val->getOperand(0).getValueType() < VT)
1098 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1099 else if (Operand.Val->getOperand(0).getValueType() > VT)
1100 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1101 else
1102 return Operand.Val->getOperand(0);
1103 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001104 break;
Chris Lattner35481892005-12-23 00:16:34 +00001105 case ISD::BIT_CONVERT:
1106 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001107 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001108 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001109 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001110 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1111 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001112 if (OpOpcode == ISD::UNDEF)
1113 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001114 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001115 case ISD::SCALAR_TO_VECTOR:
1116 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1117 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1118 "Illegal SCALAR_TO_VECTOR node!");
1119 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001120 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001121 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1122 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001123 Operand.Val->getOperand(0));
1124 if (OpOpcode == ISD::FNEG) // --X -> X
1125 return Operand.Val->getOperand(0);
1126 break;
1127 case ISD::FABS:
1128 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1129 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1130 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001131 }
1132
Chris Lattner43247a12005-08-25 19:12:10 +00001133 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001134 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001135 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001136 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001137 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001138 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001139 void *IP = 0;
1140 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1141 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001142 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001143 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001144 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001145 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001146 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001147 AllNodes.push_back(N);
1148 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001149}
1150
Chris Lattner36019aa2005-04-18 03:48:41 +00001151
1152
Chris Lattnerc3aae252005-01-07 07:46:32 +00001153SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1154 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001155#ifndef NDEBUG
1156 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001157 case ISD::TokenFactor:
1158 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1159 N2.getValueType() == MVT::Other && "Invalid token factor!");
1160 break;
Chris Lattner76365122005-01-16 02:23:22 +00001161 case ISD::AND:
1162 case ISD::OR:
1163 case ISD::XOR:
1164 case ISD::UDIV:
1165 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001166 case ISD::MULHU:
1167 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001168 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1169 // fall through
1170 case ISD::ADD:
1171 case ISD::SUB:
1172 case ISD::MUL:
1173 case ISD::SDIV:
1174 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001175 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1176 // fall through.
1177 case ISD::FADD:
1178 case ISD::FSUB:
1179 case ISD::FMUL:
1180 case ISD::FDIV:
1181 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001182 assert(N1.getValueType() == N2.getValueType() &&
1183 N1.getValueType() == VT && "Binary operator types must match!");
1184 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001185 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1186 assert(N1.getValueType() == VT &&
1187 MVT::isFloatingPoint(N1.getValueType()) &&
1188 MVT::isFloatingPoint(N2.getValueType()) &&
1189 "Invalid FCOPYSIGN!");
1190 break;
Chris Lattner76365122005-01-16 02:23:22 +00001191 case ISD::SHL:
1192 case ISD::SRA:
1193 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001194 case ISD::ROTL:
1195 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001196 assert(VT == N1.getValueType() &&
1197 "Shift operators return type must be the same as their first arg");
1198 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001199 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001200 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001201 case ISD::FP_ROUND_INREG: {
1202 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1203 assert(VT == N1.getValueType() && "Not an inreg round!");
1204 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1205 "Cannot FP_ROUND_INREG integer types");
1206 assert(EVT <= VT && "Not rounding down!");
1207 break;
1208 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001209 case ISD::AssertSext:
1210 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001211 case ISD::SIGN_EXTEND_INREG: {
1212 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1213 assert(VT == N1.getValueType() && "Not an inreg extend!");
1214 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1215 "Cannot *_EXTEND_INREG FP types");
1216 assert(EVT <= VT && "Not extending!");
1217 }
1218
Chris Lattner76365122005-01-16 02:23:22 +00001219 default: break;
1220 }
1221#endif
1222
Chris Lattnerc3aae252005-01-07 07:46:32 +00001223 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1224 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1225 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001226 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1227 int64_t Val = N1C->getValue();
1228 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1229 Val <<= 64-FromBits;
1230 Val >>= 64-FromBits;
1231 return getConstant(Val, VT);
1232 }
1233
Chris Lattnerc3aae252005-01-07 07:46:32 +00001234 if (N2C) {
1235 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1236 switch (Opcode) {
1237 case ISD::ADD: return getConstant(C1 + C2, VT);
1238 case ISD::SUB: return getConstant(C1 - C2, VT);
1239 case ISD::MUL: return getConstant(C1 * C2, VT);
1240 case ISD::UDIV:
1241 if (C2) return getConstant(C1 / C2, VT);
1242 break;
1243 case ISD::UREM :
1244 if (C2) return getConstant(C1 % C2, VT);
1245 break;
1246 case ISD::SDIV :
1247 if (C2) return getConstant(N1C->getSignExtended() /
1248 N2C->getSignExtended(), VT);
1249 break;
1250 case ISD::SREM :
1251 if (C2) return getConstant(N1C->getSignExtended() %
1252 N2C->getSignExtended(), VT);
1253 break;
1254 case ISD::AND : return getConstant(C1 & C2, VT);
1255 case ISD::OR : return getConstant(C1 | C2, VT);
1256 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001257 case ISD::SHL : return getConstant(C1 << C2, VT);
1258 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001259 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001260 case ISD::ROTL :
1261 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1262 VT);
1263 case ISD::ROTR :
1264 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1265 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001266 default: break;
1267 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001268 } else { // Cannonicalize constant to RHS if commutative
1269 if (isCommutativeBinOp(Opcode)) {
1270 std::swap(N1C, N2C);
1271 std::swap(N1, N2);
1272 }
1273 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001274 }
1275
1276 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1277 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001278 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001279 if (N2CFP) {
1280 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1281 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001282 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1283 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1284 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1285 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001286 if (C2) return getConstantFP(C1 / C2, VT);
1287 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001288 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001289 if (C2) return getConstantFP(fmod(C1, C2), VT);
1290 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001291 case ISD::FCOPYSIGN: {
1292 union {
1293 double F;
1294 uint64_t I;
1295 } u1;
1296 union {
1297 double F;
1298 int64_t I;
1299 } u2;
1300 u1.F = C1;
1301 u2.F = C2;
1302 if (u2.I < 0) // Sign bit of RHS set?
1303 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1304 else
1305 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1306 return getConstantFP(u1.F, VT);
1307 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001308 default: break;
1309 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001310 } else { // Cannonicalize constant to RHS if commutative
1311 if (isCommutativeBinOp(Opcode)) {
1312 std::swap(N1CFP, N2CFP);
1313 std::swap(N1, N2);
1314 }
1315 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001316 }
Chris Lattner62b57722006-04-20 05:39:12 +00001317
1318 // Canonicalize an UNDEF to the RHS, even over a constant.
1319 if (N1.getOpcode() == ISD::UNDEF) {
1320 if (isCommutativeBinOp(Opcode)) {
1321 std::swap(N1, N2);
1322 } else {
1323 switch (Opcode) {
1324 case ISD::FP_ROUND_INREG:
1325 case ISD::SIGN_EXTEND_INREG:
1326 case ISD::SUB:
1327 case ISD::FSUB:
1328 case ISD::FDIV:
1329 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001330 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001331 return N1; // fold op(undef, arg2) -> undef
1332 case ISD::UDIV:
1333 case ISD::SDIV:
1334 case ISD::UREM:
1335 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001336 case ISD::SRL:
1337 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001338 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1339 }
1340 }
1341 }
1342
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001343 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001344 if (N2.getOpcode() == ISD::UNDEF) {
1345 switch (Opcode) {
1346 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001347 case ISD::ADDC:
1348 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001349 case ISD::SUB:
1350 case ISD::FADD:
1351 case ISD::FSUB:
1352 case ISD::FMUL:
1353 case ISD::FDIV:
1354 case ISD::FREM:
1355 case ISD::UDIV:
1356 case ISD::SDIV:
1357 case ISD::UREM:
1358 case ISD::SREM:
1359 case ISD::XOR:
1360 return N2; // fold op(arg1, undef) -> undef
1361 case ISD::MUL:
1362 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001363 case ISD::SRL:
1364 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001365 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1366 case ISD::OR:
1367 return getConstant(MVT::getIntVTBitMask(VT), VT);
Chris Lattner2cfd6742006-05-08 17:29:49 +00001368 case ISD::SRA:
1369 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001370 }
1371 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001372
Chris Lattner51dabfb2006-10-14 00:41:01 +00001373 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001374 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001375 case ISD::TokenFactor:
1376 // Fold trivial token factors.
1377 if (N1.getOpcode() == ISD::EntryToken) return N2;
1378 if (N2.getOpcode() == ISD::EntryToken) return N1;
1379 break;
1380
Chris Lattner51dabfb2006-10-14 00:41:01 +00001381 case ISD::AND:
1382 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1383 // worth handling here.
1384 if (N2C && N2C->getValue() == 0)
1385 return N2;
1386 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001387 case ISD::OR:
1388 case ISD::XOR:
1389 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1390 // worth handling here.
1391 if (N2C && N2C->getValue() == 0)
1392 return N1;
1393 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001394 case ISD::FP_ROUND_INREG:
1395 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1396 break;
1397 case ISD::SIGN_EXTEND_INREG: {
1398 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1399 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001400 break;
1401 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001402 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001403 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1404
Chris Lattner5c6621c2006-09-19 04:51:23 +00001405 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1406 // 64-bit integers into 32-bit parts. Instead of building the extract of
1407 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001408 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001409 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001410
1411 // EXTRACT_ELEMENT of a constant int is also very common.
1412 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1413 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1414 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001415 }
1416 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001417
Nate Begemaneea805e2005-04-13 21:23:31 +00001418 // FIXME: figure out how to safely handle things like
1419 // int foo(int x) { return 1 << (x & 255); }
1420 // int bar() { return foo(256); }
1421#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001422 case ISD::SHL:
1423 case ISD::SRL:
1424 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001425 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001426 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001427 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001428 else if (N2.getOpcode() == ISD::AND)
1429 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1430 // If the and is only masking out bits that cannot effect the shift,
1431 // eliminate the and.
1432 unsigned NumBits = MVT::getSizeInBits(VT);
1433 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1434 return getNode(Opcode, VT, N1, N2.getOperand(0));
1435 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001436 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001437#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001438 }
1439
Chris Lattner27e9b412005-05-11 18:57:39 +00001440 // Memoize this node if possible.
1441 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001442 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001443 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001444 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00001445 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001446 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00001447 void *IP = 0;
1448 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1449 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001450 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00001451 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001452 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001453 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00001454 }
1455
Chris Lattnerc3aae252005-01-07 07:46:32 +00001456 AllNodes.push_back(N);
1457 return SDOperand(N, 0);
1458}
1459
Chris Lattnerc3aae252005-01-07 07:46:32 +00001460SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1461 SDOperand N1, SDOperand N2, SDOperand N3) {
1462 // Perform various simplifications.
1463 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1464 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001465 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001466 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001467 // Use FoldSetCC to simplify SETCC's.
1468 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001469 if (Simp.Val) return Simp;
1470 break;
1471 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001472 case ISD::SELECT:
1473 if (N1C)
1474 if (N1C->getValue())
1475 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001476 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001477 return N3; // select false, X, Y -> Y
1478
1479 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001480 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001481 case ISD::BRCOND:
1482 if (N2C)
1483 if (N2C->getValue()) // Unconditional branch
1484 return getNode(ISD::BR, MVT::Other, N1, N3);
1485 else
1486 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001487 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001488 case ISD::VECTOR_SHUFFLE:
1489 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1490 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1491 N3.getOpcode() == ISD::BUILD_VECTOR &&
1492 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1493 "Illegal VECTOR_SHUFFLE node!");
1494 break;
Chris Lattner4829b1c2007-04-12 05:58:43 +00001495 case ISD::VBIT_CONVERT:
1496 // Fold vbit_convert nodes from a type to themselves.
1497 if (N1.getValueType() == MVT::Vector) {
1498 assert(isa<ConstantSDNode>(*(N1.Val->op_end()-2)) &&
1499 isa<VTSDNode>(*(N1.Val->op_end()-1)) && "Malformed vector input!");
1500 if (*(N1.Val->op_end()-2) == N2 && *(N1.Val->op_end()-1) == N3)
1501 return N1;
1502 }
1503 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001504 }
1505
Chris Lattner43247a12005-08-25 19:12:10 +00001506 // Memoize node if it doesn't produce a flag.
1507 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001508 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001509 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001510 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00001511 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001512 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00001513 void *IP = 0;
1514 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1515 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001516 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00001517 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001518 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001519 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00001520 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001521 AllNodes.push_back(N);
1522 return SDOperand(N, 0);
1523}
1524
1525SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001526 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001527 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001528 SDOperand Ops[] = { N1, N2, N3, N4 };
1529 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001530}
1531
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001532SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1533 SDOperand N1, SDOperand N2, SDOperand N3,
1534 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001535 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1536 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001537}
1538
Evan Cheng7038daf2005-12-10 00:37:58 +00001539SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1540 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001541 const Value *SV, int SVOffset,
Reid Spencerc67bdc22007-04-21 18:36:27 +00001542 bool isVolatile) {
1543 // FIXME: Alignment == 1 for now.
1544 unsigned Alignment = 1;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001545 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001546 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001547 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001548 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001549 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001550 ID.AddInteger(ISD::UNINDEXED);
1551 ID.AddInteger(ISD::NON_EXTLOAD);
1552 ID.AddInteger(VT);
1553 ID.AddPointer(SV);
1554 ID.AddInteger(SVOffset);
1555 ID.AddInteger(Alignment);
1556 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001557 void *IP = 0;
1558 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1559 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001560 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001561 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1562 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001563 CSEMap.InsertNode(N, IP);
1564 AllNodes.push_back(N);
1565 return SDOperand(N, 0);
1566}
1567
1568SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00001569 SDOperand Chain, SDOperand Ptr,
1570 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00001571 int SVOffset, MVT::ValueType EVT,
Reid Spencerc67bdc22007-04-21 18:36:27 +00001572 bool isVolatile) {
Evan Cheng466685d2006-10-09 20:57:25 +00001573 // If they are asking for an extending load from/to the same thing, return a
1574 // normal load.
1575 if (VT == EVT)
1576 ExtType = ISD::NON_EXTLOAD;
1577
1578 if (MVT::isVector(VT))
1579 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1580 else
1581 assert(EVT < VT && "Should only be an extending load, not truncating!");
1582 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1583 "Cannot sign/zero extend a FP/Vector load!");
1584 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1585 "Cannot convert from FP to Int or Int -> FP!");
1586
Reid Spencerc67bdc22007-04-21 18:36:27 +00001587 // FIXME: Alignment == 1 for now.
1588 unsigned Alignment = 1;
Evan Cheng466685d2006-10-09 20:57:25 +00001589 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001590 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001591 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001592 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001593 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001594 ID.AddInteger(ISD::UNINDEXED);
1595 ID.AddInteger(ExtType);
1596 ID.AddInteger(EVT);
1597 ID.AddPointer(SV);
1598 ID.AddInteger(SVOffset);
1599 ID.AddInteger(Alignment);
1600 ID.AddInteger(isVolatile);
1601 void *IP = 0;
1602 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1603 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001604 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001605 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001606 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001607 AllNodes.push_back(N);
1608 return SDOperand(N, 0);
1609}
1610
Evan Cheng144d8f02006-11-09 17:55:04 +00001611SDOperand
1612SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1613 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00001614 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001615 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1616 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001617 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001618 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00001619 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00001620 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001621 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00001622 ID.AddInteger(AM);
1623 ID.AddInteger(LD->getExtensionType());
1624 ID.AddInteger(LD->getLoadedVT());
1625 ID.AddPointer(LD->getSrcValue());
1626 ID.AddInteger(LD->getSrcValueOffset());
1627 ID.AddInteger(LD->getAlignment());
1628 ID.AddInteger(LD->isVolatile());
1629 void *IP = 0;
1630 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1631 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001632 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001633 LD->getExtensionType(), LD->getLoadedVT(),
1634 LD->getSrcValue(), LD->getSrcValueOffset(),
1635 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00001636 CSEMap.InsertNode(N, IP);
1637 AllNodes.push_back(N);
1638 return SDOperand(N, 0);
1639}
1640
Evan Cheng7038daf2005-12-10 00:37:58 +00001641SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1642 SDOperand Chain, SDOperand Ptr,
1643 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001644 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1645 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001646 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001647}
1648
Jeff Cohend41b30d2006-11-05 19:31:28 +00001649SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001650 SDOperand Ptr, const Value *SV, int SVOffset,
Reid Spencerc67bdc22007-04-21 18:36:27 +00001651 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001652 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001653
Reid Spencerc67bdc22007-04-21 18:36:27 +00001654 // FIXME: Alignment == 1 for now.
1655 unsigned Alignment = 1;
Evan Chengad071e12006-10-05 22:57:11 +00001656 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001657 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001658 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001659 FoldingSetNodeID ID;
1660 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001661 ID.AddInteger(ISD::UNINDEXED);
1662 ID.AddInteger(false);
1663 ID.AddInteger(VT);
1664 ID.AddPointer(SV);
1665 ID.AddInteger(SVOffset);
1666 ID.AddInteger(Alignment);
1667 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001668 void *IP = 0;
1669 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1670 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001671 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001672 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001673 CSEMap.InsertNode(N, IP);
1674 AllNodes.push_back(N);
1675 return SDOperand(N, 0);
1676}
1677
Jeff Cohend41b30d2006-11-05 19:31:28 +00001678SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001679 SDOperand Ptr, const Value *SV,
1680 int SVOffset, MVT::ValueType SVT,
Reid Spencerc67bdc22007-04-21 18:36:27 +00001681 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001682 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001683 bool isTrunc = VT != SVT;
1684
1685 assert(VT > SVT && "Not a truncation?");
1686 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1687 "Can't do FP-INT conversion!");
1688
Reid Spencerc67bdc22007-04-21 18:36:27 +00001689 // FIXME: Alignment == 1 for now.
1690 unsigned Alignment = 1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001691 SDVTList VTs = getVTList(MVT::Other);
1692 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001693 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001694 FoldingSetNodeID ID;
1695 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001696 ID.AddInteger(ISD::UNINDEXED);
1697 ID.AddInteger(isTrunc);
1698 ID.AddInteger(SVT);
1699 ID.AddPointer(SV);
1700 ID.AddInteger(SVOffset);
1701 ID.AddInteger(Alignment);
1702 ID.AddInteger(isVolatile);
1703 void *IP = 0;
1704 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1705 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001706 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001707 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001708 CSEMap.InsertNode(N, IP);
1709 AllNodes.push_back(N);
1710 return SDOperand(N, 0);
1711}
1712
Evan Cheng144d8f02006-11-09 17:55:04 +00001713SDOperand
1714SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1715 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00001716 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1717 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1718 "Store is already a indexed store!");
1719 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1720 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1721 FoldingSetNodeID ID;
1722 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1723 ID.AddInteger(AM);
1724 ID.AddInteger(ST->isTruncatingStore());
1725 ID.AddInteger(ST->getStoredVT());
1726 ID.AddPointer(ST->getSrcValue());
1727 ID.AddInteger(ST->getSrcValueOffset());
1728 ID.AddInteger(ST->getAlignment());
1729 ID.AddInteger(ST->isVolatile());
1730 void *IP = 0;
1731 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1732 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001733 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00001734 ST->isTruncatingStore(), ST->getStoredVT(),
1735 ST->getSrcValue(), ST->getSrcValueOffset(),
1736 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00001737 CSEMap.InsertNode(N, IP);
1738 AllNodes.push_back(N);
1739 return SDOperand(N, 0);
1740}
1741
Nate Begemanacc398c2006-01-25 18:21:52 +00001742SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1743 SDOperand Chain, SDOperand Ptr,
1744 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001745 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001746 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001747}
1748
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001749SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001750 const SDOperand *Ops, unsigned NumOps) {
1751 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001752 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001753 case 1: return getNode(Opcode, VT, Ops[0]);
1754 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1755 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001756 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001757 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001758
Chris Lattneref847df2005-04-09 03:27:28 +00001759 switch (Opcode) {
1760 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001761 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001762 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001763 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1764 "LHS and RHS of condition must have same type!");
1765 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1766 "True and False arms of SelectCC must have same type!");
1767 assert(Ops[2].getValueType() == VT &&
1768 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001769 break;
1770 }
1771 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001772 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001773 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1774 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001775 break;
1776 }
Chris Lattneref847df2005-04-09 03:27:28 +00001777 }
1778
Chris Lattner385328c2005-05-14 07:42:29 +00001779 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001780 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001781 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001782 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001783 FoldingSetNodeID ID;
1784 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001785 void *IP = 0;
1786 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1787 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001788 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001789 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001790 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00001791 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001792 }
Chris Lattneref847df2005-04-09 03:27:28 +00001793 AllNodes.push_back(N);
1794 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001795}
1796
Chris Lattner89c34632005-05-14 06:20:26 +00001797SDOperand SelectionDAG::getNode(unsigned Opcode,
1798 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001799 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001800 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1801 Ops, NumOps);
1802}
1803
1804SDOperand SelectionDAG::getNode(unsigned Opcode,
1805 const MVT::ValueType *VTs, unsigned NumVTs,
1806 const SDOperand *Ops, unsigned NumOps) {
1807 if (NumVTs == 1)
1808 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001809 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1810}
1811
1812SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1813 const SDOperand *Ops, unsigned NumOps) {
1814 if (VTList.NumVTs == 1)
1815 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001816
Chris Lattner5f056bf2005-07-10 01:55:33 +00001817 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001818 // FIXME: figure out how to safely handle things like
1819 // int foo(int x) { return 1 << (x & 255); }
1820 // int bar() { return foo(256); }
1821#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001822 case ISD::SRA_PARTS:
1823 case ISD::SRL_PARTS:
1824 case ISD::SHL_PARTS:
1825 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001826 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001827 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1828 else if (N3.getOpcode() == ISD::AND)
1829 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1830 // If the and is only masking out bits that cannot effect the shift,
1831 // eliminate the and.
1832 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1833 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1834 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1835 }
1836 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001837#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001838 }
Chris Lattner89c34632005-05-14 06:20:26 +00001839
Chris Lattner43247a12005-08-25 19:12:10 +00001840 // Memoize the node unless it returns a flag.
1841 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001842 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001843 FoldingSetNodeID ID;
1844 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001845 void *IP = 0;
1846 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1847 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001848 if (NumOps == 1)
1849 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1850 else if (NumOps == 2)
1851 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1852 else if (NumOps == 3)
1853 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1854 else
1855 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001856 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001857 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001858 if (NumOps == 1)
1859 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1860 else if (NumOps == 2)
1861 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1862 else if (NumOps == 3)
1863 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1864 else
1865 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001866 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001867 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001868 return SDOperand(N, 0);
1869}
1870
Chris Lattner70046e92006-08-15 17:46:01 +00001871SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1872 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001873}
1874
Chris Lattner70046e92006-08-15 17:46:01 +00001875SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001876 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1877 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001878 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001879 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001880 }
1881 std::vector<MVT::ValueType> V;
1882 V.push_back(VT1);
1883 V.push_back(VT2);
1884 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001885 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001886}
Chris Lattner70046e92006-08-15 17:46:01 +00001887SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1888 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001889 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001890 E = VTList.end(); I != E; ++I) {
1891 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1892 (*I)[2] == VT3)
1893 return makeVTList(&(*I)[0], 3);
1894 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001895 std::vector<MVT::ValueType> V;
1896 V.push_back(VT1);
1897 V.push_back(VT2);
1898 V.push_back(VT3);
1899 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001900 return makeVTList(&(*VTList.begin())[0], 3);
1901}
1902
1903SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1904 switch (NumVTs) {
1905 case 0: assert(0 && "Cannot have nodes without results!");
1906 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1907 case 2: return getVTList(VTs[0], VTs[1]);
1908 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1909 default: break;
1910 }
1911
1912 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1913 E = VTList.end(); I != E; ++I) {
1914 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1915
1916 bool NoMatch = false;
1917 for (unsigned i = 2; i != NumVTs; ++i)
1918 if (VTs[i] != (*I)[i]) {
1919 NoMatch = true;
1920 break;
1921 }
1922 if (!NoMatch)
1923 return makeVTList(&*I->begin(), NumVTs);
1924 }
1925
1926 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1927 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001928}
1929
1930
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001931/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1932/// specified operands. If the resultant node already exists in the DAG,
1933/// this does not modify the specified node, instead it returns the node that
1934/// already exists. If the resultant node does not exist in the DAG, the
1935/// input node is returned. As a degenerate case, if you specify the same
1936/// input operands as the node already has, the input node is returned.
1937SDOperand SelectionDAG::
1938UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1939 SDNode *N = InN.Val;
1940 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1941
1942 // Check to see if there is no change.
1943 if (Op == N->getOperand(0)) return InN;
1944
1945 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001946 void *InsertPos = 0;
1947 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1948 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001949
1950 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001951 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001952 RemoveNodeFromCSEMaps(N);
1953
1954 // Now we update the operands.
1955 N->OperandList[0].Val->removeUser(N);
1956 Op.Val->addUser(N);
1957 N->OperandList[0] = Op;
1958
1959 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001960 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001961 return InN;
1962}
1963
1964SDOperand SelectionDAG::
1965UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1966 SDNode *N = InN.Val;
1967 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1968
1969 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001970 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1971 return InN; // No operands changed, just return the input node.
1972
1973 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001974 void *InsertPos = 0;
1975 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1976 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001977
1978 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001979 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001980 RemoveNodeFromCSEMaps(N);
1981
1982 // Now we update the operands.
1983 if (N->OperandList[0] != Op1) {
1984 N->OperandList[0].Val->removeUser(N);
1985 Op1.Val->addUser(N);
1986 N->OperandList[0] = Op1;
1987 }
1988 if (N->OperandList[1] != Op2) {
1989 N->OperandList[1].Val->removeUser(N);
1990 Op2.Val->addUser(N);
1991 N->OperandList[1] = Op2;
1992 }
1993
1994 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001995 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001996 return InN;
1997}
1998
1999SDOperand SelectionDAG::
2000UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002001 SDOperand Ops[] = { Op1, Op2, Op3 };
2002 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002003}
2004
2005SDOperand SelectionDAG::
2006UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2007 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002008 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2009 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002010}
2011
2012SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002013UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2014 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002015 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2016 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002017}
2018
2019
2020SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002021UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002022 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002023 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002024 "Update with wrong number of operands");
2025
2026 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002027 bool AnyChange = false;
2028 for (unsigned i = 0; i != NumOps; ++i) {
2029 if (Ops[i] != N->getOperand(i)) {
2030 AnyChange = true;
2031 break;
2032 }
2033 }
2034
2035 // No operands changed, just return the input node.
2036 if (!AnyChange) return InN;
2037
2038 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002039 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002040 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002041 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002042
2043 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002044 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002045 RemoveNodeFromCSEMaps(N);
2046
2047 // Now we update the operands.
2048 for (unsigned i = 0; i != NumOps; ++i) {
2049 if (N->OperandList[i] != Ops[i]) {
2050 N->OperandList[i].Val->removeUser(N);
2051 Ops[i].Val->addUser(N);
2052 N->OperandList[i] = Ops[i];
2053 }
2054 }
2055
2056 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002057 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002058 return InN;
2059}
2060
2061
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002062/// MorphNodeTo - This frees the operands of the current node, resets the
2063/// opcode, types, and operands to the specified value. This should only be
2064/// used by the SelectionDAG class.
2065void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2066 const SDOperand *Ops, unsigned NumOps) {
2067 NodeType = Opc;
2068 ValueList = L.VTs;
2069 NumValues = L.NumVTs;
2070
2071 // Clear the operands list, updating used nodes to remove this from their
2072 // use list.
2073 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2074 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002075
2076 // If NumOps is larger than the # of operands we currently have, reallocate
2077 // the operand list.
2078 if (NumOps > NumOperands) {
2079 if (OperandsNeedDelete)
2080 delete [] OperandList;
2081 OperandList = new SDOperand[NumOps];
2082 OperandsNeedDelete = true;
2083 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002084
2085 // Assign the new operands.
2086 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002087
2088 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2089 OperandList[i] = Ops[i];
2090 SDNode *N = OperandList[i].Val;
2091 N->Uses.push_back(this);
2092 }
2093}
Chris Lattner149c58c2005-08-16 18:17:10 +00002094
2095/// SelectNodeTo - These are used for target selectors to *mutate* the
2096/// specified node to have the specified return type, Target opcode, and
2097/// operands. Note that target opcodes are stored as
2098/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002099///
2100/// Note that SelectNodeTo returns the resultant node. If there is already a
2101/// node of the specified opcode and operands, it returns that node instead of
2102/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002103SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2104 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002105 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002106 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002107 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002108 void *IP = 0;
2109 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002110 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002111
Chris Lattner7651fa42005-08-24 23:00:29 +00002112 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002113
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002114 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002115
Chris Lattner4a283e92006-08-11 18:38:11 +00002116 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002117 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002118}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002119
Evan Cheng95514ba2006-08-26 08:00:10 +00002120SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2121 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002122 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002123 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002124 SDOperand Ops[] = { Op1 };
2125
Jim Laskey583bd472006-10-27 23:46:08 +00002126 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002127 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002128 void *IP = 0;
2129 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002130 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002131
Chris Lattner149c58c2005-08-16 18:17:10 +00002132 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002133 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002134 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002135 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002136}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002137
Evan Cheng95514ba2006-08-26 08:00:10 +00002138SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2139 MVT::ValueType VT, SDOperand Op1,
2140 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002141 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002142 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002143 SDOperand Ops[] = { Op1, Op2 };
2144
Jim Laskey583bd472006-10-27 23:46:08 +00002145 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002146 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002147 void *IP = 0;
2148 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002149 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002150
Chris Lattner149c58c2005-08-16 18:17:10 +00002151 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002152
Chris Lattner63e3f142007-02-04 07:28:00 +00002153 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002154
Chris Lattnera5682852006-08-07 23:03:03 +00002155 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002156 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002157}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002158
Evan Cheng95514ba2006-08-26 08:00:10 +00002159SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2160 MVT::ValueType VT, SDOperand Op1,
2161 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002162 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002163 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002164 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002165 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002166 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002167 void *IP = 0;
2168 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002169 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002170
Chris Lattner149c58c2005-08-16 18:17:10 +00002171 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002172
Chris Lattner63e3f142007-02-04 07:28:00 +00002173 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002174
Chris Lattnera5682852006-08-07 23:03:03 +00002175 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002176 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002177}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002178
Evan Cheng95514ba2006-08-26 08:00:10 +00002179SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002180 MVT::ValueType VT, const SDOperand *Ops,
2181 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002182 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002183 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002184 FoldingSetNodeID ID;
2185 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002186 void *IP = 0;
2187 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002188 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002189
Chris Lattner6b09a292005-08-21 18:49:33 +00002190 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002191 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002192
Chris Lattnera5682852006-08-07 23:03:03 +00002193 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002194 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002195}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002196
Evan Cheng95514ba2006-08-26 08:00:10 +00002197SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2198 MVT::ValueType VT1, MVT::ValueType VT2,
2199 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002200 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002201 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002202 SDOperand Ops[] = { Op1, Op2 };
2203 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002204 void *IP = 0;
2205 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002206 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002207
Chris Lattner0fb094f2005-11-19 01:44:53 +00002208 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002209 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002210 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002211 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002212}
2213
Evan Cheng95514ba2006-08-26 08:00:10 +00002214SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2215 MVT::ValueType VT1, MVT::ValueType VT2,
2216 SDOperand Op1, SDOperand Op2,
2217 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002218 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002219 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002220 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002221 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002222 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002223 void *IP = 0;
2224 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002225 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002226
Chris Lattner0fb094f2005-11-19 01:44:53 +00002227 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002228
Chris Lattner63e3f142007-02-04 07:28:00 +00002229 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002230 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002231 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002232}
2233
Chris Lattner0fb094f2005-11-19 01:44:53 +00002234
Evan Cheng6ae46c42006-02-09 07:15:23 +00002235/// getTargetNode - These are used for target selectors to create a new node
2236/// with specified return type(s), target opcode, and operands.
2237///
2238/// Note that getTargetNode returns the resultant node. If there is already a
2239/// node of the specified opcode and operands, it returns that node instead of
2240/// the current one.
2241SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2242 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2243}
2244SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2245 SDOperand Op1) {
2246 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2247}
2248SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2249 SDOperand Op1, SDOperand Op2) {
2250 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2251}
2252SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002253 SDOperand Op1, SDOperand Op2,
2254 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002255 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2256}
2257SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002258 const SDOperand *Ops, unsigned NumOps) {
2259 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002260}
2261SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2262 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002263 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002264 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002265}
2266SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002267 MVT::ValueType VT2, SDOperand Op1,
2268 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002269 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002270 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002271 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002272}
2273SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002274 MVT::ValueType VT2, SDOperand Op1,
2275 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002276 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002277 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002278 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002279}
Evan Cheng694481e2006-08-27 08:08:54 +00002280SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2281 MVT::ValueType VT2,
2282 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002283 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002284 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002285}
2286SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2287 MVT::ValueType VT2, MVT::ValueType VT3,
2288 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002289 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002290 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002291 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002292}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002293SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2294 MVT::ValueType VT2, MVT::ValueType VT3,
2295 SDOperand Op1, SDOperand Op2,
2296 SDOperand Op3) {
2297 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2298 SDOperand Ops[] = { Op1, Op2, Op3 };
2299 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2300}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002301SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002302 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002303 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002304 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2305 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002306}
2307
Evan Cheng99157a02006-08-07 22:13:29 +00002308/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002309/// This can cause recursive merging of nodes in the DAG.
2310///
Chris Lattner8b52f212005-08-26 18:36:28 +00002311/// This version assumes From/To have a single result value.
2312///
Chris Lattner1e111c72005-09-07 05:37:01 +00002313void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2314 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002315 SDNode *From = FromN.Val, *To = ToN.Val;
2316 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2317 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002318 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002319
Chris Lattner8b8749f2005-08-17 19:00:20 +00002320 while (!From->use_empty()) {
2321 // Process users until they are all gone.
2322 SDNode *U = *From->use_begin();
2323
2324 // This node is about to morph, remove its old self from the CSE maps.
2325 RemoveNodeFromCSEMaps(U);
2326
Chris Lattner65113b22005-11-08 22:07:03 +00002327 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2328 I != E; ++I)
2329 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002330 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002331 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002332 To->addUser(U);
2333 }
2334
2335 // Now that we have modified U, add it back to the CSE maps. If it already
2336 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002337 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2338 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002339 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002340 if (Deleted) Deleted->push_back(U);
2341 DeleteNodeNotInCSEMaps(U);
2342 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002343 }
2344}
2345
2346/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2347/// This can cause recursive merging of nodes in the DAG.
2348///
2349/// This version assumes From/To have matching types and numbers of result
2350/// values.
2351///
Chris Lattner1e111c72005-09-07 05:37:01 +00002352void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2353 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002354 assert(From != To && "Cannot replace uses of with self");
2355 assert(From->getNumValues() == To->getNumValues() &&
2356 "Cannot use this version of ReplaceAllUsesWith!");
2357 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002358 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002359 return;
2360 }
2361
2362 while (!From->use_empty()) {
2363 // Process users until they are all gone.
2364 SDNode *U = *From->use_begin();
2365
2366 // This node is about to morph, remove its old self from the CSE maps.
2367 RemoveNodeFromCSEMaps(U);
2368
Chris Lattner65113b22005-11-08 22:07:03 +00002369 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2370 I != E; ++I)
2371 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002372 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002373 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002374 To->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 Lattner8b8749f2005-08-17 19:00:20 +00002385 }
2386}
2387
Chris Lattner8b52f212005-08-26 18:36:28 +00002388/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2389/// This can cause recursive merging of nodes in the DAG.
2390///
2391/// This version can replace From with any result values. To must match the
2392/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002393void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002394 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002395 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002396 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002397 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002398 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002399 return;
2400 }
2401
2402 while (!From->use_empty()) {
2403 // Process users until they are all gone.
2404 SDNode *U = *From->use_begin();
2405
2406 // This node is about to morph, remove its old self from the CSE maps.
2407 RemoveNodeFromCSEMaps(U);
2408
Chris Lattner65113b22005-11-08 22:07:03 +00002409 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2410 I != E; ++I)
2411 if (I->Val == From) {
2412 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002413 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002414 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002415 ToOp.Val->addUser(U);
2416 }
2417
2418 // Now that we have modified U, add it back to the CSE maps. If it already
2419 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002420 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2421 ReplaceAllUsesWith(U, Existing, Deleted);
2422 // U is now dead.
2423 if (Deleted) Deleted->push_back(U);
2424 DeleteNodeNotInCSEMaps(U);
2425 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002426 }
2427}
2428
Chris Lattner012f2412006-02-17 21:58:01 +00002429/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2430/// uses of other values produced by From.Val alone. The Deleted vector is
2431/// handled the same was as for ReplaceAllUsesWith.
2432void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2433 std::vector<SDNode*> &Deleted) {
2434 assert(From != To && "Cannot replace a value with itself");
2435 // Handle the simple, trivial, case efficiently.
2436 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2437 ReplaceAllUsesWith(From, To, &Deleted);
2438 return;
2439 }
2440
Chris Lattnercf5640b2007-02-04 00:14:31 +00002441 // Get all of the users of From.Val. We want these in a nice,
2442 // deterministically ordered and uniqued set, so we use a SmallSetVector.
2443 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00002444
2445 while (!Users.empty()) {
2446 // We know that this user uses some value of From. If it is the right
2447 // value, update it.
2448 SDNode *User = Users.back();
2449 Users.pop_back();
2450
2451 for (SDOperand *Op = User->OperandList,
2452 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2453 if (*Op == From) {
2454 // Okay, we know this user needs to be updated. Remove its old self
2455 // from the CSE maps.
2456 RemoveNodeFromCSEMaps(User);
2457
2458 // Update all operands that match "From".
2459 for (; Op != E; ++Op) {
2460 if (*Op == From) {
2461 From.Val->removeUser(User);
2462 *Op = To;
2463 To.Val->addUser(User);
2464 }
2465 }
2466
2467 // Now that we have modified User, add it back to the CSE maps. If it
2468 // already exists there, recursively merge the results together.
2469 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2470 unsigned NumDeleted = Deleted.size();
2471 ReplaceAllUsesWith(User, Existing, &Deleted);
2472
2473 // User is now dead.
2474 Deleted.push_back(User);
2475 DeleteNodeNotInCSEMaps(User);
2476
2477 // We have to be careful here, because ReplaceAllUsesWith could have
2478 // deleted a user of From, which means there may be dangling pointers
2479 // in the "Users" setvector. Scan over the deleted node pointers and
2480 // remove them from the setvector.
2481 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2482 Users.remove(Deleted[i]);
2483 }
2484 break; // Exit the operand scanning loop.
2485 }
2486 }
2487 }
2488}
2489
Chris Lattner7b2880c2005-08-24 22:44:39 +00002490
Evan Chenge6f35d82006-08-01 08:20:41 +00002491/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2492/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002493unsigned SelectionDAG::AssignNodeIds() {
2494 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002495 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2496 SDNode *N = I;
2497 N->setNodeId(Id++);
2498 }
2499 return Id;
2500}
2501
Evan Chenge6f35d82006-08-01 08:20:41 +00002502/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002503/// based on their topological order. It returns the maximum id and a vector
2504/// of the SDNodes* in assigned order by reference.
2505unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002506 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002507 std::vector<unsigned> InDegree(DAGSize);
2508 std::vector<SDNode*> Sources;
2509
2510 // Use a two pass approach to avoid using a std::map which is slow.
2511 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002512 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2513 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002514 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002515 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002516 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002517 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002518 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002519 }
2520
Evan Cheng99157a02006-08-07 22:13:29 +00002521 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002522 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002523 SDNode *N = Sources.back();
2524 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002525 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002526 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2527 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002528 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002529 if (Degree == 0)
2530 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002531 }
2532 }
2533
Evan Chengc384d6c2006-08-02 22:00:34 +00002534 // Second pass, assign the actual topological order as node ids.
2535 Id = 0;
2536 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2537 TI != TE; ++TI)
2538 (*TI)->setNodeId(Id++);
2539
2540 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002541}
2542
2543
Evan Cheng091cba12006-07-27 06:39:06 +00002544
Jim Laskey58b968b2005-08-17 20:08:02 +00002545//===----------------------------------------------------------------------===//
2546// SDNode Class
2547//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002548
Chris Lattner917d2c92006-07-19 00:00:37 +00002549// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002550void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00002551void UnarySDNode::ANCHOR() {}
2552void BinarySDNode::ANCHOR() {}
2553void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002554void HandleSDNode::ANCHOR() {}
2555void StringSDNode::ANCHOR() {}
2556void ConstantSDNode::ANCHOR() {}
2557void ConstantFPSDNode::ANCHOR() {}
2558void GlobalAddressSDNode::ANCHOR() {}
2559void FrameIndexSDNode::ANCHOR() {}
2560void JumpTableSDNode::ANCHOR() {}
2561void ConstantPoolSDNode::ANCHOR() {}
2562void BasicBlockSDNode::ANCHOR() {}
2563void SrcValueSDNode::ANCHOR() {}
2564void RegisterSDNode::ANCHOR() {}
2565void ExternalSymbolSDNode::ANCHOR() {}
2566void CondCodeSDNode::ANCHOR() {}
2567void VTSDNode::ANCHOR() {}
2568void LoadSDNode::ANCHOR() {}
2569void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00002570
Chris Lattner48b85922007-02-04 02:41:42 +00002571HandleSDNode::~HandleSDNode() {
2572 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002573 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00002574}
2575
2576
Jim Laskey583bd472006-10-27 23:46:08 +00002577/// Profile - Gather unique data for the node.
2578///
2579void SDNode::Profile(FoldingSetNodeID &ID) {
2580 AddNodeIDNode(ID, this);
2581}
2582
Chris Lattnera3255112005-11-08 23:30:28 +00002583/// getValueTypeList - Return a pointer to the specified value type.
2584///
2585MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2586 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2587 VTs[VT] = VT;
2588 return &VTs[VT];
2589}
Chris Lattnera5682852006-08-07 23:03:03 +00002590
Chris Lattner5c884562005-01-12 18:37:47 +00002591/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2592/// indicated value. This method ignores uses of other values defined by this
2593/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002594bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002595 assert(Value < getNumValues() && "Bad value!");
2596
2597 // If there is only one value, this is easy.
2598 if (getNumValues() == 1)
2599 return use_size() == NUses;
2600 if (Uses.size() < NUses) return false;
2601
Evan Cheng4ee62112006-02-05 06:29:23 +00002602 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002603
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002604 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00002605
Chris Lattnerf83482d2006-08-16 20:59:32 +00002606 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002607 SDNode *User = *UI;
2608 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002609 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00002610 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2611 if (User->getOperand(i) == TheValue) {
2612 if (NUses == 0)
2613 return false; // too many uses
2614 --NUses;
2615 }
2616 }
2617
2618 // Found exactly the right number of uses?
2619 return NUses == 0;
2620}
2621
2622
Evan Chenge6e97e62006-11-03 07:31:32 +00002623/// isOnlyUse - Return true if this node is the only use of N.
2624///
Evan Cheng4ee62112006-02-05 06:29:23 +00002625bool SDNode::isOnlyUse(SDNode *N) const {
2626 bool Seen = false;
2627 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2628 SDNode *User = *I;
2629 if (User == this)
2630 Seen = true;
2631 else
2632 return false;
2633 }
2634
2635 return Seen;
2636}
2637
Evan Chenge6e97e62006-11-03 07:31:32 +00002638/// isOperand - Return true if this node is an operand of N.
2639///
Evan Chengbfa284f2006-03-03 06:42:32 +00002640bool SDOperand::isOperand(SDNode *N) const {
2641 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2642 if (*this == N->getOperand(i))
2643 return true;
2644 return false;
2645}
2646
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002647bool SDNode::isOperand(SDNode *N) const {
2648 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2649 if (this == N->OperandList[i].Val)
2650 return true;
2651 return false;
2652}
Evan Cheng4ee62112006-02-05 06:29:23 +00002653
Evan Chengc5fc57d2006-11-03 03:05:24 +00002654static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002655 SmallPtrSet<SDNode *, 32> &Visited) {
2656 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00002657 return;
2658
2659 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2660 SDNode *Op = N->getOperand(i).Val;
2661 if (Op == P) {
2662 found = true;
2663 return;
2664 }
2665 findPredecessor(Op, P, found, Visited);
2666 }
2667}
2668
Evan Chenge6e97e62006-11-03 07:31:32 +00002669/// isPredecessor - Return true if this node is a predecessor of N. This node
2670/// is either an operand of N or it can be reached by recursively traversing
2671/// up the operands.
2672/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00002673bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002674 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00002675 bool found = false;
2676 findPredecessor(N, this, found, Visited);
2677 return found;
2678}
2679
Evan Chengc5484282006-10-04 00:56:09 +00002680uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2681 assert(Num < NumOperands && "Invalid child # of SDNode!");
2682 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2683}
2684
Reid Spencer577cc322007-04-01 07:32:19 +00002685std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002686 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002687 default:
2688 if (getOpcode() < ISD::BUILTIN_OP_END)
2689 return "<<Unknown DAG Node>>";
2690 else {
Evan Cheng72261582005-12-20 06:22:03 +00002691 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002692 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002693 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2694 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002695
Evan Cheng72261582005-12-20 06:22:03 +00002696 TargetLowering &TLI = G->getTargetLoweringInfo();
2697 const char *Name =
2698 TLI.getTargetNodeName(getOpcode());
2699 if (Name) return Name;
2700 }
2701
2702 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002703 }
2704
Andrew Lenharth95762122005-03-31 21:24:06 +00002705 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002706 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002707 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002708 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002709 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002710 case ISD::AssertSext: return "AssertSext";
2711 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002712
2713 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002714 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002715 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002716 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002717
2718 case ISD::Constant: return "Constant";
2719 case ISD::ConstantFP: return "ConstantFP";
2720 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002721 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002722 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002723 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002724 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00002725 case ISD::RETURNADDR: return "RETURNADDR";
2726 case ISD::FRAMEADDR: return "FRAMEADDR";
Jim Laskeyb180aa12007-02-21 22:53:45 +00002727 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
2728 case ISD::EHSELECTION: return "EHSELECTION";
Chris Lattner5839bf22005-08-26 17:15:30 +00002729 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002730 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002731 case ISD::INTRINSIC_WO_CHAIN: {
2732 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2733 return Intrinsic::getName((Intrinsic::ID)IID);
2734 }
2735 case ISD::INTRINSIC_VOID:
2736 case ISD::INTRINSIC_W_CHAIN: {
2737 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002738 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002739 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002740
Chris Lattnerb2827b02006-03-19 00:52:58 +00002741 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002742 case ISD::TargetConstant: return "TargetConstant";
2743 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002744 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002745 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002746 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002747 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002748 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002749 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002750
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002751 case ISD::CopyToReg: return "CopyToReg";
2752 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002753 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002754 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002755 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00002756 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002757 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002758 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002759 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002760
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002761 // Unary operators
2762 case ISD::FABS: return "fabs";
2763 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002764 case ISD::FSQRT: return "fsqrt";
2765 case ISD::FSIN: return "fsin";
2766 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002767 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002768
2769 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002770 case ISD::ADD: return "add";
2771 case ISD::SUB: return "sub";
2772 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002773 case ISD::MULHU: return "mulhu";
2774 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002775 case ISD::SDIV: return "sdiv";
2776 case ISD::UDIV: return "udiv";
2777 case ISD::SREM: return "srem";
2778 case ISD::UREM: return "urem";
2779 case ISD::AND: return "and";
2780 case ISD::OR: return "or";
2781 case ISD::XOR: return "xor";
2782 case ISD::SHL: return "shl";
2783 case ISD::SRA: return "sra";
2784 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002785 case ISD::ROTL: return "rotl";
2786 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002787 case ISD::FADD: return "fadd";
2788 case ISD::FSUB: return "fsub";
2789 case ISD::FMUL: return "fmul";
2790 case ISD::FDIV: return "fdiv";
2791 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002792 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002793 case ISD::VADD: return "vadd";
2794 case ISD::VSUB: return "vsub";
2795 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002796 case ISD::VSDIV: return "vsdiv";
2797 case ISD::VUDIV: return "vudiv";
2798 case ISD::VAND: return "vand";
2799 case ISD::VOR: return "vor";
2800 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002801
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002802 case ISD::SETCC: return "setcc";
2803 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002804 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002805 case ISD::VSELECT: return "vselect";
2806 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2807 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2808 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002809 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002810 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2811 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2812 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2813 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2814 case ISD::VBIT_CONVERT: return "vbit_convert";
Chris Lattnerb6541762007-03-04 20:40:38 +00002815 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002816 case ISD::ADDC: return "addc";
2817 case ISD::ADDE: return "adde";
2818 case ISD::SUBC: return "subc";
2819 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002820 case ISD::SHL_PARTS: return "shl_parts";
2821 case ISD::SRA_PARTS: return "sra_parts";
2822 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002823
Chris Lattner7f644642005-04-28 21:44:03 +00002824 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002825 case ISD::SIGN_EXTEND: return "sign_extend";
2826 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002827 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002828 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002829 case ISD::TRUNCATE: return "truncate";
2830 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002831 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002832 case ISD::FP_EXTEND: return "fp_extend";
2833
2834 case ISD::SINT_TO_FP: return "sint_to_fp";
2835 case ISD::UINT_TO_FP: return "uint_to_fp";
2836 case ISD::FP_TO_SINT: return "fp_to_sint";
2837 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002838 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002839
2840 // Control flow instructions
2841 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002842 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002843 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002844 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002845 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002846 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002847 case ISD::CALLSEQ_START: return "callseq_start";
2848 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002849
2850 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002851 case ISD::LOAD: return "load";
2852 case ISD::STORE: return "store";
2853 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002854 case ISD::VAARG: return "vaarg";
2855 case ISD::VACOPY: return "vacopy";
2856 case ISD::VAEND: return "vaend";
2857 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002858 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002859 case ISD::EXTRACT_ELEMENT: return "extract_element";
2860 case ISD::BUILD_PAIR: return "build_pair";
2861 case ISD::STACKSAVE: return "stacksave";
2862 case ISD::STACKRESTORE: return "stackrestore";
2863
2864 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002865 case ISD::MEMSET: return "memset";
2866 case ISD::MEMCPY: return "memcpy";
2867 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002868
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002869 // Bit manipulation
2870 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002871 case ISD::CTPOP: return "ctpop";
2872 case ISD::CTTZ: return "cttz";
2873 case ISD::CTLZ: return "ctlz";
2874
Chris Lattner36ce6912005-11-29 06:21:05 +00002875 // Debug info
2876 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002877 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00002878
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002879 case ISD::CONDCODE:
2880 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002881 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002882 case ISD::SETOEQ: return "setoeq";
2883 case ISD::SETOGT: return "setogt";
2884 case ISD::SETOGE: return "setoge";
2885 case ISD::SETOLT: return "setolt";
2886 case ISD::SETOLE: return "setole";
2887 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002888
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002889 case ISD::SETO: return "seto";
2890 case ISD::SETUO: return "setuo";
2891 case ISD::SETUEQ: return "setue";
2892 case ISD::SETUGT: return "setugt";
2893 case ISD::SETUGE: return "setuge";
2894 case ISD::SETULT: return "setult";
2895 case ISD::SETULE: return "setule";
2896 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002897
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002898 case ISD::SETEQ: return "seteq";
2899 case ISD::SETGT: return "setgt";
2900 case ISD::SETGE: return "setge";
2901 case ISD::SETLT: return "setlt";
2902 case ISD::SETLE: return "setle";
2903 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002904 }
2905 }
2906}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002907
Evan Cheng144d8f02006-11-09 17:55:04 +00002908const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002909 switch (AM) {
2910 default:
2911 return "";
2912 case ISD::PRE_INC:
2913 return "<pre-inc>";
2914 case ISD::PRE_DEC:
2915 return "<pre-dec>";
2916 case ISD::POST_INC:
2917 return "<post-inc>";
2918 case ISD::POST_DEC:
2919 return "<post-dec>";
2920 }
2921}
2922
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002923void SDNode::dump() const { dump(0); }
2924void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00002925 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002926
2927 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002928 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002929 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00002930 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00002931 else
Bill Wendling832171c2006-12-07 20:04:42 +00002932 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002933 }
Bill Wendling832171c2006-12-07 20:04:42 +00002934 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002935
Bill Wendling832171c2006-12-07 20:04:42 +00002936 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002937 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002938 if (i) cerr << ", ";
2939 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002940 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00002941 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002942 }
2943
2944 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002945 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002946 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002947 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002948 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00002949 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00002950 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00002951 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00002952 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00002953 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002954 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00002955 else
Bill Wendling832171c2006-12-07 20:04:42 +00002956 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002957 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002958 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00002959 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002960 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002961 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00002962 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00002963 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00002964 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00002965 else
Bill Wendling832171c2006-12-07 20:04:42 +00002966 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00002967 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002968 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00002969 else
Bill Wendling832171c2006-12-07 20:04:42 +00002970 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002971 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002972 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002973 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2974 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00002975 cerr << LBB->getName() << " ";
2976 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00002977 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00002978 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00002979 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00002980 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00002981 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00002982 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002983 } else if (const ExternalSymbolSDNode *ES =
2984 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002985 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002986 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2987 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00002988 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002989 else
Bill Wendling832171c2006-12-07 20:04:42 +00002990 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00002991 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002992 cerr << ":" << getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002993 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
2994 bool doExt = true;
2995 switch (LD->getExtensionType()) {
2996 default: doExt = false; break;
2997 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002998 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002999 break;
3000 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003001 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003002 break;
3003 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003004 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003005 break;
3006 }
3007 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003008 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003009
Evan Cheng144d8f02006-11-09 17:55:04 +00003010 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003011 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003012 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00003013 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3014 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00003015 cerr << " <trunc "
3016 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00003017
Evan Cheng144d8f02006-11-09 17:55:04 +00003018 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003019 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003020 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003021 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003022}
3023
Chris Lattnerde202b32005-11-09 23:47:37 +00003024static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003025 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3026 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003027 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003028 else
Bill Wendling832171c2006-12-07 20:04:42 +00003029 cerr << "\n" << std::string(indent+2, ' ')
3030 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003031
Chris Lattnerea946cd2005-01-09 20:38:33 +00003032
Bill Wendling832171c2006-12-07 20:04:42 +00003033 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003034 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003035}
3036
Chris Lattnerc3aae252005-01-07 07:46:32 +00003037void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00003038 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00003039 std::vector<const SDNode*> Nodes;
3040 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3041 I != E; ++I)
3042 Nodes.push_back(I);
3043
Chris Lattner49d24712005-01-09 20:26:36 +00003044 std::sort(Nodes.begin(), Nodes.end());
3045
3046 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003047 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003048 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003049 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003050
Jim Laskey26f7fa72006-10-17 19:33:52 +00003051 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003052
Bill Wendling832171c2006-12-07 20:04:42 +00003053 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003054}
3055
Evan Chengd6594ae2006-09-12 21:00:35 +00003056const Type *ConstantPoolSDNode::getType() const {
3057 if (isMachineConstantPoolEntry())
3058 return Val.MachineCPVal->getType();
3059 return Val.ConstVal->getType();
3060}