blob: 055834b503932d2c1fcd5d099869d7ba9e0f638f [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.
Dale Johannesene6c17422007-08-26 01:18:27 +000051bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000052 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000053}
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 Lattnerc9f8f412006-08-11 21:55:30 +0000672SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
673 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000674 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dan Gohman7f321562007-06-25 16:23:39 +0000675 MVT::ValueType EltVT =
676 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
677 if (EltVT == MVT::f32)
Chris Lattnerc3aae252005-01-07 07:46:32 +0000678 Val = (float)Val; // Mask out extra precision.
679
Chris Lattnerd8658612005-02-17 20:17:32 +0000680 // Do the map lookup using the actual bit pattern for the floating point
681 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
682 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000683 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000684 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000685 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Jim Laskey583bd472006-10-27 23:46:08 +0000686 ID.AddDouble(Val);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000687 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000688 SDNode *N = NULL;
689 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
690 if (!MVT::isVector(VT))
691 return SDOperand(N, 0);
692 if (!N) {
693 N = new ConstantFPSDNode(isTarget, Val, EltVT);
694 CSEMap.InsertNode(N, IP);
695 AllNodes.push_back(N);
696 }
697
Dan Gohman7f321562007-06-25 16:23:39 +0000698 SDOperand Result(N, 0);
699 if (MVT::isVector(VT)) {
700 SmallVector<SDOperand, 8> Ops;
701 Ops.assign(MVT::getVectorNumElements(VT), Result);
702 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
703 }
704 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000705}
706
Chris Lattnerc3aae252005-01-07 07:46:32 +0000707SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000708 MVT::ValueType VT, int Offset,
709 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000710 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
711 unsigned Opc;
712 if (GVar && GVar->isThreadLocal())
713 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
714 else
715 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000716 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000717 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000718 ID.AddPointer(GV);
719 ID.AddInteger(Offset);
720 void *IP = 0;
721 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
722 return SDOperand(E, 0);
723 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
724 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000725 AllNodes.push_back(N);
726 return SDOperand(N, 0);
727}
728
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000729SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
730 bool isTarget) {
731 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000732 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000733 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000734 ID.AddInteger(FI);
735 void *IP = 0;
736 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
737 return SDOperand(E, 0);
738 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
739 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000740 AllNodes.push_back(N);
741 return SDOperand(N, 0);
742}
743
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000744SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
745 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000746 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000747 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000748 ID.AddInteger(JTI);
749 void *IP = 0;
750 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
751 return SDOperand(E, 0);
752 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
753 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000754 AllNodes.push_back(N);
755 return SDOperand(N, 0);
756}
757
Evan Chengb8973bd2006-01-31 22:23:14 +0000758SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000759 unsigned Alignment, int Offset,
760 bool isTarget) {
761 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000762 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000763 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000764 ID.AddInteger(Alignment);
765 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000766 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000767 void *IP = 0;
768 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
769 return SDOperand(E, 0);
770 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
771 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000772 AllNodes.push_back(N);
773 return SDOperand(N, 0);
774}
775
Chris Lattnerc3aae252005-01-07 07:46:32 +0000776
Evan Chengd6594ae2006-09-12 21:00:35 +0000777SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
778 MVT::ValueType VT,
779 unsigned Alignment, int Offset,
780 bool isTarget) {
781 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000782 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000783 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000784 ID.AddInteger(Alignment);
785 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000786 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000787 void *IP = 0;
788 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
789 return SDOperand(E, 0);
790 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
791 CSEMap.InsertNode(N, IP);
792 AllNodes.push_back(N);
793 return SDOperand(N, 0);
794}
795
796
Chris Lattnerc3aae252005-01-07 07:46:32 +0000797SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000798 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000799 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000800 ID.AddPointer(MBB);
801 void *IP = 0;
802 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
803 return SDOperand(E, 0);
804 SDNode *N = new BasicBlockSDNode(MBB);
805 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000806 AllNodes.push_back(N);
807 return SDOperand(N, 0);
808}
809
Chris Lattner15e4b012005-07-10 00:07:11 +0000810SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
811 if ((unsigned)VT >= ValueTypeNodes.size())
812 ValueTypeNodes.resize(VT+1);
813 if (ValueTypeNodes[VT] == 0) {
814 ValueTypeNodes[VT] = new VTSDNode(VT);
815 AllNodes.push_back(ValueTypeNodes[VT]);
816 }
817
818 return SDOperand(ValueTypeNodes[VT], 0);
819}
820
Chris Lattnerc3aae252005-01-07 07:46:32 +0000821SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
822 SDNode *&N = ExternalSymbols[Sym];
823 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000824 N = new ExternalSymbolSDNode(false, Sym, VT);
825 AllNodes.push_back(N);
826 return SDOperand(N, 0);
827}
828
Chris Lattner809ec112006-01-28 10:09:25 +0000829SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
830 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000831 SDNode *&N = TargetExternalSymbols[Sym];
832 if (N) return SDOperand(N, 0);
833 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000834 AllNodes.push_back(N);
835 return SDOperand(N, 0);
836}
837
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000838SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
839 if ((unsigned)Cond >= CondCodeNodes.size())
840 CondCodeNodes.resize(Cond+1);
841
Chris Lattner079a27a2005-08-09 20:40:02 +0000842 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000843 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000844 AllNodes.push_back(CondCodeNodes[Cond]);
845 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000846 return SDOperand(CondCodeNodes[Cond], 0);
847}
848
Chris Lattner0fdd7682005-08-30 22:38:38 +0000849SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000850 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000851 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000852 ID.AddInteger(RegNo);
853 void *IP = 0;
854 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
855 return SDOperand(E, 0);
856 SDNode *N = new RegisterSDNode(RegNo, VT);
857 CSEMap.InsertNode(N, IP);
858 AllNodes.push_back(N);
859 return SDOperand(N, 0);
860}
861
862SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
863 assert((!V || isa<PointerType>(V->getType())) &&
864 "SrcValue is not a pointer?");
865
Jim Laskey583bd472006-10-27 23:46:08 +0000866 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000867 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000868 ID.AddPointer(V);
869 ID.AddInteger(Offset);
870 void *IP = 0;
871 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
872 return SDOperand(E, 0);
873 SDNode *N = new SrcValueSDNode(V, Offset);
874 CSEMap.InsertNode(N, IP);
875 AllNodes.push_back(N);
876 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000877}
878
Chris Lattner51dabfb2006-10-14 00:41:01 +0000879SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
880 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000881 // These setcc operations always fold.
882 switch (Cond) {
883 default: break;
884 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000885 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000886 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000887 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000888
889 case ISD::SETOEQ:
890 case ISD::SETOGT:
891 case ISD::SETOGE:
892 case ISD::SETOLT:
893 case ISD::SETOLE:
894 case ISD::SETONE:
895 case ISD::SETO:
896 case ISD::SETUO:
897 case ISD::SETUEQ:
898 case ISD::SETUNE:
899 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
900 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000901 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000902
Chris Lattner67255a12005-04-07 18:14:58 +0000903 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
904 uint64_t C2 = N2C->getValue();
905 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
906 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000907
Chris Lattnerc3aae252005-01-07 07:46:32 +0000908 // Sign extend the operands if required
909 if (ISD::isSignedIntSetCC(Cond)) {
910 C1 = N1C->getSignExtended();
911 C2 = N2C->getSignExtended();
912 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000913
Chris Lattnerc3aae252005-01-07 07:46:32 +0000914 switch (Cond) {
915 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000916 case ISD::SETEQ: return getConstant(C1 == C2, VT);
917 case ISD::SETNE: return getConstant(C1 != C2, VT);
918 case ISD::SETULT: return getConstant(C1 < C2, VT);
919 case ISD::SETUGT: return getConstant(C1 > C2, VT);
920 case ISD::SETULE: return getConstant(C1 <= C2, VT);
921 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
922 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
923 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
924 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
925 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000926 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000927 }
Chris Lattner67255a12005-04-07 18:14:58 +0000928 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000929 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
930 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
931 double C1 = N1C->getValue(), C2 = N2C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000932
Chris Lattnerc3aae252005-01-07 07:46:32 +0000933 switch (Cond) {
934 default: break; // FIXME: Implement the rest of these!
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000935 case ISD::SETEQ: return getConstant(C1 == C2, VT);
936 case ISD::SETNE: return getConstant(C1 != C2, VT);
937 case ISD::SETLT: return getConstant(C1 < C2, VT);
938 case ISD::SETGT: return getConstant(C1 > C2, VT);
939 case ISD::SETLE: return getConstant(C1 <= C2, VT);
940 case ISD::SETGE: return getConstant(C1 >= C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000941 }
942 } else {
943 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +0000944 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +0000945 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000946
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000947 // Could not fold it.
948 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +0000949}
950
Dan Gohmanea859be2007-06-22 14:59:07 +0000951/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
952/// this predicate to simplify operations downstream. Mask is known to be zero
953/// for bits that V cannot have.
954bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
955 unsigned Depth) const {
956 // The masks are not wide enough to represent this type! Should use APInt.
957 if (Op.getValueType() == MVT::i128)
958 return false;
959
960 uint64_t KnownZero, KnownOne;
961 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
962 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
963 return (KnownZero & Mask) == Mask;
964}
965
966/// ComputeMaskedBits - Determine which of the bits specified in Mask are
967/// known to be either zero or one and return them in the KnownZero/KnownOne
968/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
969/// processing.
970void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
971 uint64_t &KnownZero, uint64_t &KnownOne,
972 unsigned Depth) const {
973 KnownZero = KnownOne = 0; // Don't know anything.
974 if (Depth == 6 || Mask == 0)
975 return; // Limit search depth.
976
977 // The masks are not wide enough to represent this type! Should use APInt.
978 if (Op.getValueType() == MVT::i128)
979 return;
980
981 uint64_t KnownZero2, KnownOne2;
982
983 switch (Op.getOpcode()) {
984 case ISD::Constant:
985 // We know all of the bits for a constant!
986 KnownOne = cast<ConstantSDNode>(Op)->getValue() & Mask;
987 KnownZero = ~KnownOne & Mask;
988 return;
989 case ISD::AND:
990 // If either the LHS or the RHS are Zero, the result is zero.
991 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
992 Mask &= ~KnownZero;
993 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
994 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
995 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
996
997 // Output known-1 bits are only known if set in both the LHS & RHS.
998 KnownOne &= KnownOne2;
999 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1000 KnownZero |= KnownZero2;
1001 return;
1002 case ISD::OR:
1003 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1004 Mask &= ~KnownOne;
1005 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1006 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1007 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1008
1009 // Output known-0 bits are only known if clear in both the LHS & RHS.
1010 KnownZero &= KnownZero2;
1011 // Output known-1 are known to be set if set in either the LHS | RHS.
1012 KnownOne |= KnownOne2;
1013 return;
1014 case ISD::XOR: {
1015 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1016 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1017 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1018 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1019
1020 // Output known-0 bits are known if clear or set in both the LHS & RHS.
1021 uint64_t KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1022 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1023 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1024 KnownZero = KnownZeroOut;
1025 return;
1026 }
1027 case ISD::SELECT:
1028 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1029 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1030 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1031 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1032
1033 // Only known if known in both the LHS and RHS.
1034 KnownOne &= KnownOne2;
1035 KnownZero &= KnownZero2;
1036 return;
1037 case ISD::SELECT_CC:
1038 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1039 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1040 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1041 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1042
1043 // Only known if known in both the LHS and RHS.
1044 KnownOne &= KnownOne2;
1045 KnownZero &= KnownZero2;
1046 return;
1047 case ISD::SETCC:
1048 // If we know the result of a setcc has the top bits zero, use this info.
1049 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult)
1050 KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
1051 return;
1052 case ISD::SHL:
1053 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1054 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1055 ComputeMaskedBits(Op.getOperand(0), Mask >> SA->getValue(),
1056 KnownZero, KnownOne, Depth+1);
1057 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1058 KnownZero <<= SA->getValue();
1059 KnownOne <<= SA->getValue();
1060 KnownZero |= (1ULL << SA->getValue())-1; // low bits known zero.
1061 }
1062 return;
1063 case ISD::SRL:
1064 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1065 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1066 MVT::ValueType VT = Op.getValueType();
1067 unsigned ShAmt = SA->getValue();
1068
1069 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1070 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt) & TypeMask,
1071 KnownZero, KnownOne, Depth+1);
1072 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1073 KnownZero &= TypeMask;
1074 KnownOne &= TypeMask;
1075 KnownZero >>= ShAmt;
1076 KnownOne >>= ShAmt;
1077
1078 uint64_t HighBits = (1ULL << ShAmt)-1;
1079 HighBits <<= MVT::getSizeInBits(VT)-ShAmt;
1080 KnownZero |= HighBits; // High bits known zero.
1081 }
1082 return;
1083 case ISD::SRA:
1084 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1085 MVT::ValueType VT = Op.getValueType();
1086 unsigned ShAmt = SA->getValue();
1087
1088 // Compute the new bits that are at the top now.
1089 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1090
1091 uint64_t InDemandedMask = (Mask << ShAmt) & TypeMask;
1092 // If any of the demanded bits are produced by the sign extension, we also
1093 // demand the input sign bit.
1094 uint64_t HighBits = (1ULL << ShAmt)-1;
1095 HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
1096 if (HighBits & Mask)
1097 InDemandedMask |= MVT::getIntVTSignBit(VT);
1098
1099 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1100 Depth+1);
1101 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1102 KnownZero &= TypeMask;
1103 KnownOne &= TypeMask;
1104 KnownZero >>= ShAmt;
1105 KnownOne >>= ShAmt;
1106
1107 // Handle the sign bits.
1108 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1109 SignBit >>= ShAmt; // Adjust to where it is now in the mask.
1110
1111 if (KnownZero & SignBit) {
1112 KnownZero |= HighBits; // New bits are known zero.
1113 } else if (KnownOne & SignBit) {
1114 KnownOne |= HighBits; // New bits are known one.
1115 }
1116 }
1117 return;
1118 case ISD::SIGN_EXTEND_INREG: {
1119 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1120
1121 // Sign extension. Compute the demanded bits in the result that are not
1122 // present in the input.
1123 uint64_t NewBits = ~MVT::getIntVTBitMask(EVT) & Mask;
1124
1125 uint64_t InSignBit = MVT::getIntVTSignBit(EVT);
1126 int64_t InputDemandedBits = Mask & MVT::getIntVTBitMask(EVT);
1127
1128 // If the sign extended bits are demanded, we know that the sign
1129 // bit is demanded.
1130 if (NewBits)
1131 InputDemandedBits |= InSignBit;
1132
1133 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1134 KnownZero, KnownOne, Depth+1);
1135 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1136
1137 // If the sign bit of the input is known set or clear, then we know the
1138 // top bits of the result.
1139 if (KnownZero & InSignBit) { // Input sign bit known clear
1140 KnownZero |= NewBits;
1141 KnownOne &= ~NewBits;
1142 } else if (KnownOne & InSignBit) { // Input sign bit known set
1143 KnownOne |= NewBits;
1144 KnownZero &= ~NewBits;
1145 } else { // Input sign bit unknown
1146 KnownZero &= ~NewBits;
1147 KnownOne &= ~NewBits;
1148 }
1149 return;
1150 }
1151 case ISD::CTTZ:
1152 case ISD::CTLZ:
1153 case ISD::CTPOP: {
1154 MVT::ValueType VT = Op.getValueType();
1155 unsigned LowBits = Log2_32(MVT::getSizeInBits(VT))+1;
1156 KnownZero = ~((1ULL << LowBits)-1) & MVT::getIntVTBitMask(VT);
1157 KnownOne = 0;
1158 return;
1159 }
1160 case ISD::LOAD: {
1161 if (ISD::isZEXTLoad(Op.Val)) {
1162 LoadSDNode *LD = cast<LoadSDNode>(Op);
1163 MVT::ValueType VT = LD->getLoadedVT();
1164 KnownZero |= ~MVT::getIntVTBitMask(VT) & Mask;
1165 }
1166 return;
1167 }
1168 case ISD::ZERO_EXTEND: {
1169 uint64_t InMask = MVT::getIntVTBitMask(Op.getOperand(0).getValueType());
1170 uint64_t NewBits = (~InMask) & Mask;
1171 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1172 KnownOne, Depth+1);
1173 KnownZero |= NewBits & Mask;
1174 KnownOne &= ~NewBits;
1175 return;
1176 }
1177 case ISD::SIGN_EXTEND: {
1178 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1179 unsigned InBits = MVT::getSizeInBits(InVT);
1180 uint64_t InMask = MVT::getIntVTBitMask(InVT);
1181 uint64_t InSignBit = 1ULL << (InBits-1);
1182 uint64_t NewBits = (~InMask) & Mask;
1183 uint64_t InDemandedBits = Mask & InMask;
1184
1185 // If any of the sign extended bits are demanded, we know that the sign
1186 // bit is demanded.
1187 if (NewBits & Mask)
1188 InDemandedBits |= InSignBit;
1189
1190 ComputeMaskedBits(Op.getOperand(0), InDemandedBits, KnownZero,
1191 KnownOne, Depth+1);
1192 // If the sign bit is known zero or one, the top bits match.
1193 if (KnownZero & InSignBit) {
1194 KnownZero |= NewBits;
1195 KnownOne &= ~NewBits;
1196 } else if (KnownOne & InSignBit) {
1197 KnownOne |= NewBits;
1198 KnownZero &= ~NewBits;
1199 } else { // Otherwise, top bits aren't known.
1200 KnownOne &= ~NewBits;
1201 KnownZero &= ~NewBits;
1202 }
1203 return;
1204 }
1205 case ISD::ANY_EXTEND: {
1206 MVT::ValueType VT = Op.getOperand(0).getValueType();
1207 ComputeMaskedBits(Op.getOperand(0), Mask & MVT::getIntVTBitMask(VT),
1208 KnownZero, KnownOne, Depth+1);
1209 return;
1210 }
1211 case ISD::TRUNCATE: {
1212 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1213 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1214 uint64_t OutMask = MVT::getIntVTBitMask(Op.getValueType());
1215 KnownZero &= OutMask;
1216 KnownOne &= OutMask;
1217 break;
1218 }
1219 case ISD::AssertZext: {
1220 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1221 uint64_t InMask = MVT::getIntVTBitMask(VT);
1222 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1223 KnownOne, Depth+1);
1224 KnownZero |= (~InMask) & Mask;
1225 return;
1226 }
1227 case ISD::ADD: {
1228 // If either the LHS or the RHS are Zero, the result is zero.
1229 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1230 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1231 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1232 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1233
1234 // Output known-0 bits are known if clear or set in both the low clear bits
1235 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1236 // low 3 bits clear.
1237 uint64_t KnownZeroOut = std::min(CountTrailingZeros_64(~KnownZero),
1238 CountTrailingZeros_64(~KnownZero2));
1239
1240 KnownZero = (1ULL << KnownZeroOut) - 1;
1241 KnownOne = 0;
1242 return;
1243 }
1244 case ISD::SUB: {
1245 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1246 if (!CLHS) return;
1247
1248 // We know that the top bits of C-X are clear if X contains less bits
1249 // than C (i.e. no wrap-around can happen). For example, 20-X is
1250 // positive if we can prove that X is >= 0 and < 16.
1251 MVT::ValueType VT = CLHS->getValueType(0);
1252 if ((CLHS->getValue() & MVT::getIntVTSignBit(VT)) == 0) { // sign bit clear
1253 unsigned NLZ = CountLeadingZeros_64(CLHS->getValue()+1);
1254 uint64_t MaskV = (1ULL << (63-NLZ))-1; // NLZ can't be 64 with no sign bit
1255 MaskV = ~MaskV & MVT::getIntVTBitMask(VT);
1256 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1257
1258 // If all of the MaskV bits are known to be zero, then we know the output
1259 // top bits are zero, because we now know that the output is from [0-C].
1260 if ((KnownZero & MaskV) == MaskV) {
1261 unsigned NLZ2 = CountLeadingZeros_64(CLHS->getValue());
1262 KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask; // Top bits known zero.
1263 KnownOne = 0; // No one bits known.
1264 } else {
1265 KnownZero = KnownOne = 0; // Otherwise, nothing known.
1266 }
1267 }
1268 return;
1269 }
1270 default:
1271 // Allow the target to implement this method for its nodes.
1272 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1273 case ISD::INTRINSIC_WO_CHAIN:
1274 case ISD::INTRINSIC_W_CHAIN:
1275 case ISD::INTRINSIC_VOID:
1276 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1277 }
1278 return;
1279 }
1280}
1281
1282/// ComputeNumSignBits - Return the number of times the sign bit of the
1283/// register is replicated into the other bits. We know that at least 1 bit
1284/// is always equal to the sign bit (itself), but other cases can give us
1285/// information. For example, immediately after an "SRA X, 2", we know that
1286/// the top 3 bits are all equal to each other, so we return 3.
1287unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1288 MVT::ValueType VT = Op.getValueType();
1289 assert(MVT::isInteger(VT) && "Invalid VT!");
1290 unsigned VTBits = MVT::getSizeInBits(VT);
1291 unsigned Tmp, Tmp2;
1292
1293 if (Depth == 6)
1294 return 1; // Limit search depth.
1295
1296 switch (Op.getOpcode()) {
1297 default: break;
1298 case ISD::AssertSext:
1299 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1300 return VTBits-Tmp+1;
1301 case ISD::AssertZext:
1302 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1303 return VTBits-Tmp;
1304
1305 case ISD::Constant: {
1306 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1307 // If negative, invert the bits, then look at it.
1308 if (Val & MVT::getIntVTSignBit(VT))
1309 Val = ~Val;
1310
1311 // Shift the bits so they are the leading bits in the int64_t.
1312 Val <<= 64-VTBits;
1313
1314 // Return # leading zeros. We use 'min' here in case Val was zero before
1315 // shifting. We don't want to return '64' as for an i32 "0".
1316 return std::min(VTBits, CountLeadingZeros_64(Val));
1317 }
1318
1319 case ISD::SIGN_EXTEND:
1320 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1321 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1322
1323 case ISD::SIGN_EXTEND_INREG:
1324 // Max of the input and what this extends.
1325 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1326 Tmp = VTBits-Tmp+1;
1327
1328 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1329 return std::max(Tmp, Tmp2);
1330
1331 case ISD::SRA:
1332 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1333 // SRA X, C -> adds C sign bits.
1334 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1335 Tmp += C->getValue();
1336 if (Tmp > VTBits) Tmp = VTBits;
1337 }
1338 return Tmp;
1339 case ISD::SHL:
1340 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1341 // shl destroys sign bits.
1342 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1343 if (C->getValue() >= VTBits || // Bad shift.
1344 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1345 return Tmp - C->getValue();
1346 }
1347 break;
1348 case ISD::AND:
1349 case ISD::OR:
1350 case ISD::XOR: // NOT is handled here.
1351 // Logical binary ops preserve the number of sign bits.
1352 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1353 if (Tmp == 1) return 1; // Early out.
1354 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1355 return std::min(Tmp, Tmp2);
1356
1357 case ISD::SELECT:
1358 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1359 if (Tmp == 1) return 1; // Early out.
1360 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1361 return std::min(Tmp, Tmp2);
1362
1363 case ISD::SETCC:
1364 // If setcc returns 0/-1, all bits are sign bits.
1365 if (TLI.getSetCCResultContents() ==
1366 TargetLowering::ZeroOrNegativeOneSetCCResult)
1367 return VTBits;
1368 break;
1369 case ISD::ROTL:
1370 case ISD::ROTR:
1371 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1372 unsigned RotAmt = C->getValue() & (VTBits-1);
1373
1374 // Handle rotate right by N like a rotate left by 32-N.
1375 if (Op.getOpcode() == ISD::ROTR)
1376 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1377
1378 // If we aren't rotating out all of the known-in sign bits, return the
1379 // number that are left. This handles rotl(sext(x), 1) for example.
1380 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1381 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1382 }
1383 break;
1384 case ISD::ADD:
1385 // Add can have at most one carry bit. Thus we know that the output
1386 // is, at worst, one more bit than the inputs.
1387 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1388 if (Tmp == 1) return 1; // Early out.
1389
1390 // Special case decrementing a value (ADD X, -1):
1391 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1392 if (CRHS->isAllOnesValue()) {
1393 uint64_t KnownZero, KnownOne;
1394 uint64_t Mask = MVT::getIntVTBitMask(VT);
1395 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1396
1397 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1398 // sign bits set.
1399 if ((KnownZero|1) == Mask)
1400 return VTBits;
1401
1402 // If we are subtracting one from a positive number, there is no carry
1403 // out of the result.
1404 if (KnownZero & MVT::getIntVTSignBit(VT))
1405 return Tmp;
1406 }
1407
1408 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1409 if (Tmp2 == 1) return 1;
1410 return std::min(Tmp, Tmp2)-1;
1411 break;
1412
1413 case ISD::SUB:
1414 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1415 if (Tmp2 == 1) return 1;
1416
1417 // Handle NEG.
1418 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1419 if (CLHS->getValue() == 0) {
1420 uint64_t KnownZero, KnownOne;
1421 uint64_t Mask = MVT::getIntVTBitMask(VT);
1422 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1423 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1424 // sign bits set.
1425 if ((KnownZero|1) == Mask)
1426 return VTBits;
1427
1428 // If the input is known to be positive (the sign bit is known clear),
1429 // the output of the NEG has the same number of sign bits as the input.
1430 if (KnownZero & MVT::getIntVTSignBit(VT))
1431 return Tmp2;
1432
1433 // Otherwise, we treat this like a SUB.
1434 }
1435
1436 // Sub can have at most one carry bit. Thus we know that the output
1437 // is, at worst, one more bit than the inputs.
1438 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1439 if (Tmp == 1) return 1; // Early out.
1440 return std::min(Tmp, Tmp2)-1;
1441 break;
1442 case ISD::TRUNCATE:
1443 // FIXME: it's tricky to do anything useful for this, but it is an important
1444 // case for targets like X86.
1445 break;
1446 }
1447
1448 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1449 if (Op.getOpcode() == ISD::LOAD) {
1450 LoadSDNode *LD = cast<LoadSDNode>(Op);
1451 unsigned ExtType = LD->getExtensionType();
1452 switch (ExtType) {
1453 default: break;
1454 case ISD::SEXTLOAD: // '17' bits known
1455 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1456 return VTBits-Tmp+1;
1457 case ISD::ZEXTLOAD: // '16' bits known
1458 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1459 return VTBits-Tmp;
1460 }
1461 }
1462
1463 // Allow the target to implement this method for its nodes.
1464 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1465 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1466 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1467 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1468 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1469 if (NumBits > 1) return NumBits;
1470 }
1471
1472 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1473 // use this information.
1474 uint64_t KnownZero, KnownOne;
1475 uint64_t Mask = MVT::getIntVTBitMask(VT);
1476 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1477
1478 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1479 if (KnownZero & SignBit) { // SignBit is 0
1480 Mask = KnownZero;
1481 } else if (KnownOne & SignBit) { // SignBit is 1;
1482 Mask = KnownOne;
1483 } else {
1484 // Nothing known.
1485 return 1;
1486 }
1487
1488 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1489 // the number of identical bits in the top of the input value.
1490 Mask ^= ~0ULL;
1491 Mask <<= 64-VTBits;
1492 // Return # leading zeros. We use 'min' here in case Val was zero before
1493 // shifting. We don't want to return '64' as for an i32 "0".
1494 return std::min(VTBits, CountLeadingZeros_64(Mask));
1495}
1496
Chris Lattner51dabfb2006-10-14 00:41:01 +00001497
Chris Lattnerc3aae252005-01-07 07:46:32 +00001498/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001499///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001500SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001501 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001502 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001503 void *IP = 0;
1504 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1505 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001506 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001507 CSEMap.InsertNode(N, IP);
1508
1509 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001510 return SDOperand(N, 0);
1511}
1512
Chris Lattnerc3aae252005-01-07 07:46:32 +00001513SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1514 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001515 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001516 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001517 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1518 uint64_t Val = C->getValue();
1519 switch (Opcode) {
1520 default: break;
1521 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001522 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001523 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1524 case ISD::TRUNCATE: return getConstant(Val, VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001525 case ISD::SINT_TO_FP: return getConstantFP(C->getSignExtended(), VT);
1526 case ISD::UINT_TO_FP: return getConstantFP(C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001527 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001528 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001529 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001530 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001531 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001532 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001533 case ISD::BSWAP:
1534 switch(VT) {
1535 default: assert(0 && "Invalid bswap!"); break;
1536 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1537 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1538 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1539 }
1540 break;
1541 case ISD::CTPOP:
1542 switch(VT) {
1543 default: assert(0 && "Invalid ctpop!"); break;
1544 case MVT::i1: return getConstant(Val != 0, VT);
1545 case MVT::i8:
1546 Tmp1 = (unsigned)Val & 0xFF;
1547 return getConstant(CountPopulation_32(Tmp1), VT);
1548 case MVT::i16:
1549 Tmp1 = (unsigned)Val & 0xFFFF;
1550 return getConstant(CountPopulation_32(Tmp1), VT);
1551 case MVT::i32:
1552 return getConstant(CountPopulation_32((unsigned)Val), VT);
1553 case MVT::i64:
1554 return getConstant(CountPopulation_64(Val), VT);
1555 }
1556 case ISD::CTLZ:
1557 switch(VT) {
1558 default: assert(0 && "Invalid ctlz!"); break;
1559 case MVT::i1: return getConstant(Val == 0, VT);
1560 case MVT::i8:
1561 Tmp1 = (unsigned)Val & 0xFF;
1562 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1563 case MVT::i16:
1564 Tmp1 = (unsigned)Val & 0xFFFF;
1565 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1566 case MVT::i32:
1567 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1568 case MVT::i64:
1569 return getConstant(CountLeadingZeros_64(Val), VT);
1570 }
1571 case ISD::CTTZ:
1572 switch(VT) {
1573 default: assert(0 && "Invalid cttz!"); break;
1574 case MVT::i1: return getConstant(Val == 0, VT);
1575 case MVT::i8:
1576 Tmp1 = (unsigned)Val | 0x100;
1577 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1578 case MVT::i16:
1579 Tmp1 = (unsigned)Val | 0x10000;
1580 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1581 case MVT::i32:
1582 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1583 case MVT::i64:
1584 return getConstant(CountTrailingZeros_64(Val), VT);
1585 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001586 }
1587 }
1588
Chris Lattner94683772005-12-23 05:30:37 +00001589 // Constant fold unary operations with an floating point constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001590 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1591 switch (Opcode) {
Chris Lattner485df9b2005-04-09 03:02:46 +00001592 case ISD::FNEG:
1593 return getConstantFP(-C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001594 case ISD::FABS:
1595 return getConstantFP(fabs(C->getValue()), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001596 case ISD::FP_ROUND:
1597 case ISD::FP_EXTEND:
1598 return getConstantFP(C->getValue(), VT);
Chris Lattnerae0aacb2005-01-08 08:08:56 +00001599 case ISD::FP_TO_SINT:
1600 return getConstant((int64_t)C->getValue(), VT);
1601 case ISD::FP_TO_UINT:
1602 return getConstant((uint64_t)C->getValue(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001603 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001604 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Chris Lattner94683772005-12-23 05:30:37 +00001605 return getConstant(FloatToBits(C->getValue()), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001606 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Chris Lattner94683772005-12-23 05:30:37 +00001607 return getConstant(DoubleToBits(C->getValue()), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001608 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001609 }
1610
1611 unsigned OpOpcode = Operand.Val->getOpcode();
1612 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001613 case ISD::TokenFactor:
1614 return Operand; // Factor of one node? No factor.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001615 case ISD::FP_ROUND:
1616 case ISD::FP_EXTEND:
1617 assert(MVT::isFloatingPoint(VT) &&
1618 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1619 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001620 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001621 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1622 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001623 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001624 assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001625 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1626 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1627 break;
1628 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001629 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1630 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001631 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001632 assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001633 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001634 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001635 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001636 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001637 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1638 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001639 if (Operand.getValueType() == VT) return Operand; // noop extension
Nate Begemanb0d04a72006-02-18 02:40:58 +00001640 assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001641 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1642 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1643 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1644 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001645 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001646 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1647 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001648 if (Operand.getValueType() == VT) return Operand; // noop truncate
Nate Begemanb0d04a72006-02-18 02:40:58 +00001649 assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001650 if (OpOpcode == ISD::TRUNCATE)
1651 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001652 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1653 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001654 // If the source is smaller than the dest, we still need an extend.
1655 if (Operand.Val->getOperand(0).getValueType() < VT)
1656 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1657 else if (Operand.Val->getOperand(0).getValueType() > VT)
1658 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1659 else
1660 return Operand.Val->getOperand(0);
1661 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001662 break;
Chris Lattner35481892005-12-23 00:16:34 +00001663 case ISD::BIT_CONVERT:
1664 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001665 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001666 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001667 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001668 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1669 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001670 if (OpOpcode == ISD::UNDEF)
1671 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001672 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001673 case ISD::SCALAR_TO_VECTOR:
1674 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001675 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001676 "Illegal SCALAR_TO_VECTOR node!");
1677 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001678 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001679 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1680 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001681 Operand.Val->getOperand(0));
1682 if (OpOpcode == ISD::FNEG) // --X -> X
1683 return Operand.Val->getOperand(0);
1684 break;
1685 case ISD::FABS:
1686 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1687 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1688 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001689 }
1690
Chris Lattner43247a12005-08-25 19:12:10 +00001691 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001692 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001693 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001694 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001695 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001696 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001697 void *IP = 0;
1698 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1699 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001700 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001701 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001702 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001703 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001704 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001705 AllNodes.push_back(N);
1706 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001707}
1708
Chris Lattner36019aa2005-04-18 03:48:41 +00001709
1710
Chris Lattnerc3aae252005-01-07 07:46:32 +00001711SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1712 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001713#ifndef NDEBUG
1714 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001715 case ISD::TokenFactor:
1716 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1717 N2.getValueType() == MVT::Other && "Invalid token factor!");
1718 break;
Chris Lattner76365122005-01-16 02:23:22 +00001719 case ISD::AND:
1720 case ISD::OR:
1721 case ISD::XOR:
1722 case ISD::UDIV:
1723 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001724 case ISD::MULHU:
1725 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001726 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1727 // fall through
1728 case ISD::ADD:
1729 case ISD::SUB:
1730 case ISD::MUL:
1731 case ISD::SDIV:
1732 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001733 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1734 // fall through.
1735 case ISD::FADD:
1736 case ISD::FSUB:
1737 case ISD::FMUL:
1738 case ISD::FDIV:
1739 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001740 assert(N1.getValueType() == N2.getValueType() &&
1741 N1.getValueType() == VT && "Binary operator types must match!");
1742 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001743 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1744 assert(N1.getValueType() == VT &&
1745 MVT::isFloatingPoint(N1.getValueType()) &&
1746 MVT::isFloatingPoint(N2.getValueType()) &&
1747 "Invalid FCOPYSIGN!");
1748 break;
Chris Lattner76365122005-01-16 02:23:22 +00001749 case ISD::SHL:
1750 case ISD::SRA:
1751 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001752 case ISD::ROTL:
1753 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001754 assert(VT == N1.getValueType() &&
1755 "Shift operators return type must be the same as their first arg");
1756 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001757 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001758 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001759 case ISD::FP_ROUND_INREG: {
1760 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1761 assert(VT == N1.getValueType() && "Not an inreg round!");
1762 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1763 "Cannot FP_ROUND_INREG integer types");
1764 assert(EVT <= VT && "Not rounding down!");
1765 break;
1766 }
Nate Begeman56eb8682005-08-30 02:44:00 +00001767 case ISD::AssertSext:
1768 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001769 case ISD::SIGN_EXTEND_INREG: {
1770 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1771 assert(VT == N1.getValueType() && "Not an inreg extend!");
1772 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1773 "Cannot *_EXTEND_INREG FP types");
1774 assert(EVT <= VT && "Not extending!");
1775 }
1776
Chris Lattner76365122005-01-16 02:23:22 +00001777 default: break;
1778 }
1779#endif
1780
Chris Lattnerc3aae252005-01-07 07:46:32 +00001781 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1782 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1783 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001784 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1785 int64_t Val = N1C->getValue();
1786 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1787 Val <<= 64-FromBits;
1788 Val >>= 64-FromBits;
1789 return getConstant(Val, VT);
1790 }
1791
Chris Lattnerc3aae252005-01-07 07:46:32 +00001792 if (N2C) {
1793 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1794 switch (Opcode) {
1795 case ISD::ADD: return getConstant(C1 + C2, VT);
1796 case ISD::SUB: return getConstant(C1 - C2, VT);
1797 case ISD::MUL: return getConstant(C1 * C2, VT);
1798 case ISD::UDIV:
1799 if (C2) return getConstant(C1 / C2, VT);
1800 break;
1801 case ISD::UREM :
1802 if (C2) return getConstant(C1 % C2, VT);
1803 break;
1804 case ISD::SDIV :
1805 if (C2) return getConstant(N1C->getSignExtended() /
1806 N2C->getSignExtended(), VT);
1807 break;
1808 case ISD::SREM :
1809 if (C2) return getConstant(N1C->getSignExtended() %
1810 N2C->getSignExtended(), VT);
1811 break;
1812 case ISD::AND : return getConstant(C1 & C2, VT);
1813 case ISD::OR : return getConstant(C1 | C2, VT);
1814 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001815 case ISD::SHL : return getConstant(C1 << C2, VT);
1816 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001817 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001818 case ISD::ROTL :
1819 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1820 VT);
1821 case ISD::ROTR :
1822 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1823 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001824 default: break;
1825 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001826 } else { // Cannonicalize constant to RHS if commutative
1827 if (isCommutativeBinOp(Opcode)) {
1828 std::swap(N1C, N2C);
1829 std::swap(N1, N2);
1830 }
1831 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001832 }
1833
1834 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1835 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001836 if (N1CFP) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001837 if (N2CFP) {
1838 double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1839 switch (Opcode) {
Chris Lattner01b3d732005-09-28 22:28:18 +00001840 case ISD::FADD: return getConstantFP(C1 + C2, VT);
1841 case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1842 case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1843 case ISD::FDIV:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001844 if (C2) return getConstantFP(C1 / C2, VT);
1845 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00001846 case ISD::FREM :
Chris Lattnerc3aae252005-01-07 07:46:32 +00001847 if (C2) return getConstantFP(fmod(C1, C2), VT);
1848 break;
Chris Lattner3c232c82006-03-05 23:57:58 +00001849 case ISD::FCOPYSIGN: {
1850 union {
1851 double F;
1852 uint64_t I;
1853 } u1;
Chris Lattner3c232c82006-03-05 23:57:58 +00001854 u1.F = C1;
Chris Lattner964dd862007-04-25 00:00:45 +00001855 if (int64_t(DoubleToBits(C2)) < 0) // Sign bit of RHS set?
Chris Lattner3c232c82006-03-05 23:57:58 +00001856 u1.I |= 1ULL << 63; // Set the sign bit of the LHS.
1857 else
1858 u1.I &= (1ULL << 63)-1; // Clear the sign bit of the LHS.
1859 return getConstantFP(u1.F, VT);
1860 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001861 default: break;
1862 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001863 } else { // Cannonicalize constant to RHS if commutative
1864 if (isCommutativeBinOp(Opcode)) {
1865 std::swap(N1CFP, N2CFP);
1866 std::swap(N1, N2);
1867 }
1868 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001869 }
Chris Lattner62b57722006-04-20 05:39:12 +00001870
1871 // Canonicalize an UNDEF to the RHS, even over a constant.
1872 if (N1.getOpcode() == ISD::UNDEF) {
1873 if (isCommutativeBinOp(Opcode)) {
1874 std::swap(N1, N2);
1875 } else {
1876 switch (Opcode) {
1877 case ISD::FP_ROUND_INREG:
1878 case ISD::SIGN_EXTEND_INREG:
1879 case ISD::SUB:
1880 case ISD::FSUB:
1881 case ISD::FDIV:
1882 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001883 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00001884 return N1; // fold op(undef, arg2) -> undef
1885 case ISD::UDIV:
1886 case ISD::SDIV:
1887 case ISD::UREM:
1888 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001889 case ISD::SRL:
1890 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001891 if (!MVT::isVector(VT))
1892 return getConstant(0, VT); // fold op(undef, arg2) -> 0
1893 // For vectors, we can't easily build an all zero vector, just return
1894 // the LHS.
1895 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00001896 }
1897 }
1898 }
1899
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001900 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00001901 if (N2.getOpcode() == ISD::UNDEF) {
1902 switch (Opcode) {
1903 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00001904 case ISD::ADDC:
1905 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00001906 case ISD::SUB:
1907 case ISD::FADD:
1908 case ISD::FSUB:
1909 case ISD::FMUL:
1910 case ISD::FDIV:
1911 case ISD::FREM:
1912 case ISD::UDIV:
1913 case ISD::SDIV:
1914 case ISD::UREM:
1915 case ISD::SREM:
1916 case ISD::XOR:
1917 return N2; // fold op(arg1, undef) -> undef
1918 case ISD::MUL:
1919 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00001920 case ISD::SRL:
1921 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00001922 if (!MVT::isVector(VT))
1923 return getConstant(0, VT); // fold op(arg1, undef) -> 0
1924 // For vectors, we can't easily build an all zero vector, just return
1925 // the LHS.
1926 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001927 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00001928 if (!MVT::isVector(VT))
1929 return getConstant(MVT::getIntVTBitMask(VT), VT);
1930 // For vectors, we can't easily build an all one vector, just return
1931 // the LHS.
1932 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00001933 case ISD::SRA:
1934 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00001935 }
1936 }
Chris Lattner15e4b012005-07-10 00:07:11 +00001937
Chris Lattner51dabfb2006-10-14 00:41:01 +00001938 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001939 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00001940 case ISD::TokenFactor:
1941 // Fold trivial token factors.
1942 if (N1.getOpcode() == ISD::EntryToken) return N2;
1943 if (N2.getOpcode() == ISD::EntryToken) return N1;
1944 break;
1945
Chris Lattner51dabfb2006-10-14 00:41:01 +00001946 case ISD::AND:
1947 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1948 // worth handling here.
1949 if (N2C && N2C->getValue() == 0)
1950 return N2;
1951 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00001952 case ISD::OR:
1953 case ISD::XOR:
1954 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1955 // worth handling here.
1956 if (N2C && N2C->getValue() == 0)
1957 return N1;
1958 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001959 case ISD::FP_ROUND_INREG:
1960 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
1961 break;
1962 case ISD::SIGN_EXTEND_INREG: {
1963 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1964 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00001965 break;
1966 }
Dan Gohman7f321562007-06-25 16:23:39 +00001967 case ISD::EXTRACT_VECTOR_ELT:
1968 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
1969
Dan Gohman743d3a72007-07-10 18:20:44 +00001970 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
Dan Gohman7f321562007-06-25 16:23:39 +00001971 // expanding copies of large vectors from registers.
Dan Gohman743d3a72007-07-10 18:20:44 +00001972 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
1973 N1.getNumOperands() > 0) {
1974 unsigned Factor =
1975 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
1976 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
1977 N1.getOperand(N2C->getValue() / Factor),
1978 getConstant(N2C->getValue() % Factor, N2.getValueType()));
Dan Gohman7f321562007-06-25 16:23:39 +00001979 }
Dan Gohman743d3a72007-07-10 18:20:44 +00001980
Dan Gohman7f321562007-06-25 16:23:39 +00001981 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
1982 // expanding large vector constants.
1983 if (N1.getOpcode() == ISD::BUILD_VECTOR)
1984 return N1.getOperand(N2C->getValue());
Dan Gohman743d3a72007-07-10 18:20:44 +00001985
1986 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
1987 // operations are lowered to scalars.
1988 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
1989 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
1990 if (IEC == N2C)
1991 return N1.getOperand(1);
1992 else
1993 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
1994 }
Dan Gohman7f321562007-06-25 16:23:39 +00001995 break;
Chris Lattner5c6621c2006-09-19 04:51:23 +00001996 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00001997 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1998
Chris Lattner5c6621c2006-09-19 04:51:23 +00001999 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2000 // 64-bit integers into 32-bit parts. Instead of building the extract of
2001 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00002002 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00002003 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00002004
2005 // EXTRACT_ELEMENT of a constant int is also very common.
2006 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2007 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2008 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00002009 }
2010 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002011
Nate Begemaneea805e2005-04-13 21:23:31 +00002012 // FIXME: figure out how to safely handle things like
2013 // int foo(int x) { return 1 << (x & 255); }
2014 // int bar() { return foo(256); }
2015#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00002016 case ISD::SHL:
2017 case ISD::SRL:
2018 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00002019 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002020 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00002021 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00002022 else if (N2.getOpcode() == ISD::AND)
2023 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
2024 // If the and is only masking out bits that cannot effect the shift,
2025 // eliminate the and.
2026 unsigned NumBits = MVT::getSizeInBits(VT);
2027 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2028 return getNode(Opcode, VT, N1, N2.getOperand(0));
2029 }
Nate Begemandb81eba2005-04-12 23:32:28 +00002030 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00002031#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00002032 }
2033
Chris Lattner27e9b412005-05-11 18:57:39 +00002034 // Memoize this node if possible.
2035 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002036 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002037 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002038 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002039 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002040 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002041 void *IP = 0;
2042 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2043 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002044 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002045 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002046 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002047 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002048 }
2049
Chris Lattnerc3aae252005-01-07 07:46:32 +00002050 AllNodes.push_back(N);
2051 return SDOperand(N, 0);
2052}
2053
Chris Lattnerc3aae252005-01-07 07:46:32 +00002054SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2055 SDOperand N1, SDOperand N2, SDOperand N3) {
2056 // Perform various simplifications.
2057 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2058 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002059 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002060 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002061 // Use FoldSetCC to simplify SETCC's.
2062 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002063 if (Simp.Val) return Simp;
2064 break;
2065 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002066 case ISD::SELECT:
2067 if (N1C)
2068 if (N1C->getValue())
2069 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002070 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002071 return N3; // select false, X, Y -> Y
2072
2073 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002074 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002075 case ISD::BRCOND:
2076 if (N2C)
2077 if (N2C->getValue()) // Unconditional branch
2078 return getNode(ISD::BR, MVT::Other, N1, N3);
2079 else
2080 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00002081 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002082 case ISD::VECTOR_SHUFFLE:
2083 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2084 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2085 N3.getOpcode() == ISD::BUILD_VECTOR &&
2086 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2087 "Illegal VECTOR_SHUFFLE node!");
2088 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002089 case ISD::BIT_CONVERT:
2090 // Fold bit_convert nodes from a type to themselves.
2091 if (N1.getValueType() == VT)
2092 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002093 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002094 }
2095
Chris Lattner43247a12005-08-25 19:12:10 +00002096 // Memoize node if it doesn't produce a flag.
2097 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002098 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002099 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002100 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002101 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002102 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002103 void *IP = 0;
2104 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2105 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002106 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002107 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002108 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002109 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002110 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002111 AllNodes.push_back(N);
2112 return SDOperand(N, 0);
2113}
2114
2115SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002116 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002117 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002118 SDOperand Ops[] = { N1, N2, N3, N4 };
2119 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002120}
2121
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002122SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2123 SDOperand N1, SDOperand N2, SDOperand N3,
2124 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002125 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2126 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002127}
2128
Evan Cheng7038daf2005-12-10 00:37:58 +00002129SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2130 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002131 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002132 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002133 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2134 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002135 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002136 Ty = MVT::getTypeForValueType(VT);
2137 } else if (SV) {
2138 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2139 assert(PT && "Value for load must be a pointer");
2140 Ty = PT->getElementType();
2141 }
2142 assert(Ty && "Could not get type information for load");
2143 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2144 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002145 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002146 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002147 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002148 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002149 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002150 ID.AddInteger(ISD::UNINDEXED);
2151 ID.AddInteger(ISD::NON_EXTLOAD);
2152 ID.AddInteger(VT);
2153 ID.AddPointer(SV);
2154 ID.AddInteger(SVOffset);
2155 ID.AddInteger(Alignment);
2156 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002157 void *IP = 0;
2158 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2159 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002160 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002161 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2162 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002163 CSEMap.InsertNode(N, IP);
2164 AllNodes.push_back(N);
2165 return SDOperand(N, 0);
2166}
2167
2168SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002169 SDOperand Chain, SDOperand Ptr,
2170 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002171 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002172 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002173 // If they are asking for an extending load from/to the same thing, return a
2174 // normal load.
2175 if (VT == EVT)
2176 ExtType = ISD::NON_EXTLOAD;
2177
2178 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002179 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002180 else
2181 assert(EVT < VT && "Should only be an extending load, not truncating!");
2182 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2183 "Cannot sign/zero extend a FP/Vector load!");
2184 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2185 "Cannot convert from FP to Int or Int -> FP!");
2186
Dan Gohman575e2f42007-06-04 15:49:41 +00002187 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2188 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002189 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002190 Ty = MVT::getTypeForValueType(VT);
2191 } else if (SV) {
2192 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2193 assert(PT && "Value for load must be a pointer");
2194 Ty = PT->getElementType();
2195 }
2196 assert(Ty && "Could not get type information for load");
2197 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2198 }
Evan Cheng466685d2006-10-09 20:57:25 +00002199 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002200 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002201 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002202 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002203 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002204 ID.AddInteger(ISD::UNINDEXED);
2205 ID.AddInteger(ExtType);
2206 ID.AddInteger(EVT);
2207 ID.AddPointer(SV);
2208 ID.AddInteger(SVOffset);
2209 ID.AddInteger(Alignment);
2210 ID.AddInteger(isVolatile);
2211 void *IP = 0;
2212 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2213 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002214 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002215 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002216 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002217 AllNodes.push_back(N);
2218 return SDOperand(N, 0);
2219}
2220
Evan Cheng144d8f02006-11-09 17:55:04 +00002221SDOperand
2222SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2223 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002224 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002225 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2226 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002227 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002228 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002229 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002230 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002231 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002232 ID.AddInteger(AM);
2233 ID.AddInteger(LD->getExtensionType());
2234 ID.AddInteger(LD->getLoadedVT());
2235 ID.AddPointer(LD->getSrcValue());
2236 ID.AddInteger(LD->getSrcValueOffset());
2237 ID.AddInteger(LD->getAlignment());
2238 ID.AddInteger(LD->isVolatile());
2239 void *IP = 0;
2240 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2241 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002242 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00002243 LD->getExtensionType(), LD->getLoadedVT(),
2244 LD->getSrcValue(), LD->getSrcValueOffset(),
2245 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002246 CSEMap.InsertNode(N, IP);
2247 AllNodes.push_back(N);
2248 return SDOperand(N, 0);
2249}
2250
Jeff Cohend41b30d2006-11-05 19:31:28 +00002251SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002252 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002253 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002254 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002255
Dan Gohman575e2f42007-06-04 15:49:41 +00002256 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2257 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002258 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002259 Ty = MVT::getTypeForValueType(VT);
2260 } else if (SV) {
2261 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2262 assert(PT && "Value for store must be a pointer");
2263 Ty = PT->getElementType();
2264 }
2265 assert(Ty && "Could not get type information for store");
2266 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2267 }
Evan Chengad071e12006-10-05 22:57:11 +00002268 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002269 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002270 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002271 FoldingSetNodeID ID;
2272 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002273 ID.AddInteger(ISD::UNINDEXED);
2274 ID.AddInteger(false);
2275 ID.AddInteger(VT);
2276 ID.AddPointer(SV);
2277 ID.AddInteger(SVOffset);
2278 ID.AddInteger(Alignment);
2279 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002280 void *IP = 0;
2281 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2282 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002283 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002284 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002285 CSEMap.InsertNode(N, IP);
2286 AllNodes.push_back(N);
2287 return SDOperand(N, 0);
2288}
2289
Jeff Cohend41b30d2006-11-05 19:31:28 +00002290SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002291 SDOperand Ptr, const Value *SV,
2292 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002293 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002294 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002295 bool isTrunc = VT != SVT;
2296
2297 assert(VT > SVT && "Not a truncation?");
2298 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2299 "Can't do FP-INT conversion!");
2300
Dan Gohman575e2f42007-06-04 15:49:41 +00002301 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2302 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002303 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002304 Ty = MVT::getTypeForValueType(VT);
2305 } else if (SV) {
2306 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2307 assert(PT && "Value for store must be a pointer");
2308 Ty = PT->getElementType();
2309 }
2310 assert(Ty && "Could not get type information for store");
2311 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2312 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002313 SDVTList VTs = getVTList(MVT::Other);
2314 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002315 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002316 FoldingSetNodeID ID;
2317 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002318 ID.AddInteger(ISD::UNINDEXED);
2319 ID.AddInteger(isTrunc);
2320 ID.AddInteger(SVT);
2321 ID.AddPointer(SV);
2322 ID.AddInteger(SVOffset);
2323 ID.AddInteger(Alignment);
2324 ID.AddInteger(isVolatile);
2325 void *IP = 0;
2326 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2327 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002328 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002329 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002330 CSEMap.InsertNode(N, IP);
2331 AllNodes.push_back(N);
2332 return SDOperand(N, 0);
2333}
2334
Evan Cheng144d8f02006-11-09 17:55:04 +00002335SDOperand
2336SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2337 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002338 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2339 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2340 "Store is already a indexed store!");
2341 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2342 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2343 FoldingSetNodeID ID;
2344 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2345 ID.AddInteger(AM);
2346 ID.AddInteger(ST->isTruncatingStore());
2347 ID.AddInteger(ST->getStoredVT());
2348 ID.AddPointer(ST->getSrcValue());
2349 ID.AddInteger(ST->getSrcValueOffset());
2350 ID.AddInteger(ST->getAlignment());
2351 ID.AddInteger(ST->isVolatile());
2352 void *IP = 0;
2353 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2354 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002355 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00002356 ST->isTruncatingStore(), ST->getStoredVT(),
2357 ST->getSrcValue(), ST->getSrcValueOffset(),
2358 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002359 CSEMap.InsertNode(N, IP);
2360 AllNodes.push_back(N);
2361 return SDOperand(N, 0);
2362}
2363
Nate Begemanacc398c2006-01-25 18:21:52 +00002364SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2365 SDOperand Chain, SDOperand Ptr,
2366 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002367 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002368 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002369}
2370
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002371SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002372 const SDOperand *Ops, unsigned NumOps) {
2373 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002374 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002375 case 1: return getNode(Opcode, VT, Ops[0]);
2376 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2377 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002378 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002379 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002380
Chris Lattneref847df2005-04-09 03:27:28 +00002381 switch (Opcode) {
2382 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002383 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002384 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002385 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2386 "LHS and RHS of condition must have same type!");
2387 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2388 "True and False arms of SelectCC must have same type!");
2389 assert(Ops[2].getValueType() == VT &&
2390 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002391 break;
2392 }
2393 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002394 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002395 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2396 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002397 break;
2398 }
Chris Lattneref847df2005-04-09 03:27:28 +00002399 }
2400
Chris Lattner385328c2005-05-14 07:42:29 +00002401 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002402 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002403 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002404 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002405 FoldingSetNodeID ID;
2406 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002407 void *IP = 0;
2408 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2409 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002410 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002411 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002412 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002413 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002414 }
Chris Lattneref847df2005-04-09 03:27:28 +00002415 AllNodes.push_back(N);
2416 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002417}
2418
Chris Lattner89c34632005-05-14 06:20:26 +00002419SDOperand SelectionDAG::getNode(unsigned Opcode,
2420 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002421 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002422 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2423 Ops, NumOps);
2424}
2425
2426SDOperand SelectionDAG::getNode(unsigned Opcode,
2427 const MVT::ValueType *VTs, unsigned NumVTs,
2428 const SDOperand *Ops, unsigned NumOps) {
2429 if (NumVTs == 1)
2430 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002431 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2432}
2433
2434SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2435 const SDOperand *Ops, unsigned NumOps) {
2436 if (VTList.NumVTs == 1)
2437 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002438
Chris Lattner5f056bf2005-07-10 01:55:33 +00002439 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002440 // FIXME: figure out how to safely handle things like
2441 // int foo(int x) { return 1 << (x & 255); }
2442 // int bar() { return foo(256); }
2443#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002444 case ISD::SRA_PARTS:
2445 case ISD::SRL_PARTS:
2446 case ISD::SHL_PARTS:
2447 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002448 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002449 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2450 else if (N3.getOpcode() == ISD::AND)
2451 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2452 // If the and is only masking out bits that cannot effect the shift,
2453 // eliminate the and.
2454 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2455 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2456 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2457 }
2458 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002459#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002460 }
Chris Lattner89c34632005-05-14 06:20:26 +00002461
Chris Lattner43247a12005-08-25 19:12:10 +00002462 // Memoize the node unless it returns a flag.
2463 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002464 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002465 FoldingSetNodeID ID;
2466 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002467 void *IP = 0;
2468 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2469 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002470 if (NumOps == 1)
2471 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2472 else if (NumOps == 2)
2473 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2474 else if (NumOps == 3)
2475 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2476 else
2477 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002478 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002479 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002480 if (NumOps == 1)
2481 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2482 else if (NumOps == 2)
2483 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2484 else if (NumOps == 3)
2485 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2486 else
2487 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002488 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002489 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002490 return SDOperand(N, 0);
2491}
2492
Chris Lattner70046e92006-08-15 17:46:01 +00002493SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Dan Gohman6595cb32007-06-27 16:08:04 +00002494 if (!MVT::isExtendedVT(VT))
Dan Gohman7f321562007-06-25 16:23:39 +00002495 return makeVTList(SDNode::getValueTypeList(VT), 1);
2496
2497 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2498 E = VTList.end(); I != E; ++I) {
2499 if (I->size() == 1 && (*I)[0] == VT)
2500 return makeVTList(&(*I)[0], 1);
2501 }
2502 std::vector<MVT::ValueType> V;
2503 V.push_back(VT);
2504 VTList.push_front(V);
2505 return makeVTList(&(*VTList.begin())[0], 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002506}
2507
Chris Lattner70046e92006-08-15 17:46:01 +00002508SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002509 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2510 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002511 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002512 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002513 }
2514 std::vector<MVT::ValueType> V;
2515 V.push_back(VT1);
2516 V.push_back(VT2);
2517 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002518 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002519}
Chris Lattner70046e92006-08-15 17:46:01 +00002520SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2521 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002522 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002523 E = VTList.end(); I != E; ++I) {
2524 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2525 (*I)[2] == VT3)
2526 return makeVTList(&(*I)[0], 3);
2527 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002528 std::vector<MVT::ValueType> V;
2529 V.push_back(VT1);
2530 V.push_back(VT2);
2531 V.push_back(VT3);
2532 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002533 return makeVTList(&(*VTList.begin())[0], 3);
2534}
2535
2536SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2537 switch (NumVTs) {
2538 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002539 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002540 case 2: return getVTList(VTs[0], VTs[1]);
2541 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2542 default: break;
2543 }
2544
2545 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2546 E = VTList.end(); I != E; ++I) {
2547 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2548
2549 bool NoMatch = false;
2550 for (unsigned i = 2; i != NumVTs; ++i)
2551 if (VTs[i] != (*I)[i]) {
2552 NoMatch = true;
2553 break;
2554 }
2555 if (!NoMatch)
2556 return makeVTList(&*I->begin(), NumVTs);
2557 }
2558
2559 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2560 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002561}
2562
2563
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002564/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2565/// specified operands. If the resultant node already exists in the DAG,
2566/// this does not modify the specified node, instead it returns the node that
2567/// already exists. If the resultant node does not exist in the DAG, the
2568/// input node is returned. As a degenerate case, if you specify the same
2569/// input operands as the node already has, the input node is returned.
2570SDOperand SelectionDAG::
2571UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2572 SDNode *N = InN.Val;
2573 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2574
2575 // Check to see if there is no change.
2576 if (Op == N->getOperand(0)) return InN;
2577
2578 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002579 void *InsertPos = 0;
2580 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2581 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002582
2583 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002584 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002585 RemoveNodeFromCSEMaps(N);
2586
2587 // Now we update the operands.
2588 N->OperandList[0].Val->removeUser(N);
2589 Op.Val->addUser(N);
2590 N->OperandList[0] = Op;
2591
2592 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002593 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002594 return InN;
2595}
2596
2597SDOperand SelectionDAG::
2598UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2599 SDNode *N = InN.Val;
2600 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2601
2602 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002603 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2604 return InN; // No operands changed, just return the input node.
2605
2606 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002607 void *InsertPos = 0;
2608 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2609 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002610
2611 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002612 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002613 RemoveNodeFromCSEMaps(N);
2614
2615 // Now we update the operands.
2616 if (N->OperandList[0] != Op1) {
2617 N->OperandList[0].Val->removeUser(N);
2618 Op1.Val->addUser(N);
2619 N->OperandList[0] = Op1;
2620 }
2621 if (N->OperandList[1] != Op2) {
2622 N->OperandList[1].Val->removeUser(N);
2623 Op2.Val->addUser(N);
2624 N->OperandList[1] = Op2;
2625 }
2626
2627 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002628 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002629 return InN;
2630}
2631
2632SDOperand SelectionDAG::
2633UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002634 SDOperand Ops[] = { Op1, Op2, Op3 };
2635 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002636}
2637
2638SDOperand SelectionDAG::
2639UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2640 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002641 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2642 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002643}
2644
2645SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002646UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2647 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002648 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2649 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002650}
2651
2652
2653SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002654UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002655 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002656 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002657 "Update with wrong number of operands");
2658
2659 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002660 bool AnyChange = false;
2661 for (unsigned i = 0; i != NumOps; ++i) {
2662 if (Ops[i] != N->getOperand(i)) {
2663 AnyChange = true;
2664 break;
2665 }
2666 }
2667
2668 // No operands changed, just return the input node.
2669 if (!AnyChange) return InN;
2670
2671 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002672 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002673 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002674 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002675
2676 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002677 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002678 RemoveNodeFromCSEMaps(N);
2679
2680 // Now we update the operands.
2681 for (unsigned i = 0; i != NumOps; ++i) {
2682 if (N->OperandList[i] != Ops[i]) {
2683 N->OperandList[i].Val->removeUser(N);
2684 Ops[i].Val->addUser(N);
2685 N->OperandList[i] = Ops[i];
2686 }
2687 }
2688
2689 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002690 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002691 return InN;
2692}
2693
2694
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002695/// MorphNodeTo - This frees the operands of the current node, resets the
2696/// opcode, types, and operands to the specified value. This should only be
2697/// used by the SelectionDAG class.
2698void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2699 const SDOperand *Ops, unsigned NumOps) {
2700 NodeType = Opc;
2701 ValueList = L.VTs;
2702 NumValues = L.NumVTs;
2703
2704 // Clear the operands list, updating used nodes to remove this from their
2705 // use list.
2706 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2707 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002708
2709 // If NumOps is larger than the # of operands we currently have, reallocate
2710 // the operand list.
2711 if (NumOps > NumOperands) {
2712 if (OperandsNeedDelete)
2713 delete [] OperandList;
2714 OperandList = new SDOperand[NumOps];
2715 OperandsNeedDelete = true;
2716 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002717
2718 // Assign the new operands.
2719 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002720
2721 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2722 OperandList[i] = Ops[i];
2723 SDNode *N = OperandList[i].Val;
2724 N->Uses.push_back(this);
2725 }
2726}
Chris Lattner149c58c2005-08-16 18:17:10 +00002727
2728/// SelectNodeTo - These are used for target selectors to *mutate* the
2729/// specified node to have the specified return type, Target opcode, and
2730/// operands. Note that target opcodes are stored as
2731/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002732///
2733/// Note that SelectNodeTo returns the resultant node. If there is already a
2734/// node of the specified opcode and operands, it returns that node instead of
2735/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002736SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2737 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002738 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002739 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002740 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002741 void *IP = 0;
2742 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002743 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002744
Chris Lattner7651fa42005-08-24 23:00:29 +00002745 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002746
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002747 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002748
Chris Lattner4a283e92006-08-11 18:38:11 +00002749 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002750 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002751}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002752
Evan Cheng95514ba2006-08-26 08:00:10 +00002753SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2754 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002755 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002756 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002757 SDOperand Ops[] = { Op1 };
2758
Jim Laskey583bd472006-10-27 23:46:08 +00002759 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002760 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002761 void *IP = 0;
2762 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002763 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002764
Chris Lattner149c58c2005-08-16 18:17:10 +00002765 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002766 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002767 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002768 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002769}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002770
Evan Cheng95514ba2006-08-26 08:00:10 +00002771SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2772 MVT::ValueType VT, SDOperand Op1,
2773 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002774 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002775 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002776 SDOperand Ops[] = { Op1, Op2 };
2777
Jim Laskey583bd472006-10-27 23:46:08 +00002778 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002779 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002780 void *IP = 0;
2781 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002782 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002783
Chris Lattner149c58c2005-08-16 18:17:10 +00002784 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002785
Chris Lattner63e3f142007-02-04 07:28:00 +00002786 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002787
Chris Lattnera5682852006-08-07 23:03:03 +00002788 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002789 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002790}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002791
Evan Cheng95514ba2006-08-26 08:00:10 +00002792SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2793 MVT::ValueType VT, SDOperand Op1,
2794 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002795 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002796 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002797 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002798 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002799 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002800 void *IP = 0;
2801 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002802 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002803
Chris Lattner149c58c2005-08-16 18:17:10 +00002804 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002805
Chris Lattner63e3f142007-02-04 07:28:00 +00002806 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002807
Chris Lattnera5682852006-08-07 23:03:03 +00002808 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002809 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002810}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00002811
Evan Cheng95514ba2006-08-26 08:00:10 +00002812SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00002813 MVT::ValueType VT, const SDOperand *Ops,
2814 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002815 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002816 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002817 FoldingSetNodeID ID;
2818 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002819 void *IP = 0;
2820 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002821 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002822
Chris Lattner6b09a292005-08-21 18:49:33 +00002823 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002824 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002825
Chris Lattnera5682852006-08-07 23:03:03 +00002826 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002827 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00002828}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00002829
Evan Cheng95514ba2006-08-26 08:00:10 +00002830SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2831 MVT::ValueType VT1, MVT::ValueType VT2,
2832 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002833 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00002834 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002835 SDOperand Ops[] = { Op1, Op2 };
2836 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002837 void *IP = 0;
2838 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002839 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002840
Chris Lattner0fb094f2005-11-19 01:44:53 +00002841 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002842 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002843 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002844 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002845}
2846
Evan Cheng95514ba2006-08-26 08:00:10 +00002847SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2848 MVT::ValueType VT1, MVT::ValueType VT2,
2849 SDOperand Op1, SDOperand Op2,
2850 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002851 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002852 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00002853 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002854 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002855 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002856 void *IP = 0;
2857 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002858 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002859
Chris Lattner0fb094f2005-11-19 01:44:53 +00002860 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002861
Chris Lattner63e3f142007-02-04 07:28:00 +00002862 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002863 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002864 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00002865}
2866
Chris Lattner0fb094f2005-11-19 01:44:53 +00002867
Evan Cheng6ae46c42006-02-09 07:15:23 +00002868/// getTargetNode - These are used for target selectors to create a new node
2869/// with specified return type(s), target opcode, and operands.
2870///
2871/// Note that getTargetNode returns the resultant node. If there is already a
2872/// node of the specified opcode and operands, it returns that node instead of
2873/// the current one.
2874SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2875 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2876}
2877SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2878 SDOperand Op1) {
2879 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2880}
2881SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2882 SDOperand Op1, SDOperand Op2) {
2883 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2884}
2885SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002886 SDOperand Op1, SDOperand Op2,
2887 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00002888 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2889}
2890SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002891 const SDOperand *Ops, unsigned NumOps) {
2892 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002893}
2894SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2895 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00002896 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002897 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002898}
2899SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002900 MVT::ValueType VT2, SDOperand Op1,
2901 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002902 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002903 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002904 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002905}
2906SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00002907 MVT::ValueType VT2, SDOperand Op1,
2908 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00002909 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002910 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002911 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002912}
Evan Cheng694481e2006-08-27 08:08:54 +00002913SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2914 MVT::ValueType VT2,
2915 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00002916 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00002917 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002918}
2919SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2920 MVT::ValueType VT2, MVT::ValueType VT3,
2921 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00002922 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002923 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002924 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002925}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00002926SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2927 MVT::ValueType VT2, MVT::ValueType VT3,
2928 SDOperand Op1, SDOperand Op2,
2929 SDOperand Op3) {
2930 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2931 SDOperand Ops[] = { Op1, Op2, Op3 };
2932 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2933}
Evan Cheng6ae46c42006-02-09 07:15:23 +00002934SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00002935 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002936 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00002937 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2938 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00002939}
2940
Evan Cheng99157a02006-08-07 22:13:29 +00002941/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00002942/// This can cause recursive merging of nodes in the DAG.
2943///
Chris Lattner8b52f212005-08-26 18:36:28 +00002944/// This version assumes From/To have a single result value.
2945///
Chris Lattner1e111c72005-09-07 05:37:01 +00002946void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2947 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002948 SDNode *From = FromN.Val, *To = ToN.Val;
2949 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2950 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00002951 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00002952
Chris Lattner8b8749f2005-08-17 19:00:20 +00002953 while (!From->use_empty()) {
2954 // Process users until they are all gone.
2955 SDNode *U = *From->use_begin();
2956
2957 // This node is about to morph, remove its old self from the CSE maps.
2958 RemoveNodeFromCSEMaps(U);
2959
Chris Lattner65113b22005-11-08 22:07:03 +00002960 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2961 I != E; ++I)
2962 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002963 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00002964 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00002965 To->addUser(U);
2966 }
2967
2968 // Now that we have modified U, add it back to the CSE maps. If it already
2969 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00002970 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2971 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002972 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00002973 if (Deleted) Deleted->push_back(U);
2974 DeleteNodeNotInCSEMaps(U);
2975 }
Chris Lattner8b52f212005-08-26 18:36:28 +00002976 }
2977}
2978
2979/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2980/// This can cause recursive merging of nodes in the DAG.
2981///
2982/// This version assumes From/To have matching types and numbers of result
2983/// values.
2984///
Chris Lattner1e111c72005-09-07 05:37:01 +00002985void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2986 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00002987 assert(From != To && "Cannot replace uses of with self");
2988 assert(From->getNumValues() == To->getNumValues() &&
2989 "Cannot use this version of ReplaceAllUsesWith!");
2990 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00002991 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00002992 return;
2993 }
2994
2995 while (!From->use_empty()) {
2996 // Process users until they are all gone.
2997 SDNode *U = *From->use_begin();
2998
2999 // This node is about to morph, remove its old self from the CSE maps.
3000 RemoveNodeFromCSEMaps(U);
3001
Chris Lattner65113b22005-11-08 22:07:03 +00003002 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3003 I != E; ++I)
3004 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003005 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003006 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003007 To->addUser(U);
3008 }
3009
3010 // Now that we have modified U, add it back to the CSE maps. If it already
3011 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003012 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3013 ReplaceAllUsesWith(U, Existing, Deleted);
3014 // U is now dead.
3015 if (Deleted) Deleted->push_back(U);
3016 DeleteNodeNotInCSEMaps(U);
3017 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003018 }
3019}
3020
Chris Lattner8b52f212005-08-26 18:36:28 +00003021/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3022/// This can cause recursive merging of nodes in the DAG.
3023///
3024/// This version can replace From with any result values. To must match the
3025/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003026void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003027 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00003028 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003029 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00003030 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00003031 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003032 return;
3033 }
3034
3035 while (!From->use_empty()) {
3036 // Process users until they are all gone.
3037 SDNode *U = *From->use_begin();
3038
3039 // This node is about to morph, remove its old self from the CSE maps.
3040 RemoveNodeFromCSEMaps(U);
3041
Chris Lattner65113b22005-11-08 22:07:03 +00003042 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3043 I != E; ++I)
3044 if (I->Val == From) {
3045 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003046 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003047 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003048 ToOp.Val->addUser(U);
3049 }
3050
3051 // Now that we have modified U, add it back to the CSE maps. If it already
3052 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003053 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3054 ReplaceAllUsesWith(U, Existing, Deleted);
3055 // U is now dead.
3056 if (Deleted) Deleted->push_back(U);
3057 DeleteNodeNotInCSEMaps(U);
3058 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003059 }
3060}
3061
Chris Lattner012f2412006-02-17 21:58:01 +00003062/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3063/// uses of other values produced by From.Val alone. The Deleted vector is
3064/// handled the same was as for ReplaceAllUsesWith.
3065void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
3066 std::vector<SDNode*> &Deleted) {
3067 assert(From != To && "Cannot replace a value with itself");
3068 // Handle the simple, trivial, case efficiently.
3069 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
3070 ReplaceAllUsesWith(From, To, &Deleted);
3071 return;
3072 }
3073
Chris Lattnercf5640b2007-02-04 00:14:31 +00003074 // Get all of the users of From.Val. We want these in a nice,
3075 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3076 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003077
3078 while (!Users.empty()) {
3079 // We know that this user uses some value of From. If it is the right
3080 // value, update it.
3081 SDNode *User = Users.back();
3082 Users.pop_back();
3083
3084 for (SDOperand *Op = User->OperandList,
3085 *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
3086 if (*Op == From) {
3087 // Okay, we know this user needs to be updated. Remove its old self
3088 // from the CSE maps.
3089 RemoveNodeFromCSEMaps(User);
3090
3091 // Update all operands that match "From".
3092 for (; Op != E; ++Op) {
3093 if (*Op == From) {
3094 From.Val->removeUser(User);
3095 *Op = To;
3096 To.Val->addUser(User);
3097 }
3098 }
3099
3100 // Now that we have modified User, add it back to the CSE maps. If it
3101 // already exists there, recursively merge the results together.
3102 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
3103 unsigned NumDeleted = Deleted.size();
3104 ReplaceAllUsesWith(User, Existing, &Deleted);
3105
3106 // User is now dead.
3107 Deleted.push_back(User);
3108 DeleteNodeNotInCSEMaps(User);
3109
3110 // We have to be careful here, because ReplaceAllUsesWith could have
3111 // deleted a user of From, which means there may be dangling pointers
3112 // in the "Users" setvector. Scan over the deleted node pointers and
3113 // remove them from the setvector.
3114 for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
3115 Users.remove(Deleted[i]);
3116 }
3117 break; // Exit the operand scanning loop.
3118 }
3119 }
3120 }
3121}
3122
Chris Lattner7b2880c2005-08-24 22:44:39 +00003123
Evan Chenge6f35d82006-08-01 08:20:41 +00003124/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3125/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003126unsigned SelectionDAG::AssignNodeIds() {
3127 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003128 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3129 SDNode *N = I;
3130 N->setNodeId(Id++);
3131 }
3132 return Id;
3133}
3134
Evan Chenge6f35d82006-08-01 08:20:41 +00003135/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003136/// based on their topological order. It returns the maximum id and a vector
3137/// of the SDNodes* in assigned order by reference.
3138unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003139 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003140 std::vector<unsigned> InDegree(DAGSize);
3141 std::vector<SDNode*> Sources;
3142
3143 // Use a two pass approach to avoid using a std::map which is slow.
3144 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003145 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3146 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003147 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003148 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003149 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003150 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003151 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003152 }
3153
Evan Cheng99157a02006-08-07 22:13:29 +00003154 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003155 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003156 SDNode *N = Sources.back();
3157 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003158 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003159 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3160 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003161 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003162 if (Degree == 0)
3163 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003164 }
3165 }
3166
Evan Chengc384d6c2006-08-02 22:00:34 +00003167 // Second pass, assign the actual topological order as node ids.
3168 Id = 0;
3169 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3170 TI != TE; ++TI)
3171 (*TI)->setNodeId(Id++);
3172
3173 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003174}
3175
3176
Evan Cheng091cba12006-07-27 06:39:06 +00003177
Jim Laskey58b968b2005-08-17 20:08:02 +00003178//===----------------------------------------------------------------------===//
3179// SDNode Class
3180//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003181
Chris Lattner917d2c92006-07-19 00:00:37 +00003182// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003183void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003184void UnarySDNode::ANCHOR() {}
3185void BinarySDNode::ANCHOR() {}
3186void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003187void HandleSDNode::ANCHOR() {}
3188void StringSDNode::ANCHOR() {}
3189void ConstantSDNode::ANCHOR() {}
3190void ConstantFPSDNode::ANCHOR() {}
3191void GlobalAddressSDNode::ANCHOR() {}
3192void FrameIndexSDNode::ANCHOR() {}
3193void JumpTableSDNode::ANCHOR() {}
3194void ConstantPoolSDNode::ANCHOR() {}
3195void BasicBlockSDNode::ANCHOR() {}
3196void SrcValueSDNode::ANCHOR() {}
3197void RegisterSDNode::ANCHOR() {}
3198void ExternalSymbolSDNode::ANCHOR() {}
3199void CondCodeSDNode::ANCHOR() {}
3200void VTSDNode::ANCHOR() {}
3201void LoadSDNode::ANCHOR() {}
3202void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003203
Chris Lattner48b85922007-02-04 02:41:42 +00003204HandleSDNode::~HandleSDNode() {
3205 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003206 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003207}
3208
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003209GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3210 MVT::ValueType VT, int o)
3211 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00003212 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003213 // Thread Local
3214 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3215 // Non Thread Local
3216 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3217 getSDVTList(VT)), Offset(o) {
3218 TheGlobal = const_cast<GlobalValue*>(GA);
3219}
Chris Lattner48b85922007-02-04 02:41:42 +00003220
Jim Laskey583bd472006-10-27 23:46:08 +00003221/// Profile - Gather unique data for the node.
3222///
3223void SDNode::Profile(FoldingSetNodeID &ID) {
3224 AddNodeIDNode(ID, this);
3225}
3226
Chris Lattnera3255112005-11-08 23:30:28 +00003227/// getValueTypeList - Return a pointer to the specified value type.
3228///
3229MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
3230 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3231 VTs[VT] = VT;
3232 return &VTs[VT];
3233}
Chris Lattnera5682852006-08-07 23:03:03 +00003234
Chris Lattner5c884562005-01-12 18:37:47 +00003235/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3236/// indicated value. This method ignores uses of other values defined by this
3237/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003238bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003239 assert(Value < getNumValues() && "Bad value!");
3240
3241 // If there is only one value, this is easy.
3242 if (getNumValues() == 1)
3243 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00003244 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00003245
Evan Cheng4ee62112006-02-05 06:29:23 +00003246 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003247
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003248 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003249
Chris Lattnerf83482d2006-08-16 20:59:32 +00003250 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003251 SDNode *User = *UI;
3252 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003253 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003254 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3255 if (User->getOperand(i) == TheValue) {
3256 if (NUses == 0)
3257 return false; // too many uses
3258 --NUses;
3259 }
3260 }
3261
3262 // Found exactly the right number of uses?
3263 return NUses == 0;
3264}
3265
3266
Evan Cheng33d55952007-08-02 05:29:38 +00003267/// hasAnyUseOfValue - Return true if there are any use of the indicated
3268/// value. This method ignores uses of other values defined by this operation.
3269bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3270 assert(Value < getNumValues() && "Bad value!");
3271
3272 if (use_size() == 0) return false;
3273
3274 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3275
3276 SmallPtrSet<SDNode*, 32> UsersHandled;
3277
3278 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3279 SDNode *User = *UI;
3280 if (User->getNumOperands() == 1 ||
3281 UsersHandled.insert(User)) // First time we've seen this?
3282 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3283 if (User->getOperand(i) == TheValue) {
3284 return true;
3285 }
3286 }
3287
3288 return false;
3289}
3290
3291
Evan Chenge6e97e62006-11-03 07:31:32 +00003292/// isOnlyUse - Return true if this node is the only use of N.
3293///
Evan Cheng4ee62112006-02-05 06:29:23 +00003294bool SDNode::isOnlyUse(SDNode *N) const {
3295 bool Seen = false;
3296 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3297 SDNode *User = *I;
3298 if (User == this)
3299 Seen = true;
3300 else
3301 return false;
3302 }
3303
3304 return Seen;
3305}
3306
Evan Chenge6e97e62006-11-03 07:31:32 +00003307/// isOperand - Return true if this node is an operand of N.
3308///
Evan Chengbfa284f2006-03-03 06:42:32 +00003309bool SDOperand::isOperand(SDNode *N) const {
3310 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3311 if (*this == N->getOperand(i))
3312 return true;
3313 return false;
3314}
3315
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003316bool SDNode::isOperand(SDNode *N) const {
3317 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3318 if (this == N->OperandList[i].Val)
3319 return true;
3320 return false;
3321}
Evan Cheng4ee62112006-02-05 06:29:23 +00003322
Evan Chengc5fc57d2006-11-03 03:05:24 +00003323static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003324 SmallPtrSet<SDNode *, 32> &Visited) {
3325 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003326 return;
3327
3328 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3329 SDNode *Op = N->getOperand(i).Val;
3330 if (Op == P) {
3331 found = true;
3332 return;
3333 }
3334 findPredecessor(Op, P, found, Visited);
3335 }
3336}
3337
Evan Chenge6e97e62006-11-03 07:31:32 +00003338/// isPredecessor - Return true if this node is a predecessor of N. This node
3339/// is either an operand of N or it can be reached by recursively traversing
3340/// up the operands.
3341/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003342bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003343 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003344 bool found = false;
3345 findPredecessor(N, this, found, Visited);
3346 return found;
3347}
3348
Evan Chengc5484282006-10-04 00:56:09 +00003349uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3350 assert(Num < NumOperands && "Invalid child # of SDNode!");
3351 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3352}
3353
Reid Spencer577cc322007-04-01 07:32:19 +00003354std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003355 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003356 default:
3357 if (getOpcode() < ISD::BUILTIN_OP_END)
3358 return "<<Unknown DAG Node>>";
3359 else {
Evan Cheng72261582005-12-20 06:22:03 +00003360 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003361 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003362 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
3363 return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
Evan Cheng115c0362005-12-19 23:11:49 +00003364
Evan Cheng72261582005-12-20 06:22:03 +00003365 TargetLowering &TLI = G->getTargetLoweringInfo();
3366 const char *Name =
3367 TLI.getTargetNodeName(getOpcode());
3368 if (Name) return Name;
3369 }
3370
3371 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003372 }
3373
Andrew Lenharth95762122005-03-31 21:24:06 +00003374 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003375 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003376 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003377 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003378 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003379 case ISD::AssertSext: return "AssertSext";
3380 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003381
3382 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003383 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003384 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003385 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003386
3387 case ISD::Constant: return "Constant";
3388 case ISD::ConstantFP: return "ConstantFP";
3389 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003390 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003391 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003392 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003393 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003394 case ISD::RETURNADDR: return "RETURNADDR";
3395 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003396 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003397 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3398 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003399 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003400 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003401 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003402 case ISD::INTRINSIC_WO_CHAIN: {
3403 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3404 return Intrinsic::getName((Intrinsic::ID)IID);
3405 }
3406 case ISD::INTRINSIC_VOID:
3407 case ISD::INTRINSIC_W_CHAIN: {
3408 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003409 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003410 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003411
Chris Lattnerb2827b02006-03-19 00:52:58 +00003412 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003413 case ISD::TargetConstant: return "TargetConstant";
3414 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003415 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003416 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003417 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003418 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003419 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003420 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003421
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003422 case ISD::CopyToReg: return "CopyToReg";
3423 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003424 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003425 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003426 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003427 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003428 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003429 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003430 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003431
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003432 // Unary operators
3433 case ISD::FABS: return "fabs";
3434 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003435 case ISD::FSQRT: return "fsqrt";
3436 case ISD::FSIN: return "fsin";
3437 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003438 case ISD::FPOWI: return "fpowi";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003439
3440 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003441 case ISD::ADD: return "add";
3442 case ISD::SUB: return "sub";
3443 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003444 case ISD::MULHU: return "mulhu";
3445 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003446 case ISD::SDIV: return "sdiv";
3447 case ISD::UDIV: return "udiv";
3448 case ISD::SREM: return "srem";
3449 case ISD::UREM: return "urem";
3450 case ISD::AND: return "and";
3451 case ISD::OR: return "or";
3452 case ISD::XOR: return "xor";
3453 case ISD::SHL: return "shl";
3454 case ISD::SRA: return "sra";
3455 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003456 case ISD::ROTL: return "rotl";
3457 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003458 case ISD::FADD: return "fadd";
3459 case ISD::FSUB: return "fsub";
3460 case ISD::FMUL: return "fmul";
3461 case ISD::FDIV: return "fdiv";
3462 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003463 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003464
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003465 case ISD::SETCC: return "setcc";
3466 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003467 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003468 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003469 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003470 case ISD::CONCAT_VECTORS: return "concat_vectors";
3471 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003472 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003473 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003474 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003475 case ISD::ADDC: return "addc";
3476 case ISD::ADDE: return "adde";
3477 case ISD::SUBC: return "subc";
3478 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003479 case ISD::SHL_PARTS: return "shl_parts";
3480 case ISD::SRA_PARTS: return "sra_parts";
3481 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00003482
3483 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3484 case ISD::INSERT_SUBREG: return "insert_subreg";
3485
Chris Lattner7f644642005-04-28 21:44:03 +00003486 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003487 case ISD::SIGN_EXTEND: return "sign_extend";
3488 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003489 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003490 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003491 case ISD::TRUNCATE: return "truncate";
3492 case ISD::FP_ROUND: return "fp_round";
Chris Lattner859157d2005-01-15 06:17:04 +00003493 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003494 case ISD::FP_EXTEND: return "fp_extend";
3495
3496 case ISD::SINT_TO_FP: return "sint_to_fp";
3497 case ISD::UINT_TO_FP: return "uint_to_fp";
3498 case ISD::FP_TO_SINT: return "fp_to_sint";
3499 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003500 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003501
3502 // Control flow instructions
3503 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003504 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003505 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003506 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003507 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003508 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003509 case ISD::CALLSEQ_START: return "callseq_start";
3510 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003511
3512 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003513 case ISD::LOAD: return "load";
3514 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00003515 case ISD::VAARG: return "vaarg";
3516 case ISD::VACOPY: return "vacopy";
3517 case ISD::VAEND: return "vaend";
3518 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003519 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003520 case ISD::EXTRACT_ELEMENT: return "extract_element";
3521 case ISD::BUILD_PAIR: return "build_pair";
3522 case ISD::STACKSAVE: return "stacksave";
3523 case ISD::STACKRESTORE: return "stackrestore";
3524
3525 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003526 case ISD::MEMSET: return "memset";
3527 case ISD::MEMCPY: return "memcpy";
3528 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003529
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003530 // Bit manipulation
3531 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003532 case ISD::CTPOP: return "ctpop";
3533 case ISD::CTTZ: return "cttz";
3534 case ISD::CTLZ: return "ctlz";
3535
Chris Lattner36ce6912005-11-29 06:21:05 +00003536 // Debug info
3537 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003538 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003539
Duncan Sands36397f52007-07-27 12:58:54 +00003540 // Trampolines
3541 case ISD::ADJUST_TRAMP: return "adjust_tramp";
3542 case ISD::TRAMPOLINE: return "trampoline";
3543
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003544 case ISD::CONDCODE:
3545 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003546 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003547 case ISD::SETOEQ: return "setoeq";
3548 case ISD::SETOGT: return "setogt";
3549 case ISD::SETOGE: return "setoge";
3550 case ISD::SETOLT: return "setolt";
3551 case ISD::SETOLE: return "setole";
3552 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003553
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003554 case ISD::SETO: return "seto";
3555 case ISD::SETUO: return "setuo";
3556 case ISD::SETUEQ: return "setue";
3557 case ISD::SETUGT: return "setugt";
3558 case ISD::SETUGE: return "setuge";
3559 case ISD::SETULT: return "setult";
3560 case ISD::SETULE: return "setule";
3561 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003562
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003563 case ISD::SETEQ: return "seteq";
3564 case ISD::SETGT: return "setgt";
3565 case ISD::SETGE: return "setge";
3566 case ISD::SETLT: return "setlt";
3567 case ISD::SETLE: return "setle";
3568 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003569 }
3570 }
3571}
Chris Lattnerc3aae252005-01-07 07:46:32 +00003572
Evan Cheng144d8f02006-11-09 17:55:04 +00003573const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003574 switch (AM) {
3575 default:
3576 return "";
3577 case ISD::PRE_INC:
3578 return "<pre-inc>";
3579 case ISD::PRE_DEC:
3580 return "<pre-dec>";
3581 case ISD::POST_INC:
3582 return "<post-inc>";
3583 case ISD::POST_DEC:
3584 return "<post-dec>";
3585 }
3586}
3587
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003588void SDNode::dump() const { dump(0); }
3589void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00003590 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003591
3592 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003593 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00003594 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00003595 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00003596 else
Bill Wendling832171c2006-12-07 20:04:42 +00003597 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00003598 }
Bill Wendling832171c2006-12-07 20:04:42 +00003599 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003600
Bill Wendling832171c2006-12-07 20:04:42 +00003601 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003602 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003603 if (i) cerr << ", ";
3604 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003605 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00003606 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003607 }
3608
3609 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003610 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003611 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003612 cerr << "<" << CSDN->getValue() << ">";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003613 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00003614 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00003615 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00003616 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00003617 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00003618 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003619 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00003620 else
Bill Wendling832171c2006-12-07 20:04:42 +00003621 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003622 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003623 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00003624 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003625 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003626 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00003627 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00003628 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00003629 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00003630 else
Bill Wendling832171c2006-12-07 20:04:42 +00003631 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00003632 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003633 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00003634 else
Bill Wendling832171c2006-12-07 20:04:42 +00003635 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003636 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003637 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003638 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3639 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00003640 cerr << LBB->getName() << " ";
3641 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00003642 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00003643 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00003644 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00003645 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00003646 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00003647 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003648 } else if (const ExternalSymbolSDNode *ES =
3649 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003650 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003651 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3652 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00003653 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003654 else
Bill Wendling832171c2006-12-07 20:04:42 +00003655 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00003656 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00003657 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003658 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3659 bool doExt = true;
3660 switch (LD->getExtensionType()) {
3661 default: doExt = false; break;
3662 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003663 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003664 break;
3665 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003666 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003667 break;
3668 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003669 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003670 break;
3671 }
3672 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003673 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003674
Evan Cheng144d8f02006-11-09 17:55:04 +00003675 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00003676 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00003677 cerr << " " << AM;
Evan Cheng2caccca2006-10-17 21:14:32 +00003678 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3679 if (ST->isTruncatingStore())
Bill Wendling832171c2006-12-07 20:04:42 +00003680 cerr << " <trunc "
3681 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
Evan Cheng2caccca2006-10-17 21:14:32 +00003682
Evan Cheng144d8f02006-11-09 17:55:04 +00003683 const char *AM = getIndexedModeName(ST->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00003684 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00003685 cerr << " " << AM;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003686 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003687}
3688
Chris Lattnerde202b32005-11-09 23:47:37 +00003689static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003690 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3691 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003692 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003693 else
Bill Wendling832171c2006-12-07 20:04:42 +00003694 cerr << "\n" << std::string(indent+2, ' ')
3695 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003696
Chris Lattnerea946cd2005-01-09 20:38:33 +00003697
Bill Wendling832171c2006-12-07 20:04:42 +00003698 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003699 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003700}
3701
Chris Lattnerc3aae252005-01-07 07:46:32 +00003702void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00003703 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00003704 std::vector<const SDNode*> Nodes;
3705 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3706 I != E; ++I)
3707 Nodes.push_back(I);
3708
Chris Lattner49d24712005-01-09 20:26:36 +00003709 std::sort(Nodes.begin(), Nodes.end());
3710
3711 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00003712 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003713 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003714 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00003715
Jim Laskey26f7fa72006-10-17 19:33:52 +00003716 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00003717
Bill Wendling832171c2006-12-07 20:04:42 +00003718 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003719}
3720
Evan Chengd6594ae2006-09-12 21:00:35 +00003721const Type *ConstantPoolSDNode::getType() const {
3722 if (isMachineConstantPoolEntry())
3723 return Val.MachineCPVal->getType();
3724 return Val.ConstVal->getType();
3725}