blob: 0c623b957d1d7a7a2ca62532e8594829c16f33b6 [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"
Evan Chenga844bde2008-02-02 04:07:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000024#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000025#include "llvm/Support/MathExtras.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000026#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000027#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000028#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000031#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000032#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000033#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000034#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000035#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000036#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000037#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000038using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000039
Chris Lattner0b3e5252006-08-15 19:11:05 +000040/// makeVTList - Return an instance of the SDVTList struct initialized with the
41/// specified members.
42static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
43 SDVTList Res = {VTs, NumVTs};
44 return Res;
45}
46
Chris Lattnerf8dc0612008-02-03 06:49:24 +000047SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
48
Jim Laskey58b968b2005-08-17 20:08:02 +000049//===----------------------------------------------------------------------===//
50// ConstantFPSDNode Class
51//===----------------------------------------------------------------------===//
52
53/// isExactlyValue - We don't rely on operator== working on double values, as
54/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
55/// As such, this method can be used to do an exact bit-for-bit comparison of
56/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000057bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000058 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000059}
60
Dale Johannesenf04afdb2007-08-30 00:23:21 +000061bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
62 const APFloat& Val) {
63 // convert modifies in place, so make a copy.
64 APFloat Val2 = APFloat(Val);
65 switch (VT) {
66 default:
67 return false; // These can't be represented as floating point!
68
69 // FIXME rounding mode needs to be more flexible
70 case MVT::f32:
71 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
72 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven) ==
73 APFloat::opOK;
74 case MVT::f64:
75 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
76 &Val2.getSemantics() == &APFloat::IEEEdouble ||
77 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven) ==
78 APFloat::opOK;
79 // TODO: Figure out how to test if we can use a shorter type instead!
80 case MVT::f80:
81 case MVT::f128:
82 case MVT::ppcf128:
83 return true;
84 }
85}
86
Jim Laskey58b968b2005-08-17 20:08:02 +000087//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000088// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000089//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000090
Evan Chenga8df1662006-03-27 06:58:47 +000091/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000092/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000093bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000094 // Look through a bit convert.
95 if (N->getOpcode() == ISD::BIT_CONVERT)
96 N = N->getOperand(0).Val;
97
Evan Chenga8df1662006-03-27 06:58:47 +000098 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000099
100 unsigned i = 0, e = N->getNumOperands();
101
102 // Skip over all of the undef values.
103 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
104 ++i;
105
106 // Do not accept an all-undef vector.
107 if (i == e) return false;
108
109 // Do not accept build_vectors that aren't all constants or which have non-~0
110 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000111 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000112 if (isa<ConstantSDNode>(NotZero)) {
113 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
114 return false;
115 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +0000116 MVT::ValueType VT = NotZero.getValueType();
117 if (VT== MVT::f64) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000118 if (((cast<ConstantFPSDNode>(NotZero)->getValueAPF().
119 convertToAPInt().getZExtValue())) != (uint64_t)-1)
Evan Cheng23cc8702006-03-27 08:10:26 +0000120 return false;
121 } else {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000122 if ((uint32_t)cast<ConstantFPSDNode>(NotZero)->
123 getValueAPF().convertToAPInt().getZExtValue() !=
Evan Cheng23cc8702006-03-27 08:10:26 +0000124 (uint32_t)-1)
125 return false;
126 }
Evan Chenga8df1662006-03-27 06:58:47 +0000127 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000128 return false;
129
130 // Okay, we have at least one ~0 value, check to see if the rest match or are
131 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000132 for (++i; i != e; ++i)
133 if (N->getOperand(i) != NotZero &&
134 N->getOperand(i).getOpcode() != ISD::UNDEF)
135 return false;
136 return true;
137}
138
139
Evan Cheng4a147842006-03-26 09:50:58 +0000140/// isBuildVectorAllZeros - Return true if the specified node is a
141/// BUILD_VECTOR where all of the elements are 0 or undef.
142bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000143 // Look through a bit convert.
144 if (N->getOpcode() == ISD::BIT_CONVERT)
145 N = N->getOperand(0).Val;
146
Evan Cheng4a147842006-03-26 09:50:58 +0000147 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000148
149 unsigned i = 0, e = N->getNumOperands();
150
151 // Skip over all of the undef values.
152 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
153 ++i;
154
155 // Do not accept an all-undef vector.
156 if (i == e) return false;
157
158 // Do not accept build_vectors that aren't all constants or which have non-~0
159 // elements.
160 SDOperand Zero = N->getOperand(i);
161 if (isa<ConstantSDNode>(Zero)) {
162 if (!cast<ConstantSDNode>(Zero)->isNullValue())
163 return false;
164 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000165 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000166 return false;
167 } else
168 return false;
169
170 // Okay, we have at least one ~0 value, check to see if the rest match or are
171 // undefs.
172 for (++i; i != e; ++i)
173 if (N->getOperand(i) != Zero &&
174 N->getOperand(i).getOpcode() != ISD::UNDEF)
175 return false;
176 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000177}
178
Evan Chengefec7512008-02-18 23:04:32 +0000179/// isScalarToVector - Return true if the specified node is a
180/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
181/// element is not an undef.
182bool ISD::isScalarToVector(const SDNode *N) {
183 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
184 return true;
185
186 if (N->getOpcode() != ISD::BUILD_VECTOR)
187 return false;
188 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
189 return false;
190 unsigned NumElems = N->getNumOperands();
191 for (unsigned i = 1; i < NumElems; ++i) {
192 SDOperand V = N->getOperand(i);
193 if (V.getOpcode() != ISD::UNDEF)
194 return false;
195 }
196 return true;
197}
198
199
Evan Chengbb81d972008-01-31 09:59:15 +0000200/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengfc718542008-02-04 23:10:38 +0000201/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Chengbb81d972008-01-31 09:59:15 +0000202/// is 0).
203bool ISD::isDebugLabel(const SDNode *N) {
204 SDOperand Zero;
205 if (N->getOpcode() == ISD::LABEL)
206 Zero = N->getOperand(2);
207 else if (N->isTargetOpcode() &&
208 N->getTargetOpcode() == TargetInstrInfo::LABEL)
209 // Chain moved to last operand.
210 Zero = N->getOperand(1);
211 else
212 return false;
213 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
214}
215
Chris Lattnerc3aae252005-01-07 07:46:32 +0000216/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
217/// when given the operation for (X op Y).
218ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
219 // To perform this operation, we just need to swap the L and G bits of the
220 // operation.
221 unsigned OldL = (Operation >> 2) & 1;
222 unsigned OldG = (Operation >> 1) & 1;
223 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
224 (OldL << 1) | // New G bit
225 (OldG << 2)); // New L bit.
226}
227
228/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
229/// 'op' is a valid SetCC operation.
230ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
231 unsigned Operation = Op;
232 if (isInteger)
233 Operation ^= 7; // Flip L, G, E bits, but not U.
234 else
235 Operation ^= 15; // Flip all of the condition bits.
236 if (Operation > ISD::SETTRUE2)
237 Operation &= ~8; // Don't let N and U bits get set.
238 return ISD::CondCode(Operation);
239}
240
241
242/// isSignedOp - For an integer comparison, return 1 if the comparison is a
243/// signed operation and 2 if the result is an unsigned comparison. Return zero
244/// if the operation does not depend on the sign of the input (setne and seteq).
245static int isSignedOp(ISD::CondCode Opcode) {
246 switch (Opcode) {
247 default: assert(0 && "Illegal integer setcc operation!");
248 case ISD::SETEQ:
249 case ISD::SETNE: return 0;
250 case ISD::SETLT:
251 case ISD::SETLE:
252 case ISD::SETGT:
253 case ISD::SETGE: return 1;
254 case ISD::SETULT:
255 case ISD::SETULE:
256 case ISD::SETUGT:
257 case ISD::SETUGE: return 2;
258 }
259}
260
261/// getSetCCOrOperation - Return the result of a logical OR between different
262/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
263/// returns SETCC_INVALID if it is not possible to represent the resultant
264/// comparison.
265ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
266 bool isInteger) {
267 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
268 // Cannot fold a signed integer setcc with an unsigned integer setcc.
269 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000270
Chris Lattnerc3aae252005-01-07 07:46:32 +0000271 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000272
Chris Lattnerc3aae252005-01-07 07:46:32 +0000273 // If the N and U bits get set then the resultant comparison DOES suddenly
274 // care about orderedness, and is true when ordered.
275 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000276 Op &= ~16; // Clear the U bit if the N bit is set.
277
278 // Canonicalize illegal integer setcc's.
279 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
280 Op = ISD::SETNE;
281
Chris Lattnerc3aae252005-01-07 07:46:32 +0000282 return ISD::CondCode(Op);
283}
284
285/// getSetCCAndOperation - Return the result of a logical AND between different
286/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
287/// function returns zero if it is not possible to represent the resultant
288/// comparison.
289ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
290 bool isInteger) {
291 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
292 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000293 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000294
295 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000296 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
297
298 // Canonicalize illegal integer setcc's.
299 if (isInteger) {
300 switch (Result) {
301 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000302 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
303 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
304 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
305 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000306 }
307 }
308
309 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000310}
311
Chris Lattnerb48da392005-01-23 04:39:44 +0000312const TargetMachine &SelectionDAG::getTarget() const {
313 return TLI.getTargetMachine();
314}
315
Jim Laskey58b968b2005-08-17 20:08:02 +0000316//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000317// SDNode Profile Support
318//===----------------------------------------------------------------------===//
319
Jim Laskeydef69b92006-10-27 23:52:51 +0000320/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
321///
Jim Laskey583bd472006-10-27 23:46:08 +0000322static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
323 ID.AddInteger(OpC);
324}
325
326/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
327/// solely with their pointer.
328void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
329 ID.AddPointer(VTList.VTs);
330}
331
Jim Laskeydef69b92006-10-27 23:52:51 +0000332/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
333///
Jim Laskey583bd472006-10-27 23:46:08 +0000334static void AddNodeIDOperands(FoldingSetNodeID &ID,
335 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000336 for (; NumOps; --NumOps, ++Ops) {
337 ID.AddPointer(Ops->Val);
338 ID.AddInteger(Ops->ResNo);
339 }
Jim Laskey583bd472006-10-27 23:46:08 +0000340}
341
Jim Laskey583bd472006-10-27 23:46:08 +0000342static void AddNodeIDNode(FoldingSetNodeID &ID,
343 unsigned short OpC, SDVTList VTList,
344 const SDOperand *OpList, unsigned N) {
345 AddNodeIDOpcode(ID, OpC);
346 AddNodeIDValueTypes(ID, VTList);
347 AddNodeIDOperands(ID, OpList, N);
348}
349
Jim Laskeydef69b92006-10-27 23:52:51 +0000350/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
351/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000352static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
353 AddNodeIDOpcode(ID, N->getOpcode());
354 // Add the return value info.
355 AddNodeIDValueTypes(ID, N->getVTList());
356 // Add the operand info.
357 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
358
359 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000360 switch (N->getOpcode()) {
361 default: break; // Normal nodes don't need extra info.
362 case ISD::TargetConstant:
363 case ISD::Constant:
Chris Lattner19fc1d32008-02-20 06:28:01 +0000364 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000365 break;
366 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000367 case ISD::ConstantFP: {
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000368 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000369 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000370 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000371 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000372 case ISD::GlobalAddress:
373 case ISD::TargetGlobalTLSAddress:
374 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000375 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
376 ID.AddPointer(GA->getGlobal());
377 ID.AddInteger(GA->getOffset());
378 break;
379 }
380 case ISD::BasicBlock:
381 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
382 break;
383 case ISD::Register:
384 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
385 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000386 case ISD::SRCVALUE:
387 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
388 break;
389 case ISD::MEMOPERAND: {
390 const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
391 ID.AddPointer(MO.getValue());
392 ID.AddInteger(MO.getFlags());
393 ID.AddInteger(MO.getOffset());
394 ID.AddInteger(MO.getSize());
395 ID.AddInteger(MO.getAlignment());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000396 break;
397 }
398 case ISD::FrameIndex:
399 case ISD::TargetFrameIndex:
400 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
401 break;
402 case ISD::JumpTable:
403 case ISD::TargetJumpTable:
404 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
405 break;
406 case ISD::ConstantPool:
407 case ISD::TargetConstantPool: {
408 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
409 ID.AddInteger(CP->getAlignment());
410 ID.AddInteger(CP->getOffset());
411 if (CP->isMachineConstantPoolEntry())
412 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
413 else
414 ID.AddPointer(CP->getConstVal());
415 break;
416 }
417 case ISD::LOAD: {
418 LoadSDNode *LD = cast<LoadSDNode>(N);
419 ID.AddInteger(LD->getAddressingMode());
420 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000421 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000422 ID.AddInteger(LD->getAlignment());
423 ID.AddInteger(LD->isVolatile());
424 break;
425 }
426 case ISD::STORE: {
427 StoreSDNode *ST = cast<StoreSDNode>(N);
428 ID.AddInteger(ST->getAddressingMode());
429 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000430 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000431 ID.AddInteger(ST->getAlignment());
432 ID.AddInteger(ST->isVolatile());
433 break;
434 }
Jim Laskey583bd472006-10-27 23:46:08 +0000435 }
436}
437
438//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000439// SelectionDAG Class
440//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000441
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000442/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000443/// SelectionDAG.
444void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000445 // Create a dummy node (which is not added to allnodes), that adds a reference
446 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000447 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000448
Chris Lattner190a4182006-08-04 17:45:20 +0000449 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000450
Chris Lattner190a4182006-08-04 17:45:20 +0000451 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000452 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000453 if (I->use_empty())
454 DeadNodes.push_back(I);
455
456 // Process the worklist, deleting the nodes and adding their uses to the
457 // worklist.
458 while (!DeadNodes.empty()) {
459 SDNode *N = DeadNodes.back();
460 DeadNodes.pop_back();
461
462 // Take the node out of the appropriate CSE map.
463 RemoveNodeFromCSEMaps(N);
464
465 // Next, brutally remove the operand list. This is safe to do, as there are
466 // no cycles in the graph.
467 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
468 SDNode *Operand = I->Val;
469 Operand->removeUser(N);
470
471 // Now that we removed this operand, see if there are no uses of it left.
472 if (Operand->use_empty())
473 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000474 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000475 if (N->OperandsNeedDelete)
476 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000477 N->OperandList = 0;
478 N->NumOperands = 0;
479
480 // Finally, remove N itself.
481 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000482 }
483
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000484 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000485 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000486}
487
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000488void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Cheng130a6472006-10-12 20:34:05 +0000489 SmallVector<SDNode*, 16> DeadNodes;
490 DeadNodes.push_back(N);
491
492 // Process the worklist, deleting the nodes and adding their uses to the
493 // worklist.
494 while (!DeadNodes.empty()) {
495 SDNode *N = DeadNodes.back();
496 DeadNodes.pop_back();
497
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000498 if (UpdateListener)
499 UpdateListener->NodeDeleted(N);
500
Evan Cheng130a6472006-10-12 20:34:05 +0000501 // Take the node out of the appropriate CSE map.
502 RemoveNodeFromCSEMaps(N);
503
504 // Next, brutally remove the operand list. This is safe to do, as there are
505 // no cycles in the graph.
506 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
507 SDNode *Operand = I->Val;
508 Operand->removeUser(N);
509
510 // Now that we removed this operand, see if there are no uses of it left.
511 if (Operand->use_empty())
512 DeadNodes.push_back(Operand);
513 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000514 if (N->OperandsNeedDelete)
515 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000516 N->OperandList = 0;
517 N->NumOperands = 0;
518
519 // Finally, remove N itself.
Evan Cheng130a6472006-10-12 20:34:05 +0000520 AllNodes.erase(N);
521 }
522}
523
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000524void SelectionDAG::DeleteNode(SDNode *N) {
525 assert(N->use_empty() && "Cannot delete a node that is not dead!");
526
527 // First take this out of the appropriate CSE map.
528 RemoveNodeFromCSEMaps(N);
529
Chris Lattner1e111c72005-09-07 05:37:01 +0000530 // Finally, remove uses due to operands of this node, remove from the
531 // AllNodes list, and delete the node.
532 DeleteNodeNotInCSEMaps(N);
533}
534
535void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
536
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000537 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000538 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000539
540 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000541 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
542 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000543 if (N->OperandsNeedDelete)
544 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000545 N->OperandList = 0;
546 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000547
548 delete N;
549}
550
Chris Lattner149c58c2005-08-16 18:17:10 +0000551/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
552/// correspond to it. This is useful when we're about to delete or repurpose
553/// the node. We don't want future request for structurally identical nodes
554/// to return N anymore.
555void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000556 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000557 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000558 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000559 case ISD::STRING:
560 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
561 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000562 case ISD::CONDCODE:
563 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
564 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000565 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000566 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
567 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000568 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000569 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000570 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000571 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000572 Erased =
573 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000574 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000575 case ISD::VALUETYPE: {
576 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
577 if (MVT::isExtendedVT(VT)) {
578 Erased = ExtendedValueTypeNodes.erase(VT);
579 } else {
580 Erased = ValueTypeNodes[VT] != 0;
581 ValueTypeNodes[VT] = 0;
582 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000583 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000584 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000585 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000586 // Remove it from the CSE Map.
587 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000588 break;
589 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000590#ifndef NDEBUG
591 // Verify that the node was actually in one of the CSE maps, unless it has a
592 // flag result (which cannot be CSE'd) or is one of the special cases that are
593 // not subject to CSE.
594 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000595 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000596 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000597 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000598 assert(0 && "Node is not in map!");
599 }
600#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000601}
602
Chris Lattner8b8749f2005-08-17 19:00:20 +0000603/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
604/// has been taken out and modified in some way. If the specified node already
605/// exists in the CSE maps, do not modify the maps, but return the existing node
606/// instead. If it doesn't exist, add it and return null.
607///
608SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
609 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000610 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000611 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000612
Chris Lattner9f8cc692005-12-19 22:21:21 +0000613 // Check that remaining values produced are not flags.
614 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
615 if (N->getValueType(i) == MVT::Flag)
616 return 0; // Never CSE anything that produces a flag.
617
Chris Lattnera5682852006-08-07 23:03:03 +0000618 SDNode *New = CSEMap.GetOrInsertNode(N);
619 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000620 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000621}
622
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000623/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
624/// were replaced with those specified. If this node is never memoized,
625/// return null, otherwise return a pointer to the slot it would take. If a
626/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000627SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
628 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000629 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000630 return 0; // Never add these nodes.
631
632 // Check that remaining values produced are not flags.
633 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
634 if (N->getValueType(i) == MVT::Flag)
635 return 0; // Never CSE anything that produces a flag.
636
Chris Lattner63e3f142007-02-04 07:28:00 +0000637 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000638 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000639 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000640 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000641}
642
643/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
644/// were replaced with those specified. If this node is never memoized,
645/// return null, otherwise return a pointer to the slot it would take. If a
646/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000647SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
648 SDOperand Op1, SDOperand Op2,
649 void *&InsertPos) {
650 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
651 return 0; // Never add these nodes.
652
653 // Check that remaining values produced are not flags.
654 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
655 if (N->getValueType(i) == MVT::Flag)
656 return 0; // Never CSE anything that produces a flag.
657
Chris Lattner63e3f142007-02-04 07:28:00 +0000658 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000659 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000660 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000661 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
662}
663
664
665/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
666/// were replaced with those specified. If this node is never memoized,
667/// return null, otherwise return a pointer to the slot it would take. If a
668/// node already exists with these operands, the slot will be non-null.
669SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000670 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000671 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000672 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000673 return 0; // Never add these nodes.
674
675 // Check that remaining values produced are not flags.
676 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
677 if (N->getValueType(i) == MVT::Flag)
678 return 0; // Never CSE anything that produces a flag.
679
Jim Laskey583bd472006-10-27 23:46:08 +0000680 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000681 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000682
Evan Cheng9629aba2006-10-11 01:47:58 +0000683 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
684 ID.AddInteger(LD->getAddressingMode());
685 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000686 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng9629aba2006-10-11 01:47:58 +0000687 ID.AddInteger(LD->getAlignment());
688 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000689 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
690 ID.AddInteger(ST->getAddressingMode());
691 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000692 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000693 ID.AddInteger(ST->getAlignment());
694 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000695 }
Jim Laskey583bd472006-10-27 23:46:08 +0000696
Chris Lattnera5682852006-08-07 23:03:03 +0000697 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000698}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000699
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000700
Chris Lattner78ec3112003-08-11 14:57:33 +0000701SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000702 while (!AllNodes.empty()) {
703 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000704 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000705 if (N->OperandsNeedDelete)
706 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000707 N->OperandList = 0;
708 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000709 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000710 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000711}
712
Chris Lattner0f2287b2005-04-13 02:38:18 +0000713SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000714 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000715 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000716 return getNode(ISD::AND, Op.getValueType(), Op,
717 getConstant(Imm, Op.getValueType()));
718}
719
Chris Lattner36ce6912005-11-29 06:21:05 +0000720SDOperand SelectionDAG::getString(const std::string &Val) {
721 StringSDNode *&N = StringNodes[Val];
722 if (!N) {
723 N = new StringSDNode(Val);
724 AllNodes.push_back(N);
725 }
726 return SDOperand(N, 0);
727}
728
Chris Lattner61b09412006-08-11 21:01:22 +0000729SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohman6394b092008-02-08 22:59:30 +0000730 MVT::ValueType EltVT =
731 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
732
733 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
734}
735
736SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000737 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000738
739 MVT::ValueType EltVT =
740 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000741
Dan Gohman6394b092008-02-08 22:59:30 +0000742 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
743 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000744
745 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000746 FoldingSetNodeID ID;
Dan Gohman89081322007-12-12 22:21:26 +0000747 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000748 ID.Add(Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000749 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000750 SDNode *N = NULL;
751 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
752 if (!MVT::isVector(VT))
753 return SDOperand(N, 0);
754 if (!N) {
755 N = new ConstantSDNode(isT, Val, EltVT);
756 CSEMap.InsertNode(N, IP);
757 AllNodes.push_back(N);
758 }
759
760 SDOperand Result(N, 0);
761 if (MVT::isVector(VT)) {
762 SmallVector<SDOperand, 8> Ops;
763 Ops.assign(MVT::getVectorNumElements(VT), Result);
764 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
765 }
766 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000767}
768
Chris Lattner0bd48932008-01-17 07:00:52 +0000769SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
770 return getConstant(Val, TLI.getPointerTy(), isTarget);
771}
772
773
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000774SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000775 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000776 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000777
Dan Gohman7f321562007-06-25 16:23:39 +0000778 MVT::ValueType EltVT =
779 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000780
Chris Lattnerd8658612005-02-17 20:17:32 +0000781 // Do the map lookup using the actual bit pattern for the floating point
782 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
783 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000784 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000785 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000786 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000787 ID.Add(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000788 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000789 SDNode *N = NULL;
790 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
791 if (!MVT::isVector(VT))
792 return SDOperand(N, 0);
793 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000794 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000795 CSEMap.InsertNode(N, IP);
796 AllNodes.push_back(N);
797 }
798
Dan Gohman7f321562007-06-25 16:23:39 +0000799 SDOperand Result(N, 0);
800 if (MVT::isVector(VT)) {
801 SmallVector<SDOperand, 8> Ops;
802 Ops.assign(MVT::getVectorNumElements(VT), Result);
803 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
804 }
805 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000806}
807
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000808SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
809 bool isTarget) {
810 MVT::ValueType EltVT =
811 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
812 if (EltVT==MVT::f32)
813 return getConstantFP(APFloat((float)Val), VT, isTarget);
814 else
815 return getConstantFP(APFloat(Val), VT, isTarget);
816}
817
Chris Lattnerc3aae252005-01-07 07:46:32 +0000818SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000819 MVT::ValueType VT, int Offset,
820 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000821 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
822 unsigned Opc;
823 if (GVar && GVar->isThreadLocal())
824 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
825 else
826 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000827 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000828 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000829 ID.AddPointer(GV);
830 ID.AddInteger(Offset);
831 void *IP = 0;
832 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
833 return SDOperand(E, 0);
834 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
835 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000836 AllNodes.push_back(N);
837 return SDOperand(N, 0);
838}
839
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000840SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
841 bool isTarget) {
842 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000843 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000844 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000845 ID.AddInteger(FI);
846 void *IP = 0;
847 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
848 return SDOperand(E, 0);
849 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
850 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000851 AllNodes.push_back(N);
852 return SDOperand(N, 0);
853}
854
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000855SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
856 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000857 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000858 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000859 ID.AddInteger(JTI);
860 void *IP = 0;
861 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
862 return SDOperand(E, 0);
863 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
864 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000865 AllNodes.push_back(N);
866 return SDOperand(N, 0);
867}
868
Evan Chengb8973bd2006-01-31 22:23:14 +0000869SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000870 unsigned Alignment, int Offset,
871 bool isTarget) {
872 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000873 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000874 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000875 ID.AddInteger(Alignment);
876 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000877 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000878 void *IP = 0;
879 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
880 return SDOperand(E, 0);
881 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
882 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000883 AllNodes.push_back(N);
884 return SDOperand(N, 0);
885}
886
Chris Lattnerc3aae252005-01-07 07:46:32 +0000887
Evan Chengd6594ae2006-09-12 21:00:35 +0000888SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
889 MVT::ValueType VT,
890 unsigned Alignment, int Offset,
891 bool isTarget) {
892 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000893 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000894 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000895 ID.AddInteger(Alignment);
896 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000897 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000898 void *IP = 0;
899 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
900 return SDOperand(E, 0);
901 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
902 CSEMap.InsertNode(N, IP);
903 AllNodes.push_back(N);
904 return SDOperand(N, 0);
905}
906
907
Chris Lattnerc3aae252005-01-07 07:46:32 +0000908SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000909 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000910 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000911 ID.AddPointer(MBB);
912 void *IP = 0;
913 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
914 return SDOperand(E, 0);
915 SDNode *N = new BasicBlockSDNode(MBB);
916 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000917 AllNodes.push_back(N);
918 return SDOperand(N, 0);
919}
920
Chris Lattner15e4b012005-07-10 00:07:11 +0000921SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000922 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner15e4b012005-07-10 00:07:11 +0000923 ValueTypeNodes.resize(VT+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000924
Duncan Sandsf411b832007-10-17 13:49:58 +0000925 SDNode *&N = MVT::isExtendedVT(VT) ?
926 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
927
928 if (N) return SDOperand(N, 0);
929 N = new VTSDNode(VT);
930 AllNodes.push_back(N);
931 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000932}
933
Chris Lattnerc3aae252005-01-07 07:46:32 +0000934SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
935 SDNode *&N = ExternalSymbols[Sym];
936 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000937 N = new ExternalSymbolSDNode(false, Sym, VT);
938 AllNodes.push_back(N);
939 return SDOperand(N, 0);
940}
941
Chris Lattner809ec112006-01-28 10:09:25 +0000942SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
943 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000944 SDNode *&N = TargetExternalSymbols[Sym];
945 if (N) return SDOperand(N, 0);
946 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000947 AllNodes.push_back(N);
948 return SDOperand(N, 0);
949}
950
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000951SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
952 if ((unsigned)Cond >= CondCodeNodes.size())
953 CondCodeNodes.resize(Cond+1);
954
Chris Lattner079a27a2005-08-09 20:40:02 +0000955 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000956 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000957 AllNodes.push_back(CondCodeNodes[Cond]);
958 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000959 return SDOperand(CondCodeNodes[Cond], 0);
960}
961
Chris Lattner0fdd7682005-08-30 22:38:38 +0000962SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000963 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000964 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000965 ID.AddInteger(RegNo);
966 void *IP = 0;
967 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
968 return SDOperand(E, 0);
969 SDNode *N = new RegisterSDNode(RegNo, VT);
970 CSEMap.InsertNode(N, IP);
971 AllNodes.push_back(N);
972 return SDOperand(N, 0);
973}
974
Dan Gohman69de1932008-02-06 22:27:42 +0000975SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +0000976 assert((!V || isa<PointerType>(V->getType())) &&
977 "SrcValue is not a pointer?");
978
Jim Laskey583bd472006-10-27 23:46:08 +0000979 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000980 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000981 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +0000982
Chris Lattner61b09412006-08-11 21:01:22 +0000983 void *IP = 0;
984 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
985 return SDOperand(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +0000986
987 SDNode *N = new SrcValueSDNode(V);
988 CSEMap.InsertNode(N, IP);
989 AllNodes.push_back(N);
990 return SDOperand(N, 0);
991}
992
993SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
994 const Value *v = MO.getValue();
995 assert((!v || isa<PointerType>(v->getType())) &&
996 "SrcValue is not a pointer?");
997
998 FoldingSetNodeID ID;
999 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
1000 ID.AddPointer(v);
1001 ID.AddInteger(MO.getFlags());
1002 ID.AddInteger(MO.getOffset());
1003 ID.AddInteger(MO.getSize());
1004 ID.AddInteger(MO.getAlignment());
1005
1006 void *IP = 0;
1007 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1008 return SDOperand(E, 0);
1009
1010 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001011 CSEMap.InsertNode(N, IP);
1012 AllNodes.push_back(N);
1013 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001014}
1015
Chris Lattner37ce9df2007-10-15 17:47:20 +00001016/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1017/// specified value type.
1018SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
1019 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1020 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1021 const Type *Ty = MVT::getTypeForValueType(VT);
1022 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1023 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1024 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1025}
1026
1027
Chris Lattner51dabfb2006-10-14 00:41:01 +00001028SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1029 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001030 // These setcc operations always fold.
1031 switch (Cond) {
1032 default: break;
1033 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001034 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001035 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001036 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001037
1038 case ISD::SETOEQ:
1039 case ISD::SETOGT:
1040 case ISD::SETOGE:
1041 case ISD::SETOLT:
1042 case ISD::SETOLE:
1043 case ISD::SETONE:
1044 case ISD::SETO:
1045 case ISD::SETUO:
1046 case ISD::SETUEQ:
1047 case ISD::SETUNE:
1048 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1049 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001050 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001051
Chris Lattner67255a12005-04-07 18:14:58 +00001052 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
1053 uint64_t C2 = N2C->getValue();
1054 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
1055 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001056
Chris Lattnerc3aae252005-01-07 07:46:32 +00001057 // Sign extend the operands if required
1058 if (ISD::isSignedIntSetCC(Cond)) {
1059 C1 = N1C->getSignExtended();
1060 C2 = N2C->getSignExtended();
1061 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001062
Chris Lattnerc3aae252005-01-07 07:46:32 +00001063 switch (Cond) {
1064 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001065 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1066 case ISD::SETNE: return getConstant(C1 != C2, VT);
1067 case ISD::SETULT: return getConstant(C1 < C2, VT);
1068 case ISD::SETUGT: return getConstant(C1 > C2, VT);
1069 case ISD::SETULE: return getConstant(C1 <= C2, VT);
1070 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
1071 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
1072 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
1073 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
1074 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001075 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001076 }
Chris Lattner67255a12005-04-07 18:14:58 +00001077 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001078 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001079 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001080 // No compile time operations on this type yet.
1081 if (N1C->getValueType(0) == MVT::ppcf128)
1082 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001083
1084 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001085 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001086 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001087 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1088 return getNode(ISD::UNDEF, VT);
1089 // fall through
1090 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1091 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1092 return getNode(ISD::UNDEF, VT);
1093 // fall through
1094 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001095 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001096 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1097 return getNode(ISD::UNDEF, VT);
1098 // fall through
1099 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1100 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1101 return getNode(ISD::UNDEF, VT);
1102 // fall through
1103 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1104 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1105 return getNode(ISD::UNDEF, VT);
1106 // fall through
1107 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001108 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001109 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1110 return getNode(ISD::UNDEF, VT);
1111 // fall through
1112 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001113 R==APFloat::cmpEqual, VT);
1114 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1115 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1116 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1117 R==APFloat::cmpEqual, VT);
1118 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1119 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1120 R==APFloat::cmpLessThan, VT);
1121 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1122 R==APFloat::cmpUnordered, VT);
1123 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1124 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001125 }
1126 } else {
1127 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001128 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001129 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001130 }
1131
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001132 // Could not fold it.
1133 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001134}
1135
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001136/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1137/// use this predicate to simplify operations downstream.
1138bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1139 unsigned BitWidth = Op.getValueSizeInBits();
1140 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1141}
1142
Dan Gohmanea859be2007-06-22 14:59:07 +00001143/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1144/// this predicate to simplify operations downstream. Mask is known to be zero
1145/// for bits that V cannot have.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001146bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001147 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001148 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001149 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1150 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1151 return (KnownZero & Mask) == Mask;
1152}
1153
1154/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1155/// known to be either zero or one and return them in the KnownZero/KnownOne
1156/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1157/// processing.
Dan Gohman977a76f2008-02-13 22:28:48 +00001158void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001159 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001160 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001161 unsigned BitWidth = Mask.getBitWidth();
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001162 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1163 "Mask size mismatches value type size!");
1164
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001165 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001166 if (Depth == 6 || Mask == 0)
1167 return; // Limit search depth.
1168
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001169 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001170
1171 switch (Op.getOpcode()) {
1172 case ISD::Constant:
1173 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001174 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001175 KnownZero = ~KnownOne & Mask;
1176 return;
1177 case ISD::AND:
1178 // If either the LHS or the RHS are Zero, the result is zero.
1179 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001180 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1181 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001182 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1183 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1184
1185 // Output known-1 bits are only known if set in both the LHS & RHS.
1186 KnownOne &= KnownOne2;
1187 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1188 KnownZero |= KnownZero2;
1189 return;
1190 case ISD::OR:
1191 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001192 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1193 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001194 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1195 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1196
1197 // Output known-0 bits are only known if clear in both the LHS & RHS.
1198 KnownZero &= KnownZero2;
1199 // Output known-1 are known to be set if set in either the LHS | RHS.
1200 KnownOne |= KnownOne2;
1201 return;
1202 case ISD::XOR: {
1203 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1204 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1205 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1206 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1207
1208 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001209 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001210 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1211 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1212 KnownZero = KnownZeroOut;
1213 return;
1214 }
1215 case ISD::SELECT:
1216 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1217 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1218 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1219 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1220
1221 // Only known if known in both the LHS and RHS.
1222 KnownOne &= KnownOne2;
1223 KnownZero &= KnownZero2;
1224 return;
1225 case ISD::SELECT_CC:
1226 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1227 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1228 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1229 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1230
1231 // Only known if known in both the LHS and RHS.
1232 KnownOne &= KnownOne2;
1233 KnownZero &= KnownZero2;
1234 return;
1235 case ISD::SETCC:
1236 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001237 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1238 BitWidth > 1)
1239 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001240 return;
1241 case ISD::SHL:
1242 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1243 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmand4cf9922008-02-26 18:50:50 +00001244 unsigned ShAmt = SA->getValue();
1245
1246 // If the shift count is an invalid immediate, don't do anything.
1247 if (ShAmt >= BitWidth)
1248 return;
1249
1250 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001251 KnownZero, KnownOne, Depth+1);
1252 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001253 KnownZero <<= ShAmt;
1254 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001255 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001256 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001257 }
1258 return;
1259 case ISD::SRL:
1260 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1261 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001262 unsigned ShAmt = SA->getValue();
1263
Dan Gohmand4cf9922008-02-26 18:50:50 +00001264 // If the shift count is an invalid immediate, don't do anything.
1265 if (ShAmt >= BitWidth)
1266 return;
1267
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001268 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001269 KnownZero, KnownOne, Depth+1);
1270 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001271 KnownZero = KnownZero.lshr(ShAmt);
1272 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001273
Dan Gohman72d2fd52008-02-13 22:43:25 +00001274 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001275 KnownZero |= HighBits; // High bits known zero.
1276 }
1277 return;
1278 case ISD::SRA:
1279 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001280 unsigned ShAmt = SA->getValue();
1281
Dan Gohmand4cf9922008-02-26 18:50:50 +00001282 // If the shift count is an invalid immediate, don't do anything.
1283 if (ShAmt >= BitWidth)
1284 return;
1285
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001286 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001287 // If any of the demanded bits are produced by the sign extension, we also
1288 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001289 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1290 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001291 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001292
1293 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1294 Depth+1);
1295 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001296 KnownZero = KnownZero.lshr(ShAmt);
1297 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001298
1299 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001300 APInt SignBit = APInt::getSignBit(BitWidth);
1301 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001302
Dan Gohmanca93a432008-02-20 16:30:17 +00001303 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001304 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001305 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001306 KnownOne |= HighBits; // New bits are known one.
1307 }
1308 }
1309 return;
1310 case ISD::SIGN_EXTEND_INREG: {
1311 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001312 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohmanea859be2007-06-22 14:59:07 +00001313
1314 // Sign extension. Compute the demanded bits in the result that are not
1315 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001316 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001317
Dan Gohman977a76f2008-02-13 22:28:48 +00001318 APInt InSignBit = APInt::getSignBit(EBits);
1319 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001320
1321 // If the sign extended bits are demanded, we know that the sign
1322 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001323 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001324 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001325 InputDemandedBits |= InSignBit;
1326
1327 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1328 KnownZero, KnownOne, Depth+1);
1329 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1330
1331 // If the sign bit of the input is known set or clear, then we know the
1332 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001333 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001334 KnownZero |= NewBits;
1335 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001336 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001337 KnownOne |= NewBits;
1338 KnownZero &= ~NewBits;
1339 } else { // Input sign bit unknown
1340 KnownZero &= ~NewBits;
1341 KnownOne &= ~NewBits;
1342 }
1343 return;
1344 }
1345 case ISD::CTTZ:
1346 case ISD::CTLZ:
1347 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001348 unsigned LowBits = Log2_32(BitWidth)+1;
1349 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1350 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001351 return;
1352 }
1353 case ISD::LOAD: {
1354 if (ISD::isZEXTLoad(Op.Val)) {
1355 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001356 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001357 unsigned MemBits = MVT::getSizeInBits(VT);
1358 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001359 }
1360 return;
1361 }
1362 case ISD::ZERO_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001363 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1364 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001365 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1366 APInt InMask = Mask;
1367 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 KnownZero.trunc(InBits);
1369 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001370 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001371 KnownZero.zext(BitWidth);
1372 KnownOne.zext(BitWidth);
1373 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001374 return;
1375 }
1376 case ISD::SIGN_EXTEND: {
1377 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001378 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001379 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001380 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1381 APInt InMask = Mask;
1382 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001383
1384 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001385 // bit is demanded. Temporarily set this bit in the mask for our callee.
1386 if (NewBits.getBoolValue())
1387 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001388
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001389 KnownZero.trunc(InBits);
1390 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001391 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1392
1393 // Note if the sign bit is known to be zero or one.
1394 bool SignBitKnownZero = KnownZero.isNegative();
1395 bool SignBitKnownOne = KnownOne.isNegative();
1396 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1397 "Sign bit can't be known to be both zero and one!");
1398
1399 // If the sign bit wasn't actually demanded by our caller, we don't
1400 // want it set in the KnownZero and KnownOne result values. Reset the
1401 // mask and reapply it to the result values.
1402 InMask = Mask;
1403 InMask.trunc(InBits);
1404 KnownZero &= InMask;
1405 KnownOne &= InMask;
1406
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001407 KnownZero.zext(BitWidth);
1408 KnownOne.zext(BitWidth);
1409
Dan Gohman977a76f2008-02-13 22:28:48 +00001410 // If the sign bit is known zero or one, the top bits match.
1411 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001412 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001413 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001414 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001415 return;
1416 }
1417 case ISD::ANY_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001418 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1419 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001420 APInt InMask = Mask;
1421 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001422 KnownZero.trunc(InBits);
1423 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001424 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001425 KnownZero.zext(BitWidth);
1426 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001427 return;
1428 }
1429 case ISD::TRUNCATE: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001430 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1431 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001432 APInt InMask = Mask;
1433 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001434 KnownZero.zext(InBits);
1435 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001436 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001437 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001438 KnownZero.trunc(BitWidth);
1439 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001440 break;
1441 }
1442 case ISD::AssertZext: {
1443 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001444 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001445 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1446 KnownOne, Depth+1);
1447 KnownZero |= (~InMask) & Mask;
1448 return;
1449 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001450 case ISD::FGETSIGN:
1451 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001452 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001453 return;
1454
Dan Gohmanea859be2007-06-22 14:59:07 +00001455 case ISD::ADD: {
1456 // If either the LHS or the RHS are Zero, the result is zero.
1457 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1458 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1459 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1460 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1461
1462 // Output known-0 bits are known if clear or set in both the low clear bits
1463 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1464 // low 3 bits clear.
Dan Gohman977a76f2008-02-13 22:28:48 +00001465 unsigned KnownZeroOut = std::min(KnownZero.countTrailingOnes(),
1466 KnownZero2.countTrailingOnes());
Dan Gohmanea859be2007-06-22 14:59:07 +00001467
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001468 KnownZero = APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1469 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001470 return;
1471 }
1472 case ISD::SUB: {
1473 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1474 if (!CLHS) return;
1475
1476 // We know that the top bits of C-X are clear if X contains less bits
1477 // than C (i.e. no wrap-around can happen). For example, 20-X is
1478 // positive if we can prove that X is >= 0 and < 16.
Dan Gohman977a76f2008-02-13 22:28:48 +00001479 if (CLHS->getAPIntValue().isNonNegative()) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001480 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1481 // NLZ can't be BitWidth with no sign bit
Chris Lattner423be622008-02-14 18:48:56 +00001482 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001483 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1484
1485 // If all of the MaskV bits are known to be zero, then we know the output
1486 // top bits are zero, because we now know that the output is from [0-C].
1487 if ((KnownZero & MaskV) == MaskV) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001488 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1489 // Top bits known zero.
1490 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1491 KnownOne = APInt(BitWidth, 0); // No one bits known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001492 } else {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001493 KnownZero = KnownOne = APInt(BitWidth, 0); // Otherwise, nothing known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001494 }
1495 }
1496 return;
1497 }
1498 default:
1499 // Allow the target to implement this method for its nodes.
1500 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1501 case ISD::INTRINSIC_WO_CHAIN:
1502 case ISD::INTRINSIC_W_CHAIN:
1503 case ISD::INTRINSIC_VOID:
1504 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1505 }
1506 return;
1507 }
1508}
1509
1510/// ComputeNumSignBits - Return the number of times the sign bit of the
1511/// register is replicated into the other bits. We know that at least 1 bit
1512/// is always equal to the sign bit (itself), but other cases can give us
1513/// information. For example, immediately after an "SRA X, 2", we know that
1514/// the top 3 bits are all equal to each other, so we return 3.
1515unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1516 MVT::ValueType VT = Op.getValueType();
1517 assert(MVT::isInteger(VT) && "Invalid VT!");
1518 unsigned VTBits = MVT::getSizeInBits(VT);
1519 unsigned Tmp, Tmp2;
1520
1521 if (Depth == 6)
1522 return 1; // Limit search depth.
1523
1524 switch (Op.getOpcode()) {
1525 default: break;
1526 case ISD::AssertSext:
1527 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1528 return VTBits-Tmp+1;
1529 case ISD::AssertZext:
1530 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1531 return VTBits-Tmp;
1532
1533 case ISD::Constant: {
1534 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1535 // If negative, invert the bits, then look at it.
1536 if (Val & MVT::getIntVTSignBit(VT))
1537 Val = ~Val;
1538
1539 // Shift the bits so they are the leading bits in the int64_t.
1540 Val <<= 64-VTBits;
1541
1542 // Return # leading zeros. We use 'min' here in case Val was zero before
1543 // shifting. We don't want to return '64' as for an i32 "0".
1544 return std::min(VTBits, CountLeadingZeros_64(Val));
1545 }
1546
1547 case ISD::SIGN_EXTEND:
1548 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1549 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1550
1551 case ISD::SIGN_EXTEND_INREG:
1552 // Max of the input and what this extends.
1553 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1554 Tmp = VTBits-Tmp+1;
1555
1556 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1557 return std::max(Tmp, Tmp2);
1558
1559 case ISD::SRA:
1560 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1561 // SRA X, C -> adds C sign bits.
1562 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1563 Tmp += C->getValue();
1564 if (Tmp > VTBits) Tmp = VTBits;
1565 }
1566 return Tmp;
1567 case ISD::SHL:
1568 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1569 // shl destroys sign bits.
1570 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1571 if (C->getValue() >= VTBits || // Bad shift.
1572 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1573 return Tmp - C->getValue();
1574 }
1575 break;
1576 case ISD::AND:
1577 case ISD::OR:
1578 case ISD::XOR: // NOT is handled here.
1579 // Logical binary ops preserve the number of sign bits.
1580 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1581 if (Tmp == 1) return 1; // Early out.
1582 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1583 return std::min(Tmp, Tmp2);
1584
1585 case ISD::SELECT:
1586 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1587 if (Tmp == 1) return 1; // Early out.
1588 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1589 return std::min(Tmp, Tmp2);
1590
1591 case ISD::SETCC:
1592 // If setcc returns 0/-1, all bits are sign bits.
1593 if (TLI.getSetCCResultContents() ==
1594 TargetLowering::ZeroOrNegativeOneSetCCResult)
1595 return VTBits;
1596 break;
1597 case ISD::ROTL:
1598 case ISD::ROTR:
1599 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1600 unsigned RotAmt = C->getValue() & (VTBits-1);
1601
1602 // Handle rotate right by N like a rotate left by 32-N.
1603 if (Op.getOpcode() == ISD::ROTR)
1604 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1605
1606 // If we aren't rotating out all of the known-in sign bits, return the
1607 // number that are left. This handles rotl(sext(x), 1) for example.
1608 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1609 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1610 }
1611 break;
1612 case ISD::ADD:
1613 // Add can have at most one carry bit. Thus we know that the output
1614 // is, at worst, one more bit than the inputs.
1615 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1616 if (Tmp == 1) return 1; // Early out.
1617
1618 // Special case decrementing a value (ADD X, -1):
1619 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1620 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001621 APInt KnownZero, KnownOne;
1622 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001623 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1624
1625 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1626 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001627 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001628 return VTBits;
1629
1630 // If we are subtracting one from a positive number, there is no carry
1631 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001632 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001633 return Tmp;
1634 }
1635
1636 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1637 if (Tmp2 == 1) return 1;
1638 return std::min(Tmp, Tmp2)-1;
1639 break;
1640
1641 case ISD::SUB:
1642 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1643 if (Tmp2 == 1) return 1;
1644
1645 // Handle NEG.
1646 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1647 if (CLHS->getValue() == 0) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001648 APInt KnownZero, KnownOne;
1649 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001650 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1651 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1652 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001653 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001654 return VTBits;
1655
1656 // If the input is known to be positive (the sign bit is known clear),
1657 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001658 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001659 return Tmp2;
1660
1661 // Otherwise, we treat this like a SUB.
1662 }
1663
1664 // Sub can have at most one carry bit. Thus we know that the output
1665 // is, at worst, one more bit than the inputs.
1666 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1667 if (Tmp == 1) return 1; // Early out.
1668 return std::min(Tmp, Tmp2)-1;
1669 break;
1670 case ISD::TRUNCATE:
1671 // FIXME: it's tricky to do anything useful for this, but it is an important
1672 // case for targets like X86.
1673 break;
1674 }
1675
1676 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1677 if (Op.getOpcode() == ISD::LOAD) {
1678 LoadSDNode *LD = cast<LoadSDNode>(Op);
1679 unsigned ExtType = LD->getExtensionType();
1680 switch (ExtType) {
1681 default: break;
1682 case ISD::SEXTLOAD: // '17' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001683 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001684 return VTBits-Tmp+1;
1685 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001686 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001687 return VTBits-Tmp;
1688 }
1689 }
1690
1691 // Allow the target to implement this method for its nodes.
1692 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1693 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1694 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1695 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1696 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1697 if (NumBits > 1) return NumBits;
1698 }
1699
1700 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1701 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001702 APInt KnownZero, KnownOne;
1703 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001704 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1705
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001706 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001707 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001708 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001709 Mask = KnownOne;
1710 } else {
1711 // Nothing known.
1712 return 1;
1713 }
1714
1715 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1716 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001717 Mask = ~Mask;
1718 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001719 // Return # leading zeros. We use 'min' here in case Val was zero before
1720 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001721 return std::min(VTBits, Mask.countLeadingZeros());
Dan Gohmanea859be2007-06-22 14:59:07 +00001722}
1723
Chris Lattner51dabfb2006-10-14 00:41:01 +00001724
Evan Chenga844bde2008-02-02 04:07:54 +00001725bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1726 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1727 if (!GA) return false;
1728 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1729 if (!GV) return false;
1730 MachineModuleInfo *MMI = getMachineModuleInfo();
1731 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1732}
1733
1734
Chris Lattnerc3aae252005-01-07 07:46:32 +00001735/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001736///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001737SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001738 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001739 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001740 void *IP = 0;
1741 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1742 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001743 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001744 CSEMap.InsertNode(N, IP);
1745
1746 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001747 return SDOperand(N, 0);
1748}
1749
Chris Lattnerc3aae252005-01-07 07:46:32 +00001750SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1751 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001752 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001753 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001754 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1755 uint64_t Val = C->getValue();
1756 switch (Opcode) {
1757 default: break;
1758 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001759 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001760 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1761 case ISD::TRUNCATE: return getConstant(Val, VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001762 case ISD::UINT_TO_FP:
1763 case ISD::SINT_TO_FP: {
1764 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001765 // No compile time operations on this type.
1766 if (VT==MVT::ppcf128)
1767 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00001768 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Neil Boothccf596a2007-10-07 11:45:55 +00001769 (void)apf.convertFromZeroExtendedInteger(&Val,
Dale Johannesen910993e2007-09-21 22:09:37 +00001770 MVT::getSizeInBits(Operand.getValueType()),
1771 Opcode==ISD::SINT_TO_FP,
Dale Johannesen88216af2007-09-30 18:19:03 +00001772 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001773 return getConstantFP(apf, VT);
1774 }
Chris Lattner94683772005-12-23 05:30:37 +00001775 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001776 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001777 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001778 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001779 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001780 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001781 case ISD::BSWAP:
1782 switch(VT) {
1783 default: assert(0 && "Invalid bswap!"); break;
1784 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1785 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1786 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1787 }
1788 break;
1789 case ISD::CTPOP:
1790 switch(VT) {
1791 default: assert(0 && "Invalid ctpop!"); break;
1792 case MVT::i1: return getConstant(Val != 0, VT);
1793 case MVT::i8:
1794 Tmp1 = (unsigned)Val & 0xFF;
1795 return getConstant(CountPopulation_32(Tmp1), VT);
1796 case MVT::i16:
1797 Tmp1 = (unsigned)Val & 0xFFFF;
1798 return getConstant(CountPopulation_32(Tmp1), VT);
1799 case MVT::i32:
1800 return getConstant(CountPopulation_32((unsigned)Val), VT);
1801 case MVT::i64:
1802 return getConstant(CountPopulation_64(Val), VT);
1803 }
1804 case ISD::CTLZ:
1805 switch(VT) {
1806 default: assert(0 && "Invalid ctlz!"); break;
1807 case MVT::i1: return getConstant(Val == 0, VT);
1808 case MVT::i8:
1809 Tmp1 = (unsigned)Val & 0xFF;
1810 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1811 case MVT::i16:
1812 Tmp1 = (unsigned)Val & 0xFFFF;
1813 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1814 case MVT::i32:
1815 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1816 case MVT::i64:
1817 return getConstant(CountLeadingZeros_64(Val), VT);
1818 }
1819 case ISD::CTTZ:
1820 switch(VT) {
1821 default: assert(0 && "Invalid cttz!"); break;
1822 case MVT::i1: return getConstant(Val == 0, VT);
1823 case MVT::i8:
1824 Tmp1 = (unsigned)Val | 0x100;
1825 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1826 case MVT::i16:
1827 Tmp1 = (unsigned)Val | 0x10000;
1828 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1829 case MVT::i32:
1830 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1831 case MVT::i64:
1832 return getConstant(CountTrailingZeros_64(Val), VT);
1833 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001834 }
1835 }
1836
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001837 // Constant fold unary operations with a floating point constant operand.
1838 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1839 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001840 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001841 switch (Opcode) {
1842 case ISD::FNEG:
1843 V.changeSign();
1844 return getConstantFP(V, VT);
1845 case ISD::FABS:
1846 V.clearSign();
1847 return getConstantFP(V, VT);
1848 case ISD::FP_ROUND:
1849 case ISD::FP_EXTEND:
1850 // This can return overflow, underflow, or inexact; we don't care.
1851 // FIXME need to be more flexible about rounding mode.
1852 (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle :
1853 VT==MVT::f64 ? APFloat::IEEEdouble :
1854 VT==MVT::f80 ? APFloat::x87DoubleExtended :
1855 VT==MVT::f128 ? APFloat::IEEEquad :
1856 APFloat::Bogus,
1857 APFloat::rmNearestTiesToEven);
1858 return getConstantFP(V, VT);
1859 case ISD::FP_TO_SINT:
1860 case ISD::FP_TO_UINT: {
1861 integerPart x;
1862 assert(integerPartWidth >= 64);
1863 // FIXME need to be more flexible about rounding mode.
1864 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1865 Opcode==ISD::FP_TO_SINT,
1866 APFloat::rmTowardZero);
1867 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1868 break;
1869 return getConstant(x, VT);
1870 }
1871 case ISD::BIT_CONVERT:
1872 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1873 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1874 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1875 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001876 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001877 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001878 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001879 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001880
1881 unsigned OpOpcode = Operand.Val->getOpcode();
1882 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001883 case ISD::TokenFactor:
1884 return Operand; // Factor of one node? No factor.
Chris Lattner0bd48932008-01-17 07:00:52 +00001885 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001886 case ISD::FP_EXTEND:
1887 assert(MVT::isFloatingPoint(VT) &&
1888 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001889 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001890 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00001891 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001892 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1893 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001894 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001895 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1896 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001897 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1898 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1899 break;
1900 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001901 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1902 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001903 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001904 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1905 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001906 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001907 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001908 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001909 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001910 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1911 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001912 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001913 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1914 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001915 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1916 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1917 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1918 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001919 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001920 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1921 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001922 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsaf47b112007-10-16 09:56:48 +00001923 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1924 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001925 if (OpOpcode == ISD::TRUNCATE)
1926 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001927 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1928 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001929 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsaf47b112007-10-16 09:56:48 +00001930 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1931 < MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001932 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsaf47b112007-10-16 09:56:48 +00001933 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1934 > MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001935 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1936 else
1937 return Operand.Val->getOperand(0);
1938 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001939 break;
Chris Lattner35481892005-12-23 00:16:34 +00001940 case ISD::BIT_CONVERT:
1941 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001942 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001943 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001944 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001945 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1946 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001947 if (OpOpcode == ISD::UNDEF)
1948 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001949 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001950 case ISD::SCALAR_TO_VECTOR:
1951 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001952 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001953 "Illegal SCALAR_TO_VECTOR node!");
1954 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001955 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001956 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1957 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001958 Operand.Val->getOperand(0));
1959 if (OpOpcode == ISD::FNEG) // --X -> X
1960 return Operand.Val->getOperand(0);
1961 break;
1962 case ISD::FABS:
1963 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1964 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1965 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001966 }
1967
Chris Lattner43247a12005-08-25 19:12:10 +00001968 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001969 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001970 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001971 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001972 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001973 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001974 void *IP = 0;
1975 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1976 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001977 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001978 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001979 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001980 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001981 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001982 AllNodes.push_back(N);
1983 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001984}
1985
Chris Lattner36019aa2005-04-18 03:48:41 +00001986
1987
Chris Lattnerc3aae252005-01-07 07:46:32 +00001988SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1989 SDOperand N1, SDOperand N2) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001990 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1991 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner76365122005-01-16 02:23:22 +00001992 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001993 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00001994 case ISD::TokenFactor:
1995 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1996 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001997 // Fold trivial token factors.
1998 if (N1.getOpcode() == ISD::EntryToken) return N2;
1999 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002000 break;
Chris Lattner76365122005-01-16 02:23:22 +00002001 case ISD::AND:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002002 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2003 N1.getValueType() == VT && "Binary operator types must match!");
2004 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2005 // worth handling here.
2006 if (N2C && N2C->getValue() == 0)
2007 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002008 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2009 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002010 break;
Chris Lattner76365122005-01-16 02:23:22 +00002011 case ISD::OR:
2012 case ISD::XOR:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002013 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2014 N1.getValueType() == VT && "Binary operator types must match!");
2015 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
2016 // worth handling here.
2017 if (N2C && N2C->getValue() == 0)
2018 return N1;
2019 break;
Chris Lattner76365122005-01-16 02:23:22 +00002020 case ISD::UDIV:
2021 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002022 case ISD::MULHU:
2023 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00002024 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
2025 // fall through
2026 case ISD::ADD:
2027 case ISD::SUB:
2028 case ISD::MUL:
2029 case ISD::SDIV:
2030 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002031 case ISD::FADD:
2032 case ISD::FSUB:
2033 case ISD::FMUL:
2034 case ISD::FDIV:
2035 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002036 assert(N1.getValueType() == N2.getValueType() &&
2037 N1.getValueType() == VT && "Binary operator types must match!");
2038 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002039 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2040 assert(N1.getValueType() == VT &&
2041 MVT::isFloatingPoint(N1.getValueType()) &&
2042 MVT::isFloatingPoint(N2.getValueType()) &&
2043 "Invalid FCOPYSIGN!");
2044 break;
Chris Lattner76365122005-01-16 02:23:22 +00002045 case ISD::SHL:
2046 case ISD::SRA:
2047 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002048 case ISD::ROTL:
2049 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002050 assert(VT == N1.getValueType() &&
2051 "Shift operators return type must be the same as their first arg");
2052 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00002053 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00002054 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002055 case ISD::FP_ROUND_INREG: {
2056 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2057 assert(VT == N1.getValueType() && "Not an inreg round!");
2058 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
2059 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002060 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2061 "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002062 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002063 break;
2064 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002065 case ISD::FP_ROUND:
2066 assert(MVT::isFloatingPoint(VT) &&
2067 MVT::isFloatingPoint(N1.getValueType()) &&
2068 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2069 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002070 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002071 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002072 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002073 case ISD::AssertZext: {
2074 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2075 assert(VT == N1.getValueType() && "Not an inreg extend!");
2076 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2077 "Cannot *_EXTEND_INREG FP types");
2078 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2079 "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002080 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002081 break;
2082 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002083 case ISD::SIGN_EXTEND_INREG: {
2084 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2085 assert(VT == N1.getValueType() && "Not an inreg extend!");
2086 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2087 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002088 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2089 "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002090 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002091
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002092 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002093 int64_t Val = N1C->getValue();
2094 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
2095 Val <<= 64-FromBits;
2096 Val >>= 64-FromBits;
2097 return getConstant(Val, VT);
2098 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002099 break;
2100 }
2101 case ISD::EXTRACT_VECTOR_ELT:
2102 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2103
2104 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2105 // expanding copies of large vectors from registers.
2106 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2107 N1.getNumOperands() > 0) {
2108 unsigned Factor =
2109 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2110 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2111 N1.getOperand(N2C->getValue() / Factor),
2112 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2113 }
2114
2115 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2116 // expanding large vector constants.
2117 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2118 return N1.getOperand(N2C->getValue());
2119
2120 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2121 // operations are lowered to scalars.
2122 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2123 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2124 if (IEC == N2C)
2125 return N1.getOperand(1);
2126 else
2127 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2128 }
2129 break;
2130 case ISD::EXTRACT_ELEMENT:
2131 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002132
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002133 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2134 // 64-bit integers into 32-bit parts. Instead of building the extract of
2135 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2136 if (N1.getOpcode() == ISD::BUILD_PAIR)
2137 return N1.getOperand(N2C->getValue());
2138
2139 // EXTRACT_ELEMENT of a constant int is also very common.
2140 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2141 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2142 return getConstant(C->getValue() >> Shift, VT);
2143 }
2144 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002145 case ISD::EXTRACT_SUBVECTOR:
2146 if (N1.getValueType() == VT) // Trivial extraction.
2147 return N1;
2148 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002149 }
2150
2151 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002152 if (N2C) {
2153 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
2154 switch (Opcode) {
2155 case ISD::ADD: return getConstant(C1 + C2, VT);
2156 case ISD::SUB: return getConstant(C1 - C2, VT);
2157 case ISD::MUL: return getConstant(C1 * C2, VT);
2158 case ISD::UDIV:
2159 if (C2) return getConstant(C1 / C2, VT);
2160 break;
2161 case ISD::UREM :
2162 if (C2) return getConstant(C1 % C2, VT);
2163 break;
2164 case ISD::SDIV :
2165 if (C2) return getConstant(N1C->getSignExtended() /
2166 N2C->getSignExtended(), VT);
2167 break;
2168 case ISD::SREM :
2169 if (C2) return getConstant(N1C->getSignExtended() %
2170 N2C->getSignExtended(), VT);
2171 break;
2172 case ISD::AND : return getConstant(C1 & C2, VT);
2173 case ISD::OR : return getConstant(C1 | C2, VT);
2174 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00002175 case ISD::SHL : return getConstant(C1 << C2, VT);
2176 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00002177 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00002178 case ISD::ROTL :
2179 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
2180 VT);
2181 case ISD::ROTR :
2182 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
2183 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002184 default: break;
2185 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002186 } else { // Cannonicalize constant to RHS if commutative
2187 if (isCommutativeBinOp(Opcode)) {
2188 std::swap(N1C, N2C);
2189 std::swap(N1, N2);
2190 }
2191 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002192 }
2193
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002194 // Constant fold FP operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002195 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2196 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00002197 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002198 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2199 // Cannonicalize constant to RHS if commutative
2200 std::swap(N1CFP, N2CFP);
2201 std::swap(N1, N2);
2202 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002203 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2204 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002205 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002206 case ISD::FADD:
2207 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002208 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002209 return getConstantFP(V1, VT);
2210 break;
2211 case ISD::FSUB:
2212 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2213 if (s!=APFloat::opInvalidOp)
2214 return getConstantFP(V1, VT);
2215 break;
2216 case ISD::FMUL:
2217 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2218 if (s!=APFloat::opInvalidOp)
2219 return getConstantFP(V1, VT);
2220 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002221 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002222 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2223 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2224 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002225 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002226 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002227 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2228 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2229 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002230 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002231 case ISD::FCOPYSIGN:
2232 V1.copySign(V2);
2233 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002234 default: break;
2235 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002236 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002237 }
Chris Lattner62b57722006-04-20 05:39:12 +00002238
2239 // Canonicalize an UNDEF to the RHS, even over a constant.
2240 if (N1.getOpcode() == ISD::UNDEF) {
2241 if (isCommutativeBinOp(Opcode)) {
2242 std::swap(N1, N2);
2243 } else {
2244 switch (Opcode) {
2245 case ISD::FP_ROUND_INREG:
2246 case ISD::SIGN_EXTEND_INREG:
2247 case ISD::SUB:
2248 case ISD::FSUB:
2249 case ISD::FDIV:
2250 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002251 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002252 return N1; // fold op(undef, arg2) -> undef
2253 case ISD::UDIV:
2254 case ISD::SDIV:
2255 case ISD::UREM:
2256 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002257 case ISD::SRL:
2258 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002259 if (!MVT::isVector(VT))
2260 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2261 // For vectors, we can't easily build an all zero vector, just return
2262 // the LHS.
2263 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002264 }
2265 }
2266 }
2267
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002268 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002269 if (N2.getOpcode() == ISD::UNDEF) {
2270 switch (Opcode) {
2271 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002272 case ISD::ADDC:
2273 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002274 case ISD::SUB:
2275 case ISD::FADD:
2276 case ISD::FSUB:
2277 case ISD::FMUL:
2278 case ISD::FDIV:
2279 case ISD::FREM:
2280 case ISD::UDIV:
2281 case ISD::SDIV:
2282 case ISD::UREM:
2283 case ISD::SREM:
2284 case ISD::XOR:
2285 return N2; // fold op(arg1, undef) -> undef
2286 case ISD::MUL:
2287 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002288 case ISD::SRL:
2289 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002290 if (!MVT::isVector(VT))
2291 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2292 // For vectors, we can't easily build an all zero vector, just return
2293 // the LHS.
2294 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002295 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00002296 if (!MVT::isVector(VT))
2297 return getConstant(MVT::getIntVTBitMask(VT), VT);
2298 // For vectors, we can't easily build an all one vector, just return
2299 // the LHS.
2300 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002301 case ISD::SRA:
2302 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002303 }
2304 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002305
Chris Lattner27e9b412005-05-11 18:57:39 +00002306 // Memoize this node if possible.
2307 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002308 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002309 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002310 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002311 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002312 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002313 void *IP = 0;
2314 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2315 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002316 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002317 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002318 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002319 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002320 }
2321
Chris Lattnerc3aae252005-01-07 07:46:32 +00002322 AllNodes.push_back(N);
2323 return SDOperand(N, 0);
2324}
2325
Chris Lattnerc3aae252005-01-07 07:46:32 +00002326SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2327 SDOperand N1, SDOperand N2, SDOperand N3) {
2328 // Perform various simplifications.
2329 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2330 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002331 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002332 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002333 // Use FoldSetCC to simplify SETCC's.
2334 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002335 if (Simp.Val) return Simp;
2336 break;
2337 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002338 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002339 if (N1C) {
2340 if (N1C->getValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002341 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002342 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002343 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002344 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002345
2346 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002347 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002348 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002349 if (N2C) {
Chris Lattner5351e9b2005-01-07 22:49:57 +00002350 if (N2C->getValue()) // Unconditional branch
2351 return getNode(ISD::BR, MVT::Other, N1, N3);
2352 else
2353 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002354 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002355 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002356 case ISD::VECTOR_SHUFFLE:
2357 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2358 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2359 N3.getOpcode() == ISD::BUILD_VECTOR &&
2360 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2361 "Illegal VECTOR_SHUFFLE node!");
2362 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002363 case ISD::BIT_CONVERT:
2364 // Fold bit_convert nodes from a type to themselves.
2365 if (N1.getValueType() == VT)
2366 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002367 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002368 }
2369
Chris Lattner43247a12005-08-25 19:12:10 +00002370 // Memoize node if it doesn't produce a flag.
2371 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002372 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002373 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002374 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002375 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002376 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002377 void *IP = 0;
2378 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2379 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002380 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002381 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002382 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002383 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002384 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002385 AllNodes.push_back(N);
2386 return SDOperand(N, 0);
2387}
2388
2389SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002390 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002391 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002392 SDOperand Ops[] = { N1, N2, N3, N4 };
2393 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002394}
2395
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002396SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2397 SDOperand N1, SDOperand N2, SDOperand N3,
2398 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002399 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2400 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002401}
2402
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002403SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2404 SDOperand Src, SDOperand Size,
2405 SDOperand Align,
2406 SDOperand AlwaysInline) {
2407 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2408 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2409}
2410
2411SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2412 SDOperand Src, SDOperand Size,
2413 SDOperand Align,
2414 SDOperand AlwaysInline) {
2415 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2416 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2417}
2418
2419SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2420 SDOperand Src, SDOperand Size,
2421 SDOperand Align,
2422 SDOperand AlwaysInline) {
2423 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2424 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2425}
2426
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002427SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002428 SDOperand Ptr, SDOperand Cmp,
2429 SDOperand Swp, MVT::ValueType VT) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002430 assert(Opcode == ISD::ATOMIC_LCS && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002431 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
2432 SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002433 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002434 SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002435 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
2436 ID.AddInteger((unsigned int)VT);
2437 void* IP = 0;
2438 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2439 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002440 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002441 CSEMap.InsertNode(N, IP);
2442 AllNodes.push_back(N);
2443 return SDOperand(N, 0);
2444}
2445
2446SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002447 SDOperand Ptr, SDOperand Val,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002448 MVT::ValueType VT) {
2449 assert((Opcode == ISD::ATOMIC_LAS || Opcode == ISD::ATOMIC_SWAP)
2450 && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002451 SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002452 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002453 SDOperand Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002454 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2455 ID.AddInteger((unsigned int)VT);
2456 void* IP = 0;
2457 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2458 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002459 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002460 CSEMap.InsertNode(N, IP);
2461 AllNodes.push_back(N);
2462 return SDOperand(N, 0);
2463}
2464
Evan Cheng7038daf2005-12-10 00:37:58 +00002465SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2466 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002467 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002468 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002469 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2470 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002471 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002472 Ty = MVT::getTypeForValueType(VT);
2473 } else if (SV) {
2474 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2475 assert(PT && "Value for load must be a pointer");
2476 Ty = PT->getElementType();
2477 }
2478 assert(Ty && "Could not get type information for load");
2479 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2480 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002481 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002482 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002483 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002484 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002485 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002486 ID.AddInteger(ISD::UNINDEXED);
2487 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002488 ID.AddInteger((unsigned int)VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002489 ID.AddInteger(Alignment);
2490 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002491 void *IP = 0;
2492 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2493 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002494 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002495 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2496 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002497 CSEMap.InsertNode(N, IP);
2498 AllNodes.push_back(N);
2499 return SDOperand(N, 0);
2500}
2501
2502SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002503 SDOperand Chain, SDOperand Ptr,
2504 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002505 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002506 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002507 // If they are asking for an extending load from/to the same thing, return a
2508 // normal load.
2509 if (VT == EVT)
Duncan Sands5d868b12007-10-19 13:05:40 +00002510 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00002511
2512 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002513 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002514 else
Duncan Sandsaf47b112007-10-16 09:56:48 +00002515 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2516 "Should only be an extending load, not truncating!");
Evan Cheng466685d2006-10-09 20:57:25 +00002517 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2518 "Cannot sign/zero extend a FP/Vector load!");
2519 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2520 "Cannot convert from FP to Int or Int -> FP!");
2521
Dan Gohman575e2f42007-06-04 15:49:41 +00002522 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2523 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002524 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002525 Ty = MVT::getTypeForValueType(VT);
2526 } else if (SV) {
2527 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2528 assert(PT && "Value for load must be a pointer");
2529 Ty = PT->getElementType();
2530 }
2531 assert(Ty && "Could not get type information for load");
2532 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2533 }
Evan Cheng466685d2006-10-09 20:57:25 +00002534 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002535 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002536 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002537 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002538 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002539 ID.AddInteger(ISD::UNINDEXED);
2540 ID.AddInteger(ExtType);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002541 ID.AddInteger((unsigned int)EVT);
Evan Cheng466685d2006-10-09 20:57:25 +00002542 ID.AddInteger(Alignment);
2543 ID.AddInteger(isVolatile);
2544 void *IP = 0;
2545 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2546 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002547 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002548 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002549 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002550 AllNodes.push_back(N);
2551 return SDOperand(N, 0);
2552}
2553
Evan Cheng144d8f02006-11-09 17:55:04 +00002554SDOperand
2555SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2556 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002557 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002558 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2559 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002560 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002561 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002562 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002563 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002564 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002565 ID.AddInteger(AM);
2566 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002567 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng2caccca2006-10-17 21:14:32 +00002568 ID.AddInteger(LD->getAlignment());
2569 ID.AddInteger(LD->isVolatile());
2570 void *IP = 0;
2571 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2572 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002573 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002574 LD->getExtensionType(), LD->getMemoryVT(),
Evan Cheng2caccca2006-10-17 21:14:32 +00002575 LD->getSrcValue(), LD->getSrcValueOffset(),
2576 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002577 CSEMap.InsertNode(N, IP);
2578 AllNodes.push_back(N);
2579 return SDOperand(N, 0);
2580}
2581
Jeff Cohend41b30d2006-11-05 19:31:28 +00002582SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002583 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002584 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002585 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002586
Dan Gohman575e2f42007-06-04 15:49:41 +00002587 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2588 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002589 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002590 Ty = MVT::getTypeForValueType(VT);
2591 } else if (SV) {
2592 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2593 assert(PT && "Value for store must be a pointer");
2594 Ty = PT->getElementType();
2595 }
2596 assert(Ty && "Could not get type information for store");
2597 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2598 }
Evan Chengad071e12006-10-05 22:57:11 +00002599 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002600 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002601 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002602 FoldingSetNodeID ID;
2603 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002604 ID.AddInteger(ISD::UNINDEXED);
2605 ID.AddInteger(false);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002606 ID.AddInteger((unsigned int)VT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002607 ID.AddInteger(Alignment);
2608 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002609 void *IP = 0;
2610 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2611 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002612 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002613 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002614 CSEMap.InsertNode(N, IP);
2615 AllNodes.push_back(N);
2616 return SDOperand(N, 0);
2617}
2618
Jeff Cohend41b30d2006-11-05 19:31:28 +00002619SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002620 SDOperand Ptr, const Value *SV,
2621 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002622 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002623 MVT::ValueType VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002624
2625 if (VT == SVT)
2626 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002627
Duncan Sandsaf47b112007-10-16 09:56:48 +00002628 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2629 "Not a truncation?");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002630 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2631 "Can't do FP-INT conversion!");
2632
Dan Gohman575e2f42007-06-04 15:49:41 +00002633 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2634 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002635 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002636 Ty = MVT::getTypeForValueType(VT);
2637 } else if (SV) {
2638 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2639 assert(PT && "Value for store must be a pointer");
2640 Ty = PT->getElementType();
2641 }
2642 assert(Ty && "Could not get type information for store");
2643 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2644 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002645 SDVTList VTs = getVTList(MVT::Other);
2646 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002647 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002648 FoldingSetNodeID ID;
2649 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002650 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002651 ID.AddInteger(1);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002652 ID.AddInteger((unsigned int)SVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002653 ID.AddInteger(Alignment);
2654 ID.AddInteger(isVolatile);
2655 void *IP = 0;
2656 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2657 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002658 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002659 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002660 CSEMap.InsertNode(N, IP);
2661 AllNodes.push_back(N);
2662 return SDOperand(N, 0);
2663}
2664
Evan Cheng144d8f02006-11-09 17:55:04 +00002665SDOperand
2666SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2667 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002668 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2669 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2670 "Store is already a indexed store!");
2671 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2672 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2673 FoldingSetNodeID ID;
2674 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2675 ID.AddInteger(AM);
2676 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002677 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng9109fb12006-11-05 09:30:09 +00002678 ID.AddInteger(ST->getAlignment());
2679 ID.AddInteger(ST->isVolatile());
2680 void *IP = 0;
2681 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2682 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002683 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002684 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng9109fb12006-11-05 09:30:09 +00002685 ST->getSrcValue(), ST->getSrcValueOffset(),
2686 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002687 CSEMap.InsertNode(N, IP);
2688 AllNodes.push_back(N);
2689 return SDOperand(N, 0);
2690}
2691
Nate Begemanacc398c2006-01-25 18:21:52 +00002692SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2693 SDOperand Chain, SDOperand Ptr,
2694 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002695 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002696 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002697}
2698
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002699SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002700 const SDOperand *Ops, unsigned NumOps) {
2701 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002702 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002703 case 1: return getNode(Opcode, VT, Ops[0]);
2704 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2705 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002706 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002707 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002708
Chris Lattneref847df2005-04-09 03:27:28 +00002709 switch (Opcode) {
2710 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002711 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002712 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002713 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2714 "LHS and RHS of condition must have same type!");
2715 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2716 "True and False arms of SelectCC must have same type!");
2717 assert(Ops[2].getValueType() == VT &&
2718 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002719 break;
2720 }
2721 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002722 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002723 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2724 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002725 break;
2726 }
Chris Lattneref847df2005-04-09 03:27:28 +00002727 }
2728
Chris Lattner385328c2005-05-14 07:42:29 +00002729 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002730 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002731 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002732 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002733 FoldingSetNodeID ID;
2734 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002735 void *IP = 0;
2736 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2737 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002738 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002739 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002740 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002741 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002742 }
Chris Lattneref847df2005-04-09 03:27:28 +00002743 AllNodes.push_back(N);
2744 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002745}
2746
Chris Lattner89c34632005-05-14 06:20:26 +00002747SDOperand SelectionDAG::getNode(unsigned Opcode,
2748 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002749 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002750 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2751 Ops, NumOps);
2752}
2753
2754SDOperand SelectionDAG::getNode(unsigned Opcode,
2755 const MVT::ValueType *VTs, unsigned NumVTs,
2756 const SDOperand *Ops, unsigned NumOps) {
2757 if (NumVTs == 1)
2758 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002759 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2760}
2761
2762SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2763 const SDOperand *Ops, unsigned NumOps) {
2764 if (VTList.NumVTs == 1)
2765 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002766
Chris Lattner5f056bf2005-07-10 01:55:33 +00002767 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002768 // FIXME: figure out how to safely handle things like
2769 // int foo(int x) { return 1 << (x & 255); }
2770 // int bar() { return foo(256); }
2771#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002772 case ISD::SRA_PARTS:
2773 case ISD::SRL_PARTS:
2774 case ISD::SHL_PARTS:
2775 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002776 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002777 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2778 else if (N3.getOpcode() == ISD::AND)
2779 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2780 // If the and is only masking out bits that cannot effect the shift,
2781 // eliminate the and.
2782 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2783 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2784 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2785 }
2786 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002787#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002788 }
Chris Lattner89c34632005-05-14 06:20:26 +00002789
Chris Lattner43247a12005-08-25 19:12:10 +00002790 // Memoize the node unless it returns a flag.
2791 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002792 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002793 FoldingSetNodeID ID;
2794 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002795 void *IP = 0;
2796 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2797 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002798 if (NumOps == 1)
2799 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2800 else if (NumOps == 2)
2801 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2802 else if (NumOps == 3)
2803 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2804 else
2805 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002806 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002807 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002808 if (NumOps == 1)
2809 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2810 else if (NumOps == 2)
2811 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2812 else if (NumOps == 3)
2813 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2814 else
2815 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002816 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002817 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002818 return SDOperand(N, 0);
2819}
2820
Dan Gohman08ce9762007-10-08 15:49:58 +00002821SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2822 return getNode(Opcode, VTList, 0, 0);
2823}
2824
2825SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2826 SDOperand N1) {
2827 SDOperand Ops[] = { N1 };
2828 return getNode(Opcode, VTList, Ops, 1);
2829}
2830
2831SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2832 SDOperand N1, SDOperand N2) {
2833 SDOperand Ops[] = { N1, N2 };
2834 return getNode(Opcode, VTList, Ops, 2);
2835}
2836
2837SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2838 SDOperand N1, SDOperand N2, SDOperand N3) {
2839 SDOperand Ops[] = { N1, N2, N3 };
2840 return getNode(Opcode, VTList, Ops, 3);
2841}
2842
2843SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2844 SDOperand N1, SDOperand N2, SDOperand N3,
2845 SDOperand N4) {
2846 SDOperand Ops[] = { N1, N2, N3, N4 };
2847 return getNode(Opcode, VTList, Ops, 4);
2848}
2849
2850SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2851 SDOperand N1, SDOperand N2, SDOperand N3,
2852 SDOperand N4, SDOperand N5) {
2853 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2854 return getNode(Opcode, VTList, Ops, 5);
2855}
2856
Chris Lattner70046e92006-08-15 17:46:01 +00002857SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00002858 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002859}
2860
Chris Lattner70046e92006-08-15 17:46:01 +00002861SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002862 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2863 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002864 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002865 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002866 }
2867 std::vector<MVT::ValueType> V;
2868 V.push_back(VT1);
2869 V.push_back(VT2);
2870 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002871 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002872}
Chris Lattner70046e92006-08-15 17:46:01 +00002873SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2874 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002875 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002876 E = VTList.end(); I != E; ++I) {
2877 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2878 (*I)[2] == VT3)
2879 return makeVTList(&(*I)[0], 3);
2880 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002881 std::vector<MVT::ValueType> V;
2882 V.push_back(VT1);
2883 V.push_back(VT2);
2884 V.push_back(VT3);
2885 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002886 return makeVTList(&(*VTList.begin())[0], 3);
2887}
2888
2889SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2890 switch (NumVTs) {
2891 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002892 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002893 case 2: return getVTList(VTs[0], VTs[1]);
2894 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2895 default: break;
2896 }
2897
2898 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2899 E = VTList.end(); I != E; ++I) {
2900 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2901
2902 bool NoMatch = false;
2903 for (unsigned i = 2; i != NumVTs; ++i)
2904 if (VTs[i] != (*I)[i]) {
2905 NoMatch = true;
2906 break;
2907 }
2908 if (!NoMatch)
2909 return makeVTList(&*I->begin(), NumVTs);
2910 }
2911
2912 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2913 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002914}
2915
2916
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002917/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2918/// specified operands. If the resultant node already exists in the DAG,
2919/// this does not modify the specified node, instead it returns the node that
2920/// already exists. If the resultant node does not exist in the DAG, the
2921/// input node is returned. As a degenerate case, if you specify the same
2922/// input operands as the node already has, the input node is returned.
2923SDOperand SelectionDAG::
2924UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2925 SDNode *N = InN.Val;
2926 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2927
2928 // Check to see if there is no change.
2929 if (Op == N->getOperand(0)) return InN;
2930
2931 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002932 void *InsertPos = 0;
2933 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2934 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002935
2936 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002937 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002938 RemoveNodeFromCSEMaps(N);
2939
2940 // Now we update the operands.
2941 N->OperandList[0].Val->removeUser(N);
2942 Op.Val->addUser(N);
2943 N->OperandList[0] = Op;
2944
2945 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002946 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002947 return InN;
2948}
2949
2950SDOperand SelectionDAG::
2951UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2952 SDNode *N = InN.Val;
2953 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2954
2955 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002956 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2957 return InN; // No operands changed, just return the input node.
2958
2959 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002960 void *InsertPos = 0;
2961 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2962 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002963
2964 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002965 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002966 RemoveNodeFromCSEMaps(N);
2967
2968 // Now we update the operands.
2969 if (N->OperandList[0] != Op1) {
2970 N->OperandList[0].Val->removeUser(N);
2971 Op1.Val->addUser(N);
2972 N->OperandList[0] = Op1;
2973 }
2974 if (N->OperandList[1] != Op2) {
2975 N->OperandList[1].Val->removeUser(N);
2976 Op2.Val->addUser(N);
2977 N->OperandList[1] = Op2;
2978 }
2979
2980 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002981 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002982 return InN;
2983}
2984
2985SDOperand SelectionDAG::
2986UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002987 SDOperand Ops[] = { Op1, Op2, Op3 };
2988 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002989}
2990
2991SDOperand SelectionDAG::
2992UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2993 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002994 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2995 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002996}
2997
2998SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002999UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3000 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003001 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
3002 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003003}
3004
3005
3006SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003007UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003008 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003009 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003010 "Update with wrong number of operands");
3011
3012 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003013 bool AnyChange = false;
3014 for (unsigned i = 0; i != NumOps; ++i) {
3015 if (Ops[i] != N->getOperand(i)) {
3016 AnyChange = true;
3017 break;
3018 }
3019 }
3020
3021 // No operands changed, just return the input node.
3022 if (!AnyChange) return InN;
3023
3024 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003025 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003026 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00003027 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003028
3029 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003030 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003031 RemoveNodeFromCSEMaps(N);
3032
3033 // Now we update the operands.
3034 for (unsigned i = 0; i != NumOps; ++i) {
3035 if (N->OperandList[i] != Ops[i]) {
3036 N->OperandList[i].Val->removeUser(N);
3037 Ops[i].Val->addUser(N);
3038 N->OperandList[i] = Ops[i];
3039 }
3040 }
3041
3042 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003043 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003044 return InN;
3045}
3046
3047
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003048/// MorphNodeTo - This frees the operands of the current node, resets the
3049/// opcode, types, and operands to the specified value. This should only be
3050/// used by the SelectionDAG class.
3051void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
3052 const SDOperand *Ops, unsigned NumOps) {
3053 NodeType = Opc;
3054 ValueList = L.VTs;
3055 NumValues = L.NumVTs;
3056
3057 // Clear the operands list, updating used nodes to remove this from their
3058 // use list.
3059 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3060 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00003061
3062 // If NumOps is larger than the # of operands we currently have, reallocate
3063 // the operand list.
3064 if (NumOps > NumOperands) {
3065 if (OperandsNeedDelete)
3066 delete [] OperandList;
3067 OperandList = new SDOperand[NumOps];
3068 OperandsNeedDelete = true;
3069 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003070
3071 // Assign the new operands.
3072 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003073
3074 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3075 OperandList[i] = Ops[i];
3076 SDNode *N = OperandList[i].Val;
3077 N->Uses.push_back(this);
3078 }
3079}
Chris Lattner149c58c2005-08-16 18:17:10 +00003080
3081/// SelectNodeTo - These are used for target selectors to *mutate* the
3082/// specified node to have the specified return type, Target opcode, and
3083/// operands. Note that target opcodes are stored as
3084/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003085///
3086/// Note that SelectNodeTo returns the resultant node. If there is already a
3087/// node of the specified opcode and operands, it returns that node instead of
3088/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00003089SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3090 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003091 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003092 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003093 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00003094 void *IP = 0;
3095 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003096 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00003097
Chris Lattner7651fa42005-08-24 23:00:29 +00003098 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003099
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003100 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003101
Chris Lattner4a283e92006-08-11 18:38:11 +00003102 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003103 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00003104}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003105
Evan Cheng95514ba2006-08-26 08:00:10 +00003106SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3107 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003108 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003109 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003110 SDOperand Ops[] = { Op1 };
3111
Jim Laskey583bd472006-10-27 23:46:08 +00003112 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003113 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003114 void *IP = 0;
3115 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003116 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003117
Chris Lattner149c58c2005-08-16 18:17:10 +00003118 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003119 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003120 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003121 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003122}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003123
Evan Cheng95514ba2006-08-26 08:00:10 +00003124SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3125 MVT::ValueType VT, SDOperand Op1,
3126 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003127 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003128 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003129 SDOperand Ops[] = { Op1, Op2 };
3130
Jim Laskey583bd472006-10-27 23:46:08 +00003131 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003132 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003133 void *IP = 0;
3134 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003135 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003136
Chris Lattner149c58c2005-08-16 18:17:10 +00003137 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003138
Chris Lattner63e3f142007-02-04 07:28:00 +00003139 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003140
Chris Lattnera5682852006-08-07 23:03:03 +00003141 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003142 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003143}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003144
Evan Cheng95514ba2006-08-26 08:00:10 +00003145SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3146 MVT::ValueType VT, SDOperand Op1,
3147 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003148 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003149 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003150 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003151 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003152 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003153 void *IP = 0;
3154 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003155 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003156
Chris Lattner149c58c2005-08-16 18:17:10 +00003157 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003158
Chris Lattner63e3f142007-02-04 07:28:00 +00003159 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003160
Chris Lattnera5682852006-08-07 23:03:03 +00003161 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003162 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003163}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003164
Evan Cheng95514ba2006-08-26 08:00:10 +00003165SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00003166 MVT::ValueType VT, const SDOperand *Ops,
3167 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003168 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003169 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003170 FoldingSetNodeID ID;
3171 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003172 void *IP = 0;
3173 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003174 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003175
Chris Lattner6b09a292005-08-21 18:49:33 +00003176 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003177 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003178
Chris Lattnera5682852006-08-07 23:03:03 +00003179 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003180 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003181}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003182
Evan Cheng95514ba2006-08-26 08:00:10 +00003183SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3184 MVT::ValueType VT1, MVT::ValueType VT2,
3185 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003186 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003187 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003188 SDOperand Ops[] = { Op1, Op2 };
3189 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003190 void *IP = 0;
3191 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003192 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003193
Chris Lattner0fb094f2005-11-19 01:44:53 +00003194 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003195 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003196 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003197 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003198}
3199
Evan Cheng95514ba2006-08-26 08:00:10 +00003200SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3201 MVT::ValueType VT1, MVT::ValueType VT2,
3202 SDOperand Op1, SDOperand Op2,
3203 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003204 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003205 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003206 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003207 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003208 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003209 void *IP = 0;
3210 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003211 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003212
Chris Lattner0fb094f2005-11-19 01:44:53 +00003213 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003214
Chris Lattner63e3f142007-02-04 07:28:00 +00003215 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003216 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003217 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003218}
3219
Chris Lattner0fb094f2005-11-19 01:44:53 +00003220
Evan Cheng6ae46c42006-02-09 07:15:23 +00003221/// getTargetNode - These are used for target selectors to create a new node
3222/// with specified return type(s), target opcode, and operands.
3223///
3224/// Note that getTargetNode returns the resultant node. If there is already a
3225/// node of the specified opcode and operands, it returns that node instead of
3226/// the current one.
3227SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3228 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3229}
3230SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3231 SDOperand Op1) {
3232 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3233}
3234SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3235 SDOperand Op1, SDOperand Op2) {
3236 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3237}
3238SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003239 SDOperand Op1, SDOperand Op2,
3240 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003241 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3242}
3243SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003244 const SDOperand *Ops, unsigned NumOps) {
3245 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003246}
3247SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003248 MVT::ValueType VT2) {
3249 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3250 SDOperand Op;
3251 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3252}
3253SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003254 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00003255 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003256 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003257}
3258SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003259 MVT::ValueType VT2, SDOperand Op1,
3260 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003261 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003262 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003263 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003264}
3265SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003266 MVT::ValueType VT2, SDOperand Op1,
3267 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00003268 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003269 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003270 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003271}
Evan Cheng694481e2006-08-27 08:08:54 +00003272SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3273 MVT::ValueType VT2,
3274 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00003275 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003276 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003277}
3278SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3279 MVT::ValueType VT2, MVT::ValueType VT3,
3280 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003281 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003282 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003283 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003284}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003285SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3286 MVT::ValueType VT2, MVT::ValueType VT3,
3287 SDOperand Op1, SDOperand Op2,
3288 SDOperand Op3) {
3289 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3290 SDOperand Ops[] = { Op1, Op2, Op3 };
3291 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3292}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003293SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00003294 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003295 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00003296 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3297 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003298}
Evan Cheng05e69c12007-09-12 23:39:49 +00003299SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3300 MVT::ValueType VT2, MVT::ValueType VT3,
3301 MVT::ValueType VT4,
3302 const SDOperand *Ops, unsigned NumOps) {
3303 std::vector<MVT::ValueType> VTList;
3304 VTList.push_back(VT1);
3305 VTList.push_back(VT2);
3306 VTList.push_back(VT3);
3307 VTList.push_back(VT4);
3308 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3309 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3310}
Evan Cheng39305cf2007-10-05 01:10:49 +00003311SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3312 std::vector<MVT::ValueType> &ResultTys,
3313 const SDOperand *Ops, unsigned NumOps) {
3314 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3315 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3316 Ops, NumOps).Val;
3317}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003318
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003319
Evan Cheng99157a02006-08-07 22:13:29 +00003320/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003321/// This can cause recursive merging of nodes in the DAG.
3322///
Chris Lattner11d049c2008-02-03 03:35:22 +00003323/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00003324///
Chris Lattner11d049c2008-02-03 03:35:22 +00003325void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003326 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003327 SDNode *From = FromN.Val;
Chris Lattner11d049c2008-02-03 03:35:22 +00003328 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00003329 "Cannot replace with this method!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003330 assert(From != To.Val && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00003331
Chris Lattner8b8749f2005-08-17 19:00:20 +00003332 while (!From->use_empty()) {
3333 // Process users until they are all gone.
3334 SDNode *U = *From->use_begin();
3335
3336 // This node is about to morph, remove its old self from the CSE maps.
3337 RemoveNodeFromCSEMaps(U);
3338
Chris Lattner65113b22005-11-08 22:07:03 +00003339 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3340 I != E; ++I)
3341 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003342 From->removeUser(U);
Chris Lattner11d049c2008-02-03 03:35:22 +00003343 *I = To;
3344 To.Val->addUser(U);
Chris Lattner8b52f212005-08-26 18:36:28 +00003345 }
3346
3347 // Now that we have modified U, add it back to the CSE maps. If it already
3348 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003349 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003350 ReplaceAllUsesWith(U, Existing, UpdateListener);
3351 // U is now dead. Inform the listener if it exists and delete it.
3352 if (UpdateListener)
3353 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003354 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003355 } else {
3356 // If the node doesn't already exist, we updated it. Inform a listener if
3357 // it exists.
3358 if (UpdateListener)
3359 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003360 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003361 }
3362}
3363
3364/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3365/// This can cause recursive merging of nodes in the DAG.
3366///
3367/// This version assumes From/To have matching types and numbers of result
3368/// values.
3369///
Chris Lattner1e111c72005-09-07 05:37:01 +00003370void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003371 DAGUpdateListener *UpdateListener) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003372 assert(From != To && "Cannot replace uses of with self");
3373 assert(From->getNumValues() == To->getNumValues() &&
3374 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003375 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003376 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3377 UpdateListener);
Chris Lattner8b52f212005-08-26 18:36:28 +00003378
3379 while (!From->use_empty()) {
3380 // Process users until they are all gone.
3381 SDNode *U = *From->use_begin();
3382
3383 // This node is about to morph, remove its old self from the CSE maps.
3384 RemoveNodeFromCSEMaps(U);
3385
Chris Lattner65113b22005-11-08 22:07:03 +00003386 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3387 I != E; ++I)
3388 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003389 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003390 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003391 To->addUser(U);
3392 }
3393
3394 // Now that we have modified U, add it back to the CSE maps. If it already
3395 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003396 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003397 ReplaceAllUsesWith(U, Existing, UpdateListener);
3398 // U is now dead. Inform the listener if it exists and delete it.
3399 if (UpdateListener)
3400 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003401 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003402 } else {
3403 // If the node doesn't already exist, we updated it. Inform a listener if
3404 // it exists.
3405 if (UpdateListener)
3406 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003407 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003408 }
3409}
3410
Chris Lattner8b52f212005-08-26 18:36:28 +00003411/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3412/// This can cause recursive merging of nodes in the DAG.
3413///
3414/// This version can replace From with any result values. To must match the
3415/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003416void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003417 const SDOperand *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003418 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003419 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003420 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003421
3422 while (!From->use_empty()) {
3423 // Process users until they are all gone.
3424 SDNode *U = *From->use_begin();
3425
3426 // This node is about to morph, remove its old self from the CSE maps.
3427 RemoveNodeFromCSEMaps(U);
3428
Chris Lattner65113b22005-11-08 22:07:03 +00003429 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3430 I != E; ++I)
3431 if (I->Val == From) {
3432 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003433 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003434 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003435 ToOp.Val->addUser(U);
3436 }
3437
3438 // Now that we have modified U, add it back to the CSE maps. If it already
3439 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003440 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003441 ReplaceAllUsesWith(U, Existing, UpdateListener);
3442 // U is now dead. Inform the listener if it exists and delete it.
3443 if (UpdateListener)
3444 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003445 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003446 } else {
3447 // If the node doesn't already exist, we updated it. Inform a listener if
3448 // it exists.
3449 if (UpdateListener)
3450 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003451 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003452 }
3453}
3454
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003455namespace {
3456 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3457 /// any deleted nodes from the set passed into its constructor and recursively
3458 /// notifies another update listener if specified.
3459 class ChainedSetUpdaterListener :
3460 public SelectionDAG::DAGUpdateListener {
3461 SmallSetVector<SDNode*, 16> &Set;
3462 SelectionDAG::DAGUpdateListener *Chain;
3463 public:
3464 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3465 SelectionDAG::DAGUpdateListener *chain)
3466 : Set(set), Chain(chain) {}
3467
3468 virtual void NodeDeleted(SDNode *N) {
3469 Set.remove(N);
3470 if (Chain) Chain->NodeDeleted(N);
3471 }
3472 virtual void NodeUpdated(SDNode *N) {
3473 if (Chain) Chain->NodeUpdated(N);
3474 }
3475 };
3476}
3477
Chris Lattner012f2412006-02-17 21:58:01 +00003478/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3479/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003480/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner012f2412006-02-17 21:58:01 +00003481void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003482 DAGUpdateListener *UpdateListener){
Chris Lattner012f2412006-02-17 21:58:01 +00003483 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003484
Chris Lattner012f2412006-02-17 21:58:01 +00003485 // Handle the simple, trivial, case efficiently.
Chris Lattner11d049c2008-02-03 03:35:22 +00003486 if (From.Val->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003487 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00003488 return;
3489 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003490
3491 if (From.use_empty()) return;
3492
Chris Lattnercf5640b2007-02-04 00:14:31 +00003493 // Get all of the users of From.Val. We want these in a nice,
3494 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3495 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003496
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003497 // When one of the recursive merges deletes nodes from the graph, we need to
3498 // make sure that UpdateListener is notified *and* that the node is removed
3499 // from Users if present. CSUL does this.
3500 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00003501
Chris Lattner012f2412006-02-17 21:58:01 +00003502 while (!Users.empty()) {
3503 // We know that this user uses some value of From. If it is the right
3504 // value, update it.
3505 SDNode *User = Users.back();
3506 Users.pop_back();
3507
Chris Lattner01d029b2007-10-15 06:10:22 +00003508 // Scan for an operand that matches From.
3509 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3510 for (; Op != E; ++Op)
3511 if (*Op == From) break;
3512
3513 // If there are no matches, the user must use some other result of From.
3514 if (Op == E) continue;
3515
3516 // Okay, we know this user needs to be updated. Remove its old self
3517 // from the CSE maps.
3518 RemoveNodeFromCSEMaps(User);
3519
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003520 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00003521 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00003522 if (*Op == From) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003523 From.Val->removeUser(User);
3524 *Op = To;
3525 To.Val->addUser(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003526 }
3527 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003528
3529 // Now that we have modified User, add it back to the CSE maps. If it
3530 // already exists there, recursively merge the results together.
3531 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003532 if (!Existing) {
3533 if (UpdateListener) UpdateListener->NodeUpdated(User);
3534 continue; // Continue on to next user.
3535 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003536
3537 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003538 // to replace the dead one with the existing one. This can cause
Chris Lattner01d029b2007-10-15 06:10:22 +00003539 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003540 // can cause deletion of nodes that used the old value. To handle this, we
3541 // use CSUL to remove them from the Users set.
3542 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner01d029b2007-10-15 06:10:22 +00003543
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003544 // User is now dead. Notify a listener if present.
3545 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner01d029b2007-10-15 06:10:22 +00003546 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003547 }
3548}
3549
Chris Lattner7b2880c2005-08-24 22:44:39 +00003550
Evan Chenge6f35d82006-08-01 08:20:41 +00003551/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3552/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003553unsigned SelectionDAG::AssignNodeIds() {
3554 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003555 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3556 SDNode *N = I;
3557 N->setNodeId(Id++);
3558 }
3559 return Id;
3560}
3561
Evan Chenge6f35d82006-08-01 08:20:41 +00003562/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003563/// based on their topological order. It returns the maximum id and a vector
3564/// of the SDNodes* in assigned order by reference.
3565unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003566 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003567 std::vector<unsigned> InDegree(DAGSize);
3568 std::vector<SDNode*> Sources;
3569
3570 // Use a two pass approach to avoid using a std::map which is slow.
3571 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003572 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3573 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003574 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003575 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003576 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003577 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003578 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003579 }
3580
Evan Cheng99157a02006-08-07 22:13:29 +00003581 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003582 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003583 SDNode *N = Sources.back();
3584 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003585 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003586 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3587 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003588 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003589 if (Degree == 0)
3590 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003591 }
3592 }
3593
Evan Chengc384d6c2006-08-02 22:00:34 +00003594 // Second pass, assign the actual topological order as node ids.
3595 Id = 0;
3596 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3597 TI != TE; ++TI)
3598 (*TI)->setNodeId(Id++);
3599
3600 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003601}
3602
3603
Evan Cheng091cba12006-07-27 06:39:06 +00003604
Jim Laskey58b968b2005-08-17 20:08:02 +00003605//===----------------------------------------------------------------------===//
3606// SDNode Class
3607//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003608
Chris Lattner917d2c92006-07-19 00:00:37 +00003609// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003610void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003611void UnarySDNode::ANCHOR() {}
3612void BinarySDNode::ANCHOR() {}
3613void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003614void HandleSDNode::ANCHOR() {}
3615void StringSDNode::ANCHOR() {}
3616void ConstantSDNode::ANCHOR() {}
3617void ConstantFPSDNode::ANCHOR() {}
3618void GlobalAddressSDNode::ANCHOR() {}
3619void FrameIndexSDNode::ANCHOR() {}
3620void JumpTableSDNode::ANCHOR() {}
3621void ConstantPoolSDNode::ANCHOR() {}
3622void BasicBlockSDNode::ANCHOR() {}
3623void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00003624void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003625void RegisterSDNode::ANCHOR() {}
3626void ExternalSymbolSDNode::ANCHOR() {}
3627void CondCodeSDNode::ANCHOR() {}
3628void VTSDNode::ANCHOR() {}
3629void LoadSDNode::ANCHOR() {}
3630void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003631void AtomicSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003632
Chris Lattner48b85922007-02-04 02:41:42 +00003633HandleSDNode::~HandleSDNode() {
3634 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003635 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003636}
3637
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003638GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3639 MVT::ValueType VT, int o)
3640 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00003641 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003642 // Thread Local
3643 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3644 // Non Thread Local
3645 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3646 getSDVTList(VT)), Offset(o) {
3647 TheGlobal = const_cast<GlobalValue*>(GA);
3648}
Chris Lattner48b85922007-02-04 02:41:42 +00003649
Dan Gohman69de1932008-02-06 22:27:42 +00003650/// getMemOperand - Return a MemOperand object describing the memory
3651/// reference performed by this load or store.
3652MemOperand LSBaseSDNode::getMemOperand() const {
3653 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
3654 int Flags =
3655 getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
3656 if (IsVolatile) Flags |= MemOperand::MOVolatile;
3657
3658 // Check if the load references a frame index, and does not have
3659 // an SV attached.
3660 const FrameIndexSDNode *FI =
3661 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
3662 if (!getSrcValue() && FI)
Dan Gohman3069b872008-02-07 18:41:25 +00003663 return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
Dan Gohman69de1932008-02-06 22:27:42 +00003664 FI->getIndex(), Size, Alignment);
3665 else
3666 return MemOperand(getSrcValue(), Flags,
3667 getSrcValueOffset(), Size, Alignment);
3668}
3669
Jim Laskey583bd472006-10-27 23:46:08 +00003670/// Profile - Gather unique data for the node.
3671///
3672void SDNode::Profile(FoldingSetNodeID &ID) {
3673 AddNodeIDNode(ID, this);
3674}
3675
Chris Lattnera3255112005-11-08 23:30:28 +00003676/// getValueTypeList - Return a pointer to the specified value type.
3677///
Dan Gohman547ca532008-02-08 03:26:46 +00003678const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003679 if (MVT::isExtendedVT(VT)) {
3680 static std::set<MVT::ValueType> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00003681 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00003682 } else {
3683 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3684 VTs[VT] = VT;
3685 return &VTs[VT];
3686 }
Chris Lattnera3255112005-11-08 23:30:28 +00003687}
Duncan Sandsaf47b112007-10-16 09:56:48 +00003688
Chris Lattner5c884562005-01-12 18:37:47 +00003689/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3690/// indicated value. This method ignores uses of other values defined by this
3691/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003692bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003693 assert(Value < getNumValues() && "Bad value!");
3694
3695 // If there is only one value, this is easy.
3696 if (getNumValues() == 1)
3697 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00003698 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00003699
Evan Cheng4ee62112006-02-05 06:29:23 +00003700 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003701
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003702 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003703
Chris Lattnerf83482d2006-08-16 20:59:32 +00003704 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003705 SDNode *User = *UI;
3706 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003707 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003708 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3709 if (User->getOperand(i) == TheValue) {
3710 if (NUses == 0)
3711 return false; // too many uses
3712 --NUses;
3713 }
3714 }
3715
3716 // Found exactly the right number of uses?
3717 return NUses == 0;
3718}
3719
3720
Evan Cheng33d55952007-08-02 05:29:38 +00003721/// hasAnyUseOfValue - Return true if there are any use of the indicated
3722/// value. This method ignores uses of other values defined by this operation.
3723bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3724 assert(Value < getNumValues() && "Bad value!");
3725
Dan Gohman30359592008-01-29 13:02:09 +00003726 if (use_empty()) return false;
Evan Cheng33d55952007-08-02 05:29:38 +00003727
3728 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3729
3730 SmallPtrSet<SDNode*, 32> UsersHandled;
3731
3732 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3733 SDNode *User = *UI;
3734 if (User->getNumOperands() == 1 ||
3735 UsersHandled.insert(User)) // First time we've seen this?
3736 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3737 if (User->getOperand(i) == TheValue) {
3738 return true;
3739 }
3740 }
3741
3742 return false;
3743}
3744
3745
Evan Chenge6e97e62006-11-03 07:31:32 +00003746/// isOnlyUse - Return true if this node is the only use of N.
3747///
Evan Cheng4ee62112006-02-05 06:29:23 +00003748bool SDNode::isOnlyUse(SDNode *N) const {
3749 bool Seen = false;
3750 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3751 SDNode *User = *I;
3752 if (User == this)
3753 Seen = true;
3754 else
3755 return false;
3756 }
3757
3758 return Seen;
3759}
3760
Evan Chenge6e97e62006-11-03 07:31:32 +00003761/// isOperand - Return true if this node is an operand of N.
3762///
Evan Chengbfa284f2006-03-03 06:42:32 +00003763bool SDOperand::isOperand(SDNode *N) const {
3764 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3765 if (*this == N->getOperand(i))
3766 return true;
3767 return false;
3768}
3769
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003770bool SDNode::isOperand(SDNode *N) const {
3771 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3772 if (this == N->OperandList[i].Val)
3773 return true;
3774 return false;
3775}
Evan Cheng4ee62112006-02-05 06:29:23 +00003776
Chris Lattner572dee72008-01-16 05:49:24 +00003777/// reachesChainWithoutSideEffects - Return true if this operand (which must
3778/// be a chain) reaches the specified operand without crossing any
3779/// side-effecting instructions. In practice, this looks through token
3780/// factors and non-volatile loads. In order to remain efficient, this only
3781/// looks a couple of nodes in, it does not do an exhaustive search.
3782bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3783 unsigned Depth) const {
3784 if (*this == Dest) return true;
3785
3786 // Don't search too deeply, we just want to be able to see through
3787 // TokenFactor's etc.
3788 if (Depth == 0) return false;
3789
3790 // If this is a token factor, all inputs to the TF happen in parallel. If any
3791 // of the operands of the TF reach dest, then we can do the xform.
3792 if (getOpcode() == ISD::TokenFactor) {
3793 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3794 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3795 return true;
3796 return false;
3797 }
3798
3799 // Loads don't have side effects, look through them.
3800 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3801 if (!Ld->isVolatile())
3802 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3803 }
3804 return false;
3805}
3806
3807
Evan Chengc5fc57d2006-11-03 03:05:24 +00003808static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003809 SmallPtrSet<SDNode *, 32> &Visited) {
3810 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003811 return;
3812
3813 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3814 SDNode *Op = N->getOperand(i).Val;
3815 if (Op == P) {
3816 found = true;
3817 return;
3818 }
3819 findPredecessor(Op, P, found, Visited);
3820 }
3821}
3822
Evan Chenge6e97e62006-11-03 07:31:32 +00003823/// isPredecessor - Return true if this node is a predecessor of N. This node
3824/// is either an operand of N or it can be reached by recursively traversing
3825/// up the operands.
3826/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003827bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003828 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003829 bool found = false;
3830 findPredecessor(N, this, found, Visited);
3831 return found;
3832}
3833
Evan Chengc5484282006-10-04 00:56:09 +00003834uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3835 assert(Num < NumOperands && "Invalid child # of SDNode!");
3836 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3837}
3838
Reid Spencer577cc322007-04-01 07:32:19 +00003839std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003840 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003841 default:
3842 if (getOpcode() < ISD::BUILTIN_OP_END)
3843 return "<<Unknown DAG Node>>";
3844 else {
Evan Cheng72261582005-12-20 06:22:03 +00003845 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003846 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003847 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00003848 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00003849
Evan Cheng72261582005-12-20 06:22:03 +00003850 TargetLowering &TLI = G->getTargetLoweringInfo();
3851 const char *Name =
3852 TLI.getTargetNodeName(getOpcode());
3853 if (Name) return Name;
3854 }
3855
3856 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003857 }
3858
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003859 case ISD::MEMBARRIER: return "MemBarrier";
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003860 case ISD::ATOMIC_LCS: return "AtomicLCS";
3861 case ISD::ATOMIC_LAS: return "AtomicLAS";
3862 case ISD::ATOMIC_SWAP: return "AtomicSWAP";
Andrew Lenharth95762122005-03-31 21:24:06 +00003863 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003864 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003865 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00003866 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003867 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003868 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003869 case ISD::AssertSext: return "AssertSext";
3870 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003871
3872 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003873 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003874 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003875 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003876
3877 case ISD::Constant: return "Constant";
3878 case ISD::ConstantFP: return "ConstantFP";
3879 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003880 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003881 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003882 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003883 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003884 case ISD::RETURNADDR: return "RETURNADDR";
3885 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003886 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003887 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3888 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003889 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003890 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003891 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003892 case ISD::INTRINSIC_WO_CHAIN: {
3893 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3894 return Intrinsic::getName((Intrinsic::ID)IID);
3895 }
3896 case ISD::INTRINSIC_VOID:
3897 case ISD::INTRINSIC_W_CHAIN: {
3898 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003899 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003900 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003901
Chris Lattnerb2827b02006-03-19 00:52:58 +00003902 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003903 case ISD::TargetConstant: return "TargetConstant";
3904 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003905 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003906 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003907 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003908 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003909 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003910 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003911
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003912 case ISD::CopyToReg: return "CopyToReg";
3913 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003914 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003915 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003916 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003917 case ISD::LABEL: return "label";
Evan Chenga844bde2008-02-02 04:07:54 +00003918 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003919 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003920 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003921 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003922
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003923 // Unary operators
3924 case ISD::FABS: return "fabs";
3925 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003926 case ISD::FSQRT: return "fsqrt";
3927 case ISD::FSIN: return "fsin";
3928 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003929 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00003930 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003931
3932 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003933 case ISD::ADD: return "add";
3934 case ISD::SUB: return "sub";
3935 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003936 case ISD::MULHU: return "mulhu";
3937 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003938 case ISD::SDIV: return "sdiv";
3939 case ISD::UDIV: return "udiv";
3940 case ISD::SREM: return "srem";
3941 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00003942 case ISD::SMUL_LOHI: return "smul_lohi";
3943 case ISD::UMUL_LOHI: return "umul_lohi";
3944 case ISD::SDIVREM: return "sdivrem";
3945 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003946 case ISD::AND: return "and";
3947 case ISD::OR: return "or";
3948 case ISD::XOR: return "xor";
3949 case ISD::SHL: return "shl";
3950 case ISD::SRA: return "sra";
3951 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003952 case ISD::ROTL: return "rotl";
3953 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003954 case ISD::FADD: return "fadd";
3955 case ISD::FSUB: return "fsub";
3956 case ISD::FMUL: return "fmul";
3957 case ISD::FDIV: return "fdiv";
3958 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003959 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00003960 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003961
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003962 case ISD::SETCC: return "setcc";
3963 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003964 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003965 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003966 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003967 case ISD::CONCAT_VECTORS: return "concat_vectors";
3968 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003969 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003970 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003971 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003972 case ISD::ADDC: return "addc";
3973 case ISD::ADDE: return "adde";
3974 case ISD::SUBC: return "subc";
3975 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003976 case ISD::SHL_PARTS: return "shl_parts";
3977 case ISD::SRA_PARTS: return "sra_parts";
3978 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00003979
3980 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3981 case ISD::INSERT_SUBREG: return "insert_subreg";
3982
Chris Lattner7f644642005-04-28 21:44:03 +00003983 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003984 case ISD::SIGN_EXTEND: return "sign_extend";
3985 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003986 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003987 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003988 case ISD::TRUNCATE: return "truncate";
3989 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00003990 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00003991 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003992 case ISD::FP_EXTEND: return "fp_extend";
3993
3994 case ISD::SINT_TO_FP: return "sint_to_fp";
3995 case ISD::UINT_TO_FP: return "uint_to_fp";
3996 case ISD::FP_TO_SINT: return "fp_to_sint";
3997 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003998 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003999
4000 // Control flow instructions
4001 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00004002 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00004003 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004004 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00004005 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004006 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00004007 case ISD::CALLSEQ_START: return "callseq_start";
4008 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004009
4010 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00004011 case ISD::LOAD: return "load";
4012 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00004013 case ISD::VAARG: return "vaarg";
4014 case ISD::VACOPY: return "vacopy";
4015 case ISD::VAEND: return "vaend";
4016 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004017 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00004018 case ISD::EXTRACT_ELEMENT: return "extract_element";
4019 case ISD::BUILD_PAIR: return "build_pair";
4020 case ISD::STACKSAVE: return "stacksave";
4021 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004022 case ISD::TRAP: return "trap";
4023
Chris Lattner5a67afc2006-01-13 02:39:42 +00004024 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00004025 case ISD::MEMSET: return "memset";
4026 case ISD::MEMCPY: return "memcpy";
4027 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004028
Nate Begeman1b5db7a2006-01-16 08:07:10 +00004029 // Bit manipulation
4030 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00004031 case ISD::CTPOP: return "ctpop";
4032 case ISD::CTTZ: return "cttz";
4033 case ISD::CTLZ: return "ctlz";
4034
Chris Lattner36ce6912005-11-29 06:21:05 +00004035 // Debug info
4036 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00004037 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00004038
Duncan Sands36397f52007-07-27 12:58:54 +00004039 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00004040 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00004041
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004042 case ISD::CONDCODE:
4043 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004044 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004045 case ISD::SETOEQ: return "setoeq";
4046 case ISD::SETOGT: return "setogt";
4047 case ISD::SETOGE: return "setoge";
4048 case ISD::SETOLT: return "setolt";
4049 case ISD::SETOLE: return "setole";
4050 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004051
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004052 case ISD::SETO: return "seto";
4053 case ISD::SETUO: return "setuo";
4054 case ISD::SETUEQ: return "setue";
4055 case ISD::SETUGT: return "setugt";
4056 case ISD::SETUGE: return "setuge";
4057 case ISD::SETULT: return "setult";
4058 case ISD::SETULE: return "setule";
4059 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004060
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004061 case ISD::SETEQ: return "seteq";
4062 case ISD::SETGT: return "setgt";
4063 case ISD::SETGE: return "setge";
4064 case ISD::SETLT: return "setlt";
4065 case ISD::SETLE: return "setle";
4066 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004067 }
4068 }
4069}
Chris Lattnerc3aae252005-01-07 07:46:32 +00004070
Evan Cheng144d8f02006-11-09 17:55:04 +00004071const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00004072 switch (AM) {
4073 default:
4074 return "";
4075 case ISD::PRE_INC:
4076 return "<pre-inc>";
4077 case ISD::PRE_DEC:
4078 return "<pre-dec>";
4079 case ISD::POST_INC:
4080 return "<post-inc>";
4081 case ISD::POST_DEC:
4082 return "<post-dec>";
4083 }
4084}
4085
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004086void SDNode::dump() const { dump(0); }
4087void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00004088 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004089
4090 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004091 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00004092 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00004093 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00004094 else
Bill Wendling832171c2006-12-07 20:04:42 +00004095 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00004096 }
Bill Wendling832171c2006-12-07 20:04:42 +00004097 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004098
Bill Wendling832171c2006-12-07 20:04:42 +00004099 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004100 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004101 if (i) cerr << ", ";
4102 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004103 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00004104 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004105 }
4106
Evan Chengce254432007-12-11 02:08:35 +00004107 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4108 SDNode *Mask = getOperand(2).Val;
4109 cerr << "<";
4110 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4111 if (i) cerr << ",";
4112 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4113 cerr << "u";
4114 else
4115 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4116 }
4117 cerr << ">";
4118 }
4119
Chris Lattnerc3aae252005-01-07 07:46:32 +00004120 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004121 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004122 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004123 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4124 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4125 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4126 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4127 else {
4128 cerr << "<APFloat(";
4129 CSDN->getValueAPF().convertToAPInt().dump();
4130 cerr << ")>";
4131 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00004132 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00004133 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00004134 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00004135 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00004136 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00004137 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004138 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00004139 else
Bill Wendling832171c2006-12-07 20:04:42 +00004140 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004141 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004142 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00004143 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004144 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004145 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00004146 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00004147 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00004148 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00004149 else
Bill Wendling832171c2006-12-07 20:04:42 +00004150 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00004151 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004152 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00004153 else
Bill Wendling832171c2006-12-07 20:04:42 +00004154 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004155 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004156 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004157 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4158 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00004159 cerr << LBB->getName() << " ";
4160 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00004161 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004162 if (G && R->getReg() &&
4163 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +00004164 cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00004165 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00004166 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00004167 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004168 } else if (const ExternalSymbolSDNode *ES =
4169 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004170 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004171 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4172 if (M->getValue())
Dan Gohman69de1932008-02-06 22:27:42 +00004173 cerr << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004174 else
Dan Gohman69de1932008-02-06 22:27:42 +00004175 cerr << "<null>";
4176 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4177 if (M->MO.getValue())
4178 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4179 else
4180 cerr << "<null:" << M->MO.getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00004181 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00004182 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004183 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00004184 const Value *SrcValue = LD->getSrcValue();
4185 int SrcOffset = LD->getSrcValueOffset();
4186 cerr << " <";
4187 if (SrcValue)
4188 cerr << SrcValue;
4189 else
4190 cerr << "null";
4191 cerr << ":" << SrcOffset << ">";
4192
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004193 bool doExt = true;
4194 switch (LD->getExtensionType()) {
4195 default: doExt = false; break;
4196 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004197 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004198 break;
4199 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004200 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004201 break;
4202 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004203 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004204 break;
4205 }
4206 if (doExt)
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004207 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004208
Evan Cheng144d8f02006-11-09 17:55:04 +00004209 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004210 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004211 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004212 if (LD->isVolatile())
4213 cerr << " <volatile>";
4214 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004215 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004216 const Value *SrcValue = ST->getSrcValue();
4217 int SrcOffset = ST->getSrcValueOffset();
4218 cerr << " <";
4219 if (SrcValue)
4220 cerr << SrcValue;
4221 else
4222 cerr << "null";
4223 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004224
4225 if (ST->isTruncatingStore())
4226 cerr << " <trunc "
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004227 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004228
4229 const char *AM = getIndexedModeName(ST->getAddressingMode());
4230 if (*AM)
4231 cerr << " " << AM;
4232 if (ST->isVolatile())
4233 cerr << " <volatile>";
4234 cerr << " alignment=" << ST->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004235 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004236}
4237
Chris Lattnerde202b32005-11-09 23:47:37 +00004238static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004239 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4240 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004241 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004242 else
Bill Wendling832171c2006-12-07 20:04:42 +00004243 cerr << "\n" << std::string(indent+2, ' ')
4244 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004245
Chris Lattnerea946cd2005-01-09 20:38:33 +00004246
Bill Wendling832171c2006-12-07 20:04:42 +00004247 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004248 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004249}
4250
Chris Lattnerc3aae252005-01-07 07:46:32 +00004251void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004252 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004253 std::vector<const SDNode*> Nodes;
4254 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4255 I != E; ++I)
4256 Nodes.push_back(I);
4257
Chris Lattner49d24712005-01-09 20:26:36 +00004258 std::sort(Nodes.begin(), Nodes.end());
4259
4260 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004261 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004262 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004263 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004264
Jim Laskey26f7fa72006-10-17 19:33:52 +00004265 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004266
Bill Wendling832171c2006-12-07 20:04:42 +00004267 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004268}
4269
Evan Chengd6594ae2006-09-12 21:00:35 +00004270const Type *ConstantPoolSDNode::getType() const {
4271 if (isMachineConstantPoolEntry())
4272 return Val.MachineCPVal->getType();
4273 return Val.ConstVal->getType();
4274}