blob: 6b698f41aa4dac8d0c273c7a096aa9c06997ed3d [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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 Lattner37ce9df2007-10-15 17:47:20 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000023#include "llvm/Support/MathExtras.h"
Chris Lattnerfa164b62005-08-19 21:34:13 +000024#include "llvm/Target/MRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000025#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000026#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000027#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000029#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000030#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000031#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000032#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000033#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000034#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000035#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattner0b3e5252006-08-15 19:11:05 +000038/// makeVTList - Return an instance of the SDVTList struct initialized with the
39/// specified members.
40static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
41 SDVTList Res = {VTs, NumVTs};
42 return Res;
43}
44
Jim Laskey58b968b2005-08-17 20:08:02 +000045//===----------------------------------------------------------------------===//
46// ConstantFPSDNode Class
47//===----------------------------------------------------------------------===//
48
49/// isExactlyValue - We don't rely on operator== working on double values, as
50/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
51/// As such, this method can be used to do an exact bit-for-bit comparison of
52/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000053bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000054 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000055}
56
Dale Johannesenf04afdb2007-08-30 00:23:21 +000057bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
58 const APFloat& Val) {
59 // convert modifies in place, so make a copy.
60 APFloat Val2 = APFloat(Val);
61 switch (VT) {
62 default:
63 return false; // These can't be represented as floating point!
64
65 // FIXME rounding mode needs to be more flexible
66 case MVT::f32:
67 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
68 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven) ==
69 APFloat::opOK;
70 case MVT::f64:
71 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
72 &Val2.getSemantics() == &APFloat::IEEEdouble ||
73 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven) ==
74 APFloat::opOK;
75 // TODO: Figure out how to test if we can use a shorter type instead!
76 case MVT::f80:
77 case MVT::f128:
78 case MVT::ppcf128:
79 return true;
80 }
81}
82
Jim Laskey58b968b2005-08-17 20:08:02 +000083//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000084// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000085//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000086
Evan Chenga8df1662006-03-27 06:58:47 +000087/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000088/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000089bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000090 // Look through a bit convert.
91 if (N->getOpcode() == ISD::BIT_CONVERT)
92 N = N->getOperand(0).Val;
93
Evan Chenga8df1662006-03-27 06:58:47 +000094 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000095
96 unsigned i = 0, e = N->getNumOperands();
97
98 // Skip over all of the undef values.
99 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
100 ++i;
101
102 // Do not accept an all-undef vector.
103 if (i == e) return false;
104
105 // Do not accept build_vectors that aren't all constants or which have non-~0
106 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000107 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000108 if (isa<ConstantSDNode>(NotZero)) {
109 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
110 return false;
111 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +0000112 MVT::ValueType VT = NotZero.getValueType();
113 if (VT== MVT::f64) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000114 if (((cast<ConstantFPSDNode>(NotZero)->getValueAPF().
115 convertToAPInt().getZExtValue())) != (uint64_t)-1)
Evan Cheng23cc8702006-03-27 08:10:26 +0000116 return false;
117 } else {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000118 if ((uint32_t)cast<ConstantFPSDNode>(NotZero)->
119 getValueAPF().convertToAPInt().getZExtValue() !=
Evan Cheng23cc8702006-03-27 08:10:26 +0000120 (uint32_t)-1)
121 return false;
122 }
Evan Chenga8df1662006-03-27 06:58:47 +0000123 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000124 return false;
125
126 // Okay, we have at least one ~0 value, check to see if the rest match or are
127 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000128 for (++i; i != e; ++i)
129 if (N->getOperand(i) != NotZero &&
130 N->getOperand(i).getOpcode() != ISD::UNDEF)
131 return false;
132 return true;
133}
134
135
Evan Cheng4a147842006-03-26 09:50:58 +0000136/// isBuildVectorAllZeros - Return true if the specified node is a
137/// BUILD_VECTOR where all of the elements are 0 or undef.
138bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000139 // Look through a bit convert.
140 if (N->getOpcode() == ISD::BIT_CONVERT)
141 N = N->getOperand(0).Val;
142
Evan Cheng4a147842006-03-26 09:50:58 +0000143 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000144
145 unsigned i = 0, e = N->getNumOperands();
146
147 // Skip over all of the undef values.
148 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
149 ++i;
150
151 // Do not accept an all-undef vector.
152 if (i == e) return false;
153
154 // Do not accept build_vectors that aren't all constants or which have non-~0
155 // elements.
156 SDOperand Zero = N->getOperand(i);
157 if (isa<ConstantSDNode>(Zero)) {
158 if (!cast<ConstantSDNode>(Zero)->isNullValue())
159 return false;
160 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000161 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000162 return false;
163 } else
164 return false;
165
166 // Okay, we have at least one ~0 value, check to see if the rest match or are
167 // undefs.
168 for (++i; i != e; ++i)
169 if (N->getOperand(i) != Zero &&
170 N->getOperand(i).getOpcode() != ISD::UNDEF)
171 return false;
172 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000173}
174
Chris Lattnerc3aae252005-01-07 07:46:32 +0000175/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
176/// when given the operation for (X op Y).
177ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
178 // To perform this operation, we just need to swap the L and G bits of the
179 // operation.
180 unsigned OldL = (Operation >> 2) & 1;
181 unsigned OldG = (Operation >> 1) & 1;
182 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
183 (OldL << 1) | // New G bit
184 (OldG << 2)); // New L bit.
185}
186
187/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
188/// 'op' is a valid SetCC operation.
189ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
190 unsigned Operation = Op;
191 if (isInteger)
192 Operation ^= 7; // Flip L, G, E bits, but not U.
193 else
194 Operation ^= 15; // Flip all of the condition bits.
195 if (Operation > ISD::SETTRUE2)
196 Operation &= ~8; // Don't let N and U bits get set.
197 return ISD::CondCode(Operation);
198}
199
200
201/// isSignedOp - For an integer comparison, return 1 if the comparison is a
202/// signed operation and 2 if the result is an unsigned comparison. Return zero
203/// if the operation does not depend on the sign of the input (setne and seteq).
204static int isSignedOp(ISD::CondCode Opcode) {
205 switch (Opcode) {
206 default: assert(0 && "Illegal integer setcc operation!");
207 case ISD::SETEQ:
208 case ISD::SETNE: return 0;
209 case ISD::SETLT:
210 case ISD::SETLE:
211 case ISD::SETGT:
212 case ISD::SETGE: return 1;
213 case ISD::SETULT:
214 case ISD::SETULE:
215 case ISD::SETUGT:
216 case ISD::SETUGE: return 2;
217 }
218}
219
220/// getSetCCOrOperation - Return the result of a logical OR between different
221/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
222/// returns SETCC_INVALID if it is not possible to represent the resultant
223/// comparison.
224ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
225 bool isInteger) {
226 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
227 // Cannot fold a signed integer setcc with an unsigned integer setcc.
228 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000229
Chris Lattnerc3aae252005-01-07 07:46:32 +0000230 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000231
Chris Lattnerc3aae252005-01-07 07:46:32 +0000232 // If the N and U bits get set then the resultant comparison DOES suddenly
233 // care about orderedness, and is true when ordered.
234 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000235 Op &= ~16; // Clear the U bit if the N bit is set.
236
237 // Canonicalize illegal integer setcc's.
238 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
239 Op = ISD::SETNE;
240
Chris Lattnerc3aae252005-01-07 07:46:32 +0000241 return ISD::CondCode(Op);
242}
243
244/// getSetCCAndOperation - Return the result of a logical AND between different
245/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
246/// function returns zero if it is not possible to represent the resultant
247/// comparison.
248ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
249 bool isInteger) {
250 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
251 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000252 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000253
254 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000255 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
256
257 // Canonicalize illegal integer setcc's.
258 if (isInteger) {
259 switch (Result) {
260 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000261 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
262 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
263 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
264 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000265 }
266 }
267
268 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000269}
270
Chris Lattnerb48da392005-01-23 04:39:44 +0000271const TargetMachine &SelectionDAG::getTarget() const {
272 return TLI.getTargetMachine();
273}
274
Jim Laskey58b968b2005-08-17 20:08:02 +0000275//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000276// SDNode Profile Support
277//===----------------------------------------------------------------------===//
278
Jim Laskeydef69b92006-10-27 23:52:51 +0000279/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
280///
Jim Laskey583bd472006-10-27 23:46:08 +0000281static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
282 ID.AddInteger(OpC);
283}
284
285/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
286/// solely with their pointer.
287void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
288 ID.AddPointer(VTList.VTs);
289}
290
Jim Laskeydef69b92006-10-27 23:52:51 +0000291/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
292///
Jim Laskey583bd472006-10-27 23:46:08 +0000293static void AddNodeIDOperands(FoldingSetNodeID &ID,
294 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000295 for (; NumOps; --NumOps, ++Ops) {
296 ID.AddPointer(Ops->Val);
297 ID.AddInteger(Ops->ResNo);
298 }
Jim Laskey583bd472006-10-27 23:46:08 +0000299}
300
Jim Laskey583bd472006-10-27 23:46:08 +0000301static void AddNodeIDNode(FoldingSetNodeID &ID,
302 unsigned short OpC, SDVTList VTList,
303 const SDOperand *OpList, unsigned N) {
304 AddNodeIDOpcode(ID, OpC);
305 AddNodeIDValueTypes(ID, VTList);
306 AddNodeIDOperands(ID, OpList, N);
307}
308
Jim Laskeydef69b92006-10-27 23:52:51 +0000309/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
310/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000311static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
312 AddNodeIDOpcode(ID, N->getOpcode());
313 // Add the return value info.
314 AddNodeIDValueTypes(ID, N->getVTList());
315 // Add the operand info.
316 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
317
318 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000319 switch (N->getOpcode()) {
320 default: break; // Normal nodes don't need extra info.
321 case ISD::TargetConstant:
322 case ISD::Constant:
323 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
324 break;
325 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000326 case ISD::ConstantFP: {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000327 ID.AddAPFloat(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000328 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000329 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000330 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000331 case ISD::GlobalAddress:
332 case ISD::TargetGlobalTLSAddress:
333 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000334 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
335 ID.AddPointer(GA->getGlobal());
336 ID.AddInteger(GA->getOffset());
337 break;
338 }
339 case ISD::BasicBlock:
340 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
341 break;
342 case ISD::Register:
343 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
344 break;
345 case ISD::SRCVALUE: {
346 SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
347 ID.AddPointer(SV->getValue());
348 ID.AddInteger(SV->getOffset());
349 break;
350 }
351 case ISD::FrameIndex:
352 case ISD::TargetFrameIndex:
353 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
354 break;
355 case ISD::JumpTable:
356 case ISD::TargetJumpTable:
357 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
358 break;
359 case ISD::ConstantPool:
360 case ISD::TargetConstantPool: {
361 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
362 ID.AddInteger(CP->getAlignment());
363 ID.AddInteger(CP->getOffset());
364 if (CP->isMachineConstantPoolEntry())
365 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
366 else
367 ID.AddPointer(CP->getConstVal());
368 break;
369 }
370 case ISD::LOAD: {
371 LoadSDNode *LD = cast<LoadSDNode>(N);
372 ID.AddInteger(LD->getAddressingMode());
373 ID.AddInteger(LD->getExtensionType());
Chris Lattner3d6992f2007-09-13 06:09:48 +0000374 ID.AddInteger((unsigned int)(LD->getLoadedVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000375 ID.AddInteger(LD->getAlignment());
376 ID.AddInteger(LD->isVolatile());
377 break;
378 }
379 case ISD::STORE: {
380 StoreSDNode *ST = cast<StoreSDNode>(N);
381 ID.AddInteger(ST->getAddressingMode());
382 ID.AddInteger(ST->isTruncatingStore());
Chris Lattner3d6992f2007-09-13 06:09:48 +0000383 ID.AddInteger((unsigned int)(ST->getStoredVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000384 ID.AddInteger(ST->getAlignment());
385 ID.AddInteger(ST->isVolatile());
386 break;
387 }
Jim Laskey583bd472006-10-27 23:46:08 +0000388 }
389}
390
391//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000392// SelectionDAG Class
393//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000394
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000395/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000396/// SelectionDAG.
397void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000398 // Create a dummy node (which is not added to allnodes), that adds a reference
399 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000400 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000401
Chris Lattner190a4182006-08-04 17:45:20 +0000402 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000403
Chris Lattner190a4182006-08-04 17:45:20 +0000404 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000405 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000406 if (I->use_empty())
407 DeadNodes.push_back(I);
408
409 // Process the worklist, deleting the nodes and adding their uses to the
410 // worklist.
411 while (!DeadNodes.empty()) {
412 SDNode *N = DeadNodes.back();
413 DeadNodes.pop_back();
414
415 // Take the node out of the appropriate CSE map.
416 RemoveNodeFromCSEMaps(N);
417
418 // Next, brutally remove the operand list. This is safe to do, as there are
419 // no cycles in the graph.
420 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
421 SDNode *Operand = I->Val;
422 Operand->removeUser(N);
423
424 // Now that we removed this operand, see if there are no uses of it left.
425 if (Operand->use_empty())
426 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000427 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000428 if (N->OperandsNeedDelete)
429 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000430 N->OperandList = 0;
431 N->NumOperands = 0;
432
433 // Finally, remove N itself.
434 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000435 }
436
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000437 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000438 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000439}
440
Evan Cheng130a6472006-10-12 20:34:05 +0000441void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
442 SmallVector<SDNode*, 16> DeadNodes;
443 DeadNodes.push_back(N);
444
445 // Process the worklist, deleting the nodes and adding their uses to the
446 // worklist.
447 while (!DeadNodes.empty()) {
448 SDNode *N = DeadNodes.back();
449 DeadNodes.pop_back();
450
451 // Take the node out of the appropriate CSE map.
452 RemoveNodeFromCSEMaps(N);
453
454 // Next, brutally remove the operand list. This is safe to do, as there are
455 // no cycles in the graph.
456 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
457 SDNode *Operand = I->Val;
458 Operand->removeUser(N);
459
460 // Now that we removed this operand, see if there are no uses of it left.
461 if (Operand->use_empty())
462 DeadNodes.push_back(Operand);
463 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000464 if (N->OperandsNeedDelete)
465 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000466 N->OperandList = 0;
467 N->NumOperands = 0;
468
469 // Finally, remove N itself.
470 Deleted.push_back(N);
471 AllNodes.erase(N);
472 }
473}
474
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000475void SelectionDAG::DeleteNode(SDNode *N) {
476 assert(N->use_empty() && "Cannot delete a node that is not dead!");
477
478 // First take this out of the appropriate CSE map.
479 RemoveNodeFromCSEMaps(N);
480
Chris Lattner1e111c72005-09-07 05:37:01 +0000481 // Finally, remove uses due to operands of this node, remove from the
482 // AllNodes list, and delete the node.
483 DeleteNodeNotInCSEMaps(N);
484}
485
486void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
487
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000488 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000489 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000490
491 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000492 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
493 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000494 if (N->OperandsNeedDelete)
495 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000496 N->OperandList = 0;
497 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000498
499 delete N;
500}
501
Chris Lattner149c58c2005-08-16 18:17:10 +0000502/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
503/// correspond to it. This is useful when we're about to delete or repurpose
504/// the node. We don't want future request for structurally identical nodes
505/// to return N anymore.
506void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000507 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000508 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000509 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000510 case ISD::STRING:
511 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
512 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000513 case ISD::CONDCODE:
514 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
515 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000516 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000517 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
518 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000519 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000520 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000521 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000522 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000523 Erased =
524 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000525 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000526 case ISD::VALUETYPE: {
527 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
528 if (MVT::isExtendedVT(VT)) {
529 Erased = ExtendedValueTypeNodes.erase(VT);
530 } else {
531 Erased = ValueTypeNodes[VT] != 0;
532 ValueTypeNodes[VT] = 0;
533 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000534 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000535 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000536 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000537 // Remove it from the CSE Map.
538 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000539 break;
540 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000541#ifndef NDEBUG
542 // Verify that the node was actually in one of the CSE maps, unless it has a
543 // flag result (which cannot be CSE'd) or is one of the special cases that are
544 // not subject to CSE.
545 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000546 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000547 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000548 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000549 assert(0 && "Node is not in map!");
550 }
551#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000552}
553
Chris Lattner8b8749f2005-08-17 19:00:20 +0000554/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
555/// has been taken out and modified in some way. If the specified node already
556/// exists in the CSE maps, do not modify the maps, but return the existing node
557/// instead. If it doesn't exist, add it and return null.
558///
559SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
560 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000561 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000562 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000563
Chris Lattner9f8cc692005-12-19 22:21:21 +0000564 // Check that remaining values produced are not flags.
565 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
566 if (N->getValueType(i) == MVT::Flag)
567 return 0; // Never CSE anything that produces a flag.
568
Chris Lattnera5682852006-08-07 23:03:03 +0000569 SDNode *New = CSEMap.GetOrInsertNode(N);
570 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000571 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000572}
573
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000574/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
575/// were replaced with those specified. If this node is never memoized,
576/// return null, otherwise return a pointer to the slot it would take. If a
577/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000578SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
579 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000580 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000581 return 0; // Never add these nodes.
582
583 // Check that remaining values produced are not flags.
584 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
585 if (N->getValueType(i) == MVT::Flag)
586 return 0; // Never CSE anything that produces a flag.
587
Chris Lattner63e3f142007-02-04 07:28:00 +0000588 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000589 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000590 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000591 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000592}
593
594/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
595/// were replaced with those specified. If this node is never memoized,
596/// return null, otherwise return a pointer to the slot it would take. If a
597/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000598SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
599 SDOperand Op1, SDOperand Op2,
600 void *&InsertPos) {
601 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
602 return 0; // Never add these nodes.
603
604 // Check that remaining values produced are not flags.
605 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
606 if (N->getValueType(i) == MVT::Flag)
607 return 0; // Never CSE anything that produces a flag.
608
Chris Lattner63e3f142007-02-04 07:28:00 +0000609 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000610 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000611 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000612 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
613}
614
615
616/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
617/// were replaced with those specified. If this node is never memoized,
618/// return null, otherwise return a pointer to the slot it would take. If a
619/// node already exists with these operands, the slot will be non-null.
620SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000621 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000622 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000623 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000624 return 0; // Never add these nodes.
625
626 // Check that remaining values produced are not flags.
627 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
628 if (N->getValueType(i) == MVT::Flag)
629 return 0; // Never CSE anything that produces a flag.
630
Jim Laskey583bd472006-10-27 23:46:08 +0000631 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000632 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000633
Evan Cheng9629aba2006-10-11 01:47:58 +0000634 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
635 ID.AddInteger(LD->getAddressingMode());
636 ID.AddInteger(LD->getExtensionType());
Chris Lattner3d6992f2007-09-13 06:09:48 +0000637 ID.AddInteger((unsigned int)(LD->getLoadedVT()));
Evan Cheng9629aba2006-10-11 01:47:58 +0000638 ID.AddInteger(LD->getAlignment());
639 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000640 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
641 ID.AddInteger(ST->getAddressingMode());
642 ID.AddInteger(ST->isTruncatingStore());
Chris Lattner3d6992f2007-09-13 06:09:48 +0000643 ID.AddInteger((unsigned int)(ST->getStoredVT()));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000644 ID.AddInteger(ST->getAlignment());
645 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000646 }
Jim Laskey583bd472006-10-27 23:46:08 +0000647
Chris Lattnera5682852006-08-07 23:03:03 +0000648 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000649}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000650
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000651
Chris Lattner78ec3112003-08-11 14:57:33 +0000652SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000653 while (!AllNodes.empty()) {
654 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000655 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000656 if (N->OperandsNeedDelete)
657 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000658 N->OperandList = 0;
659 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000660 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000661 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000662}
663
Chris Lattner0f2287b2005-04-13 02:38:18 +0000664SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000665 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000666 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000667 return getNode(ISD::AND, Op.getValueType(), Op,
668 getConstant(Imm, Op.getValueType()));
669}
670
Chris Lattner36ce6912005-11-29 06:21:05 +0000671SDOperand SelectionDAG::getString(const std::string &Val) {
672 StringSDNode *&N = StringNodes[Val];
673 if (!N) {
674 N = new StringSDNode(Val);
675 AllNodes.push_back(N);
676 }
677 return SDOperand(N, 0);
678}
679
Chris Lattner61b09412006-08-11 21:01:22 +0000680SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000681 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000682
683 MVT::ValueType EltVT =
684 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000685
Chris Lattner61b09412006-08-11 21:01:22 +0000686 // Mask out any bits that are not valid for this constant.
Dan Gohman89081322007-12-12 22:21:26 +0000687 Val &= MVT::getIntVTBitMask(EltVT);
Chris Lattner61b09412006-08-11 21:01:22 +0000688
689 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000690 FoldingSetNodeID ID;
Dan Gohman89081322007-12-12 22:21:26 +0000691 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000692 ID.AddInteger(Val);
693 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000694 SDNode *N = NULL;
695 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
696 if (!MVT::isVector(VT))
697 return SDOperand(N, 0);
698 if (!N) {
699 N = new ConstantSDNode(isT, Val, EltVT);
700 CSEMap.InsertNode(N, IP);
701 AllNodes.push_back(N);
702 }
703
704 SDOperand Result(N, 0);
705 if (MVT::isVector(VT)) {
706 SmallVector<SDOperand, 8> Ops;
707 Ops.assign(MVT::getVectorNumElements(VT), Result);
708 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
709 }
710 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000711}
712
Chris Lattner0bd48932008-01-17 07:00:52 +0000713SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
714 return getConstant(Val, TLI.getPointerTy(), isTarget);
715}
716
717
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000718SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000719 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000720 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000721
Dan Gohman7f321562007-06-25 16:23:39 +0000722 MVT::ValueType EltVT =
723 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000724
Chris Lattnerd8658612005-02-17 20:17:32 +0000725 // Do the map lookup using the actual bit pattern for the floating point
726 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
727 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000728 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000729 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000730 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000731 ID.AddAPFloat(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000732 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000733 SDNode *N = NULL;
734 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
735 if (!MVT::isVector(VT))
736 return SDOperand(N, 0);
737 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000738 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000739 CSEMap.InsertNode(N, IP);
740 AllNodes.push_back(N);
741 }
742
Dan Gohman7f321562007-06-25 16:23:39 +0000743 SDOperand Result(N, 0);
744 if (MVT::isVector(VT)) {
745 SmallVector<SDOperand, 8> Ops;
746 Ops.assign(MVT::getVectorNumElements(VT), Result);
747 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
748 }
749 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000750}
751
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000752SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
753 bool isTarget) {
754 MVT::ValueType EltVT =
755 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
756 if (EltVT==MVT::f32)
757 return getConstantFP(APFloat((float)Val), VT, isTarget);
758 else
759 return getConstantFP(APFloat(Val), VT, isTarget);
760}
761
Chris Lattnerc3aae252005-01-07 07:46:32 +0000762SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000763 MVT::ValueType VT, int Offset,
764 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000765 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
766 unsigned Opc;
767 if (GVar && GVar->isThreadLocal())
768 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
769 else
770 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000771 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000772 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000773 ID.AddPointer(GV);
774 ID.AddInteger(Offset);
775 void *IP = 0;
776 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
777 return SDOperand(E, 0);
778 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
779 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000780 AllNodes.push_back(N);
781 return SDOperand(N, 0);
782}
783
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000784SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
785 bool isTarget) {
786 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000787 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000788 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000789 ID.AddInteger(FI);
790 void *IP = 0;
791 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
792 return SDOperand(E, 0);
793 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
794 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000795 AllNodes.push_back(N);
796 return SDOperand(N, 0);
797}
798
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000799SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
800 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000801 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000802 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000803 ID.AddInteger(JTI);
804 void *IP = 0;
805 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
806 return SDOperand(E, 0);
807 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
808 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000809 AllNodes.push_back(N);
810 return SDOperand(N, 0);
811}
812
Evan Chengb8973bd2006-01-31 22:23:14 +0000813SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000814 unsigned Alignment, int Offset,
815 bool isTarget) {
816 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000817 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000818 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000819 ID.AddInteger(Alignment);
820 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000821 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000822 void *IP = 0;
823 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
824 return SDOperand(E, 0);
825 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
826 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000827 AllNodes.push_back(N);
828 return SDOperand(N, 0);
829}
830
Chris Lattnerc3aae252005-01-07 07:46:32 +0000831
Evan Chengd6594ae2006-09-12 21:00:35 +0000832SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
833 MVT::ValueType VT,
834 unsigned Alignment, int Offset,
835 bool isTarget) {
836 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000837 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000838 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000839 ID.AddInteger(Alignment);
840 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000841 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000842 void *IP = 0;
843 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
844 return SDOperand(E, 0);
845 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
846 CSEMap.InsertNode(N, IP);
847 AllNodes.push_back(N);
848 return SDOperand(N, 0);
849}
850
851
Chris Lattnerc3aae252005-01-07 07:46:32 +0000852SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000853 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000854 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000855 ID.AddPointer(MBB);
856 void *IP = 0;
857 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
858 return SDOperand(E, 0);
859 SDNode *N = new BasicBlockSDNode(MBB);
860 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000861 AllNodes.push_back(N);
862 return SDOperand(N, 0);
863}
864
Chris Lattner15e4b012005-07-10 00:07:11 +0000865SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000866 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner15e4b012005-07-10 00:07:11 +0000867 ValueTypeNodes.resize(VT+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000868
Duncan Sandsf411b832007-10-17 13:49:58 +0000869 SDNode *&N = MVT::isExtendedVT(VT) ?
870 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
871
872 if (N) return SDOperand(N, 0);
873 N = new VTSDNode(VT);
874 AllNodes.push_back(N);
875 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000876}
877
Chris Lattnerc3aae252005-01-07 07:46:32 +0000878SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
879 SDNode *&N = ExternalSymbols[Sym];
880 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000881 N = new ExternalSymbolSDNode(false, Sym, VT);
882 AllNodes.push_back(N);
883 return SDOperand(N, 0);
884}
885
Chris Lattner809ec112006-01-28 10:09:25 +0000886SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
887 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000888 SDNode *&N = TargetExternalSymbols[Sym];
889 if (N) return SDOperand(N, 0);
890 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000891 AllNodes.push_back(N);
892 return SDOperand(N, 0);
893}
894
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000895SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
896 if ((unsigned)Cond >= CondCodeNodes.size())
897 CondCodeNodes.resize(Cond+1);
898
Chris Lattner079a27a2005-08-09 20:40:02 +0000899 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000900 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000901 AllNodes.push_back(CondCodeNodes[Cond]);
902 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000903 return SDOperand(CondCodeNodes[Cond], 0);
904}
905
Chris Lattner0fdd7682005-08-30 22:38:38 +0000906SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000907 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000908 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000909 ID.AddInteger(RegNo);
910 void *IP = 0;
911 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
912 return SDOperand(E, 0);
913 SDNode *N = new RegisterSDNode(RegNo, VT);
914 CSEMap.InsertNode(N, IP);
915 AllNodes.push_back(N);
916 return SDOperand(N, 0);
917}
918
919SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
920 assert((!V || isa<PointerType>(V->getType())) &&
921 "SrcValue is not a pointer?");
922
Jim Laskey583bd472006-10-27 23:46:08 +0000923 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000924 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000925 ID.AddPointer(V);
926 ID.AddInteger(Offset);
927 void *IP = 0;
928 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
929 return SDOperand(E, 0);
930 SDNode *N = new SrcValueSDNode(V, Offset);
931 CSEMap.InsertNode(N, IP);
932 AllNodes.push_back(N);
933 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000934}
935
Chris Lattner37ce9df2007-10-15 17:47:20 +0000936/// CreateStackTemporary - Create a stack temporary, suitable for holding the
937/// specified value type.
938SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
939 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
940 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
941 const Type *Ty = MVT::getTypeForValueType(VT);
942 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
943 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
944 return getFrameIndex(FrameIdx, TLI.getPointerTy());
945}
946
947
Chris Lattner51dabfb2006-10-14 00:41:01 +0000948SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
949 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000950 // These setcc operations always fold.
951 switch (Cond) {
952 default: break;
953 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000954 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000955 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000956 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +0000957
958 case ISD::SETOEQ:
959 case ISD::SETOGT:
960 case ISD::SETOGE:
961 case ISD::SETOLT:
962 case ISD::SETOLE:
963 case ISD::SETONE:
964 case ISD::SETO:
965 case ISD::SETUO:
966 case ISD::SETUEQ:
967 case ISD::SETUNE:
968 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
969 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000970 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000971
Chris Lattner67255a12005-04-07 18:14:58 +0000972 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
973 uint64_t C2 = N2C->getValue();
974 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
975 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +0000976
Chris Lattnerc3aae252005-01-07 07:46:32 +0000977 // Sign extend the operands if required
978 if (ISD::isSignedIntSetCC(Cond)) {
979 C1 = N1C->getSignExtended();
980 C2 = N2C->getSignExtended();
981 }
Chris Lattner51dabfb2006-10-14 00:41:01 +0000982
Chris Lattnerc3aae252005-01-07 07:46:32 +0000983 switch (Cond) {
984 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +0000985 case ISD::SETEQ: return getConstant(C1 == C2, VT);
986 case ISD::SETNE: return getConstant(C1 != C2, VT);
987 case ISD::SETULT: return getConstant(C1 < C2, VT);
988 case ISD::SETUGT: return getConstant(C1 > C2, VT);
989 case ISD::SETULE: return getConstant(C1 <= C2, VT);
990 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
991 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
992 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
993 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
994 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000995 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000996 }
Chris Lattner67255a12005-04-07 18:14:58 +0000997 }
Chris Lattnerc3aae252005-01-07 07:46:32 +0000998 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
999 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001000 // No compile time operations on this type yet.
1001 if (N1C->getValueType(0) == MVT::ppcf128)
1002 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001003
1004 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001005 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001006 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001007 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1008 return getNode(ISD::UNDEF, VT);
1009 // fall through
1010 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1011 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1012 return getNode(ISD::UNDEF, VT);
1013 // fall through
1014 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001015 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001016 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1017 return getNode(ISD::UNDEF, VT);
1018 // fall through
1019 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1020 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1021 return getNode(ISD::UNDEF, VT);
1022 // fall through
1023 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1024 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1025 return getNode(ISD::UNDEF, VT);
1026 // fall through
1027 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001028 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001029 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1030 return getNode(ISD::UNDEF, VT);
1031 // fall through
1032 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001033 R==APFloat::cmpEqual, VT);
1034 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1035 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1036 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1037 R==APFloat::cmpEqual, VT);
1038 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1039 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1040 R==APFloat::cmpLessThan, VT);
1041 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1042 R==APFloat::cmpUnordered, VT);
1043 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1044 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001045 }
1046 } else {
1047 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001048 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001049 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001050
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001051 // Could not fold it.
1052 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001053}
1054
Dan Gohmanea859be2007-06-22 14:59:07 +00001055/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1056/// this predicate to simplify operations downstream. Mask is known to be zero
1057/// for bits that V cannot have.
1058bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
1059 unsigned Depth) const {
1060 // The masks are not wide enough to represent this type! Should use APInt.
1061 if (Op.getValueType() == MVT::i128)
1062 return false;
1063
1064 uint64_t KnownZero, KnownOne;
1065 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1066 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1067 return (KnownZero & Mask) == Mask;
1068}
1069
1070/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1071/// known to be either zero or one and return them in the KnownZero/KnownOne
1072/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1073/// processing.
1074void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
1075 uint64_t &KnownZero, uint64_t &KnownOne,
1076 unsigned Depth) const {
1077 KnownZero = KnownOne = 0; // Don't know anything.
1078 if (Depth == 6 || Mask == 0)
1079 return; // Limit search depth.
1080
1081 // The masks are not wide enough to represent this type! Should use APInt.
1082 if (Op.getValueType() == MVT::i128)
1083 return;
1084
1085 uint64_t KnownZero2, KnownOne2;
1086
1087 switch (Op.getOpcode()) {
1088 case ISD::Constant:
1089 // We know all of the bits for a constant!
1090 KnownOne = cast<ConstantSDNode>(Op)->getValue() & Mask;
1091 KnownZero = ~KnownOne & Mask;
1092 return;
1093 case ISD::AND:
1094 // If either the LHS or the RHS are Zero, the result is zero.
1095 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1096 Mask &= ~KnownZero;
1097 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1098 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1099 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1100
1101 // Output known-1 bits are only known if set in both the LHS & RHS.
1102 KnownOne &= KnownOne2;
1103 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1104 KnownZero |= KnownZero2;
1105 return;
1106 case ISD::OR:
1107 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1108 Mask &= ~KnownOne;
1109 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1110 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1111 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1112
1113 // Output known-0 bits are only known if clear in both the LHS & RHS.
1114 KnownZero &= KnownZero2;
1115 // Output known-1 are known to be set if set in either the LHS | RHS.
1116 KnownOne |= KnownOne2;
1117 return;
1118 case ISD::XOR: {
1119 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1120 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1121 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1122 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1123
1124 // Output known-0 bits are known if clear or set in both the LHS & RHS.
1125 uint64_t KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1126 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1127 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1128 KnownZero = KnownZeroOut;
1129 return;
1130 }
1131 case ISD::SELECT:
1132 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1133 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1134 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1135 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1136
1137 // Only known if known in both the LHS and RHS.
1138 KnownOne &= KnownOne2;
1139 KnownZero &= KnownZero2;
1140 return;
1141 case ISD::SELECT_CC:
1142 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1143 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1144 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1145 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1146
1147 // Only known if known in both the LHS and RHS.
1148 KnownOne &= KnownOne2;
1149 KnownZero &= KnownZero2;
1150 return;
1151 case ISD::SETCC:
1152 // If we know the result of a setcc has the top bits zero, use this info.
1153 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult)
1154 KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
1155 return;
1156 case ISD::SHL:
1157 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1158 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1159 ComputeMaskedBits(Op.getOperand(0), Mask >> SA->getValue(),
1160 KnownZero, KnownOne, Depth+1);
1161 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1162 KnownZero <<= SA->getValue();
1163 KnownOne <<= SA->getValue();
1164 KnownZero |= (1ULL << SA->getValue())-1; // low bits known zero.
1165 }
1166 return;
1167 case ISD::SRL:
1168 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1169 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1170 MVT::ValueType VT = Op.getValueType();
1171 unsigned ShAmt = SA->getValue();
1172
1173 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1174 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt) & TypeMask,
1175 KnownZero, KnownOne, Depth+1);
1176 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1177 KnownZero &= TypeMask;
1178 KnownOne &= TypeMask;
1179 KnownZero >>= ShAmt;
1180 KnownOne >>= ShAmt;
1181
1182 uint64_t HighBits = (1ULL << ShAmt)-1;
1183 HighBits <<= MVT::getSizeInBits(VT)-ShAmt;
1184 KnownZero |= HighBits; // High bits known zero.
1185 }
1186 return;
1187 case ISD::SRA:
1188 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1189 MVT::ValueType VT = Op.getValueType();
1190 unsigned ShAmt = SA->getValue();
1191
1192 // Compute the new bits that are at the top now.
1193 uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1194
1195 uint64_t InDemandedMask = (Mask << ShAmt) & TypeMask;
1196 // If any of the demanded bits are produced by the sign extension, we also
1197 // demand the input sign bit.
1198 uint64_t HighBits = (1ULL << ShAmt)-1;
1199 HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
1200 if (HighBits & Mask)
1201 InDemandedMask |= MVT::getIntVTSignBit(VT);
1202
1203 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1204 Depth+1);
1205 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1206 KnownZero &= TypeMask;
1207 KnownOne &= TypeMask;
1208 KnownZero >>= ShAmt;
1209 KnownOne >>= ShAmt;
1210
1211 // Handle the sign bits.
1212 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1213 SignBit >>= ShAmt; // Adjust to where it is now in the mask.
1214
1215 if (KnownZero & SignBit) {
1216 KnownZero |= HighBits; // New bits are known zero.
1217 } else if (KnownOne & SignBit) {
1218 KnownOne |= HighBits; // New bits are known one.
1219 }
1220 }
1221 return;
1222 case ISD::SIGN_EXTEND_INREG: {
1223 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1224
1225 // Sign extension. Compute the demanded bits in the result that are not
1226 // present in the input.
1227 uint64_t NewBits = ~MVT::getIntVTBitMask(EVT) & Mask;
1228
1229 uint64_t InSignBit = MVT::getIntVTSignBit(EVT);
1230 int64_t InputDemandedBits = Mask & MVT::getIntVTBitMask(EVT);
1231
1232 // If the sign extended bits are demanded, we know that the sign
1233 // bit is demanded.
1234 if (NewBits)
1235 InputDemandedBits |= InSignBit;
1236
1237 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1238 KnownZero, KnownOne, Depth+1);
1239 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1240
1241 // If the sign bit of the input is known set or clear, then we know the
1242 // top bits of the result.
1243 if (KnownZero & InSignBit) { // Input sign bit known clear
1244 KnownZero |= NewBits;
1245 KnownOne &= ~NewBits;
1246 } else if (KnownOne & InSignBit) { // Input sign bit known set
1247 KnownOne |= NewBits;
1248 KnownZero &= ~NewBits;
1249 } else { // Input sign bit unknown
1250 KnownZero &= ~NewBits;
1251 KnownOne &= ~NewBits;
1252 }
1253 return;
1254 }
1255 case ISD::CTTZ:
1256 case ISD::CTLZ:
1257 case ISD::CTPOP: {
1258 MVT::ValueType VT = Op.getValueType();
1259 unsigned LowBits = Log2_32(MVT::getSizeInBits(VT))+1;
1260 KnownZero = ~((1ULL << LowBits)-1) & MVT::getIntVTBitMask(VT);
1261 KnownOne = 0;
1262 return;
1263 }
1264 case ISD::LOAD: {
1265 if (ISD::isZEXTLoad(Op.Val)) {
1266 LoadSDNode *LD = cast<LoadSDNode>(Op);
1267 MVT::ValueType VT = LD->getLoadedVT();
1268 KnownZero |= ~MVT::getIntVTBitMask(VT) & Mask;
1269 }
1270 return;
1271 }
1272 case ISD::ZERO_EXTEND: {
1273 uint64_t InMask = MVT::getIntVTBitMask(Op.getOperand(0).getValueType());
1274 uint64_t NewBits = (~InMask) & Mask;
1275 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1276 KnownOne, Depth+1);
1277 KnownZero |= NewBits & Mask;
1278 KnownOne &= ~NewBits;
1279 return;
1280 }
1281 case ISD::SIGN_EXTEND: {
1282 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1283 unsigned InBits = MVT::getSizeInBits(InVT);
1284 uint64_t InMask = MVT::getIntVTBitMask(InVT);
1285 uint64_t InSignBit = 1ULL << (InBits-1);
1286 uint64_t NewBits = (~InMask) & Mask;
1287 uint64_t InDemandedBits = Mask & InMask;
1288
1289 // If any of the sign extended bits are demanded, we know that the sign
1290 // bit is demanded.
1291 if (NewBits & Mask)
1292 InDemandedBits |= InSignBit;
1293
1294 ComputeMaskedBits(Op.getOperand(0), InDemandedBits, KnownZero,
1295 KnownOne, Depth+1);
1296 // If the sign bit is known zero or one, the top bits match.
1297 if (KnownZero & InSignBit) {
1298 KnownZero |= NewBits;
1299 KnownOne &= ~NewBits;
1300 } else if (KnownOne & InSignBit) {
1301 KnownOne |= NewBits;
1302 KnownZero &= ~NewBits;
1303 } else { // Otherwise, top bits aren't known.
1304 KnownOne &= ~NewBits;
1305 KnownZero &= ~NewBits;
1306 }
1307 return;
1308 }
1309 case ISD::ANY_EXTEND: {
1310 MVT::ValueType VT = Op.getOperand(0).getValueType();
1311 ComputeMaskedBits(Op.getOperand(0), Mask & MVT::getIntVTBitMask(VT),
1312 KnownZero, KnownOne, Depth+1);
1313 return;
1314 }
1315 case ISD::TRUNCATE: {
1316 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1317 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1318 uint64_t OutMask = MVT::getIntVTBitMask(Op.getValueType());
1319 KnownZero &= OutMask;
1320 KnownOne &= OutMask;
1321 break;
1322 }
1323 case ISD::AssertZext: {
1324 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1325 uint64_t InMask = MVT::getIntVTBitMask(VT);
1326 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1327 KnownOne, Depth+1);
1328 KnownZero |= (~InMask) & Mask;
1329 return;
1330 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001331 case ISD::FGETSIGN:
1332 // All bits are zero except the low bit.
1333 KnownZero = MVT::getIntVTBitMask(Op.getValueType()) ^ 1;
1334 return;
1335
Dan Gohmanea859be2007-06-22 14:59:07 +00001336 case ISD::ADD: {
1337 // If either the LHS or the RHS are Zero, the result is zero.
1338 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1339 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1340 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1341 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1342
1343 // Output known-0 bits are known if clear or set in both the low clear bits
1344 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1345 // low 3 bits clear.
1346 uint64_t KnownZeroOut = std::min(CountTrailingZeros_64(~KnownZero),
1347 CountTrailingZeros_64(~KnownZero2));
1348
1349 KnownZero = (1ULL << KnownZeroOut) - 1;
1350 KnownOne = 0;
1351 return;
1352 }
1353 case ISD::SUB: {
1354 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1355 if (!CLHS) return;
1356
1357 // We know that the top bits of C-X are clear if X contains less bits
1358 // than C (i.e. no wrap-around can happen). For example, 20-X is
1359 // positive if we can prove that X is >= 0 and < 16.
1360 MVT::ValueType VT = CLHS->getValueType(0);
1361 if ((CLHS->getValue() & MVT::getIntVTSignBit(VT)) == 0) { // sign bit clear
1362 unsigned NLZ = CountLeadingZeros_64(CLHS->getValue()+1);
1363 uint64_t MaskV = (1ULL << (63-NLZ))-1; // NLZ can't be 64 with no sign bit
1364 MaskV = ~MaskV & MVT::getIntVTBitMask(VT);
1365 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1366
1367 // If all of the MaskV bits are known to be zero, then we know the output
1368 // top bits are zero, because we now know that the output is from [0-C].
1369 if ((KnownZero & MaskV) == MaskV) {
1370 unsigned NLZ2 = CountLeadingZeros_64(CLHS->getValue());
1371 KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask; // Top bits known zero.
1372 KnownOne = 0; // No one bits known.
1373 } else {
1374 KnownZero = KnownOne = 0; // Otherwise, nothing known.
1375 }
1376 }
1377 return;
1378 }
1379 default:
1380 // Allow the target to implement this method for its nodes.
1381 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1382 case ISD::INTRINSIC_WO_CHAIN:
1383 case ISD::INTRINSIC_W_CHAIN:
1384 case ISD::INTRINSIC_VOID:
1385 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1386 }
1387 return;
1388 }
1389}
1390
1391/// ComputeNumSignBits - Return the number of times the sign bit of the
1392/// register is replicated into the other bits. We know that at least 1 bit
1393/// is always equal to the sign bit (itself), but other cases can give us
1394/// information. For example, immediately after an "SRA X, 2", we know that
1395/// the top 3 bits are all equal to each other, so we return 3.
1396unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1397 MVT::ValueType VT = Op.getValueType();
1398 assert(MVT::isInteger(VT) && "Invalid VT!");
1399 unsigned VTBits = MVT::getSizeInBits(VT);
1400 unsigned Tmp, Tmp2;
1401
1402 if (Depth == 6)
1403 return 1; // Limit search depth.
1404
1405 switch (Op.getOpcode()) {
1406 default: break;
1407 case ISD::AssertSext:
1408 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1409 return VTBits-Tmp+1;
1410 case ISD::AssertZext:
1411 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1412 return VTBits-Tmp;
1413
1414 case ISD::Constant: {
1415 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1416 // If negative, invert the bits, then look at it.
1417 if (Val & MVT::getIntVTSignBit(VT))
1418 Val = ~Val;
1419
1420 // Shift the bits so they are the leading bits in the int64_t.
1421 Val <<= 64-VTBits;
1422
1423 // Return # leading zeros. We use 'min' here in case Val was zero before
1424 // shifting. We don't want to return '64' as for an i32 "0".
1425 return std::min(VTBits, CountLeadingZeros_64(Val));
1426 }
1427
1428 case ISD::SIGN_EXTEND:
1429 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1430 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1431
1432 case ISD::SIGN_EXTEND_INREG:
1433 // Max of the input and what this extends.
1434 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1435 Tmp = VTBits-Tmp+1;
1436
1437 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1438 return std::max(Tmp, Tmp2);
1439
1440 case ISD::SRA:
1441 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1442 // SRA X, C -> adds C sign bits.
1443 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1444 Tmp += C->getValue();
1445 if (Tmp > VTBits) Tmp = VTBits;
1446 }
1447 return Tmp;
1448 case ISD::SHL:
1449 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1450 // shl destroys sign bits.
1451 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1452 if (C->getValue() >= VTBits || // Bad shift.
1453 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1454 return Tmp - C->getValue();
1455 }
1456 break;
1457 case ISD::AND:
1458 case ISD::OR:
1459 case ISD::XOR: // NOT is handled here.
1460 // Logical binary ops preserve the number of sign bits.
1461 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1462 if (Tmp == 1) return 1; // Early out.
1463 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1464 return std::min(Tmp, Tmp2);
1465
1466 case ISD::SELECT:
1467 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1468 if (Tmp == 1) return 1; // Early out.
1469 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1470 return std::min(Tmp, Tmp2);
1471
1472 case ISD::SETCC:
1473 // If setcc returns 0/-1, all bits are sign bits.
1474 if (TLI.getSetCCResultContents() ==
1475 TargetLowering::ZeroOrNegativeOneSetCCResult)
1476 return VTBits;
1477 break;
1478 case ISD::ROTL:
1479 case ISD::ROTR:
1480 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1481 unsigned RotAmt = C->getValue() & (VTBits-1);
1482
1483 // Handle rotate right by N like a rotate left by 32-N.
1484 if (Op.getOpcode() == ISD::ROTR)
1485 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1486
1487 // If we aren't rotating out all of the known-in sign bits, return the
1488 // number that are left. This handles rotl(sext(x), 1) for example.
1489 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1490 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1491 }
1492 break;
1493 case ISD::ADD:
1494 // Add can have at most one carry bit. Thus we know that the output
1495 // is, at worst, one more bit than the inputs.
1496 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1497 if (Tmp == 1) return 1; // Early out.
1498
1499 // Special case decrementing a value (ADD X, -1):
1500 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1501 if (CRHS->isAllOnesValue()) {
1502 uint64_t KnownZero, KnownOne;
1503 uint64_t Mask = MVT::getIntVTBitMask(VT);
1504 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1505
1506 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1507 // sign bits set.
1508 if ((KnownZero|1) == Mask)
1509 return VTBits;
1510
1511 // If we are subtracting one from a positive number, there is no carry
1512 // out of the result.
1513 if (KnownZero & MVT::getIntVTSignBit(VT))
1514 return Tmp;
1515 }
1516
1517 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1518 if (Tmp2 == 1) return 1;
1519 return std::min(Tmp, Tmp2)-1;
1520 break;
1521
1522 case ISD::SUB:
1523 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1524 if (Tmp2 == 1) return 1;
1525
1526 // Handle NEG.
1527 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1528 if (CLHS->getValue() == 0) {
1529 uint64_t KnownZero, KnownOne;
1530 uint64_t Mask = MVT::getIntVTBitMask(VT);
1531 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1532 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1533 // sign bits set.
1534 if ((KnownZero|1) == Mask)
1535 return VTBits;
1536
1537 // If the input is known to be positive (the sign bit is known clear),
1538 // the output of the NEG has the same number of sign bits as the input.
1539 if (KnownZero & MVT::getIntVTSignBit(VT))
1540 return Tmp2;
1541
1542 // Otherwise, we treat this like a SUB.
1543 }
1544
1545 // Sub can have at most one carry bit. Thus we know that the output
1546 // is, at worst, one more bit than the inputs.
1547 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1548 if (Tmp == 1) return 1; // Early out.
1549 return std::min(Tmp, Tmp2)-1;
1550 break;
1551 case ISD::TRUNCATE:
1552 // FIXME: it's tricky to do anything useful for this, but it is an important
1553 // case for targets like X86.
1554 break;
1555 }
1556
1557 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1558 if (Op.getOpcode() == ISD::LOAD) {
1559 LoadSDNode *LD = cast<LoadSDNode>(Op);
1560 unsigned ExtType = LD->getExtensionType();
1561 switch (ExtType) {
1562 default: break;
1563 case ISD::SEXTLOAD: // '17' bits known
1564 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1565 return VTBits-Tmp+1;
1566 case ISD::ZEXTLOAD: // '16' bits known
1567 Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1568 return VTBits-Tmp;
1569 }
1570 }
1571
1572 // Allow the target to implement this method for its nodes.
1573 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1574 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1575 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1576 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1577 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1578 if (NumBits > 1) return NumBits;
1579 }
1580
1581 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1582 // use this information.
1583 uint64_t KnownZero, KnownOne;
1584 uint64_t Mask = MVT::getIntVTBitMask(VT);
1585 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1586
1587 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1588 if (KnownZero & SignBit) { // SignBit is 0
1589 Mask = KnownZero;
1590 } else if (KnownOne & SignBit) { // SignBit is 1;
1591 Mask = KnownOne;
1592 } else {
1593 // Nothing known.
1594 return 1;
1595 }
1596
1597 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1598 // the number of identical bits in the top of the input value.
1599 Mask ^= ~0ULL;
1600 Mask <<= 64-VTBits;
1601 // Return # leading zeros. We use 'min' here in case Val was zero before
1602 // shifting. We don't want to return '64' as for an i32 "0".
1603 return std::min(VTBits, CountLeadingZeros_64(Mask));
1604}
1605
Chris Lattner51dabfb2006-10-14 00:41:01 +00001606
Chris Lattnerc3aae252005-01-07 07:46:32 +00001607/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001608///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001609SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001610 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001611 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001612 void *IP = 0;
1613 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1614 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001615 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001616 CSEMap.InsertNode(N, IP);
1617
1618 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001619 return SDOperand(N, 0);
1620}
1621
Chris Lattnerc3aae252005-01-07 07:46:32 +00001622SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1623 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001624 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001625 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001626 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1627 uint64_t Val = C->getValue();
1628 switch (Opcode) {
1629 default: break;
1630 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001631 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001632 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1633 case ISD::TRUNCATE: return getConstant(Val, VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001634 case ISD::UINT_TO_FP:
1635 case ISD::SINT_TO_FP: {
1636 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001637 // No compile time operations on this type.
1638 if (VT==MVT::ppcf128)
1639 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00001640 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Neil Boothccf596a2007-10-07 11:45:55 +00001641 (void)apf.convertFromZeroExtendedInteger(&Val,
Dale Johannesen910993e2007-09-21 22:09:37 +00001642 MVT::getSizeInBits(Operand.getValueType()),
1643 Opcode==ISD::SINT_TO_FP,
Dale Johannesen88216af2007-09-30 18:19:03 +00001644 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001645 return getConstantFP(apf, VT);
1646 }
Chris Lattner94683772005-12-23 05:30:37 +00001647 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001648 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001649 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001650 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001651 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001652 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001653 case ISD::BSWAP:
1654 switch(VT) {
1655 default: assert(0 && "Invalid bswap!"); break;
1656 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1657 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1658 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1659 }
1660 break;
1661 case ISD::CTPOP:
1662 switch(VT) {
1663 default: assert(0 && "Invalid ctpop!"); break;
1664 case MVT::i1: return getConstant(Val != 0, VT);
1665 case MVT::i8:
1666 Tmp1 = (unsigned)Val & 0xFF;
1667 return getConstant(CountPopulation_32(Tmp1), VT);
1668 case MVT::i16:
1669 Tmp1 = (unsigned)Val & 0xFFFF;
1670 return getConstant(CountPopulation_32(Tmp1), VT);
1671 case MVT::i32:
1672 return getConstant(CountPopulation_32((unsigned)Val), VT);
1673 case MVT::i64:
1674 return getConstant(CountPopulation_64(Val), VT);
1675 }
1676 case ISD::CTLZ:
1677 switch(VT) {
1678 default: assert(0 && "Invalid ctlz!"); break;
1679 case MVT::i1: return getConstant(Val == 0, VT);
1680 case MVT::i8:
1681 Tmp1 = (unsigned)Val & 0xFF;
1682 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1683 case MVT::i16:
1684 Tmp1 = (unsigned)Val & 0xFFFF;
1685 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1686 case MVT::i32:
1687 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1688 case MVT::i64:
1689 return getConstant(CountLeadingZeros_64(Val), VT);
1690 }
1691 case ISD::CTTZ:
1692 switch(VT) {
1693 default: assert(0 && "Invalid cttz!"); break;
1694 case MVT::i1: return getConstant(Val == 0, VT);
1695 case MVT::i8:
1696 Tmp1 = (unsigned)Val | 0x100;
1697 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1698 case MVT::i16:
1699 Tmp1 = (unsigned)Val | 0x10000;
1700 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1701 case MVT::i32:
1702 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1703 case MVT::i64:
1704 return getConstant(CountTrailingZeros_64(Val), VT);
1705 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001706 }
1707 }
1708
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001709 // Constant fold unary operations with a floating point constant operand.
1710 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1711 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001712 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001713 switch (Opcode) {
1714 case ISD::FNEG:
1715 V.changeSign();
1716 return getConstantFP(V, VT);
1717 case ISD::FABS:
1718 V.clearSign();
1719 return getConstantFP(V, VT);
1720 case ISD::FP_ROUND:
1721 case ISD::FP_EXTEND:
1722 // This can return overflow, underflow, or inexact; we don't care.
1723 // FIXME need to be more flexible about rounding mode.
1724 (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle :
1725 VT==MVT::f64 ? APFloat::IEEEdouble :
1726 VT==MVT::f80 ? APFloat::x87DoubleExtended :
1727 VT==MVT::f128 ? APFloat::IEEEquad :
1728 APFloat::Bogus,
1729 APFloat::rmNearestTiesToEven);
1730 return getConstantFP(V, VT);
1731 case ISD::FP_TO_SINT:
1732 case ISD::FP_TO_UINT: {
1733 integerPart x;
1734 assert(integerPartWidth >= 64);
1735 // FIXME need to be more flexible about rounding mode.
1736 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1737 Opcode==ISD::FP_TO_SINT,
1738 APFloat::rmTowardZero);
1739 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1740 break;
1741 return getConstant(x, VT);
1742 }
1743 case ISD::BIT_CONVERT:
1744 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1745 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1746 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1747 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001748 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001749 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001750 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001751 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001752
1753 unsigned OpOpcode = Operand.Val->getOpcode();
1754 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001755 case ISD::TokenFactor:
1756 return Operand; // Factor of one node? No factor.
Chris Lattner0bd48932008-01-17 07:00:52 +00001757 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001758 case ISD::FP_EXTEND:
1759 assert(MVT::isFloatingPoint(VT) &&
1760 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001761 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001762 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00001763 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001764 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1765 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001766 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001767 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1768 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001769 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1770 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1771 break;
1772 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001773 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1774 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001775 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001776 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1777 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001778 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001779 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001780 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001781 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001782 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1783 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001784 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001785 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1786 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001787 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1788 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1789 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1790 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001791 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001792 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1793 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001794 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsaf47b112007-10-16 09:56:48 +00001795 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1796 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001797 if (OpOpcode == ISD::TRUNCATE)
1798 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001799 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1800 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001801 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsaf47b112007-10-16 09:56:48 +00001802 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1803 < MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001804 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsaf47b112007-10-16 09:56:48 +00001805 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1806 > MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001807 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1808 else
1809 return Operand.Val->getOperand(0);
1810 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001811 break;
Chris Lattner35481892005-12-23 00:16:34 +00001812 case ISD::BIT_CONVERT:
1813 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001814 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001815 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001816 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001817 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1818 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001819 if (OpOpcode == ISD::UNDEF)
1820 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001821 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001822 case ISD::SCALAR_TO_VECTOR:
1823 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001824 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001825 "Illegal SCALAR_TO_VECTOR node!");
1826 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001827 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001828 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1829 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001830 Operand.Val->getOperand(0));
1831 if (OpOpcode == ISD::FNEG) // --X -> X
1832 return Operand.Val->getOperand(0);
1833 break;
1834 case ISD::FABS:
1835 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1836 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1837 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001838 }
1839
Chris Lattner43247a12005-08-25 19:12:10 +00001840 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001841 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001842 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001843 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001844 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001845 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001846 void *IP = 0;
1847 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1848 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001849 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001850 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001851 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001852 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001853 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001854 AllNodes.push_back(N);
1855 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001856}
1857
Chris Lattner36019aa2005-04-18 03:48:41 +00001858
1859
Chris Lattnerc3aae252005-01-07 07:46:32 +00001860SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1861 SDOperand N1, SDOperand N2) {
Chris Lattner76365122005-01-16 02:23:22 +00001862#ifndef NDEBUG
1863 switch (Opcode) {
Chris Lattner39908e02005-01-19 18:01:40 +00001864 case ISD::TokenFactor:
1865 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1866 N2.getValueType() == MVT::Other && "Invalid token factor!");
1867 break;
Chris Lattner76365122005-01-16 02:23:22 +00001868 case ISD::AND:
1869 case ISD::OR:
1870 case ISD::XOR:
1871 case ISD::UDIV:
1872 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001873 case ISD::MULHU:
1874 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001875 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1876 // fall through
1877 case ISD::ADD:
1878 case ISD::SUB:
1879 case ISD::MUL:
1880 case ISD::SDIV:
1881 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001882 assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1883 // fall through.
1884 case ISD::FADD:
1885 case ISD::FSUB:
1886 case ISD::FMUL:
1887 case ISD::FDIV:
1888 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001889 assert(N1.getValueType() == N2.getValueType() &&
1890 N1.getValueType() == VT && "Binary operator types must match!");
1891 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001892 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1893 assert(N1.getValueType() == VT &&
1894 MVT::isFloatingPoint(N1.getValueType()) &&
1895 MVT::isFloatingPoint(N2.getValueType()) &&
1896 "Invalid FCOPYSIGN!");
1897 break;
Chris Lattner76365122005-01-16 02:23:22 +00001898 case ISD::SHL:
1899 case ISD::SRA:
1900 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001901 case ISD::ROTL:
1902 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001903 assert(VT == N1.getValueType() &&
1904 "Shift operators return type must be the same as their first arg");
1905 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001906 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001907 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001908 case ISD::FP_ROUND_INREG: {
1909 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1910 assert(VT == N1.getValueType() && "Not an inreg round!");
1911 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1912 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00001913 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1914 "Not rounding down!");
Chris Lattner15e4b012005-07-10 00:07:11 +00001915 break;
1916 }
Chris Lattner0bd48932008-01-17 07:00:52 +00001917 case ISD::FP_ROUND:
1918 assert(MVT::isFloatingPoint(VT) &&
1919 MVT::isFloatingPoint(N1.getValueType()) &&
1920 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
1921 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner0bd48932008-01-17 07:00:52 +00001922 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00001923 case ISD::AssertSext:
1924 case ISD::AssertZext:
Chris Lattner15e4b012005-07-10 00:07:11 +00001925 case ISD::SIGN_EXTEND_INREG: {
1926 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1927 assert(VT == N1.getValueType() && "Not an inreg extend!");
1928 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1929 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00001930 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1931 "Not extending!");
Chris Lattner15e4b012005-07-10 00:07:11 +00001932 }
1933
Chris Lattner76365122005-01-16 02:23:22 +00001934 default: break;
1935 }
1936#endif
1937
Chris Lattnerc3aae252005-01-07 07:46:32 +00001938 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1939 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1940 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00001941 if (Opcode == ISD::SIGN_EXTEND_INREG) {
1942 int64_t Val = N1C->getValue();
1943 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1944 Val <<= 64-FromBits;
1945 Val >>= 64-FromBits;
1946 return getConstant(Val, VT);
1947 }
1948
Chris Lattnerc3aae252005-01-07 07:46:32 +00001949 if (N2C) {
1950 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1951 switch (Opcode) {
1952 case ISD::ADD: return getConstant(C1 + C2, VT);
1953 case ISD::SUB: return getConstant(C1 - C2, VT);
1954 case ISD::MUL: return getConstant(C1 * C2, VT);
1955 case ISD::UDIV:
1956 if (C2) return getConstant(C1 / C2, VT);
1957 break;
1958 case ISD::UREM :
1959 if (C2) return getConstant(C1 % C2, VT);
1960 break;
1961 case ISD::SDIV :
1962 if (C2) return getConstant(N1C->getSignExtended() /
1963 N2C->getSignExtended(), VT);
1964 break;
1965 case ISD::SREM :
1966 if (C2) return getConstant(N1C->getSignExtended() %
1967 N2C->getSignExtended(), VT);
1968 break;
1969 case ISD::AND : return getConstant(C1 & C2, VT);
1970 case ISD::OR : return getConstant(C1 | C2, VT);
1971 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00001972 case ISD::SHL : return getConstant(C1 << C2, VT);
1973 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00001974 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00001975 case ISD::ROTL :
1976 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1977 VT);
1978 case ISD::ROTR :
1979 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
1980 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001981 default: break;
1982 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001983 } else { // Cannonicalize constant to RHS if commutative
1984 if (isCommutativeBinOp(Opcode)) {
1985 std::swap(N1C, N2C);
1986 std::swap(N1, N2);
1987 }
1988 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001989 }
1990
1991 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1992 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00001993 if (N1CFP) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001994 if (N2CFP && VT!=MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001995 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
1996 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001997 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001998 case ISD::FADD:
1999 s = V1.add(V2, APFloat::rmNearestTiesToEven);
2000 if (s!=APFloat::opInvalidOp)
2001 return getConstantFP(V1, VT);
2002 break;
2003 case ISD::FSUB:
2004 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2005 if (s!=APFloat::opInvalidOp)
2006 return getConstantFP(V1, VT);
2007 break;
2008 case ISD::FMUL:
2009 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2010 if (s!=APFloat::opInvalidOp)
2011 return getConstantFP(V1, VT);
2012 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002013 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002014 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2015 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2016 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002017 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002018 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002019 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2020 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2021 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002022 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002023 case ISD::FCOPYSIGN:
2024 V1.copySign(V2);
2025 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002026 default: break;
2027 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002028 } else { // Cannonicalize constant to RHS if commutative
2029 if (isCommutativeBinOp(Opcode)) {
2030 std::swap(N1CFP, N2CFP);
2031 std::swap(N1, N2);
2032 }
2033 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002034 }
Chris Lattner62b57722006-04-20 05:39:12 +00002035
2036 // Canonicalize an UNDEF to the RHS, even over a constant.
2037 if (N1.getOpcode() == ISD::UNDEF) {
2038 if (isCommutativeBinOp(Opcode)) {
2039 std::swap(N1, N2);
2040 } else {
2041 switch (Opcode) {
2042 case ISD::FP_ROUND_INREG:
2043 case ISD::SIGN_EXTEND_INREG:
2044 case ISD::SUB:
2045 case ISD::FSUB:
2046 case ISD::FDIV:
2047 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002048 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002049 return N1; // fold op(undef, arg2) -> undef
2050 case ISD::UDIV:
2051 case ISD::SDIV:
2052 case ISD::UREM:
2053 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002054 case ISD::SRL:
2055 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002056 if (!MVT::isVector(VT))
2057 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2058 // For vectors, we can't easily build an all zero vector, just return
2059 // the LHS.
2060 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002061 }
2062 }
2063 }
2064
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002065 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002066 if (N2.getOpcode() == ISD::UNDEF) {
2067 switch (Opcode) {
2068 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002069 case ISD::ADDC:
2070 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002071 case ISD::SUB:
2072 case ISD::FADD:
2073 case ISD::FSUB:
2074 case ISD::FMUL:
2075 case ISD::FDIV:
2076 case ISD::FREM:
2077 case ISD::UDIV:
2078 case ISD::SDIV:
2079 case ISD::UREM:
2080 case ISD::SREM:
2081 case ISD::XOR:
2082 return N2; // fold op(arg1, undef) -> undef
2083 case ISD::MUL:
2084 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002085 case ISD::SRL:
2086 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002087 if (!MVT::isVector(VT))
2088 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2089 // For vectors, we can't easily build an all zero vector, just return
2090 // the LHS.
2091 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002092 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00002093 if (!MVT::isVector(VT))
2094 return getConstant(MVT::getIntVTBitMask(VT), VT);
2095 // For vectors, we can't easily build an all one vector, just return
2096 // the LHS.
2097 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002098 case ISD::SRA:
2099 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002100 }
2101 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002102
Chris Lattner51dabfb2006-10-14 00:41:01 +00002103 // Fold operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002104 switch (Opcode) {
Chris Lattner753d9cb2007-02-25 08:24:27 +00002105 case ISD::TokenFactor:
2106 // Fold trivial token factors.
2107 if (N1.getOpcode() == ISD::EntryToken) return N2;
2108 if (N2.getOpcode() == ISD::EntryToken) return N1;
2109 break;
2110
Chris Lattner51dabfb2006-10-14 00:41:01 +00002111 case ISD::AND:
2112 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2113 // worth handling here.
2114 if (N2C && N2C->getValue() == 0)
2115 return N2;
2116 break;
Chris Lattnerb3607292006-10-17 21:47:13 +00002117 case ISD::OR:
2118 case ISD::XOR:
2119 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
2120 // worth handling here.
2121 if (N2C && N2C->getValue() == 0)
2122 return N1;
2123 break;
Dale Johannesenda9bb352008-01-21 01:00:34 +00002124 case ISD::FP_ROUND:
2125 if (N1.getValueType() == VT) return N1; // noop conversion.
2126 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002127 case ISD::FP_ROUND_INREG:
2128 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
2129 break;
2130 case ISD::SIGN_EXTEND_INREG: {
2131 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2132 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002133 break;
2134 }
Dan Gohman7f321562007-06-25 16:23:39 +00002135 case ISD::EXTRACT_VECTOR_ELT:
2136 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2137
Dan Gohman743d3a72007-07-10 18:20:44 +00002138 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
Dan Gohman7f321562007-06-25 16:23:39 +00002139 // expanding copies of large vectors from registers.
Dan Gohman743d3a72007-07-10 18:20:44 +00002140 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2141 N1.getNumOperands() > 0) {
2142 unsigned Factor =
2143 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2144 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2145 N1.getOperand(N2C->getValue() / Factor),
2146 getConstant(N2C->getValue() % Factor, N2.getValueType()));
Dan Gohman7f321562007-06-25 16:23:39 +00002147 }
Dan Gohman743d3a72007-07-10 18:20:44 +00002148
Dan Gohman7f321562007-06-25 16:23:39 +00002149 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2150 // expanding large vector constants.
2151 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2152 return N1.getOperand(N2C->getValue());
Dan Gohman743d3a72007-07-10 18:20:44 +00002153
2154 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2155 // operations are lowered to scalars.
2156 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2157 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2158 if (IEC == N2C)
2159 return N1.getOperand(1);
2160 else
2161 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2162 }
Dan Gohman7f321562007-06-25 16:23:39 +00002163 break;
Chris Lattner5c6621c2006-09-19 04:51:23 +00002164 case ISD::EXTRACT_ELEMENT:
Chris Lattner863ac762006-09-19 05:02:39 +00002165 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
2166
Chris Lattner5c6621c2006-09-19 04:51:23 +00002167 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2168 // 64-bit integers into 32-bit parts. Instead of building the extract of
2169 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner863ac762006-09-19 05:02:39 +00002170 if (N1.getOpcode() == ISD::BUILD_PAIR)
Chris Lattner5c6621c2006-09-19 04:51:23 +00002171 return N1.getOperand(N2C->getValue());
Chris Lattner863ac762006-09-19 05:02:39 +00002172
2173 // EXTRACT_ELEMENT of a constant int is also very common.
2174 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2175 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2176 return getConstant(C->getValue() >> Shift, VT);
Chris Lattner5c6621c2006-09-19 04:51:23 +00002177 }
2178 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002179
Nate Begemaneea805e2005-04-13 21:23:31 +00002180 // FIXME: figure out how to safely handle things like
2181 // int foo(int x) { return 1 << (x & 255); }
2182 // int bar() { return foo(256); }
2183#if 0
Nate Begemandb81eba2005-04-12 23:32:28 +00002184 case ISD::SHL:
2185 case ISD::SRL:
2186 case ISD::SRA:
Chris Lattnere666fcf2005-04-13 02:58:13 +00002187 if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002188 cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
Nate Begemandb81eba2005-04-12 23:32:28 +00002189 return getNode(Opcode, VT, N1, N2.getOperand(0));
Chris Lattnere666fcf2005-04-13 02:58:13 +00002190 else if (N2.getOpcode() == ISD::AND)
2191 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
2192 // If the and is only masking out bits that cannot effect the shift,
2193 // eliminate the and.
2194 unsigned NumBits = MVT::getSizeInBits(VT);
2195 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2196 return getNode(Opcode, VT, N1, N2.getOperand(0));
2197 }
Nate Begemandb81eba2005-04-12 23:32:28 +00002198 break;
Nate Begemaneea805e2005-04-13 21:23:31 +00002199#endif
Chris Lattnerc3aae252005-01-07 07:46:32 +00002200 }
2201
Chris Lattner27e9b412005-05-11 18:57:39 +00002202 // Memoize this node if possible.
2203 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002204 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002205 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002206 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002207 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002208 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002209 void *IP = 0;
2210 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2211 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002212 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002213 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002214 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002215 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002216 }
2217
Chris Lattnerc3aae252005-01-07 07:46:32 +00002218 AllNodes.push_back(N);
2219 return SDOperand(N, 0);
2220}
2221
Chris Lattnerc3aae252005-01-07 07:46:32 +00002222SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2223 SDOperand N1, SDOperand N2, SDOperand N3) {
2224 // Perform various simplifications.
2225 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2226 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002227 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002228 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002229 // Use FoldSetCC to simplify SETCC's.
2230 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002231 if (Simp.Val) return Simp;
2232 break;
2233 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002234 case ISD::SELECT:
2235 if (N1C)
2236 if (N1C->getValue())
2237 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002238 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002239 return N3; // select false, X, Y -> Y
2240
2241 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002242 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002243 case ISD::BRCOND:
2244 if (N2C)
2245 if (N2C->getValue()) // Unconditional branch
2246 return getNode(ISD::BR, MVT::Other, N1, N3);
2247 else
2248 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00002249 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002250 case ISD::VECTOR_SHUFFLE:
2251 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2252 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2253 N3.getOpcode() == ISD::BUILD_VECTOR &&
2254 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2255 "Illegal VECTOR_SHUFFLE node!");
2256 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002257 case ISD::BIT_CONVERT:
2258 // Fold bit_convert nodes from a type to themselves.
2259 if (N1.getValueType() == VT)
2260 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002261 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002262 }
2263
Chris Lattner43247a12005-08-25 19:12:10 +00002264 // Memoize node if it doesn't produce a flag.
2265 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002266 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002267 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002268 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002269 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002270 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002271 void *IP = 0;
2272 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2273 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002274 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002275 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002276 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002277 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002278 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002279 AllNodes.push_back(N);
2280 return SDOperand(N, 0);
2281}
2282
2283SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002284 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002285 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002286 SDOperand Ops[] = { N1, N2, N3, N4 };
2287 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002288}
2289
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002290SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2291 SDOperand N1, SDOperand N2, SDOperand N3,
2292 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002293 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2294 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002295}
2296
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002297SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2298 SDOperand Src, SDOperand Size,
2299 SDOperand Align,
2300 SDOperand AlwaysInline) {
2301 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2302 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2303}
2304
2305SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2306 SDOperand Src, SDOperand Size,
2307 SDOperand Align,
2308 SDOperand AlwaysInline) {
2309 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2310 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2311}
2312
2313SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2314 SDOperand Src, SDOperand Size,
2315 SDOperand Align,
2316 SDOperand AlwaysInline) {
2317 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2318 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2319}
2320
Evan Cheng7038daf2005-12-10 00:37:58 +00002321SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2322 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002323 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002324 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002325 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2326 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002327 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002328 Ty = MVT::getTypeForValueType(VT);
2329 } else if (SV) {
2330 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2331 assert(PT && "Value for load must be a pointer");
2332 Ty = PT->getElementType();
2333 }
2334 assert(Ty && "Could not get type information for load");
2335 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2336 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002337 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002338 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002339 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002340 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002341 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002342 ID.AddInteger(ISD::UNINDEXED);
2343 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002344 ID.AddInteger((unsigned int)VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002345 ID.AddInteger(Alignment);
2346 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002347 void *IP = 0;
2348 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2349 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002350 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002351 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2352 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002353 CSEMap.InsertNode(N, IP);
2354 AllNodes.push_back(N);
2355 return SDOperand(N, 0);
2356}
2357
2358SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002359 SDOperand Chain, SDOperand Ptr,
2360 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002361 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002362 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002363 // If they are asking for an extending load from/to the same thing, return a
2364 // normal load.
2365 if (VT == EVT)
Duncan Sands5d868b12007-10-19 13:05:40 +00002366 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00002367
2368 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002369 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002370 else
Duncan Sandsaf47b112007-10-16 09:56:48 +00002371 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2372 "Should only be an extending load, not truncating!");
Evan Cheng466685d2006-10-09 20:57:25 +00002373 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2374 "Cannot sign/zero extend a FP/Vector load!");
2375 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2376 "Cannot convert from FP to Int or Int -> FP!");
2377
Dan Gohman575e2f42007-06-04 15:49:41 +00002378 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2379 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002380 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002381 Ty = MVT::getTypeForValueType(VT);
2382 } else if (SV) {
2383 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2384 assert(PT && "Value for load must be a pointer");
2385 Ty = PT->getElementType();
2386 }
2387 assert(Ty && "Could not get type information for load");
2388 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2389 }
Evan Cheng466685d2006-10-09 20:57:25 +00002390 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002391 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002392 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002393 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002394 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002395 ID.AddInteger(ISD::UNINDEXED);
2396 ID.AddInteger(ExtType);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002397 ID.AddInteger((unsigned int)EVT);
Evan Cheng466685d2006-10-09 20:57:25 +00002398 ID.AddInteger(Alignment);
2399 ID.AddInteger(isVolatile);
2400 void *IP = 0;
2401 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2402 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002403 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002404 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002405 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002406 AllNodes.push_back(N);
2407 return SDOperand(N, 0);
2408}
2409
Evan Cheng144d8f02006-11-09 17:55:04 +00002410SDOperand
2411SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2412 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002413 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002414 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2415 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002416 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002417 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002418 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002419 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002420 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002421 ID.AddInteger(AM);
2422 ID.AddInteger(LD->getExtensionType());
Chris Lattner3d6992f2007-09-13 06:09:48 +00002423 ID.AddInteger((unsigned int)(LD->getLoadedVT()));
Evan Cheng2caccca2006-10-17 21:14:32 +00002424 ID.AddInteger(LD->getAlignment());
2425 ID.AddInteger(LD->isVolatile());
2426 void *IP = 0;
2427 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2428 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002429 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Evan Cheng2caccca2006-10-17 21:14:32 +00002430 LD->getExtensionType(), LD->getLoadedVT(),
2431 LD->getSrcValue(), LD->getSrcValueOffset(),
2432 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002433 CSEMap.InsertNode(N, IP);
2434 AllNodes.push_back(N);
2435 return SDOperand(N, 0);
2436}
2437
Jeff Cohend41b30d2006-11-05 19:31:28 +00002438SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002439 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002440 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002441 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002442
Dan Gohman575e2f42007-06-04 15:49:41 +00002443 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2444 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002445 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002446 Ty = MVT::getTypeForValueType(VT);
2447 } else if (SV) {
2448 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2449 assert(PT && "Value for store must be a pointer");
2450 Ty = PT->getElementType();
2451 }
2452 assert(Ty && "Could not get type information for store");
2453 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2454 }
Evan Chengad071e12006-10-05 22:57:11 +00002455 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002456 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002457 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002458 FoldingSetNodeID ID;
2459 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002460 ID.AddInteger(ISD::UNINDEXED);
2461 ID.AddInteger(false);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002462 ID.AddInteger((unsigned int)VT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002463 ID.AddInteger(Alignment);
2464 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002465 void *IP = 0;
2466 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2467 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002468 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002469 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470 CSEMap.InsertNode(N, IP);
2471 AllNodes.push_back(N);
2472 return SDOperand(N, 0);
2473}
2474
Jeff Cohend41b30d2006-11-05 19:31:28 +00002475SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002476 SDOperand Ptr, const Value *SV,
2477 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002478 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002479 MVT::ValueType VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002480
2481 if (VT == SVT)
2482 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002483
Duncan Sandsaf47b112007-10-16 09:56:48 +00002484 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2485 "Not a truncation?");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002486 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2487 "Can't do FP-INT conversion!");
2488
Dan Gohman575e2f42007-06-04 15:49:41 +00002489 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2490 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002491 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002492 Ty = MVT::getTypeForValueType(VT);
2493 } else if (SV) {
2494 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2495 assert(PT && "Value for store must be a pointer");
2496 Ty = PT->getElementType();
2497 }
2498 assert(Ty && "Could not get type information for store");
2499 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2500 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002501 SDVTList VTs = getVTList(MVT::Other);
2502 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002503 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002504 FoldingSetNodeID ID;
2505 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002506 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002507 ID.AddInteger(1);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002508 ID.AddInteger((unsigned int)SVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002509 ID.AddInteger(Alignment);
2510 ID.AddInteger(isVolatile);
2511 void *IP = 0;
2512 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2513 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002514 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002515 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002516 CSEMap.InsertNode(N, IP);
2517 AllNodes.push_back(N);
2518 return SDOperand(N, 0);
2519}
2520
Evan Cheng144d8f02006-11-09 17:55:04 +00002521SDOperand
2522SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2523 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002524 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2525 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2526 "Store is already a indexed store!");
2527 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2528 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2529 FoldingSetNodeID ID;
2530 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2531 ID.AddInteger(AM);
2532 ID.AddInteger(ST->isTruncatingStore());
Chris Lattner3d6992f2007-09-13 06:09:48 +00002533 ID.AddInteger((unsigned int)(ST->getStoredVT()));
Evan Cheng9109fb12006-11-05 09:30:09 +00002534 ID.AddInteger(ST->getAlignment());
2535 ID.AddInteger(ST->isVolatile());
2536 void *IP = 0;
2537 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2538 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002539 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Evan Cheng9109fb12006-11-05 09:30:09 +00002540 ST->isTruncatingStore(), ST->getStoredVT(),
2541 ST->getSrcValue(), ST->getSrcValueOffset(),
2542 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002543 CSEMap.InsertNode(N, IP);
2544 AllNodes.push_back(N);
2545 return SDOperand(N, 0);
2546}
2547
Nate Begemanacc398c2006-01-25 18:21:52 +00002548SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2549 SDOperand Chain, SDOperand Ptr,
2550 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002551 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002552 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002553}
2554
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002555SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002556 const SDOperand *Ops, unsigned NumOps) {
2557 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002558 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002559 case 1: return getNode(Opcode, VT, Ops[0]);
2560 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2561 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002562 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002563 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002564
Chris Lattneref847df2005-04-09 03:27:28 +00002565 switch (Opcode) {
2566 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002567 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002568 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002569 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2570 "LHS and RHS of condition must have same type!");
2571 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2572 "True and False arms of SelectCC must have same type!");
2573 assert(Ops[2].getValueType() == VT &&
2574 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002575 break;
2576 }
2577 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002578 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002579 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2580 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002581 break;
2582 }
Chris Lattneref847df2005-04-09 03:27:28 +00002583 }
2584
Chris Lattner385328c2005-05-14 07:42:29 +00002585 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002586 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002587 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002588 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002589 FoldingSetNodeID ID;
2590 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002591 void *IP = 0;
2592 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2593 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002594 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002595 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002596 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002597 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002598 }
Chris Lattneref847df2005-04-09 03:27:28 +00002599 AllNodes.push_back(N);
2600 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002601}
2602
Chris Lattner89c34632005-05-14 06:20:26 +00002603SDOperand SelectionDAG::getNode(unsigned Opcode,
2604 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002605 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002606 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2607 Ops, NumOps);
2608}
2609
2610SDOperand SelectionDAG::getNode(unsigned Opcode,
2611 const MVT::ValueType *VTs, unsigned NumVTs,
2612 const SDOperand *Ops, unsigned NumOps) {
2613 if (NumVTs == 1)
2614 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002615 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2616}
2617
2618SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2619 const SDOperand *Ops, unsigned NumOps) {
2620 if (VTList.NumVTs == 1)
2621 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002622
Chris Lattner5f056bf2005-07-10 01:55:33 +00002623 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002624 // FIXME: figure out how to safely handle things like
2625 // int foo(int x) { return 1 << (x & 255); }
2626 // int bar() { return foo(256); }
2627#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002628 case ISD::SRA_PARTS:
2629 case ISD::SRL_PARTS:
2630 case ISD::SHL_PARTS:
2631 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002632 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002633 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2634 else if (N3.getOpcode() == ISD::AND)
2635 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2636 // If the and is only masking out bits that cannot effect the shift,
2637 // eliminate the and.
2638 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2639 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2640 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2641 }
2642 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002643#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002644 }
Chris Lattner89c34632005-05-14 06:20:26 +00002645
Chris Lattner43247a12005-08-25 19:12:10 +00002646 // Memoize the node unless it returns a flag.
2647 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002648 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002649 FoldingSetNodeID ID;
2650 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002651 void *IP = 0;
2652 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2653 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002654 if (NumOps == 1)
2655 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2656 else if (NumOps == 2)
2657 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2658 else if (NumOps == 3)
2659 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2660 else
2661 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002662 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002663 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002664 if (NumOps == 1)
2665 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2666 else if (NumOps == 2)
2667 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2668 else if (NumOps == 3)
2669 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2670 else
2671 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002672 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002673 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002674 return SDOperand(N, 0);
2675}
2676
Dan Gohman08ce9762007-10-08 15:49:58 +00002677SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2678 return getNode(Opcode, VTList, 0, 0);
2679}
2680
2681SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2682 SDOperand N1) {
2683 SDOperand Ops[] = { N1 };
2684 return getNode(Opcode, VTList, Ops, 1);
2685}
2686
2687SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2688 SDOperand N1, SDOperand N2) {
2689 SDOperand Ops[] = { N1, N2 };
2690 return getNode(Opcode, VTList, Ops, 2);
2691}
2692
2693SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2694 SDOperand N1, SDOperand N2, SDOperand N3) {
2695 SDOperand Ops[] = { N1, N2, N3 };
2696 return getNode(Opcode, VTList, Ops, 3);
2697}
2698
2699SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2700 SDOperand N1, SDOperand N2, SDOperand N3,
2701 SDOperand N4) {
2702 SDOperand Ops[] = { N1, N2, N3, N4 };
2703 return getNode(Opcode, VTList, Ops, 4);
2704}
2705
2706SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2707 SDOperand N1, SDOperand N2, SDOperand N3,
2708 SDOperand N4, SDOperand N5) {
2709 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2710 return getNode(Opcode, VTList, Ops, 5);
2711}
2712
Chris Lattner70046e92006-08-15 17:46:01 +00002713SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00002714 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002715}
2716
Chris Lattner70046e92006-08-15 17:46:01 +00002717SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002718 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2719 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002720 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002721 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002722 }
2723 std::vector<MVT::ValueType> V;
2724 V.push_back(VT1);
2725 V.push_back(VT2);
2726 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002727 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002728}
Chris Lattner70046e92006-08-15 17:46:01 +00002729SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2730 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002731 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002732 E = VTList.end(); I != E; ++I) {
2733 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2734 (*I)[2] == VT3)
2735 return makeVTList(&(*I)[0], 3);
2736 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002737 std::vector<MVT::ValueType> V;
2738 V.push_back(VT1);
2739 V.push_back(VT2);
2740 V.push_back(VT3);
2741 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002742 return makeVTList(&(*VTList.begin())[0], 3);
2743}
2744
2745SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2746 switch (NumVTs) {
2747 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002748 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002749 case 2: return getVTList(VTs[0], VTs[1]);
2750 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2751 default: break;
2752 }
2753
2754 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2755 E = VTList.end(); I != E; ++I) {
2756 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2757
2758 bool NoMatch = false;
2759 for (unsigned i = 2; i != NumVTs; ++i)
2760 if (VTs[i] != (*I)[i]) {
2761 NoMatch = true;
2762 break;
2763 }
2764 if (!NoMatch)
2765 return makeVTList(&*I->begin(), NumVTs);
2766 }
2767
2768 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2769 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002770}
2771
2772
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002773/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2774/// specified operands. If the resultant node already exists in the DAG,
2775/// this does not modify the specified node, instead it returns the node that
2776/// already exists. If the resultant node does not exist in the DAG, the
2777/// input node is returned. As a degenerate case, if you specify the same
2778/// input operands as the node already has, the input node is returned.
2779SDOperand SelectionDAG::
2780UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2781 SDNode *N = InN.Val;
2782 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2783
2784 // Check to see if there is no change.
2785 if (Op == N->getOperand(0)) return InN;
2786
2787 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002788 void *InsertPos = 0;
2789 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2790 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002791
2792 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002793 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002794 RemoveNodeFromCSEMaps(N);
2795
2796 // Now we update the operands.
2797 N->OperandList[0].Val->removeUser(N);
2798 Op.Val->addUser(N);
2799 N->OperandList[0] = Op;
2800
2801 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002802 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002803 return InN;
2804}
2805
2806SDOperand SelectionDAG::
2807UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2808 SDNode *N = InN.Val;
2809 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2810
2811 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002812 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2813 return InN; // No operands changed, just return the input node.
2814
2815 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002816 void *InsertPos = 0;
2817 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2818 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002819
2820 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002821 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002822 RemoveNodeFromCSEMaps(N);
2823
2824 // Now we update the operands.
2825 if (N->OperandList[0] != Op1) {
2826 N->OperandList[0].Val->removeUser(N);
2827 Op1.Val->addUser(N);
2828 N->OperandList[0] = Op1;
2829 }
2830 if (N->OperandList[1] != Op2) {
2831 N->OperandList[1].Val->removeUser(N);
2832 Op2.Val->addUser(N);
2833 N->OperandList[1] = Op2;
2834 }
2835
2836 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002837 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002838 return InN;
2839}
2840
2841SDOperand SelectionDAG::
2842UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002843 SDOperand Ops[] = { Op1, Op2, Op3 };
2844 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002845}
2846
2847SDOperand SelectionDAG::
2848UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2849 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002850 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2851 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002852}
2853
2854SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002855UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2856 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002857 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2858 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002859}
2860
2861
2862SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002863UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002864 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002865 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002866 "Update with wrong number of operands");
2867
2868 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002869 bool AnyChange = false;
2870 for (unsigned i = 0; i != NumOps; ++i) {
2871 if (Ops[i] != N->getOperand(i)) {
2872 AnyChange = true;
2873 break;
2874 }
2875 }
2876
2877 // No operands changed, just return the input node.
2878 if (!AnyChange) return InN;
2879
2880 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002881 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002882 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002883 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002884
2885 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002886 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002887 RemoveNodeFromCSEMaps(N);
2888
2889 // Now we update the operands.
2890 for (unsigned i = 0; i != NumOps; ++i) {
2891 if (N->OperandList[i] != Ops[i]) {
2892 N->OperandList[i].Val->removeUser(N);
2893 Ops[i].Val->addUser(N);
2894 N->OperandList[i] = Ops[i];
2895 }
2896 }
2897
2898 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002899 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002900 return InN;
2901}
2902
2903
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002904/// MorphNodeTo - This frees the operands of the current node, resets the
2905/// opcode, types, and operands to the specified value. This should only be
2906/// used by the SelectionDAG class.
2907void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2908 const SDOperand *Ops, unsigned NumOps) {
2909 NodeType = Opc;
2910 ValueList = L.VTs;
2911 NumValues = L.NumVTs;
2912
2913 // Clear the operands list, updating used nodes to remove this from their
2914 // use list.
2915 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2916 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002917
2918 // If NumOps is larger than the # of operands we currently have, reallocate
2919 // the operand list.
2920 if (NumOps > NumOperands) {
2921 if (OperandsNeedDelete)
2922 delete [] OperandList;
2923 OperandList = new SDOperand[NumOps];
2924 OperandsNeedDelete = true;
2925 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002926
2927 // Assign the new operands.
2928 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002929
2930 for (unsigned i = 0, e = NumOps; i != e; ++i) {
2931 OperandList[i] = Ops[i];
2932 SDNode *N = OperandList[i].Val;
2933 N->Uses.push_back(this);
2934 }
2935}
Chris Lattner149c58c2005-08-16 18:17:10 +00002936
2937/// SelectNodeTo - These are used for target selectors to *mutate* the
2938/// specified node to have the specified return type, Target opcode, and
2939/// operands. Note that target opcodes are stored as
2940/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002941///
2942/// Note that SelectNodeTo returns the resultant node. If there is already a
2943/// node of the specified opcode and operands, it returns that node instead of
2944/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00002945SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2946 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00002947 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00002948 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002949 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002950 void *IP = 0;
2951 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002952 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00002953
Chris Lattner7651fa42005-08-24 23:00:29 +00002954 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002955
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002956 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002957
Chris Lattner4a283e92006-08-11 18:38:11 +00002958 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002959 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00002960}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002961
Evan Cheng95514ba2006-08-26 08:00:10 +00002962SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2963 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002964 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002965 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002966 SDOperand Ops[] = { Op1 };
2967
Jim Laskey583bd472006-10-27 23:46:08 +00002968 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002969 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002970 void *IP = 0;
2971 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002972 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002973
Chris Lattner149c58c2005-08-16 18:17:10 +00002974 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00002975 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002976 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00002977 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002978}
Chris Lattner0fb094f2005-11-19 01:44:53 +00002979
Evan Cheng95514ba2006-08-26 08:00:10 +00002980SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2981 MVT::ValueType VT, SDOperand Op1,
2982 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002983 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00002984 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00002985 SDOperand Ops[] = { Op1, Op2 };
2986
Jim Laskey583bd472006-10-27 23:46:08 +00002987 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002988 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002989 void *IP = 0;
2990 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00002991 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00002992
Chris Lattner149c58c2005-08-16 18:17:10 +00002993 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00002994
Chris Lattner63e3f142007-02-04 07:28:00 +00002995 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00002996
Chris Lattnera5682852006-08-07 23:03:03 +00002997 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00002998 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00002999}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003000
Evan Cheng95514ba2006-08-26 08:00:10 +00003001SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3002 MVT::ValueType VT, SDOperand Op1,
3003 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003004 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003005 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003006 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003007 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003008 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003009 void *IP = 0;
3010 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003011 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003012
Chris Lattner149c58c2005-08-16 18:17:10 +00003013 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003014
Chris Lattner63e3f142007-02-04 07:28:00 +00003015 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003016
Chris Lattnera5682852006-08-07 23:03:03 +00003017 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003018 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003019}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003020
Evan Cheng95514ba2006-08-26 08:00:10 +00003021SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00003022 MVT::ValueType VT, const SDOperand *Ops,
3023 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003024 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003025 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003026 FoldingSetNodeID ID;
3027 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003028 void *IP = 0;
3029 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003030 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003031
Chris Lattner6b09a292005-08-21 18:49:33 +00003032 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003033 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003034
Chris Lattnera5682852006-08-07 23:03:03 +00003035 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003036 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003037}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003038
Evan Cheng95514ba2006-08-26 08:00:10 +00003039SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3040 MVT::ValueType VT1, MVT::ValueType VT2,
3041 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003042 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003043 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003044 SDOperand Ops[] = { Op1, Op2 };
3045 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003046 void *IP = 0;
3047 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003048 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003049
Chris Lattner0fb094f2005-11-19 01:44:53 +00003050 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003051 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003052 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003053 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003054}
3055
Evan Cheng95514ba2006-08-26 08:00:10 +00003056SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3057 MVT::ValueType VT1, MVT::ValueType VT2,
3058 SDOperand Op1, SDOperand Op2,
3059 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003060 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003061 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003062 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003063 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003064 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003065 void *IP = 0;
3066 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003067 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003068
Chris Lattner0fb094f2005-11-19 01:44:53 +00003069 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003070
Chris Lattner63e3f142007-02-04 07:28:00 +00003071 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003072 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003073 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003074}
3075
Chris Lattner0fb094f2005-11-19 01:44:53 +00003076
Evan Cheng6ae46c42006-02-09 07:15:23 +00003077/// getTargetNode - These are used for target selectors to create a new node
3078/// with specified return type(s), target opcode, and operands.
3079///
3080/// Note that getTargetNode returns the resultant node. If there is already a
3081/// node of the specified opcode and operands, it returns that node instead of
3082/// the current one.
3083SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3084 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3085}
3086SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3087 SDOperand Op1) {
3088 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3089}
3090SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3091 SDOperand Op1, SDOperand Op2) {
3092 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3093}
3094SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003095 SDOperand Op1, SDOperand Op2,
3096 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003097 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3098}
3099SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003100 const SDOperand *Ops, unsigned NumOps) {
3101 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003102}
3103SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003104 MVT::ValueType VT2) {
3105 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3106 SDOperand Op;
3107 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3108}
3109SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003110 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00003111 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003112 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003113}
3114SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003115 MVT::ValueType VT2, SDOperand Op1,
3116 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003117 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003118 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003119 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003120}
3121SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003122 MVT::ValueType VT2, SDOperand Op1,
3123 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00003124 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003125 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003126 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003127}
Evan Cheng694481e2006-08-27 08:08:54 +00003128SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3129 MVT::ValueType VT2,
3130 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00003131 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003132 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003133}
3134SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3135 MVT::ValueType VT2, MVT::ValueType VT3,
3136 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003137 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003138 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003139 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003140}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003141SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3142 MVT::ValueType VT2, MVT::ValueType VT3,
3143 SDOperand Op1, SDOperand Op2,
3144 SDOperand Op3) {
3145 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3146 SDOperand Ops[] = { Op1, Op2, Op3 };
3147 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3148}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003149SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00003150 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003151 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00003152 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3153 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003154}
Evan Cheng05e69c12007-09-12 23:39:49 +00003155SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3156 MVT::ValueType VT2, MVT::ValueType VT3,
3157 MVT::ValueType VT4,
3158 const SDOperand *Ops, unsigned NumOps) {
3159 std::vector<MVT::ValueType> VTList;
3160 VTList.push_back(VT1);
3161 VTList.push_back(VT2);
3162 VTList.push_back(VT3);
3163 VTList.push_back(VT4);
3164 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3165 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3166}
Evan Cheng39305cf2007-10-05 01:10:49 +00003167SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3168 std::vector<MVT::ValueType> &ResultTys,
3169 const SDOperand *Ops, unsigned NumOps) {
3170 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3171 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3172 Ops, NumOps).Val;
3173}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003174
Evan Cheng99157a02006-08-07 22:13:29 +00003175/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003176/// This can cause recursive merging of nodes in the DAG.
3177///
Chris Lattner8b52f212005-08-26 18:36:28 +00003178/// This version assumes From/To have a single result value.
3179///
Chris Lattner1e111c72005-09-07 05:37:01 +00003180void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
3181 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003182 SDNode *From = FromN.Val, *To = ToN.Val;
3183 assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
3184 "Cannot replace with this method!");
Chris Lattner8b8749f2005-08-17 19:00:20 +00003185 assert(From != To && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00003186
Chris Lattner8b8749f2005-08-17 19:00:20 +00003187 while (!From->use_empty()) {
3188 // Process users until they are all gone.
3189 SDNode *U = *From->use_begin();
3190
3191 // This node is about to morph, remove its old self from the CSE maps.
3192 RemoveNodeFromCSEMaps(U);
3193
Chris Lattner65113b22005-11-08 22:07:03 +00003194 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3195 I != E; ++I)
3196 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003197 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003198 I->Val = To;
Chris Lattner8b52f212005-08-26 18:36:28 +00003199 To->addUser(U);
3200 }
3201
3202 // Now that we have modified U, add it back to the CSE maps. If it already
3203 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003204 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3205 ReplaceAllUsesWith(U, Existing, Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00003206 // U is now dead.
Chris Lattner1e111c72005-09-07 05:37:01 +00003207 if (Deleted) Deleted->push_back(U);
3208 DeleteNodeNotInCSEMaps(U);
3209 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003210 }
3211}
3212
3213/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3214/// This can cause recursive merging of nodes in the DAG.
3215///
3216/// This version assumes From/To have matching types and numbers of result
3217/// values.
3218///
Chris Lattner1e111c72005-09-07 05:37:01 +00003219void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
3220 std::vector<SDNode*> *Deleted) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003221 assert(From != To && "Cannot replace uses of with self");
3222 assert(From->getNumValues() == To->getNumValues() &&
3223 "Cannot use this version of ReplaceAllUsesWith!");
3224 if (From->getNumValues() == 1) { // If possible, use the faster version.
Chris Lattner1e111c72005-09-07 05:37:01 +00003225 ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
Chris Lattner8b52f212005-08-26 18:36:28 +00003226 return;
3227 }
3228
3229 while (!From->use_empty()) {
3230 // Process users until they are all gone.
3231 SDNode *U = *From->use_begin();
3232
3233 // This node is about to morph, remove its old self from the CSE maps.
3234 RemoveNodeFromCSEMaps(U);
3235
Chris Lattner65113b22005-11-08 22:07:03 +00003236 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3237 I != E; ++I)
3238 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003239 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003240 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003241 To->addUser(U);
3242 }
3243
3244 // Now that we have modified U, add it back to the CSE maps. If it already
3245 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003246 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3247 ReplaceAllUsesWith(U, Existing, Deleted);
3248 // U is now dead.
3249 if (Deleted) Deleted->push_back(U);
3250 DeleteNodeNotInCSEMaps(U);
3251 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003252 }
3253}
3254
Chris Lattner8b52f212005-08-26 18:36:28 +00003255/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3256/// This can cause recursive merging of nodes in the DAG.
3257///
3258/// This version can replace From with any result values. To must match the
3259/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003260void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003261 const SDOperand *To,
Chris Lattner1e111c72005-09-07 05:37:01 +00003262 std::vector<SDNode*> *Deleted) {
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003263 if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
Chris Lattner7b2880c2005-08-24 22:44:39 +00003264 // Degenerate case handled above.
Chris Lattner1e111c72005-09-07 05:37:01 +00003265 ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003266 return;
3267 }
3268
3269 while (!From->use_empty()) {
3270 // Process users until they are all gone.
3271 SDNode *U = *From->use_begin();
3272
3273 // This node is about to morph, remove its old self from the CSE maps.
3274 RemoveNodeFromCSEMaps(U);
3275
Chris Lattner65113b22005-11-08 22:07:03 +00003276 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3277 I != E; ++I)
3278 if (I->Val == From) {
3279 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003280 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003281 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003282 ToOp.Val->addUser(U);
3283 }
3284
3285 // Now that we have modified U, add it back to the CSE maps. If it already
3286 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003287 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3288 ReplaceAllUsesWith(U, Existing, Deleted);
3289 // U is now dead.
3290 if (Deleted) Deleted->push_back(U);
3291 DeleteNodeNotInCSEMaps(U);
3292 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003293 }
3294}
3295
Chris Lattner012f2412006-02-17 21:58:01 +00003296/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3297/// uses of other values produced by From.Val alone. The Deleted vector is
3298/// handled the same was as for ReplaceAllUsesWith.
3299void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattner01d029b2007-10-15 06:10:22 +00003300 std::vector<SDNode*> *Deleted) {
Chris Lattner012f2412006-02-17 21:58:01 +00003301 assert(From != To && "Cannot replace a value with itself");
3302 // Handle the simple, trivial, case efficiently.
3303 if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003304 ReplaceAllUsesWith(From, To, Deleted);
Chris Lattner012f2412006-02-17 21:58:01 +00003305 return;
3306 }
3307
Chris Lattnercf5640b2007-02-04 00:14:31 +00003308 // Get all of the users of From.Val. We want these in a nice,
3309 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3310 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003311
Chris Lattner01d029b2007-10-15 06:10:22 +00003312 std::vector<SDNode*> LocalDeletionVector;
3313
3314 // Pick a deletion vector to use. If the user specified one, use theirs,
3315 // otherwise use a local one.
3316 std::vector<SDNode*> *DeleteVector = Deleted ? Deleted : &LocalDeletionVector;
Chris Lattner012f2412006-02-17 21:58:01 +00003317 while (!Users.empty()) {
3318 // We know that this user uses some value of From. If it is the right
3319 // value, update it.
3320 SDNode *User = Users.back();
3321 Users.pop_back();
3322
Chris Lattner01d029b2007-10-15 06:10:22 +00003323 // Scan for an operand that matches From.
3324 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3325 for (; Op != E; ++Op)
3326 if (*Op == From) break;
3327
3328 // If there are no matches, the user must use some other result of From.
3329 if (Op == E) continue;
3330
3331 // Okay, we know this user needs to be updated. Remove its old self
3332 // from the CSE maps.
3333 RemoveNodeFromCSEMaps(User);
3334
3335 // Update all operands that match "From".
3336 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00003337 if (*Op == From) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003338 From.Val->removeUser(User);
3339 *Op = To;
3340 To.Val->addUser(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003341 }
3342 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003343
3344 // Now that we have modified User, add it back to the CSE maps. If it
3345 // already exists there, recursively merge the results together.
3346 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
3347 if (!Existing) continue; // Continue on to next user.
3348
3349 // If there was already an existing matching node, use ReplaceAllUsesWith
3350 // to replace the dead one with the existing one. However, this can cause
3351 // recursive merging of other unrelated nodes down the line. The merging
3352 // can cause deletion of nodes that used the old value. In this case,
3353 // we have to be certain to remove them from the Users set.
3354 unsigned NumDeleted = DeleteVector->size();
3355 ReplaceAllUsesWith(User, Existing, DeleteVector);
3356
3357 // User is now dead.
3358 DeleteVector->push_back(User);
3359 DeleteNodeNotInCSEMaps(User);
3360
3361 // We have to be careful here, because ReplaceAllUsesWith could have
3362 // deleted a user of From, which means there may be dangling pointers
3363 // in the "Users" setvector. Scan over the deleted node pointers and
3364 // remove them from the setvector.
3365 for (unsigned i = NumDeleted, e = DeleteVector->size(); i != e; ++i)
3366 Users.remove((*DeleteVector)[i]);
3367
3368 // If the user doesn't need the set of deleted elements, don't retain them
3369 // to the next loop iteration.
3370 if (Deleted == 0)
3371 LocalDeletionVector.clear();
Chris Lattner012f2412006-02-17 21:58:01 +00003372 }
3373}
3374
Chris Lattner7b2880c2005-08-24 22:44:39 +00003375
Evan Chenge6f35d82006-08-01 08:20:41 +00003376/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3377/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003378unsigned SelectionDAG::AssignNodeIds() {
3379 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003380 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3381 SDNode *N = I;
3382 N->setNodeId(Id++);
3383 }
3384 return Id;
3385}
3386
Evan Chenge6f35d82006-08-01 08:20:41 +00003387/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003388/// based on their topological order. It returns the maximum id and a vector
3389/// of the SDNodes* in assigned order by reference.
3390unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003391 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003392 std::vector<unsigned> InDegree(DAGSize);
3393 std::vector<SDNode*> Sources;
3394
3395 // Use a two pass approach to avoid using a std::map which is slow.
3396 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003397 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3398 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003399 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003400 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003401 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003402 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003403 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003404 }
3405
Evan Cheng99157a02006-08-07 22:13:29 +00003406 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003407 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003408 SDNode *N = Sources.back();
3409 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003410 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003411 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3412 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003413 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003414 if (Degree == 0)
3415 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003416 }
3417 }
3418
Evan Chengc384d6c2006-08-02 22:00:34 +00003419 // Second pass, assign the actual topological order as node ids.
3420 Id = 0;
3421 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3422 TI != TE; ++TI)
3423 (*TI)->setNodeId(Id++);
3424
3425 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003426}
3427
3428
Evan Cheng091cba12006-07-27 06:39:06 +00003429
Jim Laskey58b968b2005-08-17 20:08:02 +00003430//===----------------------------------------------------------------------===//
3431// SDNode Class
3432//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003433
Chris Lattner917d2c92006-07-19 00:00:37 +00003434// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003435void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003436void UnarySDNode::ANCHOR() {}
3437void BinarySDNode::ANCHOR() {}
3438void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003439void HandleSDNode::ANCHOR() {}
3440void StringSDNode::ANCHOR() {}
3441void ConstantSDNode::ANCHOR() {}
3442void ConstantFPSDNode::ANCHOR() {}
3443void GlobalAddressSDNode::ANCHOR() {}
3444void FrameIndexSDNode::ANCHOR() {}
3445void JumpTableSDNode::ANCHOR() {}
3446void ConstantPoolSDNode::ANCHOR() {}
3447void BasicBlockSDNode::ANCHOR() {}
3448void SrcValueSDNode::ANCHOR() {}
3449void RegisterSDNode::ANCHOR() {}
3450void ExternalSymbolSDNode::ANCHOR() {}
3451void CondCodeSDNode::ANCHOR() {}
3452void VTSDNode::ANCHOR() {}
3453void LoadSDNode::ANCHOR() {}
3454void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003455
Chris Lattner48b85922007-02-04 02:41:42 +00003456HandleSDNode::~HandleSDNode() {
3457 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003458 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003459}
3460
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003461GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3462 MVT::ValueType VT, int o)
3463 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00003464 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003465 // Thread Local
3466 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3467 // Non Thread Local
3468 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3469 getSDVTList(VT)), Offset(o) {
3470 TheGlobal = const_cast<GlobalValue*>(GA);
3471}
Chris Lattner48b85922007-02-04 02:41:42 +00003472
Jim Laskey583bd472006-10-27 23:46:08 +00003473/// Profile - Gather unique data for the node.
3474///
3475void SDNode::Profile(FoldingSetNodeID &ID) {
3476 AddNodeIDNode(ID, this);
3477}
3478
Chris Lattnera3255112005-11-08 23:30:28 +00003479/// getValueTypeList - Return a pointer to the specified value type.
3480///
3481MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003482 if (MVT::isExtendedVT(VT)) {
3483 static std::set<MVT::ValueType> EVTs;
3484 return (MVT::ValueType *)&(*EVTs.insert(VT).first);
3485 } else {
3486 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3487 VTs[VT] = VT;
3488 return &VTs[VT];
3489 }
Chris Lattnera3255112005-11-08 23:30:28 +00003490}
Duncan Sandsaf47b112007-10-16 09:56:48 +00003491
Chris Lattner5c884562005-01-12 18:37:47 +00003492/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3493/// indicated value. This method ignores uses of other values defined by this
3494/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003495bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003496 assert(Value < getNumValues() && "Bad value!");
3497
3498 // If there is only one value, this is easy.
3499 if (getNumValues() == 1)
3500 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00003501 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00003502
Evan Cheng4ee62112006-02-05 06:29:23 +00003503 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003504
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003505 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003506
Chris Lattnerf83482d2006-08-16 20:59:32 +00003507 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003508 SDNode *User = *UI;
3509 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003510 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003511 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3512 if (User->getOperand(i) == TheValue) {
3513 if (NUses == 0)
3514 return false; // too many uses
3515 --NUses;
3516 }
3517 }
3518
3519 // Found exactly the right number of uses?
3520 return NUses == 0;
3521}
3522
3523
Evan Cheng33d55952007-08-02 05:29:38 +00003524/// hasAnyUseOfValue - Return true if there are any use of the indicated
3525/// value. This method ignores uses of other values defined by this operation.
3526bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3527 assert(Value < getNumValues() && "Bad value!");
3528
3529 if (use_size() == 0) return false;
3530
3531 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3532
3533 SmallPtrSet<SDNode*, 32> UsersHandled;
3534
3535 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3536 SDNode *User = *UI;
3537 if (User->getNumOperands() == 1 ||
3538 UsersHandled.insert(User)) // First time we've seen this?
3539 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3540 if (User->getOperand(i) == TheValue) {
3541 return true;
3542 }
3543 }
3544
3545 return false;
3546}
3547
3548
Evan Chenge6e97e62006-11-03 07:31:32 +00003549/// isOnlyUse - Return true if this node is the only use of N.
3550///
Evan Cheng4ee62112006-02-05 06:29:23 +00003551bool SDNode::isOnlyUse(SDNode *N) const {
3552 bool Seen = false;
3553 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3554 SDNode *User = *I;
3555 if (User == this)
3556 Seen = true;
3557 else
3558 return false;
3559 }
3560
3561 return Seen;
3562}
3563
Evan Chenge6e97e62006-11-03 07:31:32 +00003564/// isOperand - Return true if this node is an operand of N.
3565///
Evan Chengbfa284f2006-03-03 06:42:32 +00003566bool SDOperand::isOperand(SDNode *N) const {
3567 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3568 if (*this == N->getOperand(i))
3569 return true;
3570 return false;
3571}
3572
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003573bool SDNode::isOperand(SDNode *N) const {
3574 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3575 if (this == N->OperandList[i].Val)
3576 return true;
3577 return false;
3578}
Evan Cheng4ee62112006-02-05 06:29:23 +00003579
Chris Lattner572dee72008-01-16 05:49:24 +00003580/// reachesChainWithoutSideEffects - Return true if this operand (which must
3581/// be a chain) reaches the specified operand without crossing any
3582/// side-effecting instructions. In practice, this looks through token
3583/// factors and non-volatile loads. In order to remain efficient, this only
3584/// looks a couple of nodes in, it does not do an exhaustive search.
3585bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3586 unsigned Depth) const {
3587 if (*this == Dest) return true;
3588
3589 // Don't search too deeply, we just want to be able to see through
3590 // TokenFactor's etc.
3591 if (Depth == 0) return false;
3592
3593 // If this is a token factor, all inputs to the TF happen in parallel. If any
3594 // of the operands of the TF reach dest, then we can do the xform.
3595 if (getOpcode() == ISD::TokenFactor) {
3596 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3597 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3598 return true;
3599 return false;
3600 }
3601
3602 // Loads don't have side effects, look through them.
3603 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3604 if (!Ld->isVolatile())
3605 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3606 }
3607 return false;
3608}
3609
3610
Evan Chengc5fc57d2006-11-03 03:05:24 +00003611static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003612 SmallPtrSet<SDNode *, 32> &Visited) {
3613 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003614 return;
3615
3616 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3617 SDNode *Op = N->getOperand(i).Val;
3618 if (Op == P) {
3619 found = true;
3620 return;
3621 }
3622 findPredecessor(Op, P, found, Visited);
3623 }
3624}
3625
Evan Chenge6e97e62006-11-03 07:31:32 +00003626/// isPredecessor - Return true if this node is a predecessor of N. This node
3627/// is either an operand of N or it can be reached by recursively traversing
3628/// up the operands.
3629/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003630bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003631 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003632 bool found = false;
3633 findPredecessor(N, this, found, Visited);
3634 return found;
3635}
3636
Evan Chengc5484282006-10-04 00:56:09 +00003637uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3638 assert(Num < NumOperands && "Invalid child # of SDNode!");
3639 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3640}
3641
Reid Spencer577cc322007-04-01 07:32:19 +00003642std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003643 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003644 default:
3645 if (getOpcode() < ISD::BUILTIN_OP_END)
3646 return "<<Unknown DAG Node>>";
3647 else {
Evan Cheng72261582005-12-20 06:22:03 +00003648 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003649 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003650 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00003651 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00003652
Evan Cheng72261582005-12-20 06:22:03 +00003653 TargetLowering &TLI = G->getTargetLoweringInfo();
3654 const char *Name =
3655 TLI.getTargetNodeName(getOpcode());
3656 if (Name) return Name;
3657 }
3658
3659 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003660 }
3661
Andrew Lenharth95762122005-03-31 21:24:06 +00003662 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003663 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003664 case ISD::SRCVALUE: return "SrcValue";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003665 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003666 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003667 case ISD::AssertSext: return "AssertSext";
3668 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003669
3670 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003671 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003672 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003673 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003674
3675 case ISD::Constant: return "Constant";
3676 case ISD::ConstantFP: return "ConstantFP";
3677 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003678 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003679 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003680 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003681 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003682 case ISD::RETURNADDR: return "RETURNADDR";
3683 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003684 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003685 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3686 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003687 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003688 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003689 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003690 case ISD::INTRINSIC_WO_CHAIN: {
3691 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3692 return Intrinsic::getName((Intrinsic::ID)IID);
3693 }
3694 case ISD::INTRINSIC_VOID:
3695 case ISD::INTRINSIC_W_CHAIN: {
3696 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003697 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003698 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003699
Chris Lattnerb2827b02006-03-19 00:52:58 +00003700 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003701 case ISD::TargetConstant: return "TargetConstant";
3702 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003703 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003704 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003705 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003706 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003707 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003708 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003709
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003710 case ISD::CopyToReg: return "CopyToReg";
3711 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003712 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003713 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003714 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003715 case ISD::LABEL: return "label";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003716 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003717 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003718 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003719
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003720 // Unary operators
3721 case ISD::FABS: return "fabs";
3722 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003723 case ISD::FSQRT: return "fsqrt";
3724 case ISD::FSIN: return "fsin";
3725 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003726 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00003727 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003728
3729 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003730 case ISD::ADD: return "add";
3731 case ISD::SUB: return "sub";
3732 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003733 case ISD::MULHU: return "mulhu";
3734 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003735 case ISD::SDIV: return "sdiv";
3736 case ISD::UDIV: return "udiv";
3737 case ISD::SREM: return "srem";
3738 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00003739 case ISD::SMUL_LOHI: return "smul_lohi";
3740 case ISD::UMUL_LOHI: return "umul_lohi";
3741 case ISD::SDIVREM: return "sdivrem";
3742 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003743 case ISD::AND: return "and";
3744 case ISD::OR: return "or";
3745 case ISD::XOR: return "xor";
3746 case ISD::SHL: return "shl";
3747 case ISD::SRA: return "sra";
3748 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003749 case ISD::ROTL: return "rotl";
3750 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003751 case ISD::FADD: return "fadd";
3752 case ISD::FSUB: return "fsub";
3753 case ISD::FMUL: return "fmul";
3754 case ISD::FDIV: return "fdiv";
3755 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003756 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00003757 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003758
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003759 case ISD::SETCC: return "setcc";
3760 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003761 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003762 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003763 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003764 case ISD::CONCAT_VECTORS: return "concat_vectors";
3765 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003766 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003767 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003768 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003769 case ISD::ADDC: return "addc";
3770 case ISD::ADDE: return "adde";
3771 case ISD::SUBC: return "subc";
3772 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003773 case ISD::SHL_PARTS: return "shl_parts";
3774 case ISD::SRA_PARTS: return "sra_parts";
3775 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00003776
3777 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3778 case ISD::INSERT_SUBREG: return "insert_subreg";
3779
Chris Lattner7f644642005-04-28 21:44:03 +00003780 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003781 case ISD::SIGN_EXTEND: return "sign_extend";
3782 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003783 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003784 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003785 case ISD::TRUNCATE: return "truncate";
3786 case ISD::FP_ROUND: return "fp_round";
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003787 case ISD::FLT_ROUNDS: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00003788 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003789 case ISD::FP_EXTEND: return "fp_extend";
3790
3791 case ISD::SINT_TO_FP: return "sint_to_fp";
3792 case ISD::UINT_TO_FP: return "uint_to_fp";
3793 case ISD::FP_TO_SINT: return "fp_to_sint";
3794 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003795 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003796
3797 // Control flow instructions
3798 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003799 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003800 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003801 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003802 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003803 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003804 case ISD::CALLSEQ_START: return "callseq_start";
3805 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003806
3807 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003808 case ISD::LOAD: return "load";
3809 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00003810 case ISD::VAARG: return "vaarg";
3811 case ISD::VACOPY: return "vacopy";
3812 case ISD::VAEND: return "vaend";
3813 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003814 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003815 case ISD::EXTRACT_ELEMENT: return "extract_element";
3816 case ISD::BUILD_PAIR: return "build_pair";
3817 case ISD::STACKSAVE: return "stacksave";
3818 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003819 case ISD::TRAP: return "trap";
3820
Chris Lattner5a67afc2006-01-13 02:39:42 +00003821 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003822 case ISD::MEMSET: return "memset";
3823 case ISD::MEMCPY: return "memcpy";
3824 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003825
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003826 // Bit manipulation
3827 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003828 case ISD::CTPOP: return "ctpop";
3829 case ISD::CTTZ: return "cttz";
3830 case ISD::CTLZ: return "ctlz";
3831
Chris Lattner36ce6912005-11-29 06:21:05 +00003832 // Debug info
3833 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003834 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003835
Duncan Sands36397f52007-07-27 12:58:54 +00003836 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00003837 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00003838
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003839 case ISD::CONDCODE:
3840 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003841 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003842 case ISD::SETOEQ: return "setoeq";
3843 case ISD::SETOGT: return "setogt";
3844 case ISD::SETOGE: return "setoge";
3845 case ISD::SETOLT: return "setolt";
3846 case ISD::SETOLE: return "setole";
3847 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003848
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003849 case ISD::SETO: return "seto";
3850 case ISD::SETUO: return "setuo";
3851 case ISD::SETUEQ: return "setue";
3852 case ISD::SETUGT: return "setugt";
3853 case ISD::SETUGE: return "setuge";
3854 case ISD::SETULT: return "setult";
3855 case ISD::SETULE: return "setule";
3856 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003857
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003858 case ISD::SETEQ: return "seteq";
3859 case ISD::SETGT: return "setgt";
3860 case ISD::SETGE: return "setge";
3861 case ISD::SETLT: return "setlt";
3862 case ISD::SETLE: return "setle";
3863 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003864 }
3865 }
3866}
Chris Lattnerc3aae252005-01-07 07:46:32 +00003867
Evan Cheng144d8f02006-11-09 17:55:04 +00003868const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003869 switch (AM) {
3870 default:
3871 return "";
3872 case ISD::PRE_INC:
3873 return "<pre-inc>";
3874 case ISD::PRE_DEC:
3875 return "<pre-dec>";
3876 case ISD::POST_INC:
3877 return "<post-inc>";
3878 case ISD::POST_DEC:
3879 return "<post-dec>";
3880 }
3881}
3882
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003883void SDNode::dump() const { dump(0); }
3884void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00003885 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003886
3887 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003888 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00003889 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00003890 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00003891 else
Bill Wendling832171c2006-12-07 20:04:42 +00003892 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00003893 }
Bill Wendling832171c2006-12-07 20:04:42 +00003894 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003895
Bill Wendling832171c2006-12-07 20:04:42 +00003896 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003897 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00003898 if (i) cerr << ", ";
3899 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003900 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00003901 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003902 }
3903
Evan Chengce254432007-12-11 02:08:35 +00003904 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
3905 SDNode *Mask = getOperand(2).Val;
3906 cerr << "<";
3907 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
3908 if (i) cerr << ",";
3909 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
3910 cerr << "u";
3911 else
3912 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
3913 }
3914 cerr << ">";
3915 }
3916
Chris Lattnerc3aae252005-01-07 07:46:32 +00003917 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003918 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003919 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00003920 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
3921 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
3922 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
3923 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
3924 else {
3925 cerr << "<APFloat(";
3926 CSDN->getValueAPF().convertToAPInt().dump();
3927 cerr << ")>";
3928 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00003929 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00003930 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00003931 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00003932 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00003933 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00003934 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003935 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00003936 else
Bill Wendling832171c2006-12-07 20:04:42 +00003937 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003938 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003939 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00003940 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003941 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003942 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00003943 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00003944 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00003945 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00003946 else
Bill Wendling832171c2006-12-07 20:04:42 +00003947 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00003948 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00003949 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00003950 else
Bill Wendling832171c2006-12-07 20:04:42 +00003951 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00003952 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003953 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00003954 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3955 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00003956 cerr << LBB->getName() << " ";
3957 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00003958 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Evan Cheng140e99b2006-01-11 22:13:48 +00003959 if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00003960 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00003961 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00003962 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00003963 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003964 } else if (const ExternalSymbolSDNode *ES =
3965 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00003966 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003967 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3968 if (M->getValue())
Bill Wendling832171c2006-12-07 20:04:42 +00003969 cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003970 else
Bill Wendling832171c2006-12-07 20:04:42 +00003971 cerr << "<null:" << M->getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00003972 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00003973 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003974 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00003975 const Value *SrcValue = LD->getSrcValue();
3976 int SrcOffset = LD->getSrcValueOffset();
3977 cerr << " <";
3978 if (SrcValue)
3979 cerr << SrcValue;
3980 else
3981 cerr << "null";
3982 cerr << ":" << SrcOffset << ">";
3983
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003984 bool doExt = true;
3985 switch (LD->getExtensionType()) {
3986 default: doExt = false; break;
3987 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003988 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003989 break;
3990 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003991 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003992 break;
3993 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00003994 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003995 break;
3996 }
3997 if (doExt)
Bill Wendling832171c2006-12-07 20:04:42 +00003998 cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00003999
Evan Cheng144d8f02006-11-09 17:55:04 +00004000 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004001 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004002 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004003 if (LD->isVolatile())
4004 cerr << " <volatile>";
4005 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004006 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004007 const Value *SrcValue = ST->getSrcValue();
4008 int SrcOffset = ST->getSrcValueOffset();
4009 cerr << " <";
4010 if (SrcValue)
4011 cerr << SrcValue;
4012 else
4013 cerr << "null";
4014 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004015
4016 if (ST->isTruncatingStore())
4017 cerr << " <trunc "
4018 << MVT::getValueTypeString(ST->getStoredVT()) << ">";
4019
4020 const char *AM = getIndexedModeName(ST->getAddressingMode());
4021 if (*AM)
4022 cerr << " " << AM;
4023 if (ST->isVolatile())
4024 cerr << " <volatile>";
4025 cerr << " alignment=" << ST->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004026 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004027}
4028
Chris Lattnerde202b32005-11-09 23:47:37 +00004029static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004030 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4031 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004032 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004033 else
Bill Wendling832171c2006-12-07 20:04:42 +00004034 cerr << "\n" << std::string(indent+2, ' ')
4035 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004036
Chris Lattnerea946cd2005-01-09 20:38:33 +00004037
Bill Wendling832171c2006-12-07 20:04:42 +00004038 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004039 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004040}
4041
Chris Lattnerc3aae252005-01-07 07:46:32 +00004042void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004043 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004044 std::vector<const SDNode*> Nodes;
4045 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4046 I != E; ++I)
4047 Nodes.push_back(I);
4048
Chris Lattner49d24712005-01-09 20:26:36 +00004049 std::sort(Nodes.begin(), Nodes.end());
4050
4051 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004052 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004053 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004054 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004055
Jim Laskey26f7fa72006-10-17 19:33:52 +00004056 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004057
Bill Wendling832171c2006-12-07 20:04:42 +00004058 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004059}
4060
Evan Chengd6594ae2006-09-12 21:00:35 +00004061const Type *ConstantPoolSDNode::getType() const {
4062 if (isMachineConstantPoolEntry())
4063 return Val.MachineCPVal->getType();
4064 return Val.ConstVal->getType();
4065}