blob: 9803ab87e251c0c7de827c9eeaaca9219f4734ea [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"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000016#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000018#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000022#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000023#include "llvm/Target/MRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000024#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000025#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000028#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000029#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000030#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000031#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000032#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000033#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattner0b3e5252006-08-15 19:11:05 +000036/// makeVTList - Return an instance of the SDVTList struct initialized with the
37/// specified members.
38static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
39 SDVTList Res = {VTs, NumVTs};
40 return Res;
41}
42
Jim Laskey58b968b2005-08-17 20:08:02 +000043//===----------------------------------------------------------------------===//
44// ConstantFPSDNode Class
45//===----------------------------------------------------------------------===//
46
47/// isExactlyValue - We don't rely on operator== working on double values, as
48/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
49/// As such, this method can be used to do an exact bit-for-bit comparison of
50/// two floating point values.
51bool ConstantFPSDNode::isExactlyValue(double V) const {
52 return DoubleToBits(V) == DoubleToBits(Value);
53}
54
55//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000056// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000057//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000058
Evan Chenga8df1662006-03-27 06:58:47 +000059/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000060/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000061bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000062 // Look through a bit convert.
63 if (N->getOpcode() == ISD::BIT_CONVERT)
64 N = N->getOperand(0).Val;
65
Evan Chenga8df1662006-03-27 06:58:47 +000066 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000067
68 unsigned i = 0, e = N->getNumOperands();
69
70 // Skip over all of the undef values.
71 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
72 ++i;
73
74 // Do not accept an all-undef vector.
75 if (i == e) return false;
76
77 // Do not accept build_vectors that aren't all constants or which have non-~0
78 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +000079 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +000080 if (isa<ConstantSDNode>(NotZero)) {
81 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
82 return false;
83 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +000084 MVT::ValueType VT = NotZero.getValueType();
85 if (VT== MVT::f64) {
86 if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
87 (uint64_t)-1)
88 return false;
89 } else {
90 if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
91 (uint32_t)-1)
92 return false;
93 }
Evan Chenga8df1662006-03-27 06:58:47 +000094 } else
Chris Lattner61d43992006-03-25 22:57:01 +000095 return false;
96
97 // Okay, we have at least one ~0 value, check to see if the rest match or are
98 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +000099 for (++i; i != e; ++i)
100 if (N->getOperand(i) != NotZero &&
101 N->getOperand(i).getOpcode() != ISD::UNDEF)
102 return false;
103 return true;
104}
105
106
Evan Cheng4a147842006-03-26 09:50:58 +0000107/// isBuildVectorAllZeros - Return true if the specified node is a
108/// BUILD_VECTOR where all of the elements are 0 or undef.
109bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000110 // Look through a bit convert.
111 if (N->getOpcode() == ISD::BIT_CONVERT)
112 N = N->getOperand(0).Val;
113
Evan Cheng4a147842006-03-26 09:50:58 +0000114 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000115
116 unsigned i = 0, e = N->getNumOperands();
117
118 // Skip over all of the undef values.
119 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
120 ++i;
121
122 // Do not accept an all-undef vector.
123 if (i == e) return false;
124
125 // Do not accept build_vectors that aren't all constants or which have non-~0
126 // elements.
127 SDOperand Zero = N->getOperand(i);
128 if (isa<ConstantSDNode>(Zero)) {
129 if (!cast<ConstantSDNode>(Zero)->isNullValue())
130 return false;
131 } else if (isa<ConstantFPSDNode>(Zero)) {
132 if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
133 return false;
134 } else
135 return false;
136
137 // Okay, we have at least one ~0 value, check to see if the rest match or are
138 // undefs.
139 for (++i; i != e; ++i)
140 if (N->getOperand(i) != Zero &&
141 N->getOperand(i).getOpcode() != ISD::UNDEF)
142 return false;
143 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000144}
145
Chris Lattnerc3aae252005-01-07 07:46:32 +0000146/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
147/// when given the operation for (X op Y).
148ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
149 // To perform this operation, we just need to swap the L and G bits of the
150 // operation.
151 unsigned OldL = (Operation >> 2) & 1;
152 unsigned OldG = (Operation >> 1) & 1;
153 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
154 (OldL << 1) | // New G bit
155 (OldG << 2)); // New L bit.
156}
157
158/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
159/// 'op' is a valid SetCC operation.
160ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
161 unsigned Operation = Op;
162 if (isInteger)
163 Operation ^= 7; // Flip L, G, E bits, but not U.
164 else
165 Operation ^= 15; // Flip all of the condition bits.
166 if (Operation > ISD::SETTRUE2)
167 Operation &= ~8; // Don't let N and U bits get set.
168 return ISD::CondCode(Operation);
169}
170
171
172/// isSignedOp - For an integer comparison, return 1 if the comparison is a
173/// signed operation and 2 if the result is an unsigned comparison. Return zero
174/// if the operation does not depend on the sign of the input (setne and seteq).
175static int isSignedOp(ISD::CondCode Opcode) {
176 switch (Opcode) {
177 default: assert(0 && "Illegal integer setcc operation!");
178 case ISD::SETEQ:
179 case ISD::SETNE: return 0;
180 case ISD::SETLT:
181 case ISD::SETLE:
182 case ISD::SETGT:
183 case ISD::SETGE: return 1;
184 case ISD::SETULT:
185 case ISD::SETULE:
186 case ISD::SETUGT:
187 case ISD::SETUGE: return 2;
188 }
189}
190
191/// getSetCCOrOperation - Return the result of a logical OR between different
192/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
193/// returns SETCC_INVALID if it is not possible to represent the resultant
194/// comparison.
195ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
196 bool isInteger) {
197 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
198 // Cannot fold a signed integer setcc with an unsigned integer setcc.
199 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000200
Chris Lattnerc3aae252005-01-07 07:46:32 +0000201 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000202
Chris Lattnerc3aae252005-01-07 07:46:32 +0000203 // If the N and U bits get set then the resultant comparison DOES suddenly
204 // care about orderedness, and is true when ordered.
205 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000206 Op &= ~16; // Clear the U bit if the N bit is set.
207
208 // Canonicalize illegal integer setcc's.
209 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
210 Op = ISD::SETNE;
211
Chris Lattnerc3aae252005-01-07 07:46:32 +0000212 return ISD::CondCode(Op);
213}
214
215/// getSetCCAndOperation - Return the result of a logical AND between different
216/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
217/// function returns zero if it is not possible to represent the resultant
218/// comparison.
219ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
220 bool isInteger) {
221 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
222 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000223 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000224
225 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000226 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
227
228 // Canonicalize illegal integer setcc's.
229 if (isInteger) {
230 switch (Result) {
231 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000232 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
233 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
234 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
235 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000236 }
237 }
238
239 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000240}
241
Chris Lattnerb48da392005-01-23 04:39:44 +0000242const TargetMachine &SelectionDAG::getTarget() const {
243 return TLI.getTargetMachine();
244}
245
Jim Laskey58b968b2005-08-17 20:08:02 +0000246//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000247// SDNode Profile Support
248//===----------------------------------------------------------------------===//
249
Jim Laskeydef69b92006-10-27 23:52:51 +0000250/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
251///
Jim Laskey583bd472006-10-27 23:46:08 +0000252static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
253 ID.AddInteger(OpC);
254}
255
256/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
257/// solely with their pointer.
258void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
259 ID.AddPointer(VTList.VTs);
260}
261
Jim Laskeydef69b92006-10-27 23:52:51 +0000262/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
263///
Jim Laskey583bd472006-10-27 23:46:08 +0000264static void AddNodeIDOperands(FoldingSetNodeID &ID,
265 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000266 for (; NumOps; --NumOps, ++Ops) {
267 ID.AddPointer(Ops->Val);
268 ID.AddInteger(Ops->ResNo);
269 }
Jim Laskey583bd472006-10-27 23:46:08 +0000270}
271
Jim Laskey583bd472006-10-27 23:46:08 +0000272static void AddNodeIDNode(FoldingSetNodeID &ID,
273 unsigned short OpC, SDVTList VTList,
274 const SDOperand *OpList, unsigned N) {
275 AddNodeIDOpcode(ID, OpC);
276 AddNodeIDValueTypes(ID, VTList);
277 AddNodeIDOperands(ID, OpList, N);
278}
279
Jim Laskeydef69b92006-10-27 23:52:51 +0000280/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
281/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000282static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
283 AddNodeIDOpcode(ID, N->getOpcode());
284 // Add the return value info.
285 AddNodeIDValueTypes(ID, N->getVTList());
286 // Add the operand info.
287 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
288
289 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000290 switch (N->getOpcode()) {
291 default: break; // Normal nodes don't need extra info.
292 case ISD::TargetConstant:
293 case ISD::Constant:
294 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
295 break;
296 case ISD::TargetConstantFP:
297 case ISD::ConstantFP:
298 ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
299 break;
300 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000301 case ISD::GlobalAddress:
302 case ISD::TargetGlobalTLSAddress:
303 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000304 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
305 ID.AddPointer(GA->getGlobal());
306 ID.AddInteger(GA->getOffset());
307 break;
308 }
309 case ISD::BasicBlock:
310 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
311 break;
312 case ISD::Register:
313 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
314 break;
315 case ISD::SRCVALUE: {
316 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
317 ID.AddPointer(SV->getValue());
318 ID.AddInteger(SV->getOffset());
319 break;
320 }
321 case ISD::FrameIndex:
322 case ISD::TargetFrameIndex:
323 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
324 break;
325 case ISD::JumpTable:
326 case ISD::TargetJumpTable:
327 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
328 break;
329 case ISD::ConstantPool:
330 case ISD::TargetConstantPool: {
331 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
332 ID.AddInteger(CP->getAlignment());
333 ID.AddInteger(CP->getOffset());
334 if (CP->isMachineConstantPoolEntry())
335 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
336 else
337 ID.AddPointer(CP->getConstVal());
338 break;
339 }
340 case ISD::LOAD: {
341 LoadSDNode *LD = cast<LoadSDNode>(N);
342 ID.AddInteger(LD->getAddressingMode());
343 ID.AddInteger(LD->getExtensionType());
344 ID.AddInteger(LD->getLoadedVT());
345 ID.AddPointer(LD->getSrcValue());
346 ID.AddInteger(LD->getSrcValueOffset());
347 ID.AddInteger(LD->getAlignment());
348 ID.AddInteger(LD->isVolatile());
349 break;
350 }
351 case ISD::STORE: {
352 StoreSDNode *ST = cast<StoreSDNode>(N);
353 ID.AddInteger(ST->getAddressingMode());
354 ID.AddInteger(ST->isTruncatingStore());
355 ID.AddInteger(ST->getStoredVT());
356 ID.AddPointer(ST->getSrcValue());
357 ID.AddInteger(ST->getSrcValueOffset());
358 ID.AddInteger(ST->getAlignment());
359 ID.AddInteger(ST->isVolatile());
360 break;
361 }
Jim Laskey583bd472006-10-27 23:46:08 +0000362 }
363}
364
365//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000366// SelectionDAG Class
367//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000368
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000369/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000370/// SelectionDAG.
371void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000372 // Create a dummy node (which is not added to allnodes), that adds a reference
373 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000374 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000375
Chris Lattner190a4182006-08-04 17:45:20 +0000376 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000377
Chris Lattner190a4182006-08-04 17:45:20 +0000378 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000379 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000380 if (I->use_empty())
381 DeadNodes.push_back(I);
382
383 // Process the worklist, deleting the nodes and adding their uses to the
384 // worklist.
385 while (!DeadNodes.empty()) {
386 SDNode *N = DeadNodes.back();
387 DeadNodes.pop_back();
388
389 // Take the node out of the appropriate CSE map.
390 RemoveNodeFromCSEMaps(N);
391
392 // Next, brutally remove the operand list. This is safe to do, as there are
393 // no cycles in the graph.
394 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
395 SDNode *Operand = I->Val;
396 Operand->removeUser(N);
397
398 // Now that we removed this operand, see if there are no uses of it left.
399 if (Operand->use_empty())
400 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000401 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000402 if (N->OperandsNeedDelete)
403 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000404 N->OperandList = 0;
405 N->NumOperands = 0;
406
407 // Finally, remove N itself.
408 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000409 }
410
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000411 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000412 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000413}
414
Evan Cheng130a6472006-10-12 20:34:05 +0000415void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
416 SmallVector<SDNode*, 16> DeadNodes;
417 DeadNodes.push_back(N);
418
419 // Process the worklist, deleting the nodes and adding their uses to the
420 // worklist.
421 while (!DeadNodes.empty()) {
422 SDNode *N = DeadNodes.back();
423 DeadNodes.pop_back();
424
425 // Take the node out of the appropriate CSE map.
426 RemoveNodeFromCSEMaps(N);
427
428 // Next, brutally remove the operand list. This is safe to do, as there are
429 // no cycles in the graph.
430 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
431 SDNode *Operand = I->Val;
432 Operand->removeUser(N);
433
434 // Now that we removed this operand, see if there are no uses of it left.
435 if (Operand->use_empty())
436 DeadNodes.push_back(Operand);
437 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000438 if (N->OperandsNeedDelete)
439 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000440 N->OperandList = 0;
441 N->NumOperands = 0;
442
443 // Finally, remove N itself.
444 Deleted.push_back(N);
445 AllNodes.erase(N);
446 }
447}
448
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000449void SelectionDAG::DeleteNode(SDNode *N) {
450 assert(N->use_empty() && "Cannot delete a node that is not dead!");
451
452 // First take this out of the appropriate CSE map.
453 RemoveNodeFromCSEMaps(N);
454
Chris Lattner1e111c72005-09-07 05:37:01 +0000455 // Finally, remove uses due to operands of this node, remove from the
456 // AllNodes list, and delete the node.
457 DeleteNodeNotInCSEMaps(N);
458}
459
460void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
461
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000462 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000463 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000464
465 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000466 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
467 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000468 if (N->OperandsNeedDelete)
469 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000470 N->OperandList = 0;
471 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000472
473 delete N;
474}
475
Chris Lattner149c58c2005-08-16 18:17:10 +0000476/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
477/// correspond to it. This is useful when we're about to delete or repurpose
478/// the node. We don't want future request for structurally identical nodes
479/// to return N anymore.
480void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000481 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000482 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000483 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000484 case ISD::STRING:
485 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
486 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000487 case ISD::CONDCODE:
488 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
489 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000490 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000491 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
492 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000493 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000494 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000495 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000496 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000497 Erased =
498 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000499 break;
Chris Lattner15e4b012005-07-10 00:07:11 +0000500 case ISD::VALUETYPE:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000501 Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
Chris Lattner15e4b012005-07-10 00:07:11 +0000502 ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
503 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000504 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000505 // Remove it from the CSE Map.
506 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000507 break;
508 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000509#ifndef NDEBUG
510 // Verify that the node was actually in one of the CSE maps, unless it has a
511 // flag result (which cannot be CSE'd) or is one of the special cases that are
512 // not subject to CSE.
513 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000514 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000515 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000516 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000517 assert(0 && "Node is not in map!");
518 }
519#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000520}
521
Chris Lattner8b8749f2005-08-17 19:00:20 +0000522/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
523/// has been taken out and modified in some way. If the specified node already
524/// exists in the CSE maps, do not modify the maps, but return the existing node
525/// instead. If it doesn't exist, add it and return null.
526///
527SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
528 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000529 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000530 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000531
Chris Lattner9f8cc692005-12-19 22:21:21 +0000532 // Check that remaining values produced are not flags.
533 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
534 if (N->getValueType(i) == MVT::Flag)
535 return 0; // Never CSE anything that produces a flag.
536
Chris Lattnera5682852006-08-07 23:03:03 +0000537 SDNode *New = CSEMap.GetOrInsertNode(N);
538 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000539 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000540}
541
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000542/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
543/// were replaced with those specified. If this node is never memoized,
544/// return null, otherwise return a pointer to the slot it would take. If a
545/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000546SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
547 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000548 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000549 return 0; // Never add these nodes.
550
551 // Check that remaining values produced are not flags.
552 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
553 if (N->getValueType(i) == MVT::Flag)
554 return 0; // Never CSE anything that produces a flag.
555
Chris Lattner63e3f142007-02-04 07:28:00 +0000556 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000557 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000558 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000559 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000560}
561
562/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
563/// were replaced with those specified. If this node is never memoized,
564/// return null, otherwise return a pointer to the slot it would take. If a
565/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000566SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
567 SDOperand Op1, SDOperand Op2,
568 void *&InsertPos) {
569 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
570 return 0; // Never add these nodes.
571
572 // Check that remaining values produced are not flags.
573 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
574 if (N->getValueType(i) == MVT::Flag)
575 return 0; // Never CSE anything that produces a flag.
576
Chris Lattner63e3f142007-02-04 07:28:00 +0000577 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000578 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000579 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000580 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
581}
582
583
584/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
585/// were replaced with those specified. If this node is never memoized,
586/// return null, otherwise return a pointer to the slot it would take. If a
587/// node already exists with these operands, the slot will be non-null.
588SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000589 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000590 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000591 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000592 return 0; // Never add these nodes.
593
594 // Check that remaining values produced are not flags.
595 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
596 if (N->getValueType(i) == MVT::Flag)
597 return 0; // Never CSE anything that produces a flag.
598
Jim Laskey583bd472006-10-27 23:46:08 +0000599 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000600 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000601
Evan Cheng9629aba2006-10-11 01:47:58 +0000602 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
603 ID.AddInteger(LD->getAddressingMode());
604 ID.AddInteger(LD->getExtensionType());
Evan Cheng2e49f092006-10-11 07:10:22 +0000605 ID.AddInteger(LD->getLoadedVT());
Evan Cheng9629aba2006-10-11 01:47:58 +0000606 ID.AddPointer(LD->getSrcValue());
607 ID.AddInteger(LD->getSrcValueOffset());
608 ID.AddInteger(LD->getAlignment());
609 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000610 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
611 ID.AddInteger(ST->getAddressingMode());
612 ID.AddInteger(ST->isTruncatingStore());
613 ID.AddInteger(ST->getStoredVT());
614 ID.AddPointer(ST->getSrcValue());
615 ID.AddInteger(ST->getSrcValueOffset());
616 ID.AddInteger(ST->getAlignment());
617 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000618 }
Jim Laskey583bd472006-10-27 23:46:08 +0000619
Chris Lattnera5682852006-08-07 23:03:03 +0000620 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000621}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000622
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000623
Chris Lattner78ec3112003-08-11 14:57:33 +0000624SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000625 while (!AllNodes.empty()) {
626 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000627 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000628 if (N->OperandsNeedDelete)
629 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000630 N->OperandList = 0;
631 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000632 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000633 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000634}
635
Chris Lattner0f2287b2005-04-13 02:38:18 +0000636SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000637 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000638 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000639 return getNode(ISD::AND, Op.getValueType(), Op,
640 getConstant(Imm, Op.getValueType()));
641}
642
Chris Lattner36ce6912005-11-29 06:21:05 +0000643SDOperand SelectionDAG::getString(const std::string &Val) {
644 StringSDNode *&N = StringNodes[Val];
645 if (!N) {
646 N = new StringSDNode(Val);
647 AllNodes.push_back(N);
648 }
649 return SDOperand(N, 0);
650}
651
Chris Lattner61b09412006-08-11 21:01:22 +0000652SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000653 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Chris Lattner61b09412006-08-11 21:01:22 +0000654 assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
Chris Lattner37bfbb42005-08-17 00:34:06 +0000655
Chris Lattner61b09412006-08-11 21:01:22 +0000656 // Mask out any bits that are not valid for this constant.
657 Val &= MVT::getIntVTBitMask(VT);
658
659 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000660 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000661 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000662 ID.AddInteger(Val);
663 void *IP = 0;
664 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
665 return SDOperand(E, 0);
666 SDNode *N = new ConstantSDNode(isT, Val, VT);
667 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000668 AllNodes.push_back(N);
669 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +0000670}
671
Chris Lattner61b09412006-08-11 21:01:22 +0000672
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000673SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
674 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000675 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dan Gohman7f321562007-06-25 16:23:39 +0000676 MVT::ValueType EltVT =
677 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
678 if (EltVT == MVT::f32)
Chris Lattnerc3aae252005-01-07 07:46:32 +0000679 Val = (float)Val; // Mask out extra precision.
680
Chris Lattnerd8658612005-02-17 20:17:32 +0000681 // Do the map lookup using the actual bit pattern for the floating point
682 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
683 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000684 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000685 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000686 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000687 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000688 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000689 SDNode *N = NULL;
690 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
691 if (!MVT::isVector(VT))
692 return SDOperand(N, 0);
693 if (!N) {
694 N = new ConstantFPSDNode(isTarget, Val, EltVT);
695 CSEMap.InsertNode(N, IP);
696 AllNodes.push_back(N);
697 }
698
Dan Gohman7f321562007-06-25 16:23:39 +0000699 SDOperand Result(N, 0);
700 if (MVT::isVector(VT)) {
701 SmallVector<SDOperand, 8> Ops;
702 Ops.assign(MVT::getVectorNumElements(VT), Result);
703 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
704 }
705 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000706}
707
Chris Lattnerc3aae252005-01-07 07:46:32 +0000708SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000709 MVT::ValueType VT, int Offset,
710 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000711 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
712 unsigned Opc;
713 if (GVar && GVar->isThreadLocal())
714 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
715 else
716 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000717 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000718 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000719 ID.AddPointer(GV);
720 ID.AddInteger(Offset);
721 void *IP = 0;
722 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
723 return SDOperand(E, 0);
724 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
725 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000726 AllNodes.push_back(N);
727 return SDOperand(N, 0);
728}
729
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000730SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
731 bool isTarget) {
732 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000733 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000734 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000735 ID.AddInteger(FI);
736 void *IP = 0;
737 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
738 return SDOperand(E, 0);
739 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
740 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000741 AllNodes.push_back(N);
742 return SDOperand(N, 0);
743}
744
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000745SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
746 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000747 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000748 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000749 ID.AddInteger(JTI);
750 void *IP = 0;
751 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
752 return SDOperand(E, 0);
753 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
754 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000755 AllNodes.push_back(N);
756 return SDOperand(N, 0);
757}
758
Evan Chengb8973bd2006-01-31 22:23:14 +0000759SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000760 unsigned Alignment, int Offset,
761 bool isTarget) {
762 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000763 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000764 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000765 ID.AddInteger(Alignment);
766 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000767 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000768 void *IP = 0;
769 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
770 return SDOperand(E, 0);
771 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
772 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000773 AllNodes.push_back(N);
774 return SDOperand(N, 0);
775}
776
Chris Lattnerc3aae252005-01-07 07:46:32 +0000777
Evan Chengd6594ae2006-09-12 21:00:35 +0000778SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
779 MVT::ValueType VT,
780 unsigned Alignment, int Offset,
781 bool isTarget) {
782 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000783 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000784 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000785 ID.AddInteger(Alignment);
786 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000787 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000788 void *IP = 0;
789 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
790 return SDOperand(E, 0);
791 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
792 CSEMap.InsertNode(N, IP);
793 AllNodes.push_back(N);
794 return SDOperand(N, 0);
795}
796
797
Chris Lattnerc3aae252005-01-07 07:46:32 +0000798SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000799 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000800 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000801 ID.AddPointer(MBB);
802 void *IP = 0;
803 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
804 return SDOperand(E, 0);
805 SDNode *N = new BasicBlockSDNode(MBB);
806 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000807 AllNodes.push_back(N);
808 return SDOperand(N, 0);
809}
810
Chris Lattner15e4b012005-07-10 00:07:11 +0000811SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
812 if ((unsigned)VT >= ValueTypeNodes.size())
813 ValueTypeNodes.resize(VT+1);
814 if (ValueTypeNodes[VT] == 0) {
815 ValueTypeNodes[VT] = new VTSDNode(VT);
816 AllNodes.push_back(ValueTypeNodes[VT]);
817 }
818
819 return SDOperand(ValueTypeNodes[VT], 0);
820}
821
Chris Lattnerc3aae252005-01-07 07:46:32 +0000822SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
823 SDNode *&N = ExternalSymbols[Sym];
824 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000825 N = new ExternalSymbolSDNode(false, Sym, VT);
826 AllNodes.push_back(N);
827 return SDOperand(N, 0);
828}
829
Chris Lattner809ec112006-01-28 10:09:25 +0000830SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
831 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000832 SDNode *&N = TargetExternalSymbols[Sym];
833 if (N) return SDOperand(N, 0);
834 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000835 AllNodes.push_back(N);
836 return SDOperand(N, 0);
837}
838
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000839SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
840 if ((unsigned)Cond >= CondCodeNodes.size())
841 CondCodeNodes.resize(Cond+1);
842
Chris Lattner079a27a2005-08-09 20:40:02 +0000843 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000844 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000845 AllNodes.push_back(CondCodeNodes[Cond]);
846 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000847 return SDOperand(CondCodeNodes[Cond], 0);
848}
849
Chris Lattner0fdd7682005-08-30 22:38:38 +0000850SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000851 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000852 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000853 ID.AddInteger(RegNo);
854 void *IP = 0;
855 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
856 return SDOperand(E, 0);
857 SDNode *N = new RegisterSDNode(RegNo, VT);
858 CSEMap.InsertNode(N, IP);
859 AllNodes.push_back(N);
860 return SDOperand(N, 0);
861}
862
863SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
864 assert((!V || isa<PointerType>(V->getType())) &&
865 "SrcValue is not a pointer?");
866
Jim Laskey583bd472006-10-27 23:46:08 +0000867 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000868 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000869 ID.AddPointer(V);
870 ID.AddInteger(Offset);
871 void *IP = 0;
872 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
873 return SDOperand(E, 0);
874 SDNode *N = new SrcValueSDNode(V, Offset);
875 CSEMap.InsertNode(N, IP);
876 AllNodes.push_back(N);
877 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000878}
879
Chris Lattner51dabfb2006-10-14 00:41:01 +0000880SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
881 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000882 // These setcc operations always fold.
883 switch (Cond) {
884 default: break;
885 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000886 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000887 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000888 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000889
890 case ISD::SETOEQ:
891 case ISD::SETOGT:
892 case ISD::SETOGE:
893 case ISD::SETOLT:
894 case ISD::SETOLE:
895 case ISD::SETONE:
896 case ISD::SETO:
897 case ISD::SETUO:
898 case ISD::SETUEQ:
899 case ISD::SETUNE:
900 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
901 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000902 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000903
Chris Lattner67255a12005-04-07 18:14:58 +0000904 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
905 uint64_t C2 = N2C->getValue();
906 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
907 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000908
Chris Lattnerc3aae252005-01-07 07:46:32 +0000909 // Sign extend the operands if required
910 if (ISD::isSignedIntSetCC(Cond)) {
911 C1 = N1C->getSignExtended();
912 C2 = N2C->getSignExtended();
913 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000914
Chris Lattnerc3aae252005-01-07 07:46:32 +0000915 switch (Cond) {
916 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000917 case ISD::SETEQ: return getConstant(C1 == C2, VT);
918 case ISD::SETNE: return getConstant(C1 != C2, VT);
919 case ISD::SETULT: return getConstant(C1 < C2, VT);
920 case ISD::SETUGT: return getConstant(C1 > C2, VT);
921 case ISD::SETULE: return getConstant(C1 <= C2, VT);
922 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
923 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
924 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
925 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
926 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000927 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000928 }
Chris Lattner67255a12005-04-07 18:14:58 +0000929 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000930 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
931 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
932 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000933
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934 switch (Cond) {
935 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000936 case ISD::SETEQ: return getConstant(C1 == C2, VT);
937 case ISD::SETNE: return getConstant(C1 != C2, VT);
938 case ISD::SETLT: return getConstant(C1 < C2, VT);
939 case ISD::SETGT: return getConstant(C1 > C2, VT);
940 case ISD::SETLE: return getConstant(C1 <= C2, VT);
941 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000942 }
943 } else {
944 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000945 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000946 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000947
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000948 // Could not fold it.
949 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000950}
951
Dan Gohmanea859be2007-06-22 14:59:07 +0000952/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
953/// this predicate to simplify operations downstream. Mask is known to be zero
954/// for bits that V cannot have.
955bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
956 unsigned Depth) const {
957 // The masks are not wide enough to represent this type! Should use APInt.
958 if (Op.getValueType() == MVT::i128)
959 return false;
960
961 uint64_t KnownZero, KnownOne;
962 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
963 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
964 return (KnownZero & Mask) == Mask;
965}
966
967/// ComputeMaskedBits - Determine which of the bits specified in Mask are
968/// known to be either zero or one and return them in the KnownZero/KnownOne
969/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
970/// processing.
971void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
972 uint64_t &KnownZero, uint64_t &KnownOne,
973 unsigned Depth) const {
974 KnownZero = KnownOne = 0; // Don't know anything.
975 if (Depth == 6 || Mask == 0)
976 return; // Limit search depth.
977
978 // The masks are not wide enough to represent this type! Should use APInt.
979 if (Op.getValueType() == MVT::i128)
980 return;
981
982 uint64_t KnownZero2, KnownOne2;
983
984 switch (Op.getOpcode()) {
985 case ISD::Constant:
986 // We know all of the bits for a constant!
987 KnownOne = cast<ConstantSDNode>(Op)->getValue() & Mask;
988 KnownZero = ~KnownOne & Mask;
989 return;
990 case ISD::AND:
991 // If either the LHS or the RHS are Zero, the result is zero.
992 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
993 Mask &= ~KnownZero;
994 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
995 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
996 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
997
998 // Output known-1 bits are only known if set in both the LHS & RHS.
999 KnownOne &= KnownOne2;
1000 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1001 KnownZero |= KnownZero2;
1002 return;
1003 case ISD::OR:
1004 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1005 Mask &= ~KnownOne;
1006 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1007 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1008 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1009
1010 // Output known-0 bits are only known if clear in both the LHS & RHS.
1011 KnownZero &= KnownZero2;
1012 // Output known-1 are known to be set if set in either the LHS | RHS.
1013 KnownOne |= KnownOne2;
1014 return;
1015 case ISD::XOR: {
1016 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1017 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1018 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1019 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1020
1021 // Output known-0 bits are known if clear or set in both the LHS & RHS.
1022 uint64_t KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1023 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1024 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1025 KnownZero = KnownZeroOut;
1026 return;
1027 }
1028 case ISD::SELECT:
1029 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1030 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1031 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1032 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1033
1034 // Only known if known in both the LHS and RHS.
1035 KnownOne &= KnownOne2;
1036 KnownZero &= KnownZero2;
1037 return;
1038 case ISD::SELECT_CC:
1039 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1040 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1041 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1042 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1043
1044 // Only known if known in both the LHS and RHS.
1045 KnownOne &= KnownOne2;
1046 KnownZero &= KnownZero2;
1047 return;
1048 case ISD::SETCC:
1049 // If we know the result of a setcc has the top bits zero, use this info.
1050 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult)
1051 KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
1052 return;
1053 case ISD::SHL:
1054 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1055 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1056 ComputeMaskedBits(Op.getOperand(0), Mask >> SA->getValue(),
1057 KnownZero, KnownOne, Depth+1);
1058 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1059 KnownZero <<= SA->getValue();
1060 KnownOne <<= SA->getValue();
1061 KnownZero |= (1ULL << SA->getValue())-1; // low bits known zero.
1062 }
1063 return;
1064 case ISD::SRL:
1065 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1066 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1067 MVT::ValueType VT = Op.getValueType();
1068 unsigned ShAmt = SA->getValue();
1069
1070 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1071 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt) & TypeMask,
1072 KnownZero, KnownOne, Depth+1);
1073 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1074 KnownZero &= TypeMask;
1075 KnownOne &= TypeMask;
1076 KnownZero >>= ShAmt;
1077 KnownOne >>= ShAmt;
1078
1079 uint64_t HighBits = (1ULL << ShAmt)-1;
1080 HighBits <<= MVT::getSizeInBits(VT)-ShAmt;
1081 KnownZero |= HighBits; // High bits known zero.
1082 }
1083 return;
1084 case ISD::SRA:
1085 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1086 MVT::ValueType VT = Op.getValueType();
1087 unsigned ShAmt = SA->getValue();
1088
1089 // Compute the new bits that are at the top now.
1090 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1091
1092 uint64_t InDemandedMask = (Mask << ShAmt) & TypeMask;
1093 // If any of the demanded bits are produced by the sign extension, we also
1094 // demand the input sign bit.
1095 uint64_t HighBits = (1ULL << ShAmt)-1;
1096 HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
1097 if (HighBits & Mask)
1098 InDemandedMask |= MVT::getIntVTSignBit(VT);
1099
1100 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1101 Depth+1);
1102 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1103 KnownZero &= TypeMask;
1104 KnownOne &= TypeMask;
1105 KnownZero >>= ShAmt;
1106 KnownOne >>= ShAmt;
1107
1108 // Handle the sign bits.
1109 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1110 SignBit >>= ShAmt; // Adjust to where it is now in the mask.
1111
1112 if (KnownZero & SignBit) {
1113 KnownZero |= HighBits; // New bits are known zero.
1114 } else if (KnownOne & SignBit) {
1115 KnownOne |= HighBits; // New bits are known one.
1116 }
1117 }
1118 return;
1119 case ISD::SIGN_EXTEND_INREG: {
1120 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1121
1122 // Sign extension. Compute the demanded bits in the result that are not
1123 // present in the input.
1124 uint64_t NewBits = ~MVT::getIntVTBitMask(EVT) & Mask;
1125
1126 uint64_t InSignBit = MVT::getIntVTSignBit(EVT);
1127 int64_t InputDemandedBits = Mask & MVT::getIntVTBitMask(EVT);
1128
1129 // If the sign extended bits are demanded, we know that the sign
1130 // bit is demanded.
1131 if (NewBits)
1132 InputDemandedBits |= InSignBit;
1133
1134 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1135 KnownZero, KnownOne, Depth+1);
1136 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1137
1138 // If the sign bit of the input is known set or clear, then we know the
1139 // top bits of the result.
1140 if (KnownZero & InSignBit) { // Input sign bit known clear
1141 KnownZero |= NewBits;
1142 KnownOne &= ~NewBits;
1143 } else if (KnownOne & InSignBit) { // Input sign bit known set
1144 KnownOne |= NewBits;
1145 KnownZero &= ~NewBits;
1146 } else { // Input sign bit unknown
1147 KnownZero &= ~NewBits;
1148 KnownOne &= ~NewBits;
1149 }
1150 return;
1151 }
1152 case ISD::CTTZ:
1153 case ISD::CTLZ:
1154 case ISD::CTPOP: {
1155 MVT::ValueType VT = Op.getValueType();
1156 unsigned LowBits = Log2_32(MVT::getSizeInBits(VT))+1;
1157 KnownZero = ~((1ULL << LowBits)-1) & MVT::getIntVTBitMask(VT);
1158 KnownOne = 0;
1159 return;
1160 }
1161 case ISD::LOAD: {
1162 if (ISD::isZEXTLoad(Op.Val)) {
1163 LoadSDNode *LD = cast<LoadSDNode>(Op);
1164 MVT::ValueType VT = LD->getLoadedVT();
1165 KnownZero |= ~MVT::getIntVTBitMask(VT) & Mask;
1166 }
1167 return;
1168 }
1169 case ISD::ZERO_EXTEND: {
1170 uint64_t InMask = MVT::getIntVTBitMask(Op.getOperand(0).getValueType());
1171 uint64_t NewBits = (~InMask) & Mask;
1172 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1173 KnownOne, Depth+1);
1174 KnownZero |= NewBits & Mask;
1175 KnownOne &= ~NewBits;
1176 return;
1177 }
1178 case ISD::SIGN_EXTEND: {
1179 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1180 unsigned InBits = MVT::getSizeInBits(InVT);
1181 uint64_t InMask = MVT::getIntVTBitMask(InVT);
1182 uint64_t InSignBit = 1ULL << (InBits-1);
1183 uint64_t NewBits = (~InMask) & Mask;
1184 uint64_t InDemandedBits = Mask & InMask;
1185
1186 // If any of the sign extended bits are demanded, we know that the sign
1187 // bit is demanded.
1188 if (NewBits & Mask)
1189 InDemandedBits |= InSignBit;
1190
1191 ComputeMaskedBits(Op.getOperand(0), InDemandedBits, KnownZero,
1192 KnownOne, Depth+1);
1193 // If the sign bit is known zero or one, the top bits match.
1194 if (KnownZero & InSignBit) {
1195 KnownZero |= NewBits;
1196 KnownOne &= ~NewBits;
1197 } else if (KnownOne & InSignBit) {
1198 KnownOne |= NewBits;
1199 KnownZero &= ~NewBits;
1200 } else { // Otherwise, top bits aren't known.
1201 KnownOne &= ~NewBits;
1202 KnownZero &= ~NewBits;
1203 }
1204 return;
1205 }
1206 case ISD::ANY_EXTEND: {
1207 MVT::ValueType VT = Op.getOperand(0).getValueType();
1208 ComputeMaskedBits(Op.getOperand(0), Mask & MVT::getIntVTBitMask(VT),
1209 KnownZero, KnownOne, Depth+1);
1210 return;
1211 }
1212 case ISD::TRUNCATE: {
1213 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1214 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1215 uint64_t OutMask = MVT::getIntVTBitMask(Op.getValueType());
1216 KnownZero &= OutMask;
1217 KnownOne &= OutMask;
1218 break;
1219 }
1220 case ISD::AssertZext: {
1221 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1222 uint64_t InMask = MVT::getIntVTBitMask(VT);
1223 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1224 KnownOne, Depth+1);
1225 KnownZero |= (~InMask) & Mask;
1226 return;
1227 }
1228 case ISD::ADD: {
1229 // If either the LHS or the RHS are Zero, the result is zero.
1230 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1231 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1232 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1233 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1234
1235 // Output known-0 bits are known if clear or set in both the low clear bits
1236 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1237 // low 3 bits clear.
1238 uint64_t KnownZeroOut = std::min(CountTrailingZeros_64(~KnownZero),
1239 CountTrailingZeros_64(~KnownZero2));
1240
1241 KnownZero = (1ULL << KnownZeroOut) - 1;
1242 KnownOne = 0;
1243 return;
1244 }
1245 case ISD::SUB: {
1246 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1247 if (!CLHS) return;
1248
1249 // We know that the top bits of C-X are clear if X contains less bits
1250 // than C (i.e. no wrap-around can happen). For example, 20-X is
1251 // positive if we can prove that X is >= 0 and < 16.
1252 MVT::ValueType VT = CLHS->getValueType(0);
1253 if ((CLHS->getValue() & MVT::getIntVTSignBit(VT)) == 0) { // sign bit clear
1254 unsigned NLZ = CountLeadingZeros_64(CLHS->getValue()+1);
1255 uint64_t MaskV = (1ULL << (63-NLZ))-1; // NLZ can't be 64 with no sign bit
1256 MaskV = ~MaskV & MVT::getIntVTBitMask(VT);
1257 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1258
1259 // If all of the MaskV bits are known to be zero, then we know the output
1260 // top bits are zero, because we now know that the output is from [0-C].
1261 if ((KnownZero & MaskV) == MaskV) {
1262 unsigned NLZ2 = CountLeadingZeros_64(CLHS->getValue());
1263 KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask; // Top bits known zero.
1264 KnownOne = 0; // No one bits known.
1265 } else {
1266 KnownZero = KnownOne = 0; // Otherwise, nothing known.
1267 }
1268 }
1269 return;
1270 }
1271 default:
1272 // Allow the target to implement this method for its nodes.
1273 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1274 case ISD::INTRINSIC_WO_CHAIN:
1275 case ISD::INTRINSIC_W_CHAIN:
1276 case ISD::INTRINSIC_VOID:
1277 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1278 }
1279 return;
1280 }
1281}
1282
1283/// ComputeNumSignBits - Return the number of times the sign bit of the
1284/// register is replicated into the other bits. We know that at least 1 bit
1285/// is always equal to the sign bit (itself), but other cases can give us
1286/// information. For example, immediately after an "SRA X, 2", we know that
1287/// the top 3 bits are all equal to each other, so we return 3.
1288unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1289 MVT::ValueType VT = Op.getValueType();
1290 assert(MVT::isInteger(VT) && "Invalid VT!");
1291 unsigned VTBits = MVT::getSizeInBits(VT);
1292 unsigned Tmp, Tmp2;
1293
1294 if (Depth == 6)
1295 return 1; // Limit search depth.
1296
1297 switch (Op.getOpcode()) {
1298 default: break;
1299 case ISD::AssertSext:
1300 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1301 return VTBits-Tmp+1;
1302 case ISD::AssertZext:
1303 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1304 return VTBits-Tmp;
1305
1306 case ISD::Constant: {
1307 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1308 // If negative, invert the bits, then look at it.
1309 if (Val & MVT::getIntVTSignBit(VT))
1310 Val = ~Val;
1311
1312 // Shift the bits so they are the leading bits in the int64_t.
1313 Val <<= 64-VTBits;
1314
1315 // Return # leading zeros. We use 'min' here in case Val was zero before
1316 // shifting. We don't want to return '64' as for an i32 "0".
1317 return std::min(VTBits, CountLeadingZeros_64(Val));
1318 }
1319
1320 case ISD::SIGN_EXTEND:
1321 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1322 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1323
1324 case ISD::SIGN_EXTEND_INREG:
1325 // Max of the input and what this extends.
1326 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1327 Tmp = VTBits-Tmp+1;
1328
1329 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1330 return std::max(Tmp, Tmp2);
1331
1332 case ISD::SRA:
1333 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1334 // SRA X, C -> adds C sign bits.
1335 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1336 Tmp += C->getValue();
1337 if (Tmp > VTBits) Tmp = VTBits;
1338 }
1339 return Tmp;
1340 case ISD::SHL:
1341 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1342 // shl destroys sign bits.
1343 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1344 if (C->getValue() >= VTBits || // Bad shift.
1345 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1346 return Tmp - C->getValue();
1347 }
1348 break;
1349 case ISD::AND:
1350 case ISD::OR:
1351 case ISD::XOR: // NOT is handled here.
1352 // Logical binary ops preserve the number of sign bits.
1353 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1354 if (Tmp == 1) return 1; // Early out.
1355 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1356 return std::min(Tmp, Tmp2);
1357
1358 case ISD::SELECT:
1359 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1360 if (Tmp == 1) return 1; // Early out.
1361 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1362 return std::min(Tmp, Tmp2);
1363
1364 case ISD::SETCC:
1365 // If setcc returns 0/-1, all bits are sign bits.
1366 if (TLI.getSetCCResultContents() ==
1367 TargetLowering::ZeroOrNegativeOneSetCCResult)
1368 return VTBits;
1369 break;
1370 case ISD::ROTL:
1371 case ISD::ROTR:
1372 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1373 unsigned RotAmt = C->getValue() & (VTBits-1);
1374
1375 // Handle rotate right by N like a rotate left by 32-N.
1376 if (Op.getOpcode() == ISD::ROTR)
1377 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1378
1379 // If we aren't rotating out all of the known-in sign bits, return the
1380 // number that are left. This handles rotl(sext(x), 1) for example.
1381 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1382 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1383 }
1384 break;
1385 case ISD::ADD:
1386 // Add can have at most one carry bit. Thus we know that the output
1387 // is, at worst, one more bit than the inputs.
1388 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1389 if (Tmp == 1) return 1; // Early out.
1390
1391 // Special case decrementing a value (ADD X, -1):
1392 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1393 if (CRHS->isAllOnesValue()) {
1394 uint64_t KnownZero, KnownOne;
1395 uint64_t Mask = MVT::getIntVTBitMask(VT);
1396 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1397
1398 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1399 // sign bits set.
1400 if ((KnownZero|1) == Mask)
1401 return VTBits;
1402
1403 // If we are subtracting one from a positive number, there is no carry
1404 // out of the result.
1405 if (KnownZero & MVT::getIntVTSignBit(VT))
1406 return Tmp;
1407 }
1408
1409 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1410 if (Tmp2 == 1) return 1;
1411 return std::min(Tmp, Tmp2)-1;
1412 break;
1413
1414 case ISD::SUB:
1415 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1416 if (Tmp2 == 1) return 1;
1417
1418 // Handle NEG.
1419 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1420 if (CLHS->getValue() == 0) {
1421 uint64_t KnownZero, KnownOne;
1422 uint64_t Mask = MVT::getIntVTBitMask(VT);
1423 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1424 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1425 // sign bits set.
1426 if ((KnownZero|1) == Mask)
1427 return VTBits;
1428
1429 // If the input is known to be positive (the sign bit is known clear),
1430 // the output of the NEG has the same number of sign bits as the input.
1431 if (KnownZero & MVT::getIntVTSignBit(VT))
1432 return Tmp2;
1433
1434 // Otherwise, we treat this like a SUB.
1435 }
1436
1437 // Sub can have at most one carry bit. Thus we know that the output
1438 // is, at worst, one more bit than the inputs.
1439 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1440 if (Tmp == 1) return 1; // Early out.
1441 return std::min(Tmp, Tmp2)-1;
1442 break;
1443 case ISD::TRUNCATE:
1444 // FIXME: it's tricky to do anything useful for this, but it is an important
1445 // case for targets like X86.
1446 break;
1447 }
1448
1449 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1450 if (Op.getOpcode() == ISD::LOAD) {
1451 LoadSDNode *LD = cast<LoadSDNode>(Op);
1452 unsigned ExtType = LD->getExtensionType();
1453 switch (ExtType) {
1454 default: break;
1455 case ISD::SEXTLOAD: // '17' bits known
1456 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1457 return VTBits-Tmp+1;
1458 case ISD::ZEXTLOAD: // '16' bits known
1459 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1460 return VTBits-Tmp;
1461 }
1462 }
1463
1464 // Allow the target to implement this method for its nodes.
1465 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1466 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1467 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1468 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1469 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1470 if (NumBits > 1) return NumBits;
1471 }
1472
1473 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1474 // use this information.
1475 uint64_t KnownZero, KnownOne;
1476 uint64_t Mask = MVT::getIntVTBitMask(VT);
1477 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1478
1479 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1480 if (KnownZero & SignBit) { // SignBit is 0
1481 Mask = KnownZero;
1482 } else if (KnownOne & SignBit) { // SignBit is 1;
1483 Mask = KnownOne;
1484 } else {
1485 // Nothing known.
1486 return 1;
1487 }
1488
1489 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1490 // the number of identical bits in the top of the input value.
1491 Mask ^= ~0ULL;
1492 Mask <<= 64-VTBits;
1493 // Return # leading zeros. We use 'min' here in case Val was zero before
1494 // shifting. We don't want to return '64' as for an i32 "0".
1495 return std::min(VTBits, CountLeadingZeros_64(Mask));
1496}
1497
Chris Lattner51dabfb2006-10-14 00:41:01 +00001498
Chris Lattnerc3aae252005-01-07 07:46:32 +00001499/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001500///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001501SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001502 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001503 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001504 void *IP = 0;
1505 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1506 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001507 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001508 CSEMap.InsertNode(N, IP);
1509
1510 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001511 return SDOperand(N, 0);
1512}
1513
Chris Lattnerc3aae252005-01-07 07:46:32 +00001514SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1515 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001516 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001517 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001518 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1519 uint64_t Val = C->getValue();
1520 switch (Opcode) {
1521 default: break;
1522 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001523 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001524 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1525 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001526 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
1527 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001528 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001529 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001530 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001531 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001532 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001533 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001534 case ISD::BSWAP:
1535 switch(VT) {
1536 default: assert(0 && "Invalid bswap!"); break;
1537 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1538 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1539 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1540 }
1541 break;
1542 case ISD::CTPOP:
1543 switch(VT) {
1544 default: assert(0 && "Invalid ctpop!"); break;
1545 case MVT::i1: return getConstant(Val != 0, VT);
1546 case MVT::i8:
1547 Tmp1 = (unsigned)Val & 0xFF;
1548 return getConstant(CountPopulation_32(Tmp1), VT);
1549 case MVT::i16:
1550 Tmp1 = (unsigned)Val & 0xFFFF;
1551 return getConstant(CountPopulation_32(Tmp1), VT);
1552 case MVT::i32:
1553 return getConstant(CountPopulation_32((unsigned)Val), VT);
1554 case MVT::i64:
1555 return getConstant(CountPopulation_64(Val), VT);
1556 }
1557 case ISD::CTLZ:
1558 switch(VT) {
1559 default: assert(0 && "Invalid ctlz!"); break;
1560 case MVT::i1: return getConstant(Val == 0, VT);
1561 case MVT::i8:
1562 Tmp1 = (unsigned)Val & 0xFF;
1563 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1564 case MVT::i16:
1565 Tmp1 = (unsigned)Val & 0xFFFF;
1566 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1567 case MVT::i32:
1568 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1569 case MVT::i64:
1570 return getConstant(CountLeadingZeros_64(Val), VT);
1571 }
1572 case ISD::CTTZ:
1573 switch(VT) {
1574 default: assert(0 && "Invalid cttz!"); break;
1575 case MVT::i1: return getConstant(Val == 0, VT);
1576 case MVT::i8:
1577 Tmp1 = (unsigned)Val | 0x100;
1578 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1579 case MVT::i16:
1580 Tmp1 = (unsigned)Val | 0x10000;
1581 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1582 case MVT::i32:
1583 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1584 case MVT::i64:
1585 return getConstant(CountTrailingZeros_64(Val), VT);
1586 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001587 }
1588 }
1589
Chris Lattner94683772005-12-23 05:30:37 +00001590 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001591 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1592 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001593 case ISD::FNEG:
1594 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001595 case ISD::FABS:
1596 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001597 case ISD::FP_ROUND:
1598 case ISD::FP_EXTEND:
1599 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001600 case ISD::FP_TO_SINT:
1601 return getConstant((int64_t)C->getValue(), VT);
1602 case ISD::FP_TO_UINT:
1603 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001604 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001605 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001606 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001607 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001608 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001609 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001610 }
1611
1612 unsigned OpOpcode = Operand.Val->getOpcode();
1613 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001614 case ISD::TokenFactor:
1615 return Operand; // Factor of one node? No factor.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001616 case ISD::FP_ROUND:
1617 case ISD::FP_EXTEND:
1618 assert(MVT::isFloatingPoint(VT) &&
1619 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1620 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001621 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001622 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1623 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001624 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001625 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001626 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1627 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1628 break;
1629 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001630 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1631 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001632 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001633 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001634 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001635 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001636 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001637 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001638 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1639 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001640 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001641 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001642 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1643 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1644 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1645 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001646 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001647 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1648 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001649 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001650 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001651 if (OpOpcode == ISD::TRUNCATE)
1652 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001653 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1654 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001655 // If the source is smaller than the dest, we still need an extend.
1656 if (Operand.Val->getOperand(0).getValueType() < VT)
1657 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1658 else if (Operand.Val->getOperand(0).getValueType() > VT)
1659 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1660 else
1661 return Operand.Val->getOperand(0);
1662 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001663 break;
Chris Lattner35481892005-12-23 00:16:34 +00001664 case ISD::BIT_CONVERT:
1665 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001666 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001667 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001668 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001669 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1670 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001671 if (OpOpcode == ISD::UNDEF)
1672 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001673 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001674 case ISD::SCALAR_TO_VECTOR:
1675 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001676 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001677 "Illegal SCALAR_TO_VECTOR node!");
1678 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001679 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001680 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1681 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001682 Operand.Val->getOperand(0));
1683 if (OpOpcode == ISD::FNEG) // --X -> X
1684 return Operand.Val->getOperand(0);
1685 break;
1686 case ISD::FABS:
1687 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1688 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1689 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001690 }
1691
Chris Lattner43247a12005-08-25 19:12:10 +00001692 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001693 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001694 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001695 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001696 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001697 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001698 void *IP = 0;
1699 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1700 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001701 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001702 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001703 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001704 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001705 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001706 AllNodes.push_back(N);
1707 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001708}
1709
Chris Lattner36019aa2005-04-18 03:48:41 +00001710
1711
Chris Lattnerc3aae252005-01-07 07:46:32 +00001712SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1713 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001714#ifndef NDEBUG
1715 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001716 case ISD::TokenFactor:
1717 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1718 N2.getValueType() == MVT::Other && "Invalid token factor!");
1719 break;
Chris Lattner76365122005-01-16 02:23:22 +00001720 case ISD::AND:
1721 case ISD::OR:
1722 case ISD::XOR:
1723 case ISD::UDIV:
1724 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001725 case ISD::MULHU:
1726 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001727 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1728 // fall through
1729 case ISD::ADD:
1730 case ISD::SUB:
1731 case ISD::MUL:
1732 case ISD::SDIV:
1733 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001734 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1735 // fall through.
1736 case ISD::FADD:
1737 case ISD::FSUB:
1738 case ISD::FMUL:
1739 case ISD::FDIV:
1740 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001741 assert(N1.getValueType() == N2.getValueType() &&
1742 N1.getValueType() == VT && "Binary operator types must match!");
1743 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001744 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1745 assert(N1.getValueType() == VT &&
1746 MVT::isFloatingPoint(N1.getValueType()) &&
1747 MVT::isFloatingPoint(N2.getValueType()) &&
1748 "Invalid FCOPYSIGN!");
1749 break;
Chris Lattner76365122005-01-16 02:23:22 +00001750 case ISD::SHL:
1751 case ISD::SRA:
1752 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001753 case ISD::ROTL:
1754 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001755 assert(VT == N1.getValueType() &&
1756 "Shift operators return type must be the same as their first arg");
1757 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001758 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001759 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001760 case ISD::FP_ROUND_INREG: {
1761 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1762 assert(VT == N1.getValueType() && "Not an inreg round!");
1763 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1764 "Cannot FP_ROUND_INREG integer types");
1765 assert(EVT <= VT && "Not rounding down!");
1766 break;
1767 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001768 case ISD::AssertSext:
1769 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001770 case ISD::SIGN_EXTEND_INREG: {
1771 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1772 assert(VT == N1.getValueType() && "Not an inreg extend!");
1773 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1774 "Cannot *_EXTEND_INREG FP types");
1775 assert(EVT <= VT && "Not extending!");
1776 }
1777
Chris Lattner76365122005-01-16 02:23:22 +00001778 default: break;
1779 }
1780#endif
1781
Chris Lattnerc3aae252005-01-07 07:46:32 +00001782 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1783 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1784 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001785 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1786 int64_t Val = N1C->getValue();
1787 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1788 Val <<= 64-FromBits;
1789 Val >>= 64-FromBits;
1790 return getConstant(Val, VT);
1791 }
1792
Chris Lattnerc3aae252005-01-07 07:46:32 +00001793 if (N2C) {
1794 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1795 switch (Opcode) {
1796 case ISD::ADD: return getConstant(C1 + C2, VT);
1797 case ISD::SUB: return getConstant(C1 - C2, VT);
1798 case ISD::MUL: return getConstant(C1 * C2, VT);
1799 case ISD::UDIV:
1800 if (C2) return getConstant(C1 / C2, VT);
1801 break;
1802 case ISD::UREM :
1803 if (C2) return getConstant(C1 % C2, VT);
1804 break;
1805 case ISD::SDIV :
1806 if (C2) return getConstant(N1C->getSignExtended() /
1807 N2C->getSignExtended(), VT);
1808 break;
1809 case ISD::SREM :
1810 if (C2) return getConstant(N1C->getSignExtended() %
1811 N2C->getSignExtended(), VT);
1812 break;
1813 case ISD::AND : return getConstant(C1 & C2, VT);
1814 case ISD::OR : return getConstant(C1 | C2, VT);
1815 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001816 case ISD::SHL : return getConstant(C1 << C2, VT);
1817 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001818 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001819 case ISD::ROTL :
1820 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1821 VT);
1822 case ISD::ROTR :
1823 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1824 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001825 default: break;
1826 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001827 } else { // Cannonicalize constant to RHS if commutative
1828 if (isCommutativeBinOp(Opcode)) {
1829 std::swap(N1C, N2C);
1830 std::swap(N1, N2);
1831 }
1832 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001833 }
1834
1835 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1836 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001837 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001838 if (N2CFP) {
1839 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1840 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001841 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1842 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1843 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1844 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001845 if (C2) return getConstantFP(C1 / C2, VT);
1846 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001847 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001848 if (C2) return getConstantFP(fmod(C1, C2), VT);
1849 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001850 case ISD::FCOPYSIGN: {
1851 union {
1852 double F;
1853 uint64_t I;
1854 } u1;
Chris Lattner3c232c82006-03-05 23:57:58 +00001855 u1.F = C1;
Chris Lattner964dd862007-04-25 00:00:45 +00001856 if (int64_t(DoubleToBits(C2)) < 0) // Sign bit of RHS set?
Chris Lattner3c232c82006-03-05 23:57:58 +00001857 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1858 else
1859 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1860 return getConstantFP(u1.F, VT);
1861 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001862 default: break;
1863 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001864 } else { // Cannonicalize constant to RHS if commutative
1865 if (isCommutativeBinOp(Opcode)) {
1866 std::swap(N1CFP, N2CFP);
1867 std::swap(N1, N2);
1868 }
1869 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001870 }
Chris Lattner62b57722006-04-20 05:39:12 +00001871
1872 // Canonicalize an UNDEF to the RHS, even over a constant.
1873 if (N1.getOpcode() == ISD::UNDEF) {
1874 if (isCommutativeBinOp(Opcode)) {
1875 std::swap(N1, N2);
1876 } else {
1877 switch (Opcode) {
1878 case ISD::FP_ROUND_INREG:
1879 case ISD::SIGN_EXTEND_INREG:
1880 case ISD::SUB:
1881 case ISD::FSUB:
1882 case ISD::FDIV:
1883 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001884 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001885 return N1; // fold op(undef, arg2) -> undef
1886 case ISD::UDIV:
1887 case ISD::SDIV:
1888 case ISD::UREM:
1889 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001890 case ISD::SRL:
1891 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001892 if (!MVT::isVector(VT))
1893 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1894 // For vectors, we can't easily build an all zero vector, just return
1895 // the LHS.
1896 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00001897 }
1898 }
1899 }
1900
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001901 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001902 if (N2.getOpcode() == ISD::UNDEF) {
1903 switch (Opcode) {
1904 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001905 case ISD::ADDC:
1906 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001907 case ISD::SUB:
1908 case ISD::FADD:
1909 case ISD::FSUB:
1910 case ISD::FMUL:
1911 case ISD::FDIV:
1912 case ISD::FREM:
1913 case ISD::UDIV:
1914 case ISD::SDIV:
1915 case ISD::UREM:
1916 case ISD::SREM:
1917 case ISD::XOR:
1918 return N2; // fold op(arg1, undef) -> undef
1919 case ISD::MUL:
1920 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001921 case ISD::SRL:
1922 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001923 if (!MVT::isVector(VT))
1924 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1925 // For vectors, we can't easily build an all zero vector, just return
1926 // the LHS.
1927 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001928 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00001929 if (!MVT::isVector(VT))
1930 return getConstant(MVT::getIntVTBitMask(VT), VT);
1931 // For vectors, we can't easily build an all one vector, just return
1932 // the LHS.
1933 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00001934 case ISD::SRA:
1935 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001936 }
1937 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001938
Chris Lattner51dabfb2006-10-14 00:41:01 +00001939 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001940 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001941 case ISD::TokenFactor:
1942 // Fold trivial token factors.
1943 if (N1.getOpcode() == ISD::EntryToken) return N2;
1944 if (N2.getOpcode() == ISD::EntryToken) return N1;
1945 break;
1946
Chris Lattner51dabfb2006-10-14 00:41:01 +00001947 case ISD::AND:
1948 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1949 // worth handling here.
1950 if (N2C && N2C->getValue() == 0)
1951 return N2;
1952 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001953 case ISD::OR:
1954 case ISD::XOR:
1955 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1956 // worth handling here.
1957 if (N2C && N2C->getValue() == 0)
1958 return N1;
1959 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001960 case ISD::FP_ROUND_INREG:
1961 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1962 break;
1963 case ISD::SIGN_EXTEND_INREG: {
1964 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1965 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001966 break;
1967 }
Dan Gohman7f321562007-06-25 16:23:39 +00001968 case ISD::EXTRACT_VECTOR_ELT:
1969 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
1970
Dan Gohman743d3a72007-07-10 18:20:44 +00001971 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
Dan Gohman7f321562007-06-25 16:23:39 +00001972 // expanding copies of large vectors from registers.
Dan Gohman743d3a72007-07-10 18:20:44 +00001973 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
1974 N1.getNumOperands() > 0) {
1975 unsigned Factor =
1976 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
1977 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
1978 N1.getOperand(N2C->getValue() / Factor),
1979 getConstant(N2C->getValue() % Factor, N2.getValueType()));
Dan Gohman7f321562007-06-25 16:23:39 +00001980 }
Dan Gohman743d3a72007-07-10 18:20:44 +00001981
Dan Gohman7f321562007-06-25 16:23:39 +00001982 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
1983 // expanding large vector constants.
1984 if (N1.getOpcode() == ISD::BUILD_VECTOR)
1985 return N1.getOperand(N2C->getValue());
Dan Gohman743d3a72007-07-10 18:20:44 +00001986
1987 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
1988 // operations are lowered to scalars.
1989 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
1990 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
1991 if (IEC == N2C)
1992 return N1.getOperand(1);
1993 else
1994 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
1995 }
Dan Gohman7f321562007-06-25 16:23:39 +00001996 break;
Chris Lattner5c6621c2006-09-19 04:51:23 +00001997 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001998 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1999
Chris Lattner5c6621c2006-09-19 04:51:23 +00002000 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2001 // 64-bit integers into 32-bit parts. Instead of building the extract of
2002 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00002003 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00002004 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00002005
2006 // EXTRACT_ELEMENT of a constant int is also very common.
2007 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2008 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2009 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00002010 }
2011 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002012
Nate Begemaneea805e2005-04-13 21:23:31 +00002013 // FIXME: figure out how to safely handle things like
2014 // int foo(int x) { return 1 << (x & 255); }
2015 // int bar() { return foo(256); }
2016#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00002017 case ISD::SHL:
2018 case ISD::SRL:
2019 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00002020 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002021 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00002022 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00002023 else if (N2.getOpcode() == ISD::AND)
2024 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
2025 // If the and is only masking out bits that cannot effect the shift,
2026 // eliminate the and.
2027 unsigned NumBits = MVT::getSizeInBits(VT);
2028 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2029 return getNode(Opcode, VT, N1, N2.getOperand(0));
2030 }
Nate Begemandb81eba2005-04-12 23:32:28 +00002031 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00002032#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00002033 }
2034
Chris Lattner27e9b412005-05-11 18:57:39 +00002035 // Memoize this node if possible.
2036 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002037 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002038 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002039 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002040 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002041 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002042 void *IP = 0;
2043 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2044 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002045 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002046 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002047 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002048 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002049 }
2050
Chris Lattnerc3aae252005-01-07 07:46:32 +00002051 AllNodes.push_back(N);
2052 return SDOperand(N, 0);
2053}
2054
Chris Lattnerc3aae252005-01-07 07:46:32 +00002055SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2056 SDOperand N1, SDOperand N2, SDOperand N3) {
2057 // Perform various simplifications.
2058 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2059 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002060 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002061 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002062 // Use FoldSetCC to simplify SETCC's.
2063 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002064 if (Simp.Val) return Simp;
2065 break;
2066 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002067 case ISD::SELECT:
2068 if (N1C)
2069 if (N1C->getValue())
2070 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002071 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002072 return N3; // select false, X, Y -> Y
2073
2074 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002075 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002076 case ISD::BRCOND:
2077 if (N2C)
2078 if (N2C->getValue()) // Unconditional branch
2079 return getNode(ISD::BR, MVT::Other, N1, N3);
2080 else
2081 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00002082 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002083 case ISD::VECTOR_SHUFFLE:
2084 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2085 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2086 N3.getOpcode() == ISD::BUILD_VECTOR &&
2087 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2088 "Illegal VECTOR_SHUFFLE node!");
2089 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002090 case ISD::BIT_CONVERT:
2091 // Fold bit_convert nodes from a type to themselves.
2092 if (N1.getValueType() == VT)
2093 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002094 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002095 }
2096
Chris Lattner43247a12005-08-25 19:12:10 +00002097 // Memoize node if it doesn't produce a flag.
2098 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002099 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002100 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002101 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002102 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002103 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002104 void *IP = 0;
2105 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2106 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002107 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002108 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002109 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002110 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002111 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002112 AllNodes.push_back(N);
2113 return SDOperand(N, 0);
2114}
2115
2116SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002117 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002118 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002119 SDOperand Ops[] = { N1, N2, N3, N4 };
2120 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002121}
2122
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002123SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2124 SDOperand N1, SDOperand N2, SDOperand N3,
2125 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002126 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2127 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002128}
2129
Evan Cheng7038daf2005-12-10 00:37:58 +00002130SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2131 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002132 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002133 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002134 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2135 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002136 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002137 Ty = MVT::getTypeForValueType(VT);
2138 } else if (SV) {
2139 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2140 assert(PT && "Value for load must be a pointer");
2141 Ty = PT->getElementType();
2142 }
2143 assert(Ty && "Could not get type information for load");
2144 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2145 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002146 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002147 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002148 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002149 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002150 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002151 ID.AddInteger(ISD::UNINDEXED);
2152 ID.AddInteger(ISD::NON_EXTLOAD);
2153 ID.AddInteger(VT);
2154 ID.AddPointer(SV);
2155 ID.AddInteger(SVOffset);
2156 ID.AddInteger(Alignment);
2157 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002158 void *IP = 0;
2159 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2160 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002161 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002162 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2163 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002164 CSEMap.InsertNode(N, IP);
2165 AllNodes.push_back(N);
2166 return SDOperand(N, 0);
2167}
2168
2169SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002170 SDOperand Chain, SDOperand Ptr,
2171 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002172 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002173 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002174 // If they are asking for an extending load from/to the same thing, return a
2175 // normal load.
2176 if (VT == EVT)
2177 ExtType = ISD::NON_EXTLOAD;
2178
2179 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002180 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002181 else
2182 assert(EVT < VT && "Should only be an extending load, not truncating!");
2183 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2184 "Cannot sign/zero extend a FP/Vector load!");
2185 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2186 "Cannot convert from FP to Int or Int -> FP!");
2187
Dan Gohman575e2f42007-06-04 15:49:41 +00002188 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2189 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002190 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002191 Ty = MVT::getTypeForValueType(VT);
2192 } else if (SV) {
2193 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2194 assert(PT && "Value for load must be a pointer");
2195 Ty = PT->getElementType();
2196 }
2197 assert(Ty && "Could not get type information for load");
2198 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2199 }
Evan Cheng466685d2006-10-09 20:57:25 +00002200 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002201 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002202 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002203 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002204 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002205 ID.AddInteger(ISD::UNINDEXED);
2206 ID.AddInteger(ExtType);
2207 ID.AddInteger(EVT);
2208 ID.AddPointer(SV);
2209 ID.AddInteger(SVOffset);
2210 ID.AddInteger(Alignment);
2211 ID.AddInteger(isVolatile);
2212 void *IP = 0;
2213 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2214 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002215 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002216 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002217 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002218 AllNodes.push_back(N);
2219 return SDOperand(N, 0);
2220}
2221
Evan Cheng144d8f02006-11-09 17:55:04 +00002222SDOperand
2223SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2224 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002225 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002226 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2227 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002228 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002229 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002230 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002231 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002232 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002233 ID.AddInteger(AM);
2234 ID.AddInteger(LD->getExtensionType());
2235 ID.AddInteger(LD->getLoadedVT());
2236 ID.AddPointer(LD->getSrcValue());
2237 ID.AddInteger(LD->getSrcValueOffset());
2238 ID.AddInteger(LD->getAlignment());
2239 ID.AddInteger(LD->isVolatile());
2240 void *IP = 0;
2241 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2242 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002243 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00002244 LD->getExtensionType(), LD->getLoadedVT(),
2245 LD->getSrcValue(), LD->getSrcValueOffset(),
2246 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002247 CSEMap.InsertNode(N, IP);
2248 AllNodes.push_back(N);
2249 return SDOperand(N, 0);
2250}
2251
Jeff Cohend41b30d2006-11-05 19:31:28 +00002252SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002253 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002254 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002255 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002256
Dan Gohman575e2f42007-06-04 15:49:41 +00002257 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2258 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002259 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002260 Ty = MVT::getTypeForValueType(VT);
2261 } else if (SV) {
2262 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2263 assert(PT && "Value for store must be a pointer");
2264 Ty = PT->getElementType();
2265 }
2266 assert(Ty && "Could not get type information for store");
2267 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2268 }
Evan Chengad071e12006-10-05 22:57:11 +00002269 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002270 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002271 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002272 FoldingSetNodeID ID;
2273 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002274 ID.AddInteger(ISD::UNINDEXED);
2275 ID.AddInteger(false);
2276 ID.AddInteger(VT);
2277 ID.AddPointer(SV);
2278 ID.AddInteger(SVOffset);
2279 ID.AddInteger(Alignment);
2280 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002281 void *IP = 0;
2282 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2283 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002284 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002285 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002286 CSEMap.InsertNode(N, IP);
2287 AllNodes.push_back(N);
2288 return SDOperand(N, 0);
2289}
2290
Jeff Cohend41b30d2006-11-05 19:31:28 +00002291SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002292 SDOperand Ptr, const Value *SV,
2293 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002294 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002295 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002296 bool isTrunc = VT != SVT;
2297
2298 assert(VT > SVT && "Not a truncation?");
2299 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2300 "Can't do FP-INT conversion!");
2301
Dan Gohman575e2f42007-06-04 15:49:41 +00002302 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2303 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002304 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002305 Ty = MVT::getTypeForValueType(VT);
2306 } else if (SV) {
2307 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2308 assert(PT && "Value for store must be a pointer");
2309 Ty = PT->getElementType();
2310 }
2311 assert(Ty && "Could not get type information for store");
2312 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2313 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002314 SDVTList VTs = getVTList(MVT::Other);
2315 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002316 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002317 FoldingSetNodeID ID;
2318 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002319 ID.AddInteger(ISD::UNINDEXED);
2320 ID.AddInteger(isTrunc);
2321 ID.AddInteger(SVT);
2322 ID.AddPointer(SV);
2323 ID.AddInteger(SVOffset);
2324 ID.AddInteger(Alignment);
2325 ID.AddInteger(isVolatile);
2326 void *IP = 0;
2327 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2328 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002329 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002330 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002331 CSEMap.InsertNode(N, IP);
2332 AllNodes.push_back(N);
2333 return SDOperand(N, 0);
2334}
2335
Evan Cheng144d8f02006-11-09 17:55:04 +00002336SDOperand
2337SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2338 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002339 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2340 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2341 "Store is already a indexed store!");
2342 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2343 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2344 FoldingSetNodeID ID;
2345 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2346 ID.AddInteger(AM);
2347 ID.AddInteger(ST->isTruncatingStore());
2348 ID.AddInteger(ST->getStoredVT());
2349 ID.AddPointer(ST->getSrcValue());
2350 ID.AddInteger(ST->getSrcValueOffset());
2351 ID.AddInteger(ST->getAlignment());
2352 ID.AddInteger(ST->isVolatile());
2353 void *IP = 0;
2354 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2355 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002356 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00002357 ST->isTruncatingStore(), ST->getStoredVT(),
2358 ST->getSrcValue(), ST->getSrcValueOffset(),
2359 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002360 CSEMap.InsertNode(N, IP);
2361 AllNodes.push_back(N);
2362 return SDOperand(N, 0);
2363}
2364
Nate Begemanacc398c2006-01-25 18:21:52 +00002365SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2366 SDOperand Chain, SDOperand Ptr,
2367 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002368 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002369 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002370}
2371
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002372SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002373 const SDOperand *Ops, unsigned NumOps) {
2374 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002375 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002376 case 1: return getNode(Opcode, VT, Ops[0]);
2377 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2378 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002379 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002380 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002381
Chris Lattneref847df2005-04-09 03:27:28 +00002382 switch (Opcode) {
2383 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002384 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002385 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002386 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2387 "LHS and RHS of condition must have same type!");
2388 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2389 "True and False arms of SelectCC must have same type!");
2390 assert(Ops[2].getValueType() == VT &&
2391 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002392 break;
2393 }
2394 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002395 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002396 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2397 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002398 break;
2399 }
Chris Lattneref847df2005-04-09 03:27:28 +00002400 }
2401
Chris Lattner385328c2005-05-14 07:42:29 +00002402 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002403 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002404 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002405 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002406 FoldingSetNodeID ID;
2407 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002408 void *IP = 0;
2409 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2410 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002411 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002412 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002413 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002414 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002415 }
Chris Lattneref847df2005-04-09 03:27:28 +00002416 AllNodes.push_back(N);
2417 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002418}
2419
Chris Lattner89c34632005-05-14 06:20:26 +00002420SDOperand SelectionDAG::getNode(unsigned Opcode,
2421 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002422 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002423 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2424 Ops, NumOps);
2425}
2426
2427SDOperand SelectionDAG::getNode(unsigned Opcode,
2428 const MVT::ValueType *VTs, unsigned NumVTs,
2429 const SDOperand *Ops, unsigned NumOps) {
2430 if (NumVTs == 1)
2431 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002432 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2433}
2434
2435SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2436 const SDOperand *Ops, unsigned NumOps) {
2437 if (VTList.NumVTs == 1)
2438 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002439
Chris Lattner5f056bf2005-07-10 01:55:33 +00002440 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002441 // FIXME: figure out how to safely handle things like
2442 // int foo(int x) { return 1 << (x & 255); }
2443 // int bar() { return foo(256); }
2444#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002445 case ISD::SRA_PARTS:
2446 case ISD::SRL_PARTS:
2447 case ISD::SHL_PARTS:
2448 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002449 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002450 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2451 else if (N3.getOpcode() == ISD::AND)
2452 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2453 // If the and is only masking out bits that cannot effect the shift,
2454 // eliminate the and.
2455 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2456 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2457 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2458 }
2459 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002460#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002461 }
Chris Lattner89c34632005-05-14 06:20:26 +00002462
Chris Lattner43247a12005-08-25 19:12:10 +00002463 // Memoize the node unless it returns a flag.
2464 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002465 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002466 FoldingSetNodeID ID;
2467 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002468 void *IP = 0;
2469 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2470 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002471 if (NumOps == 1)
2472 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2473 else if (NumOps == 2)
2474 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2475 else if (NumOps == 3)
2476 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2477 else
2478 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002479 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002480 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002481 if (NumOps == 1)
2482 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2483 else if (NumOps == 2)
2484 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2485 else if (NumOps == 3)
2486 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2487 else
2488 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002489 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002490 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002491 return SDOperand(N, 0);
2492}
2493
Chris Lattner70046e92006-08-15 17:46:01 +00002494SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Dan Gohman6595cb32007-06-27 16:08:04 +00002495 if (!MVT::isExtendedVT(VT))
Dan Gohman7f321562007-06-25 16:23:39 +00002496 return makeVTList(SDNode::getValueTypeList(VT), 1);
2497
2498 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2499 E = VTList.end(); I != E; ++I) {
2500 if (I->size() == 1 && (*I)[0] == VT)
2501 return makeVTList(&(*I)[0], 1);
2502 }
2503 std::vector<MVT::ValueType> V;
2504 V.push_back(VT);
2505 VTList.push_front(V);
2506 return makeVTList(&(*VTList.begin())[0], 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002507}
2508
Chris Lattner70046e92006-08-15 17:46:01 +00002509SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002510 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2511 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002512 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002513 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002514 }
2515 std::vector<MVT::ValueType> V;
2516 V.push_back(VT1);
2517 V.push_back(VT2);
2518 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002519 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002520}
Chris Lattner70046e92006-08-15 17:46:01 +00002521SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2522 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002523 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002524 E = VTList.end(); I != E; ++I) {
2525 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2526 (*I)[2] == VT3)
2527 return makeVTList(&(*I)[0], 3);
2528 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002529 std::vector<MVT::ValueType> V;
2530 V.push_back(VT1);
2531 V.push_back(VT2);
2532 V.push_back(VT3);
2533 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002534 return makeVTList(&(*VTList.begin())[0], 3);
2535}
2536
2537SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2538 switch (NumVTs) {
2539 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002540 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002541 case 2: return getVTList(VTs[0], VTs[1]);
2542 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2543 default: break;
2544 }
2545
2546 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2547 E = VTList.end(); I != E; ++I) {
2548 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2549
2550 bool NoMatch = false;
2551 for (unsigned i = 2; i != NumVTs; ++i)
2552 if (VTs[i] != (*I)[i]) {
2553 NoMatch = true;
2554 break;
2555 }
2556 if (!NoMatch)
2557 return makeVTList(&*I->begin(), NumVTs);
2558 }
2559
2560 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2561 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002562}
2563
2564
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002565/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2566/// specified operands. If the resultant node already exists in the DAG,
2567/// this does not modify the specified node, instead it returns the node that
2568/// already exists. If the resultant node does not exist in the DAG, the
2569/// input node is returned. As a degenerate case, if you specify the same
2570/// input operands as the node already has, the input node is returned.
2571SDOperand SelectionDAG::
2572UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2573 SDNode *N = InN.Val;
2574 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2575
2576 // Check to see if there is no change.
2577 if (Op == N->getOperand(0)) return InN;
2578
2579 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002580 void *InsertPos = 0;
2581 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2582 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002583
2584 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002585 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002586 RemoveNodeFromCSEMaps(N);
2587
2588 // Now we update the operands.
2589 N->OperandList[0].Val->removeUser(N);
2590 Op.Val->addUser(N);
2591 N->OperandList[0] = Op;
2592
2593 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002594 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002595 return InN;
2596}
2597
2598SDOperand SelectionDAG::
2599UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2600 SDNode *N = InN.Val;
2601 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2602
2603 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002604 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2605 return InN; // No operands changed, just return the input node.
2606
2607 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002608 void *InsertPos = 0;
2609 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2610 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002611
2612 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002613 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002614 RemoveNodeFromCSEMaps(N);
2615
2616 // Now we update the operands.
2617 if (N->OperandList[0] != Op1) {
2618 N->OperandList[0].Val->removeUser(N);
2619 Op1.Val->addUser(N);
2620 N->OperandList[0] = Op1;
2621 }
2622 if (N->OperandList[1] != Op2) {
2623 N->OperandList[1].Val->removeUser(N);
2624 Op2.Val->addUser(N);
2625 N->OperandList[1] = Op2;
2626 }
2627
2628 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002629 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002630 return InN;
2631}
2632
2633SDOperand SelectionDAG::
2634UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002635 SDOperand Ops[] = { Op1, Op2, Op3 };
2636 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002637}
2638
2639SDOperand SelectionDAG::
2640UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2641 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002642 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2643 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002644}
2645
2646SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002647UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2648 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002649 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2650 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002651}
2652
2653
2654SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002655UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002656 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002657 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002658 "Update with wrong number of operands");
2659
2660 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002661 bool AnyChange = false;
2662 for (unsigned i = 0; i != NumOps; ++i) {
2663 if (Ops[i] != N->getOperand(i)) {
2664 AnyChange = true;
2665 break;
2666 }
2667 }
2668
2669 // No operands changed, just return the input node.
2670 if (!AnyChange) return InN;
2671
2672 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002673 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002674 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002675 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002676
2677 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002678 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002679 RemoveNodeFromCSEMaps(N);
2680
2681 // Now we update the operands.
2682 for (unsigned i = 0; i != NumOps; ++i) {
2683 if (N->OperandList[i] != Ops[i]) {
2684 N->OperandList[i].Val->removeUser(N);
2685 Ops[i].Val->addUser(N);
2686 N->OperandList[i] = Ops[i];
2687 }
2688 }
2689
2690 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002691 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002692 return InN;
2693}
2694
2695
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002696/// MorphNodeTo - This frees the operands of the current node, resets the
2697/// opcode, types, and operands to the specified value. This should only be
2698/// used by the SelectionDAG class.
2699void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2700 const SDOperand *Ops, unsigned NumOps) {
2701 NodeType = Opc;
2702 ValueList = L.VTs;
2703 NumValues = L.NumVTs;
2704
2705 // Clear the operands list, updating used nodes to remove this from their
2706 // use list.
2707 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2708 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002709
2710 // If NumOps is larger than the # of operands we currently have, reallocate
2711 // the operand list.
2712 if (NumOps > NumOperands) {
2713 if (OperandsNeedDelete)
2714 delete [] OperandList;
2715 OperandList = new SDOperand[NumOps];
2716 OperandsNeedDelete = true;
2717 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002718
2719 // Assign the new operands.
2720 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002721
2722 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2723 OperandList[i] = Ops[i];
2724 SDNode *N = OperandList[i].Val;
2725 N->Uses.push_back(this);
2726 }
2727}
Chris Lattner149c58c2005-08-16 18:17:10 +00002728
2729/// SelectNodeTo - These are used for target selectors to *mutate* the
2730/// specified node to have the specified return type, Target opcode, and
2731/// operands. Note that target opcodes are stored as
2732/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002733///
2734/// Note that SelectNodeTo returns the resultant node. If there is already a
2735/// node of the specified opcode and operands, it returns that node instead of
2736/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002737SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2738 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002739 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002740 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002741 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002742 void *IP = 0;
2743 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002744 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002745
Chris Lattner7651fa42005-08-24 23:00:29 +00002746 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002747
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002748 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002749
Chris Lattner4a283e92006-08-11 18:38:11 +00002750 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002751 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002752}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002753
Evan Cheng95514ba2006-08-26 08:00:10 +00002754SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2755 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002756 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002757 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002758 SDOperand Ops[] = { Op1 };
2759
Jim Laskey583bd472006-10-27 23:46:08 +00002760 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002761 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002762 void *IP = 0;
2763 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002764 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002765
Chris Lattner149c58c2005-08-16 18:17:10 +00002766 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002767 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002768 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002769 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002770}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002771
Evan Cheng95514ba2006-08-26 08:00:10 +00002772SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2773 MVT::ValueType VT, SDOperand Op1,
2774 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002775 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002776 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002777 SDOperand Ops[] = { Op1, Op2 };
2778
Jim Laskey583bd472006-10-27 23:46:08 +00002779 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002780 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002781 void *IP = 0;
2782 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002783 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002784
Chris Lattner149c58c2005-08-16 18:17:10 +00002785 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002786
Chris Lattner63e3f142007-02-04 07:28:00 +00002787 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002788
Chris Lattnera5682852006-08-07 23:03:03 +00002789 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002790 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002791}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002792
Evan Cheng95514ba2006-08-26 08:00:10 +00002793SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2794 MVT::ValueType VT, SDOperand Op1,
2795 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002796 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002797 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002798 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002799 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002800 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002801 void *IP = 0;
2802 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002803 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002804
Chris Lattner149c58c2005-08-16 18:17:10 +00002805 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002806
Chris Lattner63e3f142007-02-04 07:28:00 +00002807 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002808
Chris Lattnera5682852006-08-07 23:03:03 +00002809 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002810 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002811}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002812
Evan Cheng95514ba2006-08-26 08:00:10 +00002813SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002814 MVT::ValueType VT, const SDOperand *Ops,
2815 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002816 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002817 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002818 FoldingSetNodeID ID;
2819 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002820 void *IP = 0;
2821 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002822 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002823
Chris Lattner6b09a292005-08-21 18:49:33 +00002824 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002825 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002826
Chris Lattnera5682852006-08-07 23:03:03 +00002827 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002828 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002829}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002830
Evan Cheng95514ba2006-08-26 08:00:10 +00002831SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2832 MVT::ValueType VT1, MVT::ValueType VT2,
2833 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002834 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002835 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002836 SDOperand Ops[] = { Op1, Op2 };
2837 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002838 void *IP = 0;
2839 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002840 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002841
Chris Lattner0fb094f2005-11-19 01:44:53 +00002842 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002843 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002844 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002845 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002846}
2847
Evan Cheng95514ba2006-08-26 08:00:10 +00002848SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2849 MVT::ValueType VT1, MVT::ValueType VT2,
2850 SDOperand Op1, SDOperand Op2,
2851 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002852 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002853 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002854 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002855 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002856 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002857 void *IP = 0;
2858 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002859 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002860
Chris Lattner0fb094f2005-11-19 01:44:53 +00002861 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002862
Chris Lattner63e3f142007-02-04 07:28:00 +00002863 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002864 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002865 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002866}
2867
Chris Lattner0fb094f2005-11-19 01:44:53 +00002868
Evan Cheng6ae46c42006-02-09 07:15:23 +00002869/// getTargetNode - These are used for target selectors to create a new node
2870/// with specified return type(s), target opcode, and operands.
2871///
2872/// Note that getTargetNode returns the resultant node. If there is already a
2873/// node of the specified opcode and operands, it returns that node instead of
2874/// the current one.
2875SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2876 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2877}
2878SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2879 SDOperand Op1) {
2880 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2881}
2882SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2883 SDOperand Op1, SDOperand Op2) {
2884 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2885}
2886SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002887 SDOperand Op1, SDOperand Op2,
2888 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002889 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2890}
2891SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002892 const SDOperand *Ops, unsigned NumOps) {
2893 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002894}
2895SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2896 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002897 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002898 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002899}
2900SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002901 MVT::ValueType VT2, SDOperand Op1,
2902 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002903 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002904 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002905 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002906}
2907SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002908 MVT::ValueType VT2, SDOperand Op1,
2909 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002910 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002911 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002912 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002913}
Evan Cheng694481e2006-08-27 08:08:54 +00002914SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2915 MVT::ValueType VT2,
2916 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002917 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002918 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002919}
2920SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2921 MVT::ValueType VT2, MVT::ValueType VT3,
2922 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002923 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002924 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002925 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002926}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002927SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2928 MVT::ValueType VT2, MVT::ValueType VT3,
2929 SDOperand Op1, SDOperand Op2,
2930 SDOperand Op3) {
2931 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2932 SDOperand Ops[] = { Op1, Op2, Op3 };
2933 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2934}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002935SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002936 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002937 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002938 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2939 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002940}
2941
Evan Cheng99157a02006-08-07 22:13:29 +00002942/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002943/// This can cause recursive merging of nodes in the DAG.
2944///
Chris Lattner8b52f212005-08-26 18:36:28 +00002945/// This version assumes From/To have a single result value.
2946///
Chris Lattner1e111c72005-09-07 05:37:01 +00002947void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2948 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002949 SDNode *From = FromN.Val, *To = ToN.Val;
2950 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2951 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002952 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002953
Chris Lattner8b8749f2005-08-17 19:00:20 +00002954 while (!From->use_empty()) {
2955 // Process users until they are all gone.
2956 SDNode *U = *From->use_begin();
2957
2958 // This node is about to morph, remove its old self from the CSE maps.
2959 RemoveNodeFromCSEMaps(U);
2960
Chris Lattner65113b22005-11-08 22:07:03 +00002961 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2962 I != E; ++I)
2963 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002964 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002965 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002966 To->addUser(U);
2967 }
2968
2969 // Now that we have modified U, add it back to the CSE maps. If it already
2970 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002971 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2972 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002973 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002974 if (Deleted) Deleted->push_back(U);
2975 DeleteNodeNotInCSEMaps(U);
2976 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002977 }
2978}
2979
2980/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2981/// This can cause recursive merging of nodes in the DAG.
2982///
2983/// This version assumes From/To have matching types and numbers of result
2984/// values.
2985///
Chris Lattner1e111c72005-09-07 05:37:01 +00002986void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2987 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002988 assert(From != To && "Cannot replace uses of with self");
2989 assert(From->getNumValues() == To->getNumValues() &&
2990 "Cannot use this version of ReplaceAllUsesWith!");
2991 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002992 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002993 return;
2994 }
2995
2996 while (!From->use_empty()) {
2997 // Process users until they are all gone.
2998 SDNode *U = *From->use_begin();
2999
3000 // This node is about to morph, remove its old self from the CSE maps.
3001 RemoveNodeFromCSEMaps(U);
3002
Chris Lattner65113b22005-11-08 22:07:03 +00003003 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3004 I != E; ++I)
3005 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003006 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003007 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003008 To->addUser(U);
3009 }
3010
3011 // Now that we have modified U, add it back to the CSE maps. If it already
3012 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003013 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3014 ReplaceAllUsesWith(U, Existing, Deleted);
3015 // U is now dead.
3016 if (Deleted) Deleted->push_back(U);
3017 DeleteNodeNotInCSEMaps(U);
3018 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003019 }
3020}
3021
Chris Lattner8b52f212005-08-26 18:36:28 +00003022/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3023/// This can cause recursive merging of nodes in the DAG.
3024///
3025/// This version can replace From with any result values. To must match the
3026/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003027void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003028 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00003029 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003030 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00003031 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00003032 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003033 return;
3034 }
3035
3036 while (!From->use_empty()) {
3037 // Process users until they are all gone.
3038 SDNode *U = *From->use_begin();
3039
3040 // This node is about to morph, remove its old self from the CSE maps.
3041 RemoveNodeFromCSEMaps(U);
3042
Chris Lattner65113b22005-11-08 22:07:03 +00003043 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3044 I != E; ++I)
3045 if (I->Val == From) {
3046 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003047 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003048 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003049 ToOp.Val->addUser(U);
3050 }
3051
3052 // Now that we have modified U, add it back to the CSE maps. If it already
3053 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003054 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3055 ReplaceAllUsesWith(U, Existing, Deleted);
3056 // U is now dead.
3057 if (Deleted) Deleted->push_back(U);
3058 DeleteNodeNotInCSEMaps(U);
3059 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003060 }
3061}
3062
Chris Lattner012f2412006-02-17 21:58:01 +00003063/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3064/// uses of other values produced by From.Val alone. The Deleted vector is
3065/// handled the same was as for ReplaceAllUsesWith.
3066void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
3067 std::vector<SDNode*> &Deleted) {
3068 assert(From != To && "Cannot replace a value with itself");
3069 // Handle the simple, trivial, case efficiently.
3070 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
3071 ReplaceAllUsesWith(From, To, &Deleted);
3072 return;
3073 }
3074
Chris Lattnercf5640b2007-02-04 00:14:31 +00003075 // Get all of the users of From.Val. We want these in a nice,
3076 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3077 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003078
3079 while (!Users.empty()) {
3080 // We know that this user uses some value of From. If it is the right
3081 // value, update it.
3082 SDNode *User = Users.back();
3083 Users.pop_back();
3084
3085 for (SDOperand *Op = User->OperandList,
3086 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
3087 if (*Op == From) {
3088 // Okay, we know this user needs to be updated. Remove its old self
3089 // from the CSE maps.
3090 RemoveNodeFromCSEMaps(User);
3091
3092 // Update all operands that match "From".
3093 for (; Op != E; ++Op) {
3094 if (*Op == From) {
3095 From.Val->removeUser(User);
3096 *Op = To;
3097 To.Val->addUser(User);
3098 }
3099 }
3100
3101 // Now that we have modified User, add it back to the CSE maps. If it
3102 // already exists there, recursively merge the results together.
3103 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
3104 unsigned NumDeleted = Deleted.size();
3105 ReplaceAllUsesWith(User, Existing, &Deleted);
3106
3107 // User is now dead.
3108 Deleted.push_back(User);
3109 DeleteNodeNotInCSEMaps(User);
3110
3111 // We have to be careful here, because ReplaceAllUsesWith could have
3112 // deleted a user of From, which means there may be dangling pointers
3113 // in the "Users" setvector. Scan over the deleted node pointers and
3114 // remove them from the setvector.
3115 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
3116 Users.remove(Deleted[i]);
3117 }
3118 break; // Exit the operand scanning loop.
3119 }
3120 }
3121 }
3122}
3123
Chris Lattner7b2880c2005-08-24 22:44:39 +00003124
Evan Chenge6f35d82006-08-01 08:20:41 +00003125/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3126/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003127unsigned SelectionDAG::AssignNodeIds() {
3128 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003129 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3130 SDNode *N = I;
3131 N->setNodeId(Id++);
3132 }
3133 return Id;
3134}
3135
Evan Chenge6f35d82006-08-01 08:20:41 +00003136/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003137/// based on their topological order. It returns the maximum id and a vector
3138/// of the SDNodes* in assigned order by reference.
3139unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003140 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003141 std::vector<unsigned> InDegree(DAGSize);
3142 std::vector<SDNode*> Sources;
3143
3144 // Use a two pass approach to avoid using a std::map which is slow.
3145 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003146 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3147 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003148 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003149 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003150 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003151 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003152 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003153 }
3154
Evan Cheng99157a02006-08-07 22:13:29 +00003155 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003156 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003157 SDNode *N = Sources.back();
3158 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003159 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003160 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3161 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003162 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003163 if (Degree == 0)
3164 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003165 }
3166 }
3167
Evan Chengc384d6c2006-08-02 22:00:34 +00003168 // Second pass, assign the actual topological order as node ids.
3169 Id = 0;
3170 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3171 TI != TE; ++TI)
3172 (*TI)->setNodeId(Id++);
3173
3174 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003175}
3176
3177
Evan Cheng091cba12006-07-27 06:39:06 +00003178
Jim Laskey58b968b2005-08-17 20:08:02 +00003179//===----------------------------------------------------------------------===//
3180// SDNode Class
3181//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003182
Chris Lattner917d2c92006-07-19 00:00:37 +00003183// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003184void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003185void UnarySDNode::ANCHOR() {}
3186void BinarySDNode::ANCHOR() {}
3187void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003188void HandleSDNode::ANCHOR() {}
3189void StringSDNode::ANCHOR() {}
3190void ConstantSDNode::ANCHOR() {}
3191void ConstantFPSDNode::ANCHOR() {}
3192void GlobalAddressSDNode::ANCHOR() {}
3193void FrameIndexSDNode::ANCHOR() {}
3194void JumpTableSDNode::ANCHOR() {}
3195void ConstantPoolSDNode::ANCHOR() {}
3196void BasicBlockSDNode::ANCHOR() {}
3197void SrcValueSDNode::ANCHOR() {}
3198void RegisterSDNode::ANCHOR() {}
3199void ExternalSymbolSDNode::ANCHOR() {}
3200void CondCodeSDNode::ANCHOR() {}
3201void VTSDNode::ANCHOR() {}
3202void LoadSDNode::ANCHOR() {}
3203void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003204
Chris Lattner48b85922007-02-04 02:41:42 +00003205HandleSDNode::~HandleSDNode() {
3206 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003207 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003208}
3209
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003210GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3211 MVT::ValueType VT, int o)
3212 : SDNode(isa<GlobalVariable>(GA) &&
3213 dyn_cast<GlobalVariable>(GA)->isThreadLocal() ?
3214 // Thread Local
3215 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3216 // Non Thread Local
3217 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3218 getSDVTList(VT)), Offset(o) {
3219 TheGlobal = const_cast<GlobalValue*>(GA);
3220}
Chris Lattner48b85922007-02-04 02:41:42 +00003221
Jim Laskey583bd472006-10-27 23:46:08 +00003222/// Profile - Gather unique data for the node.
3223///
3224void SDNode::Profile(FoldingSetNodeID &ID) {
3225 AddNodeIDNode(ID, this);
3226}
3227
Chris Lattnera3255112005-11-08 23:30:28 +00003228/// getValueTypeList - Return a pointer to the specified value type.
3229///
3230MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
3231 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3232 VTs[VT] = VT;
3233 return &VTs[VT];
3234}
Chris Lattnera5682852006-08-07 23:03:03 +00003235
Chris Lattner5c884562005-01-12 18:37:47 +00003236/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3237/// indicated value. This method ignores uses of other values defined by this
3238/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003239bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003240 assert(Value < getNumValues() && "Bad value!");
3241
3242 // If there is only one value, this is easy.
3243 if (getNumValues() == 1)
3244 return use_size() == NUses;
3245 if (Uses.size() < NUses) return false;
3246
Evan Cheng4ee62112006-02-05 06:29:23 +00003247 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003248
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003249 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003250
Chris Lattnerf83482d2006-08-16 20:59:32 +00003251 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003252 SDNode *User = *UI;
3253 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003254 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003255 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3256 if (User->getOperand(i) == TheValue) {
3257 if (NUses == 0)
3258 return false; // too many uses
3259 --NUses;
3260 }
3261 }
3262
3263 // Found exactly the right number of uses?
3264 return NUses == 0;
3265}
3266
3267
Evan Chenge6e97e62006-11-03 07:31:32 +00003268/// isOnlyUse - Return true if this node is the only use of N.
3269///
Evan Cheng4ee62112006-02-05 06:29:23 +00003270bool SDNode::isOnlyUse(SDNode *N) const {
3271 bool Seen = false;
3272 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3273 SDNode *User = *I;
3274 if (User == this)
3275 Seen = true;
3276 else
3277 return false;
3278 }
3279
3280 return Seen;
3281}
3282
Evan Chenge6e97e62006-11-03 07:31:32 +00003283/// isOperand - Return true if this node is an operand of N.
3284///
Evan Chengbfa284f2006-03-03 06:42:32 +00003285bool SDOperand::isOperand(SDNode *N) const {
3286 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3287 if (*this == N->getOperand(i))
3288 return true;
3289 return false;
3290}
3291
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003292bool SDNode::isOperand(SDNode *N) const {
3293 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3294 if (this == N->OperandList[i].Val)
3295 return true;
3296 return false;
3297}
Evan Cheng4ee62112006-02-05 06:29:23 +00003298
Evan Chengc5fc57d2006-11-03 03:05:24 +00003299static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003300 SmallPtrSet<SDNode *, 32> &Visited) {
3301 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003302 return;
3303
3304 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3305 SDNode *Op = N->getOperand(i).Val;
3306 if (Op == P) {
3307 found = true;
3308 return;
3309 }
3310 findPredecessor(Op, P, found, Visited);
3311 }
3312}
3313
Evan Chenge6e97e62006-11-03 07:31:32 +00003314/// isPredecessor - Return true if this node is a predecessor of N. This node
3315/// is either an operand of N or it can be reached by recursively traversing
3316/// up the operands.
3317/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003318bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003319 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003320 bool found = false;
3321 findPredecessor(N, this, found, Visited);
3322 return found;
3323}
3324
Evan Chengc5484282006-10-04 00:56:09 +00003325uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3326 assert(Num < NumOperands && "Invalid child # of SDNode!");
3327 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3328}
3329
Reid Spencer577cc322007-04-01 07:32:19 +00003330std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003331 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003332 default:
3333 if (getOpcode() < ISD::BUILTIN_OP_END)
3334 return "<<Unknown DAG Node>>";
3335 else {
Evan Cheng72261582005-12-20 06:22:03 +00003336 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003337 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003338 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
3339 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00003340
Evan Cheng72261582005-12-20 06:22:03 +00003341 TargetLowering &TLI = G->getTargetLoweringInfo();
3342 const char *Name =
3343 TLI.getTargetNodeName(getOpcode());
3344 if (Name) return Name;
3345 }
3346
3347 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003348 }
3349
Andrew Lenharth95762122005-03-31 21:24:06 +00003350 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003351 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003352 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003353 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003354 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003355 case ISD::AssertSext: return "AssertSext";
3356 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003357
3358 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003359 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003360 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003361 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003362
3363 case ISD::Constant: return "Constant";
3364 case ISD::ConstantFP: return "ConstantFP";
3365 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003366 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003367 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003368 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003369 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003370 case ISD::RETURNADDR: return "RETURNADDR";
3371 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003372 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003373 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3374 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003375 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003376 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003377 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003378 case ISD::INTRINSIC_WO_CHAIN: {
3379 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3380 return Intrinsic::getName((Intrinsic::ID)IID);
3381 }
3382 case ISD::INTRINSIC_VOID:
3383 case ISD::INTRINSIC_W_CHAIN: {
3384 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003385 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003386 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003387
Chris Lattnerb2827b02006-03-19 00:52:58 +00003388 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003389 case ISD::TargetConstant: return "TargetConstant";
3390 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003391 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003392 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003393 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003394 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003395 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003396 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003397
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003398 case ISD::CopyToReg: return "CopyToReg";
3399 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003400 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003401 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003402 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003403 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003404 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003405 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003406 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003407
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003408 // Unary operators
3409 case ISD::FABS: return "fabs";
3410 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003411 case ISD::FSQRT: return "fsqrt";
3412 case ISD::FSIN: return "fsin";
3413 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003414 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003415
3416 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003417 case ISD::ADD: return "add";
3418 case ISD::SUB: return "sub";
3419 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003420 case ISD::MULHU: return "mulhu";
3421 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003422 case ISD::SDIV: return "sdiv";
3423 case ISD::UDIV: return "udiv";
3424 case ISD::SREM: return "srem";
3425 case ISD::UREM: return "urem";
3426 case ISD::AND: return "and";
3427 case ISD::OR: return "or";
3428 case ISD::XOR: return "xor";
3429 case ISD::SHL: return "shl";
3430 case ISD::SRA: return "sra";
3431 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003432 case ISD::ROTL: return "rotl";
3433 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003434 case ISD::FADD: return "fadd";
3435 case ISD::FSUB: return "fsub";
3436 case ISD::FMUL: return "fmul";
3437 case ISD::FDIV: return "fdiv";
3438 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003439 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003440
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003441 case ISD::SETCC: return "setcc";
3442 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003443 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003444 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003445 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003446 case ISD::CONCAT_VECTORS: return "concat_vectors";
3447 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003448 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003449 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003450 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003451 case ISD::ADDC: return "addc";
3452 case ISD::ADDE: return "adde";
3453 case ISD::SUBC: return "subc";
3454 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003455 case ISD::SHL_PARTS: return "shl_parts";
3456 case ISD::SRA_PARTS: return "sra_parts";
3457 case ISD::SRL_PARTS: return "srl_parts";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003458
Chris Lattner7f644642005-04-28 21:44:03 +00003459 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003460 case ISD::SIGN_EXTEND: return "sign_extend";
3461 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003462 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003463 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003464 case ISD::TRUNCATE: return "truncate";
3465 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00003466 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003467 case ISD::FP_EXTEND: return "fp_extend";
3468
3469 case ISD::SINT_TO_FP: return "sint_to_fp";
3470 case ISD::UINT_TO_FP: return "uint_to_fp";
3471 case ISD::FP_TO_SINT: return "fp_to_sint";
3472 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003473 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003474
3475 // Control flow instructions
3476 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003477 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003478 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003479 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003480 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003481 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003482 case ISD::CALLSEQ_START: return "callseq_start";
3483 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003484
3485 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003486 case ISD::LOAD: return "load";
3487 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00003488 case ISD::VAARG: return "vaarg";
3489 case ISD::VACOPY: return "vacopy";
3490 case ISD::VAEND: return "vaend";
3491 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003492 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003493 case ISD::EXTRACT_ELEMENT: return "extract_element";
3494 case ISD::BUILD_PAIR: return "build_pair";
3495 case ISD::STACKSAVE: return "stacksave";
3496 case ISD::STACKRESTORE: return "stackrestore";
3497
3498 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003499 case ISD::MEMSET: return "memset";
3500 case ISD::MEMCPY: return "memcpy";
3501 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003502
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003503 // Bit manipulation
3504 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003505 case ISD::CTPOP: return "ctpop";
3506 case ISD::CTTZ: return "cttz";
3507 case ISD::CTLZ: return "ctlz";
3508
Chris Lattner36ce6912005-11-29 06:21:05 +00003509 // Debug info
3510 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003511 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003512
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003513 case ISD::CONDCODE:
3514 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003515 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003516 case ISD::SETOEQ: return "setoeq";
3517 case ISD::SETOGT: return "setogt";
3518 case ISD::SETOGE: return "setoge";
3519 case ISD::SETOLT: return "setolt";
3520 case ISD::SETOLE: return "setole";
3521 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003522
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003523 case ISD::SETO: return "seto";
3524 case ISD::SETUO: return "setuo";
3525 case ISD::SETUEQ: return "setue";
3526 case ISD::SETUGT: return "setugt";
3527 case ISD::SETUGE: return "setuge";
3528 case ISD::SETULT: return "setult";
3529 case ISD::SETULE: return "setule";
3530 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003531
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003532 case ISD::SETEQ: return "seteq";
3533 case ISD::SETGT: return "setgt";
3534 case ISD::SETGE: return "setge";
3535 case ISD::SETLT: return "setlt";
3536 case ISD::SETLE: return "setle";
3537 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003538 }
3539 }
3540}
Chris Lattnerc3aae252005-01-07 07:46:32 +00003541
Evan Cheng144d8f02006-11-09 17:55:04 +00003542const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003543 switch (AM) {
3544 default:
3545 return "";
3546 case ISD::PRE_INC:
3547 return "<pre-inc>";
3548 case ISD::PRE_DEC:
3549 return "<pre-dec>";
3550 case ISD::POST_INC:
3551 return "<post-inc>";
3552 case ISD::POST_DEC:
3553 return "<post-dec>";
3554 }
3555}
3556
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003557void SDNode::dump() const { dump(0); }
3558void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00003559 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003560
3561 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003562 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00003563 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00003564 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00003565 else
Bill Wendling832171c2006-12-07 20:04:42 +00003566 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00003567 }
Bill Wendling832171c2006-12-07 20:04:42 +00003568 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003569
Bill Wendling832171c2006-12-07 20:04:42 +00003570 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003571 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003572 if (i) cerr << ", ";
3573 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003574 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00003575 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003576 }
3577
3578 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003579 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003580 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003581 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003582 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00003583 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00003584 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00003585 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00003586 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00003587 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003588 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00003589 else
Bill Wendling832171c2006-12-07 20:04:42 +00003590 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003591 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003592 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00003593 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003594 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003595 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00003596 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00003597 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00003598 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00003599 else
Bill Wendling832171c2006-12-07 20:04:42 +00003600 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00003601 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003602 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00003603 else
Bill Wendling832171c2006-12-07 20:04:42 +00003604 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003605 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003606 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003607 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3608 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00003609 cerr << LBB->getName() << " ";
3610 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00003611 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00003612 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00003613 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00003614 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00003615 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00003616 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003617 } else if (const ExternalSymbolSDNode *ES =
3618 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003619 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003620 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3621 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00003622 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003623 else
Bill Wendling832171c2006-12-07 20:04:42 +00003624 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00003625 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00003626 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003627 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3628 bool doExt = true;
3629 switch (LD->getExtensionType()) {
3630 default: doExt = false; break;
3631 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003632 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003633 break;
3634 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003635 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003636 break;
3637 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003638 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003639 break;
3640 }
3641 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003642 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003643
Evan Cheng144d8f02006-11-09 17:55:04 +00003644 const char *AM = getIndexedModeName(LD->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003645 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003646 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00003647 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3648 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00003649 cerr << " <trunc "
3650 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00003651
Evan Cheng144d8f02006-11-09 17:55:04 +00003652 const char *AM = getIndexedModeName(ST->getAddressingMode());
Evan Cheng2caccca2006-10-17 21:14:32 +00003653 if (AM != "")
Bill Wendling832171c2006-12-07 20:04:42 +00003654 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003655 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003656}
3657
Chris Lattnerde202b32005-11-09 23:47:37 +00003658static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003659 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3660 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003661 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003662 else
Bill Wendling832171c2006-12-07 20:04:42 +00003663 cerr << "\n" << std::string(indent+2, ' ')
3664 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003665
Chris Lattnerea946cd2005-01-09 20:38:33 +00003666
Bill Wendling832171c2006-12-07 20:04:42 +00003667 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003668 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003669}
3670
Chris Lattnerc3aae252005-01-07 07:46:32 +00003671void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00003672 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00003673 std::vector<const SDNode*> Nodes;
3674 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3675 I != E; ++I)
3676 Nodes.push_back(I);
3677
Chris Lattner49d24712005-01-09 20:26:36 +00003678 std::sort(Nodes.begin(), Nodes.end());
3679
3680 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003681 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003682 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003683 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003684
Jim Laskey26f7fa72006-10-17 19:33:52 +00003685 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003686
Bill Wendling832171c2006-12-07 20:04:42 +00003687 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003688}
3689
Evan Chengd6594ae2006-09-12 21:00:35 +00003690const Type *ConstantPoolSDNode::getType() const {
3691 if (isMachineConstantPoolEntry())
3692 return Val.MachineCPVal->getType();
3693 return Val.ConstVal->getType();
3694}