blob: e45b6fd3426276729324d1ea08f0ba9220ef3b6b [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000015#include "llvm/Constants.h"
16#include "llvm/GlobalValue.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000018#include "llvm/Assembly/Writer.h"
19#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000020#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000021#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000022#include "llvm/Target/MRegisterInfo.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000024#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000026#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000027#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000028#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000029#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000030#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000031#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner0b3e5252006-08-15 19:11:05 +000034/// makeVTList - Return an instance of the SDVTList struct initialized with the
35/// specified members.
36static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
37 SDVTList Res = {VTs, NumVTs};
38 return Res;
39}
40
Jim Laskey58b968b2005-08-17 20:08:02 +000041//===----------------------------------------------------------------------===//
42// ConstantFPSDNode Class
43//===----------------------------------------------------------------------===//
44
45/// isExactlyValue - We don't rely on operator== working on double values, as
46/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
47/// As such, this method can be used to do an exact bit-for-bit comparison of
48/// two floating point values.
49bool ConstantFPSDNode::isExactlyValue(double V) const {
50 return DoubleToBits(V) == DoubleToBits(Value);
51}
52
53//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000054// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000055//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000056
Evan Chenga8df1662006-03-27 06:58:47 +000057/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000058/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000059bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000060 // Look through a bit convert.
61 if (N->getOpcode() == ISD::BIT_CONVERT)
62 N = N->getOperand(0).Val;
63
Evan Chenga8df1662006-03-27 06:58:47 +000064 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000065
66 unsigned i = 0, e = N->getNumOperands();
67
68 // Skip over all of the undef values.
69 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
70 ++i;
71
72 // Do not accept an all-undef vector.
73 if (i == e) return false;
74
75 // Do not accept build_vectors that aren't all constants or which have non-~0
76 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000077 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000078 if (isa<ConstantSDNode>(NotZero)) {
79 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
80 return false;
81 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000082 MVT::ValueType VT = NotZero.getValueType();
83 if (VT== MVT::f64) {
84 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
85 (uint64_t)-1)
86 return false;
87 } else {
88 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
89 (uint32_t)-1)
90 return false;
91 }
Evan Chenga8df1662006-03-27 06:58:47 +000092 } else
Chris Lattner61d43992006-03-25 22:57:01 +000093 return false;
94
95 // Okay, we have at least one ~0 value, check to see if the rest match or are
96 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000097 for (++i; i != e; ++i)
98 if (N->getOperand(i) != NotZero &&
99 N->getOperand(i).getOpcode() != ISD::UNDEF)
100 return false;
101 return true;
102}
103
104
Evan Cheng4a147842006-03-26 09:50:58 +0000105/// isBuildVectorAllZeros - Return true if the specified node is a
106/// BUILD_VECTOR where all of the elements are 0 or undef.
107bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000108 // Look through a bit convert.
109 if (N->getOpcode() == ISD::BIT_CONVERT)
110 N = N->getOperand(0).Val;
111
Evan Cheng4a147842006-03-26 09:50:58 +0000112 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000113
114 unsigned i = 0, e = N->getNumOperands();
115
116 // Skip over all of the undef values.
117 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
118 ++i;
119
120 // Do not accept an all-undef vector.
121 if (i == e) return false;
122
123 // Do not accept build_vectors that aren't all constants or which have non-~0
124 // elements.
125 SDOperand Zero = N->getOperand(i);
126 if (isa<ConstantSDNode>(Zero)) {
127 if (!cast<ConstantSDNode>(Zero)->isNullValue())
128 return false;
129 } else if (isa<ConstantFPSDNode>(Zero)) {
130 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
131 return false;
132 } else
133 return false;
134
135 // Okay, we have at least one ~0 value, check to see if the rest match or are
136 // undefs.
137 for (++i; i != e; ++i)
138 if (N->getOperand(i) != Zero &&
139 N->getOperand(i).getOpcode() != ISD::UNDEF)
140 return false;
141 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000142}
143
Chris Lattnerc3aae252005-01-07 07:46:32 +0000144/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
145/// when given the operation for (X op Y).
146ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
147 // To perform this operation, we just need to swap the L and G bits of the
148 // operation.
149 unsigned OldL = (Operation >> 2) & 1;
150 unsigned OldG = (Operation >> 1) & 1;
151 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
152 (OldL << 1) | // New G bit
153 (OldG << 2)); // New L bit.
154}
155
156/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
157/// 'op' is a valid SetCC operation.
158ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
159 unsigned Operation = Op;
160 if (isInteger)
161 Operation ^= 7; // Flip L, G, E bits, but not U.
162 else
163 Operation ^= 15; // Flip all of the condition bits.
164 if (Operation > ISD::SETTRUE2)
165 Operation &= ~8; // Don't let N and U bits get set.
166 return ISD::CondCode(Operation);
167}
168
169
170/// isSignedOp - For an integer comparison, return 1 if the comparison is a
171/// signed operation and 2 if the result is an unsigned comparison. Return zero
172/// if the operation does not depend on the sign of the input (setne and seteq).
173static int isSignedOp(ISD::CondCode Opcode) {
174 switch (Opcode) {
175 default: assert(0 && "Illegal integer setcc operation!");
176 case ISD::SETEQ:
177 case ISD::SETNE: return 0;
178 case ISD::SETLT:
179 case ISD::SETLE:
180 case ISD::SETGT:
181 case ISD::SETGE: return 1;
182 case ISD::SETULT:
183 case ISD::SETULE:
184 case ISD::SETUGT:
185 case ISD::SETUGE: return 2;
186 }
187}
188
189/// getSetCCOrOperation - Return the result of a logical OR between different
190/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
191/// returns SETCC_INVALID if it is not possible to represent the resultant
192/// comparison.
193ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
194 bool isInteger) {
195 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
196 // Cannot fold a signed integer setcc with an unsigned integer setcc.
197 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000198
Chris Lattnerc3aae252005-01-07 07:46:32 +0000199 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000200
Chris Lattnerc3aae252005-01-07 07:46:32 +0000201 // If the N and U bits get set then the resultant comparison DOES suddenly
202 // care about orderedness, and is true when ordered.
203 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000204 Op &= ~16; // Clear the U bit if the N bit is set.
205
206 // Canonicalize illegal integer setcc's.
207 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
208 Op = ISD::SETNE;
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210 return ISD::CondCode(Op);
211}
212
213/// getSetCCAndOperation - Return the result of a logical AND between different
214/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
215/// function returns zero if it is not possible to represent the resultant
216/// comparison.
217ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
218 bool isInteger) {
219 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
220 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000221 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000222
223 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000224 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
225
226 // Canonicalize illegal integer setcc's.
227 if (isInteger) {
228 switch (Result) {
229 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000230 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
231 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
232 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
233 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000234 }
235 }
236
237 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000238}
239
Chris Lattnerb48da392005-01-23 04:39:44 +0000240const TargetMachine &SelectionDAG::getTarget() const {
241 return TLI.getTargetMachine();
242}
243
Jim Laskey58b968b2005-08-17 20:08:02 +0000244//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000245// SDNode Profile Support
246//===----------------------------------------------------------------------===//
247
Jim Laskeydef69b92006-10-27 23:52:51 +0000248/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
249///
Jim Laskey583bd472006-10-27 23:46:08 +0000250static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
251 ID.AddInteger(OpC);
252}
253
254/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
255/// solely with their pointer.
256void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
257 ID.AddPointer(VTList.VTs);
258}
259
Jim Laskeydef69b92006-10-27 23:52:51 +0000260/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
261///
Jim Laskey583bd472006-10-27 23:46:08 +0000262static void AddNodeIDOperands(FoldingSetNodeID &ID,
263 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000264 for (; NumOps; --NumOps, ++Ops) {
265 ID.AddPointer(Ops->Val);
266 ID.AddInteger(Ops->ResNo);
267 }
Jim Laskey583bd472006-10-27 23:46:08 +0000268}
269
Jim Laskey583bd472006-10-27 23:46:08 +0000270static void AddNodeIDNode(FoldingSetNodeID &ID,
271 unsigned short OpC, SDVTList VTList,
272 const SDOperand *OpList, unsigned N) {
273 AddNodeIDOpcode(ID, OpC);
274 AddNodeIDValueTypes(ID, VTList);
275 AddNodeIDOperands(ID, OpList, N);
276}
277
Jim Laskeydef69b92006-10-27 23:52:51 +0000278/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
279/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000280static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
281 AddNodeIDOpcode(ID, N->getOpcode());
282 // Add the return value info.
283 AddNodeIDValueTypes(ID, N->getVTList());
284 // Add the operand info.
285 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
286
287 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000288 switch (N->getOpcode()) {
289 default: break; // Normal nodes don't need extra info.
290 case ISD::TargetConstant:
291 case ISD::Constant:
292 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
293 break;
294 case ISD::TargetConstantFP:
295 case ISD::ConstantFP:
296 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
297 break;
298 case ISD::TargetGlobalAddress:
299 case ISD::GlobalAddress: {
300 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
301 ID.AddPointer(GA->getGlobal());
302 ID.AddInteger(GA->getOffset());
303 break;
304 }
305 case ISD::BasicBlock:
306 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
307 break;
308 case ISD::Register:
309 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
310 break;
311 case ISD::SRCVALUE: {
312 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
313 ID.AddPointer(SV->getValue());
314 ID.AddInteger(SV->getOffset());
315 break;
316 }
317 case ISD::FrameIndex:
318 case ISD::TargetFrameIndex:
319 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
320 break;
321 case ISD::JumpTable:
322 case ISD::TargetJumpTable:
323 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
324 break;
325 case ISD::ConstantPool:
326 case ISD::TargetConstantPool: {
327 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
328 ID.AddInteger(CP->getAlignment());
329 ID.AddInteger(CP->getOffset());
330 if (CP->isMachineConstantPoolEntry())
331 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
332 else
333 ID.AddPointer(CP->getConstVal());
334 break;
335 }
336 case ISD::LOAD: {
337 LoadSDNode *LD = cast<LoadSDNode>(N);
338 ID.AddInteger(LD->getAddressingMode());
339 ID.AddInteger(LD->getExtensionType());
340 ID.AddInteger(LD->getLoadedVT());
341 ID.AddPointer(LD->getSrcValue());
342 ID.AddInteger(LD->getSrcValueOffset());
343 ID.AddInteger(LD->getAlignment());
344 ID.AddInteger(LD->isVolatile());
345 break;
346 }
347 case ISD::STORE: {
348 StoreSDNode *ST = cast<StoreSDNode>(N);
349 ID.AddInteger(ST->getAddressingMode());
350 ID.AddInteger(ST->isTruncatingStore());
351 ID.AddInteger(ST->getStoredVT());
352 ID.AddPointer(ST->getSrcValue());
353 ID.AddInteger(ST->getSrcValueOffset());
354 ID.AddInteger(ST->getAlignment());
355 ID.AddInteger(ST->isVolatile());
356 break;
357 }
Jim Laskey583bd472006-10-27 23:46:08 +0000358 }
359}
360
361//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000362// SelectionDAG Class
363//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000364
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000365/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000366/// SelectionDAG.
367void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000368 // Create a dummy node (which is not added to allnodes), that adds a reference
369 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000370 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000371
Chris Lattner190a4182006-08-04 17:45:20 +0000372 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000373
Chris Lattner190a4182006-08-04 17:45:20 +0000374 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000375 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000376 if (I->use_empty())
377 DeadNodes.push_back(I);
378
379 // Process the worklist, deleting the nodes and adding their uses to the
380 // worklist.
381 while (!DeadNodes.empty()) {
382 SDNode *N = DeadNodes.back();
383 DeadNodes.pop_back();
384
385 // Take the node out of the appropriate CSE map.
386 RemoveNodeFromCSEMaps(N);
387
388 // Next, brutally remove the operand list. This is safe to do, as there are
389 // no cycles in the graph.
390 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
391 SDNode *Operand = I->Val;
392 Operand->removeUser(N);
393
394 // Now that we removed this operand, see if there are no uses of it left.
395 if (Operand->use_empty())
396 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000397 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000398 if (N->OperandsNeedDelete)
399 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000400 N->OperandList = 0;
401 N->NumOperands = 0;
402
403 // Finally, remove N itself.
404 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000405 }
406
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000407 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000408 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000409}
410
Evan Cheng130a6472006-10-12 20:34:05 +0000411void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
412 SmallVector<SDNode*, 16> DeadNodes;
413 DeadNodes.push_back(N);
414
415 // Process the worklist, deleting the nodes and adding their uses to the
416 // worklist.
417 while (!DeadNodes.empty()) {
418 SDNode *N = DeadNodes.back();
419 DeadNodes.pop_back();
420
421 // Take the node out of the appropriate CSE map.
422 RemoveNodeFromCSEMaps(N);
423
424 // Next, brutally remove the operand list. This is safe to do, as there are
425 // no cycles in the graph.
426 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
427 SDNode *Operand = I->Val;
428 Operand->removeUser(N);
429
430 // Now that we removed this operand, see if there are no uses of it left.
431 if (Operand->use_empty())
432 DeadNodes.push_back(Operand);
433 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000434 if (N->OperandsNeedDelete)
435 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000436 N->OperandList = 0;
437 N->NumOperands = 0;
438
439 // Finally, remove N itself.
440 Deleted.push_back(N);
441 AllNodes.erase(N);
442 }
443}
444
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000445void SelectionDAG::DeleteNode(SDNode *N) {
446 assert(N->use_empty() && "Cannot delete a node that is not dead!");
447
448 // First take this out of the appropriate CSE map.
449 RemoveNodeFromCSEMaps(N);
450
Chris Lattner1e111c72005-09-07 05:37:01 +0000451 // Finally, remove uses due to operands of this node, remove from the
452 // AllNodes list, and delete the node.
453 DeleteNodeNotInCSEMaps(N);
454}
455
456void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
457
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000458 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000459 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000460
461 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000462 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
463 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000464 if (N->OperandsNeedDelete)
465 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000466 N->OperandList = 0;
467 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000468
469 delete N;
470}
471
Chris Lattner149c58c2005-08-16 18:17:10 +0000472/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
473/// correspond to it. This is useful when we're about to delete or repurpose
474/// the node. We don't want future request for structurally identical nodes
475/// to return N anymore.
476void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000477 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000478 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000479 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000480 case ISD::STRING:
481 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
482 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000483 case ISD::CONDCODE:
484 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
485 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000486 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000487 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
488 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000489 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000490 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000491 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000492 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000493 Erased =
494 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000495 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000496 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000497 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000498 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
499 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000500 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000501 // Remove it from the CSE Map.
502 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000503 break;
504 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000505#ifndef NDEBUG
506 // Verify that the node was actually in one of the CSE maps, unless it has a
507 // flag result (which cannot be CSE'd) or is one of the special cases that are
508 // not subject to CSE.
509 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000510 !N->isTargetOpcode()) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000511 N->dump();
Bill Wendling832171c2006-12-07 20:04:42 +0000512 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000513 assert(0 && "Node is not in map!");
514 }
515#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000516}
517
Chris Lattner8b8749f2005-08-17 19:00:20 +0000518/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
519/// has been taken out and modified in some way. If the specified node already
520/// exists in the CSE maps, do not modify the maps, but return the existing node
521/// instead. If it doesn't exist, add it and return null.
522///
523SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
524 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000525 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000526 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000527
Chris Lattner9f8cc692005-12-19 22:21:21 +0000528 // Check that remaining values produced are not flags.
529 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
530 if (N->getValueType(i) == MVT::Flag)
531 return 0; // Never CSE anything that produces a flag.
532
Chris Lattnera5682852006-08-07 23:03:03 +0000533 SDNode *New = CSEMap.GetOrInsertNode(N);
534 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000535 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000536}
537
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000538/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
539/// were replaced with those specified. If this node is never memoized,
540/// return null, otherwise return a pointer to the slot it would take. If a
541/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000542SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
543 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000544 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000545 return 0; // Never add these nodes.
546
547 // Check that remaining values produced are not flags.
548 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
549 if (N->getValueType(i) == MVT::Flag)
550 return 0; // Never CSE anything that produces a flag.
551
Chris Lattner63e3f142007-02-04 07:28:00 +0000552 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000553 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000554 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000555 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000556}
557
558/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
559/// were replaced with those specified. If this node is never memoized,
560/// return null, otherwise return a pointer to the slot it would take. If a
561/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000562SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
563 SDOperand Op1, SDOperand Op2,
564 void *&InsertPos) {
565 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
566 return 0; // Never add these nodes.
567
568 // Check that remaining values produced are not flags.
569 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
570 if (N->getValueType(i) == MVT::Flag)
571 return 0; // Never CSE anything that produces a flag.
572
Chris Lattner63e3f142007-02-04 07:28:00 +0000573 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000574 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000575 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000576 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
577}
578
579
580/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
581/// were replaced with those specified. If this node is never memoized,
582/// return null, otherwise return a pointer to the slot it would take. If a
583/// node already exists with these operands, the slot will be non-null.
584SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000585 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000586 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000587 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000588 return 0; // Never add these nodes.
589
590 // Check that remaining values produced are not flags.
591 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
592 if (N->getValueType(i) == MVT::Flag)
593 return 0; // Never CSE anything that produces a flag.
594
Jim Laskey583bd472006-10-27 23:46:08 +0000595 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000596 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000597
Evan Cheng9629aba2006-10-11 01:47:58 +0000598 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
599 ID.AddInteger(LD->getAddressingMode());
600 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000601 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000602 ID.AddPointer(LD->getSrcValue());
603 ID.AddInteger(LD->getSrcValueOffset());
604 ID.AddInteger(LD->getAlignment());
605 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000606 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
607 ID.AddInteger(ST->getAddressingMode());
608 ID.AddInteger(ST->isTruncatingStore());
609 ID.AddInteger(ST->getStoredVT());
610 ID.AddPointer(ST->getSrcValue());
611 ID.AddInteger(ST->getSrcValueOffset());
612 ID.AddInteger(ST->getAlignment());
613 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000614 }
Jim Laskey583bd472006-10-27 23:46:08 +0000615
616 AddNodeIDOperands(ID, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +0000617 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000618}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000619
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000620
Chris Lattner78ec3112003-08-11 14:57:33 +0000621SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000622 while (!AllNodes.empty()) {
623 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000624 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000625 if (N->OperandsNeedDelete)
626 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000627 N->OperandList = 0;
628 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000629 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000630 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000631}
632
Chris Lattner0f2287b2005-04-13 02:38:18 +0000633SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000634 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000635 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000636 return getNode(ISD::AND, Op.getValueType(), Op,
637 getConstant(Imm, Op.getValueType()));
638}
639
Chris Lattner36ce6912005-11-29 06:21:05 +0000640SDOperand SelectionDAG::getString(const std::string &Val) {
641 StringSDNode *&N = StringNodes[Val];
642 if (!N) {
643 N = new StringSDNode(Val);
644 AllNodes.push_back(N);
645 }
646 return SDOperand(N, 0);
647}
648
Chris Lattner61b09412006-08-11 21:01:22 +0000649SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000650 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000651 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000652
Chris Lattner61b09412006-08-11 21:01:22 +0000653 // Mask out any bits that are not valid for this constant.
654 Val &= MVT::getIntVTBitMask(VT);
655
656 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000657 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000658 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000659 ID.AddInteger(Val);
660 void *IP = 0;
661 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
662 return SDOperand(E, 0);
663 SDNode *N = new ConstantSDNode(isT, Val, VT);
664 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000665 AllNodes.push_back(N);
666 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000667}
668
Chris Lattner61b09412006-08-11 21:01:22 +0000669
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000670SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
671 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000672 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
673 if (VT == MVT::f32)
674 Val = (float)Val; // Mask out extra precision.
675
Chris Lattnerd8658612005-02-17 20:17:32 +0000676 // Do the map lookup using the actual bit pattern for the floating point
677 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
678 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000679 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000680 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000681 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000682 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000683 void *IP = 0;
684 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
685 return SDOperand(E, 0);
686 SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
687 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000688 AllNodes.push_back(N);
689 return SDOperand(N, 0);
690}
691
Chris Lattnerc3aae252005-01-07 07:46:32 +0000692SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000693 MVT::ValueType VT, int Offset,
694 bool isTargetGA) {
695 unsigned Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000696 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000697 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000698 ID.AddPointer(GV);
699 ID.AddInteger(Offset);
700 void *IP = 0;
701 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
702 return SDOperand(E, 0);
703 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
704 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000705 AllNodes.push_back(N);
706 return SDOperand(N, 0);
707}
708
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000709SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
710 bool isTarget) {
711 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000712 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000713 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000714 ID.AddInteger(FI);
715 void *IP = 0;
716 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
717 return SDOperand(E, 0);
718 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
719 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000720 AllNodes.push_back(N);
721 return SDOperand(N, 0);
722}
723
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000724SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
725 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000726 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000727 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000728 ID.AddInteger(JTI);
729 void *IP = 0;
730 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
731 return SDOperand(E, 0);
732 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
733 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000734 AllNodes.push_back(N);
735 return SDOperand(N, 0);
736}
737
Evan Chengb8973bd2006-01-31 22:23:14 +0000738SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000739 unsigned Alignment, int Offset,
740 bool isTarget) {
741 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000742 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000743 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000744 ID.AddInteger(Alignment);
745 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000746 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000747 void *IP = 0;
748 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
749 return SDOperand(E, 0);
750 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
751 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000752 AllNodes.push_back(N);
753 return SDOperand(N, 0);
754}
755
Chris Lattnerc3aae252005-01-07 07:46:32 +0000756
Evan Chengd6594ae2006-09-12 21:00:35 +0000757SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
758 MVT::ValueType VT,
759 unsigned Alignment, int Offset,
760 bool isTarget) {
761 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000762 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000763 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000764 ID.AddInteger(Alignment);
765 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000766 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000767 void *IP = 0;
768 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
769 return SDOperand(E, 0);
770 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
771 CSEMap.InsertNode(N, IP);
772 AllNodes.push_back(N);
773 return SDOperand(N, 0);
774}
775
776
Chris Lattnerc3aae252005-01-07 07:46:32 +0000777SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000778 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000779 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000780 ID.AddPointer(MBB);
781 void *IP = 0;
782 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
783 return SDOperand(E, 0);
784 SDNode *N = new BasicBlockSDNode(MBB);
785 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000786 AllNodes.push_back(N);
787 return SDOperand(N, 0);
788}
789
Chris Lattner15e4b012005-07-10 00:07:11 +0000790SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
791 if ((unsigned)VT >= ValueTypeNodes.size())
792 ValueTypeNodes.resize(VT+1);
793 if (ValueTypeNodes[VT] == 0) {
794 ValueTypeNodes[VT] = new VTSDNode(VT);
795 AllNodes.push_back(ValueTypeNodes[VT]);
796 }
797
798 return SDOperand(ValueTypeNodes[VT], 0);
799}
800
Chris Lattnerc3aae252005-01-07 07:46:32 +0000801SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
802 SDNode *&N = ExternalSymbols[Sym];
803 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000804 N = new ExternalSymbolSDNode(false, Sym, VT);
805 AllNodes.push_back(N);
806 return SDOperand(N, 0);
807}
808
Chris Lattner809ec112006-01-28 10:09:25 +0000809SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
810 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000811 SDNode *&N = TargetExternalSymbols[Sym];
812 if (N) return SDOperand(N, 0);
813 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000814 AllNodes.push_back(N);
815 return SDOperand(N, 0);
816}
817
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000818SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
819 if ((unsigned)Cond >= CondCodeNodes.size())
820 CondCodeNodes.resize(Cond+1);
821
Chris Lattner079a27a2005-08-09 20:40:02 +0000822 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000823 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000824 AllNodes.push_back(CondCodeNodes[Cond]);
825 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000826 return SDOperand(CondCodeNodes[Cond], 0);
827}
828
Chris Lattner0fdd7682005-08-30 22:38:38 +0000829SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000830 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000831 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000832 ID.AddInteger(RegNo);
833 void *IP = 0;
834 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
835 return SDOperand(E, 0);
836 SDNode *N = new RegisterSDNode(RegNo, VT);
837 CSEMap.InsertNode(N, IP);
838 AllNodes.push_back(N);
839 return SDOperand(N, 0);
840}
841
842SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
843 assert((!V || isa<PointerType>(V->getType())) &&
844 "SrcValue is not a pointer?");
845
Jim Laskey583bd472006-10-27 23:46:08 +0000846 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000847 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000848 ID.AddPointer(V);
849 ID.AddInteger(Offset);
850 void *IP = 0;
851 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
852 return SDOperand(E, 0);
853 SDNode *N = new SrcValueSDNode(V, Offset);
854 CSEMap.InsertNode(N, IP);
855 AllNodes.push_back(N);
856 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000857}
858
Chris Lattner51dabfb2006-10-14 00:41:01 +0000859SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
860 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000861 // These setcc operations always fold.
862 switch (Cond) {
863 default: break;
864 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000865 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000866 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000867 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000868
869 case ISD::SETOEQ:
870 case ISD::SETOGT:
871 case ISD::SETOGE:
872 case ISD::SETOLT:
873 case ISD::SETOLE:
874 case ISD::SETONE:
875 case ISD::SETO:
876 case ISD::SETUO:
877 case ISD::SETUEQ:
878 case ISD::SETUNE:
879 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
880 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000881 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000882
Chris Lattner67255a12005-04-07 18:14:58 +0000883 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
884 uint64_t C2 = N2C->getValue();
885 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
886 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000887
Chris Lattnerc3aae252005-01-07 07:46:32 +0000888 // Sign extend the operands if required
889 if (ISD::isSignedIntSetCC(Cond)) {
890 C1 = N1C->getSignExtended();
891 C2 = N2C->getSignExtended();
892 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000893
Chris Lattnerc3aae252005-01-07 07:46:32 +0000894 switch (Cond) {
895 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000896 case ISD::SETEQ: return getConstant(C1 == C2, VT);
897 case ISD::SETNE: return getConstant(C1 != C2, VT);
898 case ISD::SETULT: return getConstant(C1 < C2, VT);
899 case ISD::SETUGT: return getConstant(C1 > C2, VT);
900 case ISD::SETULE: return getConstant(C1 <= C2, VT);
901 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
902 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
903 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
904 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
905 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000906 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000907 }
Chris Lattner67255a12005-04-07 18:14:58 +0000908 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000909 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
910 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
911 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000912
Chris Lattnerc3aae252005-01-07 07:46:32 +0000913 switch (Cond) {
914 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000915 case ISD::SETEQ: return getConstant(C1 == C2, VT);
916 case ISD::SETNE: return getConstant(C1 != C2, VT);
917 case ISD::SETLT: return getConstant(C1 < C2, VT);
918 case ISD::SETGT: return getConstant(C1 > C2, VT);
919 case ISD::SETLE: return getConstant(C1 <= C2, VT);
920 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000921 }
922 } else {
923 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000924 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000925 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000926
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000927 // Could not fold it.
928 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000929}
930
Chris Lattner51dabfb2006-10-14 00:41:01 +0000931
Chris Lattnerc3aae252005-01-07 07:46:32 +0000932/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +0000933///
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000935 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000936 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +0000937 void *IP = 0;
938 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
939 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +0000940 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +0000941 CSEMap.InsertNode(N, IP);
942
943 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000944 return SDOperand(N, 0);
945}
946
Chris Lattnerc3aae252005-01-07 07:46:32 +0000947SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
948 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000949 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +0000950 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000951 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
952 uint64_t Val = C->getValue();
953 switch (Opcode) {
954 default: break;
955 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +0000956 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +0000957 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
958 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +0000959 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
960 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000961 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000962 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +0000963 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +0000964 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +0000965 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +0000966 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +0000967 case ISD::BSWAP:
968 switch(VT) {
969 default: assert(0 && "Invalid bswap!"); break;
970 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
971 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
972 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
973 }
974 break;
975 case ISD::CTPOP:
976 switch(VT) {
977 default: assert(0 && "Invalid ctpop!"); break;
978 case MVT::i1: return getConstant(Val != 0, VT);
979 case MVT::i8:
980 Tmp1 = (unsigned)Val & 0xFF;
981 return getConstant(CountPopulation_32(Tmp1), VT);
982 case MVT::i16:
983 Tmp1 = (unsigned)Val & 0xFFFF;
984 return getConstant(CountPopulation_32(Tmp1), VT);
985 case MVT::i32:
986 return getConstant(CountPopulation_32((unsigned)Val), VT);
987 case MVT::i64:
988 return getConstant(CountPopulation_64(Val), VT);
989 }
990 case ISD::CTLZ:
991 switch(VT) {
992 default: assert(0 && "Invalid ctlz!"); break;
993 case MVT::i1: return getConstant(Val == 0, VT);
994 case MVT::i8:
995 Tmp1 = (unsigned)Val & 0xFF;
996 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
997 case MVT::i16:
998 Tmp1 = (unsigned)Val & 0xFFFF;
999 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1000 case MVT::i32:
1001 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1002 case MVT::i64:
1003 return getConstant(CountLeadingZeros_64(Val), VT);
1004 }
1005 case ISD::CTTZ:
1006 switch(VT) {
1007 default: assert(0 && "Invalid cttz!"); break;
1008 case MVT::i1: return getConstant(Val == 0, VT);
1009 case MVT::i8:
1010 Tmp1 = (unsigned)Val | 0x100;
1011 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1012 case MVT::i16:
1013 Tmp1 = (unsigned)Val | 0x10000;
1014 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1015 case MVT::i32:
1016 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1017 case MVT::i64:
1018 return getConstant(CountTrailingZeros_64(Val), VT);
1019 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001020 }
1021 }
1022
Chris Lattner94683772005-12-23 05:30:37 +00001023 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001024 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1025 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001026 case ISD::FNEG:
1027 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001028 case ISD::FABS:
1029 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001030 case ISD::FP_ROUND:
1031 case ISD::FP_EXTEND:
1032 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001033 case ISD::FP_TO_SINT:
1034 return getConstant((int64_t)C->getValue(), VT);
1035 case ISD::FP_TO_UINT:
1036 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001037 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001038 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001039 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001040 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001041 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001042 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001043 }
1044
1045 unsigned OpOpcode = Operand.Val->getOpcode();
1046 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001047 case ISD::TokenFactor:
1048 return Operand; // Factor of one node? No factor.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001049 case ISD::SIGN_EXTEND:
1050 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001051 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001052 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1053 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1054 break;
1055 case ISD::ZERO_EXTEND:
1056 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001057 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001058 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001059 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001060 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001061 case ISD::ANY_EXTEND:
1062 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001063 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001064 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1065 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1066 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1067 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001068 case ISD::TRUNCATE:
1069 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001070 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001071 if (OpOpcode == ISD::TRUNCATE)
1072 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001073 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1074 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001075 // If the source is smaller than the dest, we still need an extend.
1076 if (Operand.Val->getOperand(0).getValueType() < VT)
1077 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1078 else if (Operand.Val->getOperand(0).getValueType() > VT)
1079 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1080 else
1081 return Operand.Val->getOperand(0);
1082 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001083 break;
Chris Lattner35481892005-12-23 00:16:34 +00001084 case ISD::BIT_CONVERT:
1085 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001086 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001087 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001088 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001089 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1090 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001091 if (OpOpcode == ISD::UNDEF)
1092 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001093 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001094 case ISD::SCALAR_TO_VECTOR:
1095 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1096 MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1097 "Illegal SCALAR_TO_VECTOR node!");
1098 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001099 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001100 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1101 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001102 Operand.Val->getOperand(0));
1103 if (OpOpcode == ISD::FNEG) // --X -> X
1104 return Operand.Val->getOperand(0);
1105 break;
1106 case ISD::FABS:
1107 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1108 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1109 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001110 }
1111
Chris Lattner43247a12005-08-25 19:12:10 +00001112 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001113 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001114 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001115 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001116 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001117 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001118 void *IP = 0;
1119 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1120 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001121 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001122 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001123 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001124 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001125 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001126 AllNodes.push_back(N);
1127 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001128}
1129
Chris Lattner36019aa2005-04-18 03:48:41 +00001130
1131
Chris Lattnerc3aae252005-01-07 07:46:32 +00001132SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1133 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001134#ifndef NDEBUG
1135 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001136 case ISD::TokenFactor:
1137 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1138 N2.getValueType() == MVT::Other && "Invalid token factor!");
1139 break;
Chris Lattner76365122005-01-16 02:23:22 +00001140 case ISD::AND:
1141 case ISD::OR:
1142 case ISD::XOR:
1143 case ISD::UDIV:
1144 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001145 case ISD::MULHU:
1146 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001147 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1148 // fall through
1149 case ISD::ADD:
1150 case ISD::SUB:
1151 case ISD::MUL:
1152 case ISD::SDIV:
1153 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001154 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1155 // fall through.
1156 case ISD::FADD:
1157 case ISD::FSUB:
1158 case ISD::FMUL:
1159 case ISD::FDIV:
1160 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001161 assert(N1.getValueType() == N2.getValueType() &&
1162 N1.getValueType() == VT && "Binary operator types must match!");
1163 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001164 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1165 assert(N1.getValueType() == VT &&
1166 MVT::isFloatingPoint(N1.getValueType()) &&
1167 MVT::isFloatingPoint(N2.getValueType()) &&
1168 "Invalid FCOPYSIGN!");
1169 break;
Chris Lattner76365122005-01-16 02:23:22 +00001170 case ISD::SHL:
1171 case ISD::SRA:
1172 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001173 case ISD::ROTL:
1174 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001175 assert(VT == N1.getValueType() &&
1176 "Shift operators return type must be the same as their first arg");
1177 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001178 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001179 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001180 case ISD::FP_ROUND_INREG: {
1181 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1182 assert(VT == N1.getValueType() && "Not an inreg round!");
1183 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1184 "Cannot FP_ROUND_INREG integer types");
1185 assert(EVT <= VT && "Not rounding down!");
1186 break;
1187 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001188 case ISD::AssertSext:
1189 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001190 case ISD::SIGN_EXTEND_INREG: {
1191 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1192 assert(VT == N1.getValueType() && "Not an inreg extend!");
1193 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1194 "Cannot *_EXTEND_INREG FP types");
1195 assert(EVT <= VT && "Not extending!");
1196 }
1197
Chris Lattner76365122005-01-16 02:23:22 +00001198 default: break;
1199 }
1200#endif
1201
Chris Lattnerc3aae252005-01-07 07:46:32 +00001202 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1203 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1204 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001205 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1206 int64_t Val = N1C->getValue();
1207 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1208 Val <<= 64-FromBits;
1209 Val >>= 64-FromBits;
1210 return getConstant(Val, VT);
1211 }
1212
Chris Lattnerc3aae252005-01-07 07:46:32 +00001213 if (N2C) {
1214 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1215 switch (Opcode) {
1216 case ISD::ADD: return getConstant(C1 + C2, VT);
1217 case ISD::SUB: return getConstant(C1 - C2, VT);
1218 case ISD::MUL: return getConstant(C1 * C2, VT);
1219 case ISD::UDIV:
1220 if (C2) return getConstant(C1 / C2, VT);
1221 break;
1222 case ISD::UREM :
1223 if (C2) return getConstant(C1 % C2, VT);
1224 break;
1225 case ISD::SDIV :
1226 if (C2) return getConstant(N1C->getSignExtended() /
1227 N2C->getSignExtended(), VT);
1228 break;
1229 case ISD::SREM :
1230 if (C2) return getConstant(N1C->getSignExtended() %
1231 N2C->getSignExtended(), VT);
1232 break;
1233 case ISD::AND : return getConstant(C1 & C2, VT);
1234 case ISD::OR : return getConstant(C1 | C2, VT);
1235 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001236 case ISD::SHL : return getConstant(C1 << C2, VT);
1237 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001238 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001239 case ISD::ROTL :
1240 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1241 VT);
1242 case ISD::ROTR :
1243 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1244 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001245 default: break;
1246 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001247 } else { // Cannonicalize constant to RHS if commutative
1248 if (isCommutativeBinOp(Opcode)) {
1249 std::swap(N1C, N2C);
1250 std::swap(N1, N2);
1251 }
1252 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001253 }
1254
1255 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1256 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001257 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001258 if (N2CFP) {
1259 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1260 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001261 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1262 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1263 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1264 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001265 if (C2) return getConstantFP(C1 / C2, VT);
1266 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001267 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001268 if (C2) return getConstantFP(fmod(C1, C2), VT);
1269 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001270 case ISD::FCOPYSIGN: {
1271 union {
1272 double F;
1273 uint64_t I;
1274 } u1;
1275 union {
1276 double F;
1277 int64_t I;
1278 } u2;
1279 u1.F = C1;
1280 u2.F = C2;
1281 if (u2.I < 0) // Sign bit of RHS set?
1282 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1283 else
1284 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1285 return getConstantFP(u1.F, VT);
1286 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001287 default: break;
1288 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001289 } else { // Cannonicalize constant to RHS if commutative
1290 if (isCommutativeBinOp(Opcode)) {
1291 std::swap(N1CFP, N2CFP);
1292 std::swap(N1, N2);
1293 }
1294 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001295 }
Chris Lattner62b57722006-04-20 05:39:12 +00001296
1297 // Canonicalize an UNDEF to the RHS, even over a constant.
1298 if (N1.getOpcode() == ISD::UNDEF) {
1299 if (isCommutativeBinOp(Opcode)) {
1300 std::swap(N1, N2);
1301 } else {
1302 switch (Opcode) {
1303 case ISD::FP_ROUND_INREG:
1304 case ISD::SIGN_EXTEND_INREG:
1305 case ISD::SUB:
1306 case ISD::FSUB:
1307 case ISD::FDIV:
1308 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001309 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001310 return N1; // fold op(undef, arg2) -> undef
1311 case ISD::UDIV:
1312 case ISD::SDIV:
1313 case ISD::UREM:
1314 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001315 case ISD::SRL:
1316 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001317 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1318 }
1319 }
1320 }
1321
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001322 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001323 if (N2.getOpcode() == ISD::UNDEF) {
1324 switch (Opcode) {
1325 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001326 case ISD::ADDC:
1327 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001328 case ISD::SUB:
1329 case ISD::FADD:
1330 case ISD::FSUB:
1331 case ISD::FMUL:
1332 case ISD::FDIV:
1333 case ISD::FREM:
1334 case ISD::UDIV:
1335 case ISD::SDIV:
1336 case ISD::UREM:
1337 case ISD::SREM:
1338 case ISD::XOR:
1339 return N2; // fold op(arg1, undef) -> undef
1340 case ISD::MUL:
1341 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001342 case ISD::SRL:
1343 case ISD::SHL:
Chris Lattner62b57722006-04-20 05:39:12 +00001344 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1345 case ISD::OR:
1346 return getConstant(MVT::getIntVTBitMask(VT), VT);
Chris Lattner2cfd6742006-05-08 17:29:49 +00001347 case ISD::SRA:
1348 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001349 }
1350 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001351
Chris Lattner51dabfb2006-10-14 00:41:01 +00001352 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001353 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001354 case ISD::TokenFactor:
1355 // Fold trivial token factors.
1356 if (N1.getOpcode() == ISD::EntryToken) return N2;
1357 if (N2.getOpcode() == ISD::EntryToken) return N1;
1358 break;
1359
Chris Lattner51dabfb2006-10-14 00:41:01 +00001360 case ISD::AND:
1361 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1362 // worth handling here.
1363 if (N2C && N2C->getValue() == 0)
1364 return N2;
1365 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001366 case ISD::OR:
1367 case ISD::XOR:
1368 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1369 // worth handling here.
1370 if (N2C && N2C->getValue() == 0)
1371 return N1;
1372 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001373 case ISD::FP_ROUND_INREG:
1374 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1375 break;
1376 case ISD::SIGN_EXTEND_INREG: {
1377 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1378 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001379 break;
1380 }
Chris Lattner5c6621c2006-09-19 04:51:23 +00001381 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001382 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1383
Chris Lattner5c6621c2006-09-19 04:51:23 +00001384 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1385 // 64-bit integers into 32-bit parts. Instead of building the extract of
1386 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00001387 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00001388 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00001389
1390 // EXTRACT_ELEMENT of a constant int is also very common.
1391 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1392 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1393 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00001394 }
1395 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001396
Nate Begemaneea805e2005-04-13 21:23:31 +00001397 // FIXME: figure out how to safely handle things like
1398 // int foo(int x) { return 1 << (x & 255); }
1399 // int bar() { return foo(256); }
1400#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00001401 case ISD::SHL:
1402 case ISD::SRL:
1403 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00001404 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001405 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00001406 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00001407 else if (N2.getOpcode() == ISD::AND)
1408 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1409 // If the and is only masking out bits that cannot effect the shift,
1410 // eliminate the and.
1411 unsigned NumBits = MVT::getSizeInBits(VT);
1412 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1413 return getNode(Opcode, VT, N1, N2.getOperand(0));
1414 }
Nate Begemandb81eba2005-04-12 23:32:28 +00001415 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00001416#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00001417 }
1418
Chris Lattner27e9b412005-05-11 18:57:39 +00001419 // Memoize this node if possible.
1420 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001421 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00001422 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001423 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00001424 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001425 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00001426 void *IP = 0;
1427 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1428 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001429 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00001430 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00001431 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001432 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00001433 }
1434
Chris Lattnerc3aae252005-01-07 07:46:32 +00001435 AllNodes.push_back(N);
1436 return SDOperand(N, 0);
1437}
1438
Chris Lattnerc3aae252005-01-07 07:46:32 +00001439SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1440 SDOperand N1, SDOperand N2, SDOperand N3) {
1441 // Perform various simplifications.
1442 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1443 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001444 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001445 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00001446 // Use FoldSetCC to simplify SETCC's.
1447 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001448 if (Simp.Val) return Simp;
1449 break;
1450 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001451 case ISD::SELECT:
1452 if (N1C)
1453 if (N1C->getValue())
1454 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00001455 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00001456 return N3; // select false, X, Y -> Y
1457
1458 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00001459 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00001460 case ISD::BRCOND:
1461 if (N2C)
1462 if (N2C->getValue()) // Unconditional branch
1463 return getNode(ISD::BR, MVT::Other, N1, N3);
1464 else
1465 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00001466 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00001467 case ISD::VECTOR_SHUFFLE:
1468 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1469 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1470 N3.getOpcode() == ISD::BUILD_VECTOR &&
1471 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1472 "Illegal VECTOR_SHUFFLE node!");
1473 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001474 }
1475
Chris Lattner43247a12005-08-25 19:12:10 +00001476 // Memoize node if it doesn't produce a flag.
1477 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001478 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001479 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001480 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00001481 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001482 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00001483 void *IP = 0;
1484 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1485 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001486 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00001487 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001488 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001489 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00001490 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001491 AllNodes.push_back(N);
1492 return SDOperand(N, 0);
1493}
1494
1495SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00001496 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001497 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001498 SDOperand Ops[] = { N1, N2, N3, N4 };
1499 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001500}
1501
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001502SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1503 SDOperand N1, SDOperand N2, SDOperand N3,
1504 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001505 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1506 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001507}
1508
Evan Cheng7038daf2005-12-10 00:37:58 +00001509SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1510 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00001511 const Value *SV, int SVOffset,
1512 bool isVolatile) {
1513 // FIXME: Alignment == 1 for now.
1514 unsigned Alignment = 1;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001515 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001516 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001517 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001518 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001519 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001520 ID.AddInteger(ISD::UNINDEXED);
1521 ID.AddInteger(ISD::NON_EXTLOAD);
1522 ID.AddInteger(VT);
1523 ID.AddPointer(SV);
1524 ID.AddInteger(SVOffset);
1525 ID.AddInteger(Alignment);
1526 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001527 void *IP = 0;
1528 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1529 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001530 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001531 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1532 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00001533 CSEMap.InsertNode(N, IP);
1534 AllNodes.push_back(N);
1535 return SDOperand(N, 0);
1536}
1537
1538SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00001539 SDOperand Chain, SDOperand Ptr,
1540 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00001541 int SVOffset, MVT::ValueType EVT,
1542 bool isVolatile) {
1543 // If they are asking for an extending load from/to the same thing, return a
1544 // normal load.
1545 if (VT == EVT)
1546 ExtType = ISD::NON_EXTLOAD;
1547
1548 if (MVT::isVector(VT))
1549 assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1550 else
1551 assert(EVT < VT && "Should only be an extending load, not truncating!");
1552 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1553 "Cannot sign/zero extend a FP/Vector load!");
1554 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1555 "Cannot convert from FP to Int or Int -> FP!");
1556
1557 // FIXME: Alignment == 1 for now.
1558 unsigned Alignment = 1;
1559 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001560 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00001561 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001562 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001563 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00001564 ID.AddInteger(ISD::UNINDEXED);
1565 ID.AddInteger(ExtType);
1566 ID.AddInteger(EVT);
1567 ID.AddPointer(SV);
1568 ID.AddInteger(SVOffset);
1569 ID.AddInteger(Alignment);
1570 ID.AddInteger(isVolatile);
1571 void *IP = 0;
1572 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1573 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001574 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001575 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00001576 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00001577 AllNodes.push_back(N);
1578 return SDOperand(N, 0);
1579}
1580
Evan Cheng144d8f02006-11-09 17:55:04 +00001581SDOperand
1582SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1583 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00001584 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00001585 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1586 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00001587 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00001588 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00001589 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00001590 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001591 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00001592 ID.AddInteger(AM);
1593 ID.AddInteger(LD->getExtensionType());
1594 ID.AddInteger(LD->getLoadedVT());
1595 ID.AddPointer(LD->getSrcValue());
1596 ID.AddInteger(LD->getSrcValueOffset());
1597 ID.AddInteger(LD->getAlignment());
1598 ID.AddInteger(LD->isVolatile());
1599 void *IP = 0;
1600 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1601 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001602 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00001603 LD->getExtensionType(), LD->getLoadedVT(),
1604 LD->getSrcValue(), LD->getSrcValueOffset(),
1605 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00001606 CSEMap.InsertNode(N, IP);
1607 AllNodes.push_back(N);
1608 return SDOperand(N, 0);
1609}
1610
Evan Cheng7038daf2005-12-10 00:37:58 +00001611SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1612 SDOperand Chain, SDOperand Ptr,
1613 SDOperand SV) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001614 SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32),
1615 getValueType(EVT) };
Chris Lattnerbe384162006-08-16 22:57:46 +00001616 return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
Evan Cheng7038daf2005-12-10 00:37:58 +00001617}
1618
Jeff Cohend41b30d2006-11-05 19:31:28 +00001619SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001620 SDOperand Ptr, const Value *SV, int SVOffset,
1621 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001622 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001623
1624 // FIXME: Alignment == 1 for now.
1625 unsigned Alignment = 1;
Evan Chengad071e12006-10-05 22:57:11 +00001626 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001627 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001628 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001629 FoldingSetNodeID ID;
1630 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001631 ID.AddInteger(ISD::UNINDEXED);
1632 ID.AddInteger(false);
1633 ID.AddInteger(VT);
1634 ID.AddPointer(SV);
1635 ID.AddInteger(SVOffset);
1636 ID.AddInteger(Alignment);
1637 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001638 void *IP = 0;
1639 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1640 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001641 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001642 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001643 CSEMap.InsertNode(N, IP);
1644 AllNodes.push_back(N);
1645 return SDOperand(N, 0);
1646}
1647
Jeff Cohend41b30d2006-11-05 19:31:28 +00001648SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001649 SDOperand Ptr, const Value *SV,
1650 int SVOffset, MVT::ValueType SVT,
1651 bool isVolatile) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00001652 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001653 bool isTrunc = VT != SVT;
1654
1655 assert(VT > SVT && "Not a truncation?");
1656 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1657 "Can't do FP-INT conversion!");
1658
1659 // FIXME: Alignment == 1 for now.
1660 unsigned Alignment = 1;
1661 SDVTList VTs = getVTList(MVT::Other);
1662 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00001663 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00001664 FoldingSetNodeID ID;
1665 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001666 ID.AddInteger(ISD::UNINDEXED);
1667 ID.AddInteger(isTrunc);
1668 ID.AddInteger(SVT);
1669 ID.AddPointer(SV);
1670 ID.AddInteger(SVOffset);
1671 ID.AddInteger(Alignment);
1672 ID.AddInteger(isVolatile);
1673 void *IP = 0;
1674 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1675 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001676 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001677 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00001678 CSEMap.InsertNode(N, IP);
1679 AllNodes.push_back(N);
1680 return SDOperand(N, 0);
1681}
1682
Evan Cheng144d8f02006-11-09 17:55:04 +00001683SDOperand
1684SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1685 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00001686 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1687 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1688 "Store is already a indexed store!");
1689 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1690 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1691 FoldingSetNodeID ID;
1692 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1693 ID.AddInteger(AM);
1694 ID.AddInteger(ST->isTruncatingStore());
1695 ID.AddInteger(ST->getStoredVT());
1696 ID.AddPointer(ST->getSrcValue());
1697 ID.AddInteger(ST->getSrcValueOffset());
1698 ID.AddInteger(ST->getAlignment());
1699 ID.AddInteger(ST->isVolatile());
1700 void *IP = 0;
1701 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1702 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001703 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00001704 ST->isTruncatingStore(), ST->getStoredVT(),
1705 ST->getSrcValue(), ST->getSrcValueOffset(),
1706 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00001707 CSEMap.InsertNode(N, IP);
1708 AllNodes.push_back(N);
1709 return SDOperand(N, 0);
1710}
1711
Nate Begemanacc398c2006-01-25 18:21:52 +00001712SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1713 SDOperand Chain, SDOperand Ptr,
1714 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001715 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00001716 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00001717}
1718
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001719SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001720 const SDOperand *Ops, unsigned NumOps) {
1721 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001722 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00001723 case 1: return getNode(Opcode, VT, Ops[0]);
1724 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1725 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00001726 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001727 }
Chris Lattnerde202b32005-11-09 23:47:37 +00001728
Chris Lattneref847df2005-04-09 03:27:28 +00001729 switch (Opcode) {
1730 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00001731 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001732 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001733 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1734 "LHS and RHS of condition must have same type!");
1735 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1736 "True and False arms of SelectCC must have same type!");
1737 assert(Ops[2].getValueType() == VT &&
1738 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001739 break;
1740 }
1741 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001742 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001743 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1744 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00001745 break;
1746 }
Chris Lattneref847df2005-04-09 03:27:28 +00001747 }
1748
Chris Lattner385328c2005-05-14 07:42:29 +00001749 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00001750 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001751 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001752 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001753 FoldingSetNodeID ID;
1754 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001755 void *IP = 0;
1756 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1757 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00001758 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001759 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001760 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00001761 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001762 }
Chris Lattneref847df2005-04-09 03:27:28 +00001763 AllNodes.push_back(N);
1764 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001765}
1766
Chris Lattner89c34632005-05-14 06:20:26 +00001767SDOperand SelectionDAG::getNode(unsigned Opcode,
1768 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001769 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001770 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1771 Ops, NumOps);
1772}
1773
1774SDOperand SelectionDAG::getNode(unsigned Opcode,
1775 const MVT::ValueType *VTs, unsigned NumVTs,
1776 const SDOperand *Ops, unsigned NumOps) {
1777 if (NumVTs == 1)
1778 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00001779 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1780}
1781
1782SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1783 const SDOperand *Ops, unsigned NumOps) {
1784 if (VTList.NumVTs == 1)
1785 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00001786
Chris Lattner5f056bf2005-07-10 01:55:33 +00001787 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00001788 // FIXME: figure out how to safely handle things like
1789 // int foo(int x) { return 1 << (x & 255); }
1790 // int bar() { return foo(256); }
1791#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00001792 case ISD::SRA_PARTS:
1793 case ISD::SRL_PARTS:
1794 case ISD::SHL_PARTS:
1795 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00001796 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00001797 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1798 else if (N3.getOpcode() == ISD::AND)
1799 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1800 // If the and is only masking out bits that cannot effect the shift,
1801 // eliminate the and.
1802 unsigned NumBits = MVT::getSizeInBits(VT)*2;
1803 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1804 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1805 }
1806 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00001807#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00001808 }
Chris Lattner89c34632005-05-14 06:20:26 +00001809
Chris Lattner43247a12005-08-25 19:12:10 +00001810 // Memoize the node unless it returns a flag.
1811 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00001812 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00001813 FoldingSetNodeID ID;
1814 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001815 void *IP = 0;
1816 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1817 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001818 if (NumOps == 1)
1819 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1820 else if (NumOps == 2)
1821 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1822 else if (NumOps == 3)
1823 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1824 else
1825 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00001826 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001827 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001828 if (NumOps == 1)
1829 N = new UnarySDNode(Opcode, VTList, Ops[0]);
1830 else if (NumOps == 2)
1831 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1832 else if (NumOps == 3)
1833 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1834 else
1835 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00001836 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00001837 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00001838 return SDOperand(N, 0);
1839}
1840
Chris Lattner70046e92006-08-15 17:46:01 +00001841SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1842 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00001843}
1844
Chris Lattner70046e92006-08-15 17:46:01 +00001845SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00001846 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1847 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00001848 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00001849 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001850 }
1851 std::vector<MVT::ValueType> V;
1852 V.push_back(VT1);
1853 V.push_back(VT2);
1854 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001855 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00001856}
Chris Lattner70046e92006-08-15 17:46:01 +00001857SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1858 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001859 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00001860 E = VTList.end(); I != E; ++I) {
1861 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1862 (*I)[2] == VT3)
1863 return makeVTList(&(*I)[0], 3);
1864 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001865 std::vector<MVT::ValueType> V;
1866 V.push_back(VT1);
1867 V.push_back(VT2);
1868 V.push_back(VT3);
1869 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00001870 return makeVTList(&(*VTList.begin())[0], 3);
1871}
1872
1873SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1874 switch (NumVTs) {
1875 case 0: assert(0 && "Cannot have nodes without results!");
1876 case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1877 case 2: return getVTList(VTs[0], VTs[1]);
1878 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1879 default: break;
1880 }
1881
1882 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1883 E = VTList.end(); I != E; ++I) {
1884 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1885
1886 bool NoMatch = false;
1887 for (unsigned i = 2; i != NumVTs; ++i)
1888 if (VTs[i] != (*I)[i]) {
1889 NoMatch = true;
1890 break;
1891 }
1892 if (!NoMatch)
1893 return makeVTList(&*I->begin(), NumVTs);
1894 }
1895
1896 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1897 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00001898}
1899
1900
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001901/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1902/// specified operands. If the resultant node already exists in the DAG,
1903/// this does not modify the specified node, instead it returns the node that
1904/// already exists. If the resultant node does not exist in the DAG, the
1905/// input node is returned. As a degenerate case, if you specify the same
1906/// input operands as the node already has, the input node is returned.
1907SDOperand SelectionDAG::
1908UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1909 SDNode *N = InN.Val;
1910 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1911
1912 // Check to see if there is no change.
1913 if (Op == N->getOperand(0)) return InN;
1914
1915 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001916 void *InsertPos = 0;
1917 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1918 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001919
1920 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001921 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001922 RemoveNodeFromCSEMaps(N);
1923
1924 // Now we update the operands.
1925 N->OperandList[0].Val->removeUser(N);
1926 Op.Val->addUser(N);
1927 N->OperandList[0] = Op;
1928
1929 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001930 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001931 return InN;
1932}
1933
1934SDOperand SelectionDAG::
1935UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1936 SDNode *N = InN.Val;
1937 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1938
1939 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001940 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1941 return InN; // No operands changed, just return the input node.
1942
1943 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00001944 void *InsertPos = 0;
1945 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1946 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001947
1948 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00001949 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001950 RemoveNodeFromCSEMaps(N);
1951
1952 // Now we update the operands.
1953 if (N->OperandList[0] != Op1) {
1954 N->OperandList[0].Val->removeUser(N);
1955 Op1.Val->addUser(N);
1956 N->OperandList[0] = Op1;
1957 }
1958 if (N->OperandList[1] != Op2) {
1959 N->OperandList[1].Val->removeUser(N);
1960 Op2.Val->addUser(N);
1961 N->OperandList[1] = Op2;
1962 }
1963
1964 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00001965 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001966 return InN;
1967}
1968
1969SDOperand SelectionDAG::
1970UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001971 SDOperand Ops[] = { Op1, Op2, Op3 };
1972 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001973}
1974
1975SDOperand SelectionDAG::
1976UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1977 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001978 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
1979 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001980}
1981
1982SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00001983UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
1984 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001985 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
1986 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00001987}
1988
1989
1990SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001991UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001992 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001993 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001994 "Update with wrong number of operands");
1995
1996 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00001997 bool AnyChange = false;
1998 for (unsigned i = 0; i != NumOps; ++i) {
1999 if (Ops[i] != N->getOperand(i)) {
2000 AnyChange = true;
2001 break;
2002 }
2003 }
2004
2005 // No operands changed, just return the input node.
2006 if (!AnyChange) return InN;
2007
2008 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002009 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002010 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002011 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002012
2013 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002014 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002015 RemoveNodeFromCSEMaps(N);
2016
2017 // Now we update the operands.
2018 for (unsigned i = 0; i != NumOps; ++i) {
2019 if (N->OperandList[i] != Ops[i]) {
2020 N->OperandList[i].Val->removeUser(N);
2021 Ops[i].Val->addUser(N);
2022 N->OperandList[i] = Ops[i];
2023 }
2024 }
2025
2026 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002027 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002028 return InN;
2029}
2030
2031
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002032/// MorphNodeTo - This frees the operands of the current node, resets the
2033/// opcode, types, and operands to the specified value. This should only be
2034/// used by the SelectionDAG class.
2035void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2036 const SDOperand *Ops, unsigned NumOps) {
2037 NodeType = Opc;
2038 ValueList = L.VTs;
2039 NumValues = L.NumVTs;
2040
2041 // Clear the operands list, updating used nodes to remove this from their
2042 // use list.
2043 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2044 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002045
2046 // If NumOps is larger than the # of operands we currently have, reallocate
2047 // the operand list.
2048 if (NumOps > NumOperands) {
2049 if (OperandsNeedDelete)
2050 delete [] OperandList;
2051 OperandList = new SDOperand[NumOps];
2052 OperandsNeedDelete = true;
2053 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002054
2055 // Assign the new operands.
2056 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002057
2058 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2059 OperandList[i] = Ops[i];
2060 SDNode *N = OperandList[i].Val;
2061 N->Uses.push_back(this);
2062 }
2063}
Chris Lattner149c58c2005-08-16 18:17:10 +00002064
2065/// SelectNodeTo - These are used for target selectors to *mutate* the
2066/// specified node to have the specified return type, Target opcode, and
2067/// operands. Note that target opcodes are stored as
2068/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002069///
2070/// Note that SelectNodeTo returns the resultant node. If there is already a
2071/// node of the specified opcode and operands, it returns that node instead of
2072/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002073SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2074 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002075 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002076 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002077 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002078 void *IP = 0;
2079 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002080 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002081
Chris Lattner7651fa42005-08-24 23:00:29 +00002082 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002083
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002084 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002085
Chris Lattner4a283e92006-08-11 18:38:11 +00002086 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002087 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002088}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002089
Evan Cheng95514ba2006-08-26 08:00:10 +00002090SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2091 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002092 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002093 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002094 SDOperand Ops[] = { Op1 };
2095
Jim Laskey583bd472006-10-27 23:46:08 +00002096 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002097 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002098 void *IP = 0;
2099 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002100 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002101
Chris Lattner149c58c2005-08-16 18:17:10 +00002102 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002103 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002104 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002105 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002106}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002107
Evan Cheng95514ba2006-08-26 08:00:10 +00002108SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2109 MVT::ValueType VT, SDOperand Op1,
2110 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002111 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002112 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002113 SDOperand Ops[] = { Op1, Op2 };
2114
Jim Laskey583bd472006-10-27 23:46:08 +00002115 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002116 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002117 void *IP = 0;
2118 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002119 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002120
Chris Lattner149c58c2005-08-16 18:17:10 +00002121 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002122
Chris Lattner63e3f142007-02-04 07:28:00 +00002123 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002124
Chris Lattnera5682852006-08-07 23:03:03 +00002125 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002126 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002127}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002128
Evan Cheng95514ba2006-08-26 08:00:10 +00002129SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2130 MVT::ValueType VT, SDOperand Op1,
2131 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002132 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002133 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002134 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002135 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002136 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002137 void *IP = 0;
2138 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002139 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002140
Chris Lattner149c58c2005-08-16 18:17:10 +00002141 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002142
Chris Lattner63e3f142007-02-04 07:28:00 +00002143 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002144
Chris Lattnera5682852006-08-07 23:03:03 +00002145 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002146 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002147}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002148
Evan Cheng95514ba2006-08-26 08:00:10 +00002149SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002150 MVT::ValueType VT, const SDOperand *Ops,
2151 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002152 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002153 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002154 FoldingSetNodeID ID;
2155 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002156 void *IP = 0;
2157 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002158 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002159
Chris Lattner6b09a292005-08-21 18:49:33 +00002160 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002161 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002162
Chris Lattnera5682852006-08-07 23:03:03 +00002163 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002164 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002165}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002166
Evan Cheng95514ba2006-08-26 08:00:10 +00002167SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2168 MVT::ValueType VT1, MVT::ValueType VT2,
2169 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002170 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002171 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002172 SDOperand Ops[] = { Op1, Op2 };
2173 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002174 void *IP = 0;
2175 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002176 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002177
Chris Lattner0fb094f2005-11-19 01:44:53 +00002178 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002179 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002180 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002181 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002182}
2183
Evan Cheng95514ba2006-08-26 08:00:10 +00002184SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2185 MVT::ValueType VT1, MVT::ValueType VT2,
2186 SDOperand Op1, SDOperand Op2,
2187 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002188 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002189 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002190 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002191 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002192 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002193 void *IP = 0;
2194 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002195 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002196
Chris Lattner0fb094f2005-11-19 01:44:53 +00002197 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002198
Chris Lattner63e3f142007-02-04 07:28:00 +00002199 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002200 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002201 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002202}
2203
Chris Lattner0fb094f2005-11-19 01:44:53 +00002204
Evan Cheng6ae46c42006-02-09 07:15:23 +00002205/// getTargetNode - These are used for target selectors to create a new node
2206/// with specified return type(s), target opcode, and operands.
2207///
2208/// Note that getTargetNode returns the resultant node. If there is already a
2209/// node of the specified opcode and operands, it returns that node instead of
2210/// the current one.
2211SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2212 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2213}
2214SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2215 SDOperand Op1) {
2216 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2217}
2218SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2219 SDOperand Op1, SDOperand Op2) {
2220 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2221}
2222SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002223 SDOperand Op1, SDOperand Op2,
2224 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002225 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2226}
2227SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002228 const SDOperand *Ops, unsigned NumOps) {
2229 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002230}
2231SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2232 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002233 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002234 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002235}
2236SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002237 MVT::ValueType VT2, SDOperand Op1,
2238 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002239 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002240 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002241 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002242}
2243SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002244 MVT::ValueType VT2, SDOperand Op1,
2245 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002246 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002247 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002248 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002249}
Evan Cheng694481e2006-08-27 08:08:54 +00002250SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2251 MVT::ValueType VT2,
2252 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002253 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002254 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002255}
2256SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2257 MVT::ValueType VT2, MVT::ValueType VT3,
2258 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002259 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002260 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002261 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002262}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002263SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002264 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002265 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002266 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2267 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002268}
2269
Evan Cheng99157a02006-08-07 22:13:29 +00002270/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002271/// This can cause recursive merging of nodes in the DAG.
2272///
Chris Lattner8b52f212005-08-26 18:36:28 +00002273/// This version assumes From/To have a single result value.
2274///
Chris Lattner1e111c72005-09-07 05:37:01 +00002275void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2276 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002277 SDNode *From = FromN.Val, *To = ToN.Val;
2278 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2279 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002280 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002281
Chris Lattner8b8749f2005-08-17 19:00:20 +00002282 while (!From->use_empty()) {
2283 // Process users until they are all gone.
2284 SDNode *U = *From->use_begin();
2285
2286 // This node is about to morph, remove its old self from the CSE maps.
2287 RemoveNodeFromCSEMaps(U);
2288
Chris Lattner65113b22005-11-08 22:07:03 +00002289 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2290 I != E; ++I)
2291 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002292 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002293 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002294 To->addUser(U);
2295 }
2296
2297 // Now that we have modified U, add it back to the CSE maps. If it already
2298 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002299 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2300 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002301 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002302 if (Deleted) Deleted->push_back(U);
2303 DeleteNodeNotInCSEMaps(U);
2304 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002305 }
2306}
2307
2308/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2309/// This can cause recursive merging of nodes in the DAG.
2310///
2311/// This version assumes From/To have matching types and numbers of result
2312/// values.
2313///
Chris Lattner1e111c72005-09-07 05:37:01 +00002314void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2315 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002316 assert(From != To && "Cannot replace uses of with self");
2317 assert(From->getNumValues() == To->getNumValues() &&
2318 "Cannot use this version of ReplaceAllUsesWith!");
2319 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002320 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002321 return;
2322 }
2323
2324 while (!From->use_empty()) {
2325 // Process users until they are all gone.
2326 SDNode *U = *From->use_begin();
2327
2328 // This node is about to morph, remove its old self from the CSE maps.
2329 RemoveNodeFromCSEMaps(U);
2330
Chris Lattner65113b22005-11-08 22:07:03 +00002331 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2332 I != E; ++I)
2333 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00002334 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002335 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00002336 To->addUser(U);
2337 }
2338
2339 // Now that we have modified U, add it back to the CSE maps. If it already
2340 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002341 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2342 ReplaceAllUsesWith(U, Existing, Deleted);
2343 // U is now dead.
2344 if (Deleted) Deleted->push_back(U);
2345 DeleteNodeNotInCSEMaps(U);
2346 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00002347 }
2348}
2349
Chris Lattner8b52f212005-08-26 18:36:28 +00002350/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2351/// This can cause recursive merging of nodes in the DAG.
2352///
2353/// This version can replace From with any result values. To must match the
2354/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00002355void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002356 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00002357 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00002358 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00002359 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00002360 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00002361 return;
2362 }
2363
2364 while (!From->use_empty()) {
2365 // Process users until they are all gone.
2366 SDNode *U = *From->use_begin();
2367
2368 // This node is about to morph, remove its old self from the CSE maps.
2369 RemoveNodeFromCSEMaps(U);
2370
Chris Lattner65113b22005-11-08 22:07:03 +00002371 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2372 I != E; ++I)
2373 if (I->Val == From) {
2374 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00002375 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002376 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002377 ToOp.Val->addUser(U);
2378 }
2379
2380 // Now that we have modified U, add it back to the CSE maps. If it already
2381 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002382 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2383 ReplaceAllUsesWith(U, Existing, Deleted);
2384 // U is now dead.
2385 if (Deleted) Deleted->push_back(U);
2386 DeleteNodeNotInCSEMaps(U);
2387 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00002388 }
2389}
2390
Chris Lattner012f2412006-02-17 21:58:01 +00002391/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2392/// uses of other values produced by From.Val alone. The Deleted vector is
2393/// handled the same was as for ReplaceAllUsesWith.
2394void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2395 std::vector<SDNode*> &Deleted) {
2396 assert(From != To && "Cannot replace a value with itself");
2397 // Handle the simple, trivial, case efficiently.
2398 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2399 ReplaceAllUsesWith(From, To, &Deleted);
2400 return;
2401 }
2402
Chris Lattnercf5640b2007-02-04 00:14:31 +00002403 // Get all of the users of From.Val. We want these in a nice,
2404 // deterministically ordered and uniqued set, so we use a SmallSetVector.
2405 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00002406
2407 while (!Users.empty()) {
2408 // We know that this user uses some value of From. If it is the right
2409 // value, update it.
2410 SDNode *User = Users.back();
2411 Users.pop_back();
2412
2413 for (SDOperand *Op = User->OperandList,
2414 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2415 if (*Op == From) {
2416 // Okay, we know this user needs to be updated. Remove its old self
2417 // from the CSE maps.
2418 RemoveNodeFromCSEMaps(User);
2419
2420 // Update all operands that match "From".
2421 for (; Op != E; ++Op) {
2422 if (*Op == From) {
2423 From.Val->removeUser(User);
2424 *Op = To;
2425 To.Val->addUser(User);
2426 }
2427 }
2428
2429 // Now that we have modified User, add it back to the CSE maps. If it
2430 // already exists there, recursively merge the results together.
2431 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2432 unsigned NumDeleted = Deleted.size();
2433 ReplaceAllUsesWith(User, Existing, &Deleted);
2434
2435 // User is now dead.
2436 Deleted.push_back(User);
2437 DeleteNodeNotInCSEMaps(User);
2438
2439 // We have to be careful here, because ReplaceAllUsesWith could have
2440 // deleted a user of From, which means there may be dangling pointers
2441 // in the "Users" setvector. Scan over the deleted node pointers and
2442 // remove them from the setvector.
2443 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2444 Users.remove(Deleted[i]);
2445 }
2446 break; // Exit the operand scanning loop.
2447 }
2448 }
2449 }
2450}
2451
Chris Lattner7b2880c2005-08-24 22:44:39 +00002452
Evan Chenge6f35d82006-08-01 08:20:41 +00002453/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2454/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00002455unsigned SelectionDAG::AssignNodeIds() {
2456 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00002457 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2458 SDNode *N = I;
2459 N->setNodeId(Id++);
2460 }
2461 return Id;
2462}
2463
Evan Chenge6f35d82006-08-01 08:20:41 +00002464/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00002465/// based on their topological order. It returns the maximum id and a vector
2466/// of the SDNodes* in assigned order by reference.
2467unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00002468 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002469 std::vector<unsigned> InDegree(DAGSize);
2470 std::vector<SDNode*> Sources;
2471
2472 // Use a two pass approach to avoid using a std::map which is slow.
2473 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00002474 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2475 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00002476 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00002477 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00002478 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00002479 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00002480 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002481 }
2482
Evan Cheng99157a02006-08-07 22:13:29 +00002483 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00002484 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00002485 SDNode *N = Sources.back();
2486 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00002487 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00002488 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2489 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00002490 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00002491 if (Degree == 0)
2492 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00002493 }
2494 }
2495
Evan Chengc384d6c2006-08-02 22:00:34 +00002496 // Second pass, assign the actual topological order as node ids.
2497 Id = 0;
2498 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2499 TI != TE; ++TI)
2500 (*TI)->setNodeId(Id++);
2501
2502 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00002503}
2504
2505
Evan Cheng091cba12006-07-27 06:39:06 +00002506
Jim Laskey58b968b2005-08-17 20:08:02 +00002507//===----------------------------------------------------------------------===//
2508// SDNode Class
2509//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00002510
Chris Lattner917d2c92006-07-19 00:00:37 +00002511// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002512void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00002513void UnarySDNode::ANCHOR() {}
2514void BinarySDNode::ANCHOR() {}
2515void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00002516void HandleSDNode::ANCHOR() {}
2517void StringSDNode::ANCHOR() {}
2518void ConstantSDNode::ANCHOR() {}
2519void ConstantFPSDNode::ANCHOR() {}
2520void GlobalAddressSDNode::ANCHOR() {}
2521void FrameIndexSDNode::ANCHOR() {}
2522void JumpTableSDNode::ANCHOR() {}
2523void ConstantPoolSDNode::ANCHOR() {}
2524void BasicBlockSDNode::ANCHOR() {}
2525void SrcValueSDNode::ANCHOR() {}
2526void RegisterSDNode::ANCHOR() {}
2527void ExternalSymbolSDNode::ANCHOR() {}
2528void CondCodeSDNode::ANCHOR() {}
2529void VTSDNode::ANCHOR() {}
2530void LoadSDNode::ANCHOR() {}
2531void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00002532
Chris Lattner48b85922007-02-04 02:41:42 +00002533HandleSDNode::~HandleSDNode() {
2534 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002535 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00002536}
2537
2538
Jim Laskey583bd472006-10-27 23:46:08 +00002539/// Profile - Gather unique data for the node.
2540///
2541void SDNode::Profile(FoldingSetNodeID &ID) {
2542 AddNodeIDNode(ID, this);
2543}
2544
Chris Lattnera3255112005-11-08 23:30:28 +00002545/// getValueTypeList - Return a pointer to the specified value type.
2546///
2547MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2548 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2549 VTs[VT] = VT;
2550 return &VTs[VT];
2551}
Chris Lattnera5682852006-08-07 23:03:03 +00002552
Chris Lattner5c884562005-01-12 18:37:47 +00002553/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2554/// indicated value. This method ignores uses of other values defined by this
2555/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00002556bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00002557 assert(Value < getNumValues() && "Bad value!");
2558
2559 // If there is only one value, this is easy.
2560 if (getNumValues() == 1)
2561 return use_size() == NUses;
2562 if (Uses.size() < NUses) return false;
2563
Evan Cheng4ee62112006-02-05 06:29:23 +00002564 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00002565
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002566 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00002567
Chris Lattnerf83482d2006-08-16 20:59:32 +00002568 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00002569 SDNode *User = *UI;
2570 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002571 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00002572 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2573 if (User->getOperand(i) == TheValue) {
2574 if (NUses == 0)
2575 return false; // too many uses
2576 --NUses;
2577 }
2578 }
2579
2580 // Found exactly the right number of uses?
2581 return NUses == 0;
2582}
2583
2584
Evan Chenge6e97e62006-11-03 07:31:32 +00002585/// isOnlyUse - Return true if this node is the only use of N.
2586///
Evan Cheng4ee62112006-02-05 06:29:23 +00002587bool SDNode::isOnlyUse(SDNode *N) const {
2588 bool Seen = false;
2589 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2590 SDNode *User = *I;
2591 if (User == this)
2592 Seen = true;
2593 else
2594 return false;
2595 }
2596
2597 return Seen;
2598}
2599
Evan Chenge6e97e62006-11-03 07:31:32 +00002600/// isOperand - Return true if this node is an operand of N.
2601///
Evan Chengbfa284f2006-03-03 06:42:32 +00002602bool SDOperand::isOperand(SDNode *N) const {
2603 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2604 if (*this == N->getOperand(i))
2605 return true;
2606 return false;
2607}
2608
Evan Cheng80d8eaa2006-03-03 06:24:54 +00002609bool SDNode::isOperand(SDNode *N) const {
2610 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2611 if (this == N->OperandList[i].Val)
2612 return true;
2613 return false;
2614}
Evan Cheng4ee62112006-02-05 06:29:23 +00002615
Evan Chengc5fc57d2006-11-03 03:05:24 +00002616static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002617 SmallPtrSet<SDNode *, 32> &Visited) {
2618 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00002619 return;
2620
2621 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2622 SDNode *Op = N->getOperand(i).Val;
2623 if (Op == P) {
2624 found = true;
2625 return;
2626 }
2627 findPredecessor(Op, P, found, Visited);
2628 }
2629}
2630
Evan Chenge6e97e62006-11-03 07:31:32 +00002631/// isPredecessor - Return true if this node is a predecessor of N. This node
2632/// is either an operand of N or it can be reached by recursively traversing
2633/// up the operands.
2634/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00002635bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00002636 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00002637 bool found = false;
2638 findPredecessor(N, this, found, Visited);
2639 return found;
2640}
2641
Evan Chengc5484282006-10-04 00:56:09 +00002642uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2643 assert(Num < NumOperands && "Invalid child # of SDNode!");
2644 return cast<ConstantSDNode>(OperandList[Num])->getValue();
2645}
2646
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002647const char *SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002648 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002649 default:
2650 if (getOpcode() < ISD::BUILTIN_OP_END)
2651 return "<<Unknown DAG Node>>";
2652 else {
Evan Cheng72261582005-12-20 06:22:03 +00002653 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002654 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00002655 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2656 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00002657
Evan Cheng72261582005-12-20 06:22:03 +00002658 TargetLowering &TLI = G->getTargetLoweringInfo();
2659 const char *Name =
2660 TLI.getTargetNodeName(getOpcode());
2661 if (Name) return Name;
2662 }
2663
2664 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002665 }
2666
Andrew Lenharth95762122005-03-31 21:24:06 +00002667 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002668 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002669 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002670 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00002671 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00002672 case ISD::AssertSext: return "AssertSext";
2673 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002674
2675 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002676 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002677 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002678 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002679
2680 case ISD::Constant: return "Constant";
2681 case ISD::ConstantFP: return "ConstantFP";
2682 case ISD::GlobalAddress: return "GlobalAddress";
2683 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002684 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00002685 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00002686 case ISD::RETURNADDR: return "RETURNADDR";
2687 case ISD::FRAMEADDR: return "FRAMEADDR";
Jim Laskeyb180aa12007-02-21 22:53:45 +00002688 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
2689 case ISD::EHSELECTION: return "EHSELECTION";
Chris Lattner5839bf22005-08-26 17:15:30 +00002690 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002691 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00002692 case ISD::INTRINSIC_WO_CHAIN: {
2693 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2694 return Intrinsic::getName((Intrinsic::ID)IID);
2695 }
2696 case ISD::INTRINSIC_VOID:
2697 case ISD::INTRINSIC_W_CHAIN: {
2698 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00002699 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00002700 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00002701
Chris Lattnerb2827b02006-03-19 00:52:58 +00002702 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002703 case ISD::TargetConstant: return "TargetConstant";
2704 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002705 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2706 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00002707 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00002708 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002709 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00002710
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002711 case ISD::CopyToReg: return "CopyToReg";
2712 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002713 case ISD::UNDEF: return "undef";
Chris Lattnercc0aad22006-01-15 08:39:35 +00002714 case ISD::MERGE_VALUES: return "mergevalues";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002715 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00002716 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00002717 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00002718 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00002719 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00002720
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002721 // Unary operators
2722 case ISD::FABS: return "fabs";
2723 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00002724 case ISD::FSQRT: return "fsqrt";
2725 case ISD::FSIN: return "fsin";
2726 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002727 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00002728
2729 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002730 case ISD::ADD: return "add";
2731 case ISD::SUB: return "sub";
2732 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00002733 case ISD::MULHU: return "mulhu";
2734 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002735 case ISD::SDIV: return "sdiv";
2736 case ISD::UDIV: return "udiv";
2737 case ISD::SREM: return "srem";
2738 case ISD::UREM: return "urem";
2739 case ISD::AND: return "and";
2740 case ISD::OR: return "or";
2741 case ISD::XOR: return "xor";
2742 case ISD::SHL: return "shl";
2743 case ISD::SRA: return "sra";
2744 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00002745 case ISD::ROTL: return "rotl";
2746 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00002747 case ISD::FADD: return "fadd";
2748 case ISD::FSUB: return "fsub";
2749 case ISD::FMUL: return "fmul";
2750 case ISD::FDIV: return "fdiv";
2751 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00002752 case ISD::FCOPYSIGN: return "fcopysign";
Nate Begeman5fbb5d22005-11-19 00:36:38 +00002753 case ISD::VADD: return "vadd";
2754 case ISD::VSUB: return "vsub";
2755 case ISD::VMUL: return "vmul";
Chris Lattner97d23332006-04-02 02:41:18 +00002756 case ISD::VSDIV: return "vsdiv";
2757 case ISD::VUDIV: return "vudiv";
2758 case ISD::VAND: return "vand";
2759 case ISD::VOR: return "vor";
2760 case ISD::VXOR: return "vxor";
Chris Lattner0c486bd2006-03-17 19:53:59 +00002761
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002762 case ISD::SETCC: return "setcc";
2763 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00002764 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002765 case ISD::VSELECT: return "vselect";
2766 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
2767 case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt";
2768 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Chris Lattner384504c2006-03-21 20:44:12 +00002769 case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00002770 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
2771 case ISD::VBUILD_VECTOR: return "vbuild_vector";
2772 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
2773 case ISD::VVECTOR_SHUFFLE: return "vvector_shuffle";
2774 case ISD::VBIT_CONVERT: return "vbit_convert";
Chris Lattnerb6541762007-03-04 20:40:38 +00002775 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00002776 case ISD::ADDC: return "addc";
2777 case ISD::ADDE: return "adde";
2778 case ISD::SUBC: return "subc";
2779 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00002780 case ISD::SHL_PARTS: return "shl_parts";
2781 case ISD::SRA_PARTS: return "sra_parts";
2782 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002783
Chris Lattner7f644642005-04-28 21:44:03 +00002784 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002785 case ISD::SIGN_EXTEND: return "sign_extend";
2786 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00002787 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00002788 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002789 case ISD::TRUNCATE: return "truncate";
2790 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00002791 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002792 case ISD::FP_EXTEND: return "fp_extend";
2793
2794 case ISD::SINT_TO_FP: return "sint_to_fp";
2795 case ISD::UINT_TO_FP: return "uint_to_fp";
2796 case ISD::FP_TO_SINT: return "fp_to_sint";
2797 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00002798 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002799
2800 // Control flow instructions
2801 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00002802 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00002803 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002804 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00002805 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002806 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00002807 case ISD::CALLSEQ_START: return "callseq_start";
2808 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002809
2810 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00002811 case ISD::LOAD: return "load";
2812 case ISD::STORE: return "store";
2813 case ISD::VLOAD: return "vload";
Nate Begemanacc398c2006-01-25 18:21:52 +00002814 case ISD::VAARG: return "vaarg";
2815 case ISD::VACOPY: return "vacopy";
2816 case ISD::VAEND: return "vaend";
2817 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002818 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00002819 case ISD::EXTRACT_ELEMENT: return "extract_element";
2820 case ISD::BUILD_PAIR: return "build_pair";
2821 case ISD::STACKSAVE: return "stacksave";
2822 case ISD::STACKRESTORE: return "stackrestore";
2823
2824 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00002825 case ISD::MEMSET: return "memset";
2826 case ISD::MEMCPY: return "memcpy";
2827 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002828
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002829 // Bit manipulation
2830 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00002831 case ISD::CTPOP: return "ctpop";
2832 case ISD::CTTZ: return "cttz";
2833 case ISD::CTLZ: return "ctlz";
2834
Chris Lattner36ce6912005-11-29 06:21:05 +00002835 // Debug info
2836 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00002837 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00002838
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002839 case ISD::CONDCODE:
2840 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002841 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002842 case ISD::SETOEQ: return "setoeq";
2843 case ISD::SETOGT: return "setogt";
2844 case ISD::SETOGE: return "setoge";
2845 case ISD::SETOLT: return "setolt";
2846 case ISD::SETOLE: return "setole";
2847 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002848
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002849 case ISD::SETO: return "seto";
2850 case ISD::SETUO: return "setuo";
2851 case ISD::SETUEQ: return "setue";
2852 case ISD::SETUGT: return "setugt";
2853 case ISD::SETUGE: return "setuge";
2854 case ISD::SETULT: return "setult";
2855 case ISD::SETULE: return "setule";
2856 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002857
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002858 case ISD::SETEQ: return "seteq";
2859 case ISD::SETGT: return "setgt";
2860 case ISD::SETGE: return "setge";
2861 case ISD::SETLT: return "setlt";
2862 case ISD::SETLE: return "setle";
2863 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00002864 }
2865 }
2866}
Chris Lattnerc3aae252005-01-07 07:46:32 +00002867
Evan Cheng144d8f02006-11-09 17:55:04 +00002868const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002869 switch (AM) {
2870 default:
2871 return "";
2872 case ISD::PRE_INC:
2873 return "<pre-inc>";
2874 case ISD::PRE_DEC:
2875 return "<pre-dec>";
2876 case ISD::POST_INC:
2877 return "<post-inc>";
2878 case ISD::POST_DEC:
2879 return "<post-dec>";
2880 }
2881}
2882
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002883void SDNode::dump() const { dump(0); }
2884void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00002885 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002886
2887 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002888 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00002889 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00002890 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00002891 else
Bill Wendling832171c2006-12-07 20:04:42 +00002892 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002893 }
Bill Wendling832171c2006-12-07 20:04:42 +00002894 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002895
Bill Wendling832171c2006-12-07 20:04:42 +00002896 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002897 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00002898 if (i) cerr << ", ";
2899 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002900 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00002901 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002902 }
2903
2904 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002905 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002906 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002907 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002908 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00002909 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00002910 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00002911 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00002912 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00002913 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002914 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00002915 else
Bill Wendling832171c2006-12-07 20:04:42 +00002916 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002917 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002918 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00002919 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002920 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002921 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00002922 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00002923 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00002924 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00002925 else
Bill Wendling832171c2006-12-07 20:04:42 +00002926 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00002927 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00002928 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00002929 else
Bill Wendling832171c2006-12-07 20:04:42 +00002930 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00002931 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002932 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00002933 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2934 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00002935 cerr << LBB->getName() << " ";
2936 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00002937 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00002938 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00002939 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00002940 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00002941 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00002942 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002943 } else if (const ExternalSymbolSDNode *ES =
2944 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002945 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002946 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2947 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00002948 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00002949 else
Bill Wendling832171c2006-12-07 20:04:42 +00002950 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00002951 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00002952 cerr << ":" << getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002953 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
2954 bool doExt = true;
2955 switch (LD->getExtensionType()) {
2956 default: doExt = false; break;
2957 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002958 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002959 break;
2960 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002961 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002962 break;
2963 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00002964 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002965 break;
2966 }
2967 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00002968 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00002969
Evan Cheng144d8f02006-11-09 17:55:04 +00002970 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002971 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002972 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00002973 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
2974 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00002975 cerr << " <trunc "
2976 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00002977
Evan Cheng144d8f02006-11-09 17:55:04 +00002978 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00002979 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00002980 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002981 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002982}
2983
Chris Lattnerde202b32005-11-09 23:47:37 +00002984static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00002985 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2986 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002987 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002988 else
Bill Wendling832171c2006-12-07 20:04:42 +00002989 cerr << "\n" << std::string(indent+2, ' ')
2990 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00002991
Chris Lattnerea946cd2005-01-09 20:38:33 +00002992
Bill Wendling832171c2006-12-07 20:04:42 +00002993 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00002994 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00002995}
2996
Chris Lattnerc3aae252005-01-07 07:46:32 +00002997void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00002998 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00002999 std::vector<const SDNode*> Nodes;
3000 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3001 I != E; ++I)
3002 Nodes.push_back(I);
3003
Chris Lattner49d24712005-01-09 20:26:36 +00003004 std::sort(Nodes.begin(), Nodes.end());
3005
3006 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003007 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003008 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003009 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003010
Jim Laskey26f7fa72006-10-17 19:33:52 +00003011 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003012
Bill Wendling832171c2006-12-07 20:04:42 +00003013 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003014}
3015
Evan Chengd6594ae2006-09-12 21:00:35 +00003016const Type *ConstantPoolSDNode::getType() const {
3017 if (isMachineConstantPoolEntry())
3018 return Val.MachineCPVal->getType();
3019 return Val.ConstVal->getType();
3020}