blob: 89376222268698240a35b129963071dc3568e98f [file] [log] [blame]
Chris Lattner061a1ea2005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner600d3082003-08-11 14:57:33 +00009//
Chris Lattner061a1ea2005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner600d3082003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner061a1ea2005-01-07 07:46:32 +000015#include "llvm/Constants.h"
Lauro Ramos Venancio25188892007-04-20 21:38:10 +000016#include "llvm/GlobalVariable.h"
Chris Lattner52fcad32006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Christopher Lamb8af6d582007-04-22 23:15:30 +000018#include "llvm/DerivedTypes.h"
Chris Lattner061a1ea2005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Cheng45fe3bc2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner9eb7a822007-10-15 17:47:20 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chengefd142a2008-02-02 04:07:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman2d489b52008-02-06 22:27:42 +000024#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner6667bdb2005-08-02 19:26:06 +000025#include "llvm/Support/MathExtras.h"
Dan Gohman3a4be0f2008-02-10 18:45:23 +000026#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb8af6d582007-04-22 23:15:30 +000027#include "llvm/Target/TargetData.h"
Chris Lattner90b7c132005-01-23 04:39:44 +000028#include "llvm/Target/TargetLowering.h"
Chris Lattnerbc892262005-08-16 18:33:07 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Chris Lattner375e1a72006-02-17 21:58:01 +000031#include "llvm/ADT/SetVector.h"
Chris Lattnercba058c2007-02-04 00:24:41 +000032#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsbbbfbe92007-10-16 09:56:48 +000033#include "llvm/ADT/SmallSet.h"
Chris Lattner8927c872006-08-04 17:45:20 +000034#include "llvm/ADT/SmallVector.h"
Evan Cheng9fd95412005-12-19 23:11:49 +000035#include "llvm/ADT/StringExtras.h"
Jeff Cohen7d1670da2005-01-09 20:41:56 +000036#include <algorithm>
Jeff Cohencc08c832006-12-02 02:22:01 +000037#include <cmath>
Chris Lattner560b5e42004-06-02 04:28:06 +000038using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000039
Chris Lattnera5a3eaf2006-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 Lattnerb2b9d6f2008-02-03 06:49:24 +000047SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
48
Jim Laskeyd66e6162005-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 Johannesenb6d2bec2007-08-26 01:18:27 +000057bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen2cfcf702007-08-25 22:10:57 +000058 return Value.bitwiseIsEqual(V);
Jim Laskeyd66e6162005-08-17 20:08:02 +000059}
60
Dale Johannesend246b2c2007-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 Laskeyd66e6162005-08-17 20:08:02 +000087//===----------------------------------------------------------------------===//
Chris Lattnerc2d28112006-03-25 22:57:01 +000088// ISD Namespace
Jim Laskeyd66e6162005-08-17 20:08:02 +000089//===----------------------------------------------------------------------===//
Chris Lattnerfde3a212005-01-09 20:52:51 +000090
Evan Chengc70e33c2006-03-27 06:58:47 +000091/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattnerc2d28112006-03-25 22:57:01 +000092/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chengc70e33c2006-03-27 06:58:47 +000093bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner7e7ad592006-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 Chengc70e33c2006-03-27 06:58:47 +000098 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattnerc2d28112006-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 Lattnerf6e3b952006-03-25 22:59:28 +0000111 SDOperand NotZero = N->getOperand(i);
Evan Chengc70e33c2006-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)) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +0000116 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
117 convertToAPInt().isAllOnesValue())
118 return false;
Evan Chengc70e33c2006-03-27 06:58:47 +0000119 } else
Chris Lattnerc2d28112006-03-25 22:57:01 +0000120 return false;
121
122 // Okay, we have at least one ~0 value, check to see if the rest match or are
123 // undefs.
Chris Lattnerc2d28112006-03-25 22:57:01 +0000124 for (++i; i != e; ++i)
125 if (N->getOperand(i) != NotZero &&
126 N->getOperand(i).getOpcode() != ISD::UNDEF)
127 return false;
128 return true;
129}
130
131
Evan Chenga6789912006-03-26 09:50:58 +0000132/// isBuildVectorAllZeros - Return true if the specified node is a
133/// BUILD_VECTOR where all of the elements are 0 or undef.
134bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner7e7ad592006-04-15 23:38:00 +0000135 // Look through a bit convert.
136 if (N->getOpcode() == ISD::BIT_CONVERT)
137 N = N->getOperand(0).Val;
138
Evan Chenga6789912006-03-26 09:50:58 +0000139 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chengc70e33c2006-03-27 06:58:47 +0000140
141 unsigned i = 0, e = N->getNumOperands();
142
143 // Skip over all of the undef values.
144 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
145 ++i;
146
147 // Do not accept an all-undef vector.
148 if (i == e) return false;
149
150 // Do not accept build_vectors that aren't all constants or which have non-~0
151 // elements.
152 SDOperand Zero = N->getOperand(i);
153 if (isa<ConstantSDNode>(Zero)) {
154 if (!cast<ConstantSDNode>(Zero)->isNullValue())
155 return false;
156 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000157 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chengc70e33c2006-03-27 06:58:47 +0000158 return false;
159 } else
160 return false;
161
162 // Okay, we have at least one ~0 value, check to see if the rest match or are
163 // undefs.
164 for (++i; i != e; ++i)
165 if (N->getOperand(i) != Zero &&
166 N->getOperand(i).getOpcode() != ISD::UNDEF)
167 return false;
168 return true;
Evan Chenga6789912006-03-26 09:50:58 +0000169}
170
Evan Cheng6200c222008-02-18 23:04:32 +0000171/// isScalarToVector - Return true if the specified node is a
172/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
173/// element is not an undef.
174bool ISD::isScalarToVector(const SDNode *N) {
175 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
176 return true;
177
178 if (N->getOpcode() != ISD::BUILD_VECTOR)
179 return false;
180 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
181 return false;
182 unsigned NumElems = N->getNumOperands();
183 for (unsigned i = 1; i < NumElems; ++i) {
184 SDOperand V = N->getOperand(i);
185 if (V.getOpcode() != ISD::UNDEF)
186 return false;
187 }
188 return true;
189}
190
191
Evan Cheng1c6c16e2008-01-31 09:59:15 +0000192/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengac3cd692008-02-04 23:10:38 +0000193/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Cheng1c6c16e2008-01-31 09:59:15 +0000194/// is 0).
195bool ISD::isDebugLabel(const SDNode *N) {
196 SDOperand Zero;
197 if (N->getOpcode() == ISD::LABEL)
198 Zero = N->getOperand(2);
199 else if (N->isTargetOpcode() &&
200 N->getTargetOpcode() == TargetInstrInfo::LABEL)
201 // Chain moved to last operand.
202 Zero = N->getOperand(1);
203 else
204 return false;
205 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
206}
207
Chris Lattner061a1ea2005-01-07 07:46:32 +0000208/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
209/// when given the operation for (X op Y).
210ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
211 // To perform this operation, we just need to swap the L and G bits of the
212 // operation.
213 unsigned OldL = (Operation >> 2) & 1;
214 unsigned OldG = (Operation >> 1) & 1;
215 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
216 (OldL << 1) | // New G bit
217 (OldG << 2)); // New L bit.
218}
219
220/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
221/// 'op' is a valid SetCC operation.
222ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
223 unsigned Operation = Op;
224 if (isInteger)
225 Operation ^= 7; // Flip L, G, E bits, but not U.
226 else
227 Operation ^= 15; // Flip all of the condition bits.
228 if (Operation > ISD::SETTRUE2)
229 Operation &= ~8; // Don't let N and U bits get set.
230 return ISD::CondCode(Operation);
231}
232
233
234/// isSignedOp - For an integer comparison, return 1 if the comparison is a
235/// signed operation and 2 if the result is an unsigned comparison. Return zero
236/// if the operation does not depend on the sign of the input (setne and seteq).
237static int isSignedOp(ISD::CondCode Opcode) {
238 switch (Opcode) {
239 default: assert(0 && "Illegal integer setcc operation!");
240 case ISD::SETEQ:
241 case ISD::SETNE: return 0;
242 case ISD::SETLT:
243 case ISD::SETLE:
244 case ISD::SETGT:
245 case ISD::SETGE: return 1;
246 case ISD::SETULT:
247 case ISD::SETULE:
248 case ISD::SETUGT:
249 case ISD::SETUGE: return 2;
250 }
251}
252
253/// getSetCCOrOperation - Return the result of a logical OR between different
254/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
255/// returns SETCC_INVALID if it is not possible to represent the resultant
256/// comparison.
257ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
258 bool isInteger) {
259 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
260 // Cannot fold a signed integer setcc with an unsigned integer setcc.
261 return ISD::SETCC_INVALID;
Misha Brukman835702a2005-04-21 22:36:52 +0000262
Chris Lattner061a1ea2005-01-07 07:46:32 +0000263 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukman835702a2005-04-21 22:36:52 +0000264
Chris Lattner061a1ea2005-01-07 07:46:32 +0000265 // If the N and U bits get set then the resultant comparison DOES suddenly
266 // care about orderedness, and is true when ordered.
267 if (Op > ISD::SETTRUE2)
Chris Lattner8c02c3f2006-05-12 17:03:46 +0000268 Op &= ~16; // Clear the U bit if the N bit is set.
269
270 // Canonicalize illegal integer setcc's.
271 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
272 Op = ISD::SETNE;
273
Chris Lattner061a1ea2005-01-07 07:46:32 +0000274 return ISD::CondCode(Op);
275}
276
277/// getSetCCAndOperation - Return the result of a logical AND between different
278/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
279/// function returns zero if it is not possible to represent the resultant
280/// comparison.
281ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
282 bool isInteger) {
283 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
284 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukman835702a2005-04-21 22:36:52 +0000285 return ISD::SETCC_INVALID;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000286
287 // Combine all of the condition bits.
Chris Lattner393d96a2006-04-27 05:01:07 +0000288 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
289
290 // Canonicalize illegal integer setcc's.
291 if (isInteger) {
292 switch (Result) {
293 default: break;
Chris Lattner710b3d52006-06-28 18:29:47 +0000294 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
295 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
296 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
297 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattner393d96a2006-04-27 05:01:07 +0000298 }
299 }
300
301 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000302}
303
Chris Lattner90b7c132005-01-23 04:39:44 +0000304const TargetMachine &SelectionDAG::getTarget() const {
305 return TLI.getTargetMachine();
306}
307
Jim Laskeyd66e6162005-08-17 20:08:02 +0000308//===----------------------------------------------------------------------===//
Jim Laskeyf576b422006-10-27 23:46:08 +0000309// SDNode Profile Support
310//===----------------------------------------------------------------------===//
311
Jim Laskeybd0f0882006-10-27 23:52:51 +0000312/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
313///
Jim Laskeyf576b422006-10-27 23:46:08 +0000314static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
315 ID.AddInteger(OpC);
316}
317
318/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
319/// solely with their pointer.
320void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
321 ID.AddPointer(VTList.VTs);
322}
323
Jim Laskeybd0f0882006-10-27 23:52:51 +0000324/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
325///
Jim Laskeyf576b422006-10-27 23:46:08 +0000326static void AddNodeIDOperands(FoldingSetNodeID &ID,
327 const SDOperand *Ops, unsigned NumOps) {
Chris Lattnerf17b4222007-02-04 07:28:00 +0000328 for (; NumOps; --NumOps, ++Ops) {
329 ID.AddPointer(Ops->Val);
330 ID.AddInteger(Ops->ResNo);
331 }
Jim Laskeyf576b422006-10-27 23:46:08 +0000332}
333
Jim Laskeyf576b422006-10-27 23:46:08 +0000334static void AddNodeIDNode(FoldingSetNodeID &ID,
335 unsigned short OpC, SDVTList VTList,
336 const SDOperand *OpList, unsigned N) {
337 AddNodeIDOpcode(ID, OpC);
338 AddNodeIDValueTypes(ID, VTList);
339 AddNodeIDOperands(ID, OpList, N);
340}
341
Jim Laskeybd0f0882006-10-27 23:52:51 +0000342/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
343/// data.
Jim Laskeyf576b422006-10-27 23:46:08 +0000344static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
345 AddNodeIDOpcode(ID, N->getOpcode());
346 // Add the return value info.
347 AddNodeIDValueTypes(ID, N->getVTList());
348 // Add the operand info.
349 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
350
351 // Handle SDNode leafs with special info.
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000352 switch (N->getOpcode()) {
353 default: break; // Normal nodes don't need extra info.
354 case ISD::TargetConstant:
355 case ISD::Constant:
Chris Lattner2a8037b2008-02-20 06:28:01 +0000356 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000357 break;
358 case ISD::TargetConstantFP:
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000359 case ISD::ConstantFP: {
Ted Kremenek6f30a072008-02-11 17:24:50 +0000360 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000361 break;
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000362 }
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000363 case ISD::TargetGlobalAddress:
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000364 case ISD::GlobalAddress:
365 case ISD::TargetGlobalTLSAddress:
366 case ISD::GlobalTLSAddress: {
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000367 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
368 ID.AddPointer(GA->getGlobal());
369 ID.AddInteger(GA->getOffset());
370 break;
371 }
372 case ISD::BasicBlock:
373 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
374 break;
375 case ISD::Register:
376 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
377 break;
Dan Gohman2d489b52008-02-06 22:27:42 +0000378 case ISD::SRCVALUE:
379 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
380 break;
381 case ISD::MEMOPERAND: {
382 const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
383 ID.AddPointer(MO.getValue());
384 ID.AddInteger(MO.getFlags());
385 ID.AddInteger(MO.getOffset());
386 ID.AddInteger(MO.getSize());
387 ID.AddInteger(MO.getAlignment());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000388 break;
389 }
390 case ISD::FrameIndex:
391 case ISD::TargetFrameIndex:
392 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
393 break;
394 case ISD::JumpTable:
395 case ISD::TargetJumpTable:
396 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
397 break;
398 case ISD::ConstantPool:
399 case ISD::TargetConstantPool: {
400 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
401 ID.AddInteger(CP->getAlignment());
402 ID.AddInteger(CP->getOffset());
403 if (CP->isMachineConstantPoolEntry())
404 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
405 else
406 ID.AddPointer(CP->getConstVal());
407 break;
408 }
409 case ISD::LOAD: {
410 LoadSDNode *LD = cast<LoadSDNode>(N);
411 ID.AddInteger(LD->getAddressingMode());
412 ID.AddInteger(LD->getExtensionType());
Dan Gohman47a7d6f2008-01-30 00:15:11 +0000413 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000414 ID.AddInteger(LD->getAlignment());
415 ID.AddInteger(LD->isVolatile());
416 break;
417 }
418 case ISD::STORE: {
419 StoreSDNode *ST = cast<StoreSDNode>(N);
420 ID.AddInteger(ST->getAddressingMode());
421 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman47a7d6f2008-01-30 00:15:11 +0000422 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000423 ID.AddInteger(ST->getAlignment());
424 ID.AddInteger(ST->isVolatile());
425 break;
426 }
Jim Laskeyf576b422006-10-27 23:46:08 +0000427 }
428}
429
430//===----------------------------------------------------------------------===//
Jim Laskeyd66e6162005-08-17 20:08:02 +0000431// SelectionDAG Class
432//===----------------------------------------------------------------------===//
Chris Lattner90b7c132005-01-23 04:39:44 +0000433
Chris Lattner9c667932005-01-07 21:09:16 +0000434/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner8927c872006-08-04 17:45:20 +0000435/// SelectionDAG.
436void SelectionDAG::RemoveDeadNodes() {
Chris Lattner9c667932005-01-07 21:09:16 +0000437 // Create a dummy node (which is not added to allnodes), that adds a reference
438 // to the root node, preventing it from being deleted.
Chris Lattner06f1d0f2005-10-05 06:35:28 +0000439 HandleSDNode Dummy(getRoot());
Chris Lattner9c667932005-01-07 21:09:16 +0000440
Chris Lattner8927c872006-08-04 17:45:20 +0000441 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattneraba48dd2005-11-08 18:52:27 +0000442
Chris Lattner8927c872006-08-04 17:45:20 +0000443 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000444 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner8927c872006-08-04 17:45:20 +0000445 if (I->use_empty())
446 DeadNodes.push_back(I);
447
448 // Process the worklist, deleting the nodes and adding their uses to the
449 // worklist.
450 while (!DeadNodes.empty()) {
451 SDNode *N = DeadNodes.back();
452 DeadNodes.pop_back();
453
454 // Take the node out of the appropriate CSE map.
455 RemoveNodeFromCSEMaps(N);
456
457 // Next, brutally remove the operand list. This is safe to do, as there are
458 // no cycles in the graph.
459 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
460 SDNode *Operand = I->Val;
461 Operand->removeUser(N);
462
463 // Now that we removed this operand, see if there are no uses of it left.
464 if (Operand->use_empty())
465 DeadNodes.push_back(Operand);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000466 }
Chris Lattnerf17b4222007-02-04 07:28:00 +0000467 if (N->OperandsNeedDelete)
468 delete[] N->OperandList;
Chris Lattner8927c872006-08-04 17:45:20 +0000469 N->OperandList = 0;
470 N->NumOperands = 0;
471
472 // Finally, remove N itself.
473 AllNodes.erase(N);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000474 }
475
Chris Lattner9c667932005-01-07 21:09:16 +0000476 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner06f1d0f2005-10-05 06:35:28 +0000477 setRoot(Dummy.getValue());
Chris Lattner9c667932005-01-07 21:09:16 +0000478}
479
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000480void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Chenga731cb62006-10-12 20:34:05 +0000481 SmallVector<SDNode*, 16> DeadNodes;
482 DeadNodes.push_back(N);
483
484 // Process the worklist, deleting the nodes and adding their uses to the
485 // worklist.
486 while (!DeadNodes.empty()) {
487 SDNode *N = DeadNodes.back();
488 DeadNodes.pop_back();
489
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +0000490 if (UpdateListener)
491 UpdateListener->NodeDeleted(N);
492
Evan Chenga731cb62006-10-12 20:34:05 +0000493 // Take the node out of the appropriate CSE map.
494 RemoveNodeFromCSEMaps(N);
495
496 // Next, brutally remove the operand list. This is safe to do, as there are
497 // no cycles in the graph.
498 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
499 SDNode *Operand = I->Val;
500 Operand->removeUser(N);
501
502 // Now that we removed this operand, see if there are no uses of it left.
503 if (Operand->use_empty())
504 DeadNodes.push_back(Operand);
505 }
Chris Lattnerf17b4222007-02-04 07:28:00 +0000506 if (N->OperandsNeedDelete)
507 delete[] N->OperandList;
Evan Chenga731cb62006-10-12 20:34:05 +0000508 N->OperandList = 0;
509 N->NumOperands = 0;
510
511 // Finally, remove N itself.
Evan Chenga731cb62006-10-12 20:34:05 +0000512 AllNodes.erase(N);
513 }
514}
515
Chris Lattnerc738d002005-08-29 21:59:31 +0000516void SelectionDAG::DeleteNode(SDNode *N) {
517 assert(N->use_empty() && "Cannot delete a node that is not dead!");
518
519 // First take this out of the appropriate CSE map.
520 RemoveNodeFromCSEMaps(N);
521
Chris Lattnerfe883ad2005-09-07 05:37:01 +0000522 // Finally, remove uses due to operands of this node, remove from the
523 // AllNodes list, and delete the node.
524 DeleteNodeNotInCSEMaps(N);
525}
526
527void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
528
Chris Lattnerc738d002005-08-29 21:59:31 +0000529 // Remove it from the AllNodes list.
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000530 AllNodes.remove(N);
Chris Lattnerc738d002005-08-29 21:59:31 +0000531
532 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner7e4b5d32005-11-08 22:07:03 +0000533 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
534 I->Val->removeUser(N);
Chris Lattnerf17b4222007-02-04 07:28:00 +0000535 if (N->OperandsNeedDelete)
536 delete[] N->OperandList;
Chris Lattner7e4b5d32005-11-08 22:07:03 +0000537 N->OperandList = 0;
538 N->NumOperands = 0;
Chris Lattnerc738d002005-08-29 21:59:31 +0000539
540 delete N;
541}
542
Chris Lattner19732782005-08-16 18:17:10 +0000543/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
544/// correspond to it. This is useful when we're about to delete or repurpose
545/// the node. We don't want future request for structurally identical nodes
546/// to return N anymore.
547void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner1e89e362005-09-02 19:15:44 +0000548 bool Erased = false;
Chris Lattner9c667932005-01-07 21:09:16 +0000549 switch (N->getOpcode()) {
Chris Lattner06f1d0f2005-10-05 06:35:28 +0000550 case ISD::HANDLENODE: return; // noop.
Chris Lattner435b4022005-11-29 06:21:05 +0000551 case ISD::STRING:
552 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
553 break;
Chris Lattnerd47675e2005-08-09 20:20:18 +0000554 case ISD::CONDCODE:
555 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
556 "Cond code doesn't exist!");
Chris Lattner1e89e362005-09-02 19:15:44 +0000557 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattnerd47675e2005-08-09 20:20:18 +0000558 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
559 break;
Chris Lattner9c667932005-01-07 21:09:16 +0000560 case ISD::ExternalSymbol:
Chris Lattner1e89e362005-09-02 19:15:44 +0000561 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner9c667932005-01-07 21:09:16 +0000562 break;
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000563 case ISD::TargetExternalSymbol:
Chris Lattner580b12a2006-01-28 10:09:25 +0000564 Erased =
565 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000566 break;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000567 case ISD::VALUETYPE: {
568 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
569 if (MVT::isExtendedVT(VT)) {
570 Erased = ExtendedValueTypeNodes.erase(VT);
571 } else {
572 Erased = ValueTypeNodes[VT] != 0;
573 ValueTypeNodes[VT] = 0;
574 }
Chris Lattner0b6ba902005-07-10 00:07:11 +0000575 break;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000576 }
Chris Lattner9c667932005-01-07 21:09:16 +0000577 default:
Chris Lattnerfcb16472006-08-11 18:38:11 +0000578 // Remove it from the CSE Map.
579 Erased = CSEMap.RemoveNode(N);
Chris Lattner9c667932005-01-07 21:09:16 +0000580 break;
581 }
Chris Lattner1e89e362005-09-02 19:15:44 +0000582#ifndef NDEBUG
583 // Verify that the node was actually in one of the CSE maps, unless it has a
584 // flag result (which cannot be CSE'd) or is one of the special cases that are
585 // not subject to CSE.
586 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattnerccb44762006-01-29 07:58:15 +0000587 !N->isTargetOpcode()) {
Dan Gohmana7644dd2007-06-19 14:13:56 +0000588 N->dump(this);
Bill Wendling22e978a2006-12-07 20:04:42 +0000589 cerr << "\n";
Chris Lattner1e89e362005-09-02 19:15:44 +0000590 assert(0 && "Node is not in map!");
591 }
592#endif
Chris Lattner9c667932005-01-07 21:09:16 +0000593}
594
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000595/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
596/// has been taken out and modified in some way. If the specified node already
597/// exists in the CSE maps, do not modify the maps, but return the existing node
598/// instead. If it doesn't exist, add it and return null.
599///
600SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
601 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattnerccb44762006-01-29 07:58:15 +0000602 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattner0142afd2005-12-01 23:14:50 +0000603 return 0; // Never add these nodes.
Chris Lattnerc1740482005-11-30 18:20:52 +0000604
Chris Lattner50b2d302005-12-19 22:21:21 +0000605 // Check that remaining values produced are not flags.
606 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
607 if (N->getValueType(i) == MVT::Flag)
608 return 0; // Never CSE anything that produces a flag.
609
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000610 SDNode *New = CSEMap.GetOrInsertNode(N);
611 if (New != N) return New; // Node already existed.
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000612 return 0;
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000613}
614
Chris Lattnerf34156e2006-01-28 09:32:45 +0000615/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
616/// were replaced with those specified. If this node is never memoized,
617/// return null, otherwise return a pointer to the slot it would take. If a
618/// node already exists with these operands, the slot will be non-null.
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000619SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
620 void *&InsertPos) {
Chris Lattnerccb44762006-01-29 07:58:15 +0000621 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerf34156e2006-01-28 09:32:45 +0000622 return 0; // Never add these nodes.
623
624 // Check that remaining values produced are not flags.
625 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
626 if (N->getValueType(i) == MVT::Flag)
627 return 0; // Never CSE anything that produces a flag.
628
Chris Lattnerf17b4222007-02-04 07:28:00 +0000629 SDOperand Ops[] = { Op };
Jim Laskeyf576b422006-10-27 23:46:08 +0000630 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000631 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000632 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf34156e2006-01-28 09:32:45 +0000633}
634
635/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
636/// were replaced with those specified. If this node is never memoized,
637/// return null, otherwise return a pointer to the slot it would take. If a
638/// node already exists with these operands, the slot will be non-null.
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000639SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
640 SDOperand Op1, SDOperand Op2,
641 void *&InsertPos) {
642 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
643 return 0; // Never add these nodes.
644
645 // Check that remaining values produced are not flags.
646 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
647 if (N->getValueType(i) == MVT::Flag)
648 return 0; // Never CSE anything that produces a flag.
649
Chris Lattnerf17b4222007-02-04 07:28:00 +0000650 SDOperand Ops[] = { Op1, Op2 };
Jim Laskeyf576b422006-10-27 23:46:08 +0000651 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000652 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000653 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
654}
655
656
657/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
658/// were replaced with those specified. If this node is never memoized,
659/// return null, otherwise return a pointer to the slot it would take. If a
660/// node already exists with these operands, the slot will be non-null.
661SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattner97af9d52006-08-08 01:09:31 +0000662 const SDOperand *Ops,unsigned NumOps,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000663 void *&InsertPos) {
Chris Lattnerccb44762006-01-29 07:58:15 +0000664 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerf34156e2006-01-28 09:32:45 +0000665 return 0; // Never add these nodes.
666
667 // Check that remaining values produced are not flags.
668 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
669 if (N->getValueType(i) == MVT::Flag)
670 return 0; // Never CSE anything that produces a flag.
671
Jim Laskeyf576b422006-10-27 23:46:08 +0000672 FoldingSetNodeID ID;
Dan Gohman92a7f3a2007-06-04 15:49:41 +0000673 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskeyf576b422006-10-27 23:46:08 +0000674
Evan Cheng2da46712006-10-11 01:47:58 +0000675 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
676 ID.AddInteger(LD->getAddressingMode());
677 ID.AddInteger(LD->getExtensionType());
Dan Gohman47a7d6f2008-01-30 00:15:11 +0000678 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng2da46712006-10-11 01:47:58 +0000679 ID.AddInteger(LD->getAlignment());
680 ID.AddInteger(LD->isVolatile());
Evan Chengab51cf22006-10-13 21:14:26 +0000681 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
682 ID.AddInteger(ST->getAddressingMode());
683 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman47a7d6f2008-01-30 00:15:11 +0000684 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Chengab51cf22006-10-13 21:14:26 +0000685 ID.AddInteger(ST->getAlignment());
686 ID.AddInteger(ST->isVolatile());
Evan Cheng2da46712006-10-11 01:47:58 +0000687 }
Jim Laskeyf576b422006-10-27 23:46:08 +0000688
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000689 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerf34156e2006-01-28 09:32:45 +0000690}
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000691
Chris Lattner9c667932005-01-07 21:09:16 +0000692
Chris Lattner600d3082003-08-11 14:57:33 +0000693SelectionDAG::~SelectionDAG() {
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000694 while (!AllNodes.empty()) {
695 SDNode *N = AllNodes.begin();
Chris Lattner63268f02006-08-14 22:19:25 +0000696 N->SetNextInBucket(0);
Chris Lattnerf17b4222007-02-04 07:28:00 +0000697 if (N->OperandsNeedDelete)
698 delete [] N->OperandList;
Chris Lattner7e4b5d32005-11-08 22:07:03 +0000699 N->OperandList = 0;
700 N->NumOperands = 0;
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000701 AllNodes.pop_front();
Chris Lattner7e4b5d32005-11-08 22:07:03 +0000702 }
Chris Lattner600d3082003-08-11 14:57:33 +0000703}
704
Chris Lattner2b4e3fc2005-04-13 02:38:18 +0000705SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner8c3d4092005-04-13 19:41:05 +0000706 if (Op.getValueType() == VT) return Op;
Dan Gohmanbd2fa562008-02-29 01:47:35 +0000707 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
708 MVT::getSizeInBits(VT));
Chris Lattner2b4e3fc2005-04-13 02:38:18 +0000709 return getNode(ISD::AND, Op.getValueType(), Op,
710 getConstant(Imm, Op.getValueType()));
711}
712
Chris Lattner435b4022005-11-29 06:21:05 +0000713SDOperand SelectionDAG::getString(const std::string &Val) {
714 StringSDNode *&N = StringNodes[Val];
715 if (!N) {
716 N = new StringSDNode(Val);
717 AllNodes.push_back(N);
718 }
719 return SDOperand(N, 0);
720}
721
Chris Lattner3f16b202006-08-11 21:01:22 +0000722SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohman65f63eb2008-02-08 22:59:30 +0000723 MVT::ValueType EltVT =
724 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
725
726 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
727}
728
729SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Chris Lattner0d2456e2005-08-17 00:34:06 +0000730 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman7a7742c2007-12-12 22:21:26 +0000731
732 MVT::ValueType EltVT =
733 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner0d2456e2005-08-17 00:34:06 +0000734
Dan Gohman65f63eb2008-02-08 22:59:30 +0000735 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
736 "APInt size does not match type size!");
Chris Lattner3f16b202006-08-11 21:01:22 +0000737
738 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskeyf576b422006-10-27 23:46:08 +0000739 FoldingSetNodeID ID;
Dan Gohman7a7742c2007-12-12 22:21:26 +0000740 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek6f30a072008-02-11 17:24:50 +0000741 ID.Add(Val);
Chris Lattner3f16b202006-08-11 21:01:22 +0000742 void *IP = 0;
Dan Gohman7a7742c2007-12-12 22:21:26 +0000743 SDNode *N = NULL;
744 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
745 if (!MVT::isVector(VT))
746 return SDOperand(N, 0);
747 if (!N) {
748 N = new ConstantSDNode(isT, Val, EltVT);
749 CSEMap.InsertNode(N, IP);
750 AllNodes.push_back(N);
751 }
752
753 SDOperand Result(N, 0);
754 if (MVT::isVector(VT)) {
755 SmallVector<SDOperand, 8> Ops;
756 Ops.assign(MVT::getVectorNumElements(VT), Result);
757 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
758 }
759 return Result;
Chris Lattner600d3082003-08-11 14:57:33 +0000760}
761
Chris Lattner72733e52008-01-17 07:00:52 +0000762SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
763 return getConstant(Val, TLI.getPointerTy(), isTarget);
764}
765
766
Dale Johannesend246b2c2007-08-30 00:23:21 +0000767SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattner0c2e5412006-08-11 21:55:30 +0000768 bool isTarget) {
Chris Lattner061a1ea2005-01-07 07:46:32 +0000769 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesend246b2c2007-08-30 00:23:21 +0000770
Dan Gohmana8665142007-06-25 16:23:39 +0000771 MVT::ValueType EltVT =
772 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000773
Chris Lattner381dddc2005-02-17 20:17:32 +0000774 // Do the map lookup using the actual bit pattern for the floating point
775 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
776 // we don't have issues with SNANs.
Chris Lattner0c2e5412006-08-11 21:55:30 +0000777 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskeyf576b422006-10-27 23:46:08 +0000778 FoldingSetNodeID ID;
Dan Gohmana8665142007-06-25 16:23:39 +0000779 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek6f30a072008-02-11 17:24:50 +0000780 ID.Add(V);
Chris Lattner0c2e5412006-08-11 21:55:30 +0000781 void *IP = 0;
Evan Cheng9458e6a2007-06-29 21:36:04 +0000782 SDNode *N = NULL;
783 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
784 if (!MVT::isVector(VT))
785 return SDOperand(N, 0);
786 if (!N) {
Dale Johannesen98d3a082007-09-14 22:26:36 +0000787 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Cheng9458e6a2007-06-29 21:36:04 +0000788 CSEMap.InsertNode(N, IP);
789 AllNodes.push_back(N);
790 }
791
Dan Gohmana8665142007-06-25 16:23:39 +0000792 SDOperand Result(N, 0);
793 if (MVT::isVector(VT)) {
794 SmallVector<SDOperand, 8> Ops;
795 Ops.assign(MVT::getVectorNumElements(VT), Result);
796 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
797 }
798 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000799}
800
Dale Johannesend246b2c2007-08-30 00:23:21 +0000801SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
802 bool isTarget) {
803 MVT::ValueType EltVT =
804 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
805 if (EltVT==MVT::f32)
806 return getConstantFP(APFloat((float)Val), VT, isTarget);
807 else
808 return getConstantFP(APFloat(Val), VT, isTarget);
809}
810
Chris Lattner061a1ea2005-01-07 07:46:32 +0000811SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner3f16b202006-08-11 21:01:22 +0000812 MVT::ValueType VT, int Offset,
813 bool isTargetGA) {
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000814 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
815 unsigned Opc;
816 if (GVar && GVar->isThreadLocal())
817 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
818 else
819 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskeyf576b422006-10-27 23:46:08 +0000820 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000821 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +0000822 ID.AddPointer(GV);
823 ID.AddInteger(Offset);
824 void *IP = 0;
825 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
826 return SDOperand(E, 0);
827 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
828 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +0000829 AllNodes.push_back(N);
830 return SDOperand(N, 0);
831}
832
Chris Lattner0c2e5412006-08-11 21:55:30 +0000833SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
834 bool isTarget) {
835 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskeyf576b422006-10-27 23:46:08 +0000836 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000837 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner0c2e5412006-08-11 21:55:30 +0000838 ID.AddInteger(FI);
839 void *IP = 0;
840 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
841 return SDOperand(E, 0);
842 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
843 CSEMap.InsertNode(N, IP);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +0000844 AllNodes.push_back(N);
845 return SDOperand(N, 0);
846}
847
Chris Lattner0c2e5412006-08-11 21:55:30 +0000848SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
849 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskeyf576b422006-10-27 23:46:08 +0000850 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000851 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner0c2e5412006-08-11 21:55:30 +0000852 ID.AddInteger(JTI);
853 void *IP = 0;
854 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
855 return SDOperand(E, 0);
856 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
857 CSEMap.InsertNode(N, IP);
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000858 AllNodes.push_back(N);
859 return SDOperand(N, 0);
860}
861
Evan Cheng32be2dc2006-01-31 22:23:14 +0000862SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattner0c2e5412006-08-11 21:55:30 +0000863 unsigned Alignment, int Offset,
864 bool isTarget) {
865 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +0000866 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000867 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner0c2e5412006-08-11 21:55:30 +0000868 ID.AddInteger(Alignment);
869 ID.AddInteger(Offset);
Chris Lattner8e372832006-08-14 20:12:44 +0000870 ID.AddPointer(C);
Chris Lattner0c2e5412006-08-11 21:55:30 +0000871 void *IP = 0;
872 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
873 return SDOperand(E, 0);
874 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
875 CSEMap.InsertNode(N, IP);
Chris Lattner407c6412005-08-25 05:03:06 +0000876 AllNodes.push_back(N);
877 return SDOperand(N, 0);
878}
879
Chris Lattner061a1ea2005-01-07 07:46:32 +0000880
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000881SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
882 MVT::ValueType VT,
883 unsigned Alignment, int Offset,
884 bool isTarget) {
885 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +0000886 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000887 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000888 ID.AddInteger(Alignment);
889 ID.AddInteger(Offset);
Jim Laskeyf576b422006-10-27 23:46:08 +0000890 C->AddSelectionDAGCSEId(ID);
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000891 void *IP = 0;
892 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
893 return SDOperand(E, 0);
894 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
895 CSEMap.InsertNode(N, IP);
896 AllNodes.push_back(N);
897 return SDOperand(N, 0);
898}
899
900
Chris Lattner061a1ea2005-01-07 07:46:32 +0000901SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskeyf576b422006-10-27 23:46:08 +0000902 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000903 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +0000904 ID.AddPointer(MBB);
905 void *IP = 0;
906 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
907 return SDOperand(E, 0);
908 SDNode *N = new BasicBlockSDNode(MBB);
909 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +0000910 AllNodes.push_back(N);
911 return SDOperand(N, 0);
912}
913
Chris Lattner0b6ba902005-07-10 00:07:11 +0000914SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsd42c8122007-10-17 13:49:58 +0000915 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner0b6ba902005-07-10 00:07:11 +0000916 ValueTypeNodes.resize(VT+1);
Chris Lattner0b6ba902005-07-10 00:07:11 +0000917
Duncan Sandsd42c8122007-10-17 13:49:58 +0000918 SDNode *&N = MVT::isExtendedVT(VT) ?
919 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
920
921 if (N) return SDOperand(N, 0);
922 N = new VTSDNode(VT);
923 AllNodes.push_back(N);
924 return SDOperand(N, 0);
Chris Lattner0b6ba902005-07-10 00:07:11 +0000925}
926
Chris Lattner061a1ea2005-01-07 07:46:32 +0000927SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
928 SDNode *&N = ExternalSymbols[Sym];
929 if (N) return SDOperand(N, 0);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000930 N = new ExternalSymbolSDNode(false, Sym, VT);
931 AllNodes.push_back(N);
932 return SDOperand(N, 0);
933}
934
Chris Lattner580b12a2006-01-28 10:09:25 +0000935SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
936 MVT::ValueType VT) {
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000937 SDNode *&N = TargetExternalSymbols[Sym];
938 if (N) return SDOperand(N, 0);
939 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +0000940 AllNodes.push_back(N);
941 return SDOperand(N, 0);
942}
943
Chris Lattnerd47675e2005-08-09 20:20:18 +0000944SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
945 if ((unsigned)Cond >= CondCodeNodes.size())
946 CondCodeNodes.resize(Cond+1);
947
Chris Lattner14e060f2005-08-09 20:40:02 +0000948 if (CondCodeNodes[Cond] == 0) {
Chris Lattnerd47675e2005-08-09 20:20:18 +0000949 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner14e060f2005-08-09 20:40:02 +0000950 AllNodes.push_back(CondCodeNodes[Cond]);
951 }
Chris Lattnerd47675e2005-08-09 20:20:18 +0000952 return SDOperand(CondCodeNodes[Cond], 0);
953}
954
Chris Lattner5764da422005-08-30 22:38:38 +0000955SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +0000956 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000957 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +0000958 ID.AddInteger(RegNo);
959 void *IP = 0;
960 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
961 return SDOperand(E, 0);
962 SDNode *N = new RegisterSDNode(RegNo, VT);
963 CSEMap.InsertNode(N, IP);
964 AllNodes.push_back(N);
965 return SDOperand(N, 0);
966}
967
Dan Gohman2d489b52008-02-06 22:27:42 +0000968SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner3f16b202006-08-11 21:01:22 +0000969 assert((!V || isa<PointerType>(V->getType())) &&
970 "SrcValue is not a pointer?");
971
Jim Laskeyf576b422006-10-27 23:46:08 +0000972 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +0000973 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +0000974 ID.AddPointer(V);
Dan Gohman2d489b52008-02-06 22:27:42 +0000975
Chris Lattner3f16b202006-08-11 21:01:22 +0000976 void *IP = 0;
977 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
978 return SDOperand(E, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +0000979
980 SDNode *N = new SrcValueSDNode(V);
981 CSEMap.InsertNode(N, IP);
982 AllNodes.push_back(N);
983 return SDOperand(N, 0);
984}
985
986SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
987 const Value *v = MO.getValue();
988 assert((!v || isa<PointerType>(v->getType())) &&
989 "SrcValue is not a pointer?");
990
991 FoldingSetNodeID ID;
992 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
993 ID.AddPointer(v);
994 ID.AddInteger(MO.getFlags());
995 ID.AddInteger(MO.getOffset());
996 ID.AddInteger(MO.getSize());
997 ID.AddInteger(MO.getAlignment());
998
999 void *IP = 0;
1000 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1001 return SDOperand(E, 0);
1002
1003 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner3f16b202006-08-11 21:01:22 +00001004 CSEMap.InsertNode(N, IP);
1005 AllNodes.push_back(N);
1006 return SDOperand(N, 0);
Chris Lattner33182322005-08-16 21:55:35 +00001007}
1008
Chris Lattner9eb7a822007-10-15 17:47:20 +00001009/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1010/// specified value type.
1011SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
1012 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1013 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1014 const Type *Ty = MVT::getTypeForValueType(VT);
1015 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1016 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1017 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1018}
1019
1020
Chris Lattnerbd9acad2006-10-14 00:41:01 +00001021SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1022 SDOperand N2, ISD::CondCode Cond) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00001023 // These setcc operations always fold.
1024 switch (Cond) {
1025 default: break;
1026 case ISD::SETFALSE:
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001027 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001028 case ISD::SETTRUE:
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001029 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattner393d96a2006-04-27 05:01:07 +00001030
1031 case ISD::SETOEQ:
1032 case ISD::SETOGT:
1033 case ISD::SETOGE:
1034 case ISD::SETOLT:
1035 case ISD::SETOLE:
1036 case ISD::SETONE:
1037 case ISD::SETO:
1038 case ISD::SETUO:
1039 case ISD::SETUEQ:
1040 case ISD::SETUNE:
1041 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1042 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001043 }
Chris Lattnerbd9acad2006-10-14 00:41:01 +00001044
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001045 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001046 const APInt &C2 = N2C->getAPIntValue();
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001047 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001048 const APInt &C1 = N1C->getAPIntValue();
Chris Lattnerbd9acad2006-10-14 00:41:01 +00001049
Chris Lattner061a1ea2005-01-07 07:46:32 +00001050 switch (Cond) {
1051 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001052 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1053 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001054 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1055 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1056 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1057 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1058 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1059 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1060 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1061 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001062 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001063 }
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001064 }
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001065 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00001066 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen19db0932007-10-14 01:56:47 +00001067 // No compile time operations on this type yet.
1068 if (N1C->getValueType(0) == MVT::ppcf128)
1069 return SDOperand();
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001070
1071 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattner061a1ea2005-01-07 07:46:32 +00001072 switch (Cond) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001073 default: break;
Dale Johannesenda7469f2007-08-31 17:03:33 +00001074 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1075 return getNode(ISD::UNDEF, VT);
1076 // fall through
1077 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1078 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1079 return getNode(ISD::UNDEF, VT);
1080 // fall through
1081 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001082 R==APFloat::cmpLessThan, VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001083 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1084 return getNode(ISD::UNDEF, VT);
1085 // fall through
1086 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1087 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1088 return getNode(ISD::UNDEF, VT);
1089 // fall through
1090 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1091 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1092 return getNode(ISD::UNDEF, VT);
1093 // fall through
1094 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001095 R==APFloat::cmpEqual, VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001096 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1097 return getNode(ISD::UNDEF, VT);
1098 // fall through
1099 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001100 R==APFloat::cmpEqual, VT);
1101 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1102 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1103 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1104 R==APFloat::cmpEqual, VT);
1105 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1106 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1107 R==APFloat::cmpLessThan, VT);
1108 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1109 R==APFloat::cmpUnordered, VT);
1110 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1111 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001112 }
1113 } else {
1114 // Ensure that the constant occurs on the RHS.
Chris Lattner679f5b02005-08-09 23:09:05 +00001115 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattner061a1ea2005-01-07 07:46:32 +00001116 }
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001117 }
1118
Chris Lattnerd47675e2005-08-09 20:20:18 +00001119 // Could not fold it.
1120 return SDOperand();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001121}
1122
Dan Gohman1f372ed2008-02-25 21:11:39 +00001123/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1124/// use this predicate to simplify operations downstream.
1125bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1126 unsigned BitWidth = Op.getValueSizeInBits();
1127 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1128}
1129
Dan Gohman309d3d52007-06-22 14:59:07 +00001130/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1131/// this predicate to simplify operations downstream. Mask is known to be zero
1132/// for bits that V cannot have.
Dan Gohman1f372ed2008-02-25 21:11:39 +00001133bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask,
Dan Gohman309d3d52007-06-22 14:59:07 +00001134 unsigned Depth) const {
Dan Gohman1f372ed2008-02-25 21:11:39 +00001135 APInt KnownZero, KnownOne;
Dan Gohman309d3d52007-06-22 14:59:07 +00001136 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1137 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1138 return (KnownZero & Mask) == Mask;
1139}
1140
1141/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1142/// known to be either zero or one and return them in the KnownZero/KnownOne
1143/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1144/// processing.
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001145void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanf990faf2008-02-13 00:35:47 +00001146 APInt &KnownZero, APInt &KnownOne,
Dan Gohman309d3d52007-06-22 14:59:07 +00001147 unsigned Depth) const {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001148 unsigned BitWidth = Mask.getBitWidth();
Dan Gohman7e22a5d2008-02-13 23:13:32 +00001149 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1150 "Mask size mismatches value type size!");
1151
Dan Gohmanf990faf2008-02-13 00:35:47 +00001152 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohman309d3d52007-06-22 14:59:07 +00001153 if (Depth == 6 || Mask == 0)
1154 return; // Limit search depth.
1155
Dan Gohmanf990faf2008-02-13 00:35:47 +00001156 APInt KnownZero2, KnownOne2;
Dan Gohman309d3d52007-06-22 14:59:07 +00001157
1158 switch (Op.getOpcode()) {
1159 case ISD::Constant:
1160 // We know all of the bits for a constant!
Dan Gohmanf990faf2008-02-13 00:35:47 +00001161 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohman309d3d52007-06-22 14:59:07 +00001162 KnownZero = ~KnownOne & Mask;
1163 return;
1164 case ISD::AND:
1165 // If either the LHS or the RHS are Zero, the result is zero.
1166 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001167 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1168 KnownZero2, KnownOne2, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001169 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1170 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1171
1172 // Output known-1 bits are only known if set in both the LHS & RHS.
1173 KnownOne &= KnownOne2;
1174 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1175 KnownZero |= KnownZero2;
1176 return;
1177 case ISD::OR:
1178 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001179 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1180 KnownZero2, KnownOne2, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001181 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1182 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1183
1184 // Output known-0 bits are only known if clear in both the LHS & RHS.
1185 KnownZero &= KnownZero2;
1186 // Output known-1 are known to be set if set in either the LHS | RHS.
1187 KnownOne |= KnownOne2;
1188 return;
1189 case ISD::XOR: {
1190 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1191 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1192 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1193 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1194
1195 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001196 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohman309d3d52007-06-22 14:59:07 +00001197 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1198 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1199 KnownZero = KnownZeroOut;
1200 return;
1201 }
1202 case ISD::SELECT:
1203 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1204 ComputeMaskedBits(Op.getOperand(1), 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 // Only known if known in both the LHS and RHS.
1209 KnownOne &= KnownOne2;
1210 KnownZero &= KnownZero2;
1211 return;
1212 case ISD::SELECT_CC:
1213 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1214 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1215 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1216 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1217
1218 // Only known if known in both the LHS and RHS.
1219 KnownOne &= KnownOne2;
1220 KnownZero &= KnownZero2;
1221 return;
1222 case ISD::SETCC:
1223 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001224 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1225 BitWidth > 1)
1226 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001227 return;
1228 case ISD::SHL:
1229 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1230 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9db0aa82008-02-26 18:50:50 +00001231 unsigned ShAmt = SA->getValue();
1232
1233 // If the shift count is an invalid immediate, don't do anything.
1234 if (ShAmt >= BitWidth)
1235 return;
1236
1237 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohman309d3d52007-06-22 14:59:07 +00001238 KnownZero, KnownOne, Depth+1);
1239 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman9db0aa82008-02-26 18:50:50 +00001240 KnownZero <<= ShAmt;
1241 KnownOne <<= ShAmt;
Dan Gohmanf990faf2008-02-13 00:35:47 +00001242 // low bits known zero.
Dan Gohman9db0aa82008-02-26 18:50:50 +00001243 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001244 }
1245 return;
1246 case ISD::SRL:
1247 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1248 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman309d3d52007-06-22 14:59:07 +00001249 unsigned ShAmt = SA->getValue();
1250
Dan Gohman9db0aa82008-02-26 18:50:50 +00001251 // If the shift count is an invalid immediate, don't do anything.
1252 if (ShAmt >= BitWidth)
1253 return;
1254
Dan Gohmanf990faf2008-02-13 00:35:47 +00001255 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohman309d3d52007-06-22 14:59:07 +00001256 KnownZero, KnownOne, Depth+1);
1257 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanf990faf2008-02-13 00:35:47 +00001258 KnownZero = KnownZero.lshr(ShAmt);
1259 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001260
Dan Gohman95d25d32008-02-13 22:43:25 +00001261 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohman309d3d52007-06-22 14:59:07 +00001262 KnownZero |= HighBits; // High bits known zero.
1263 }
1264 return;
1265 case ISD::SRA:
1266 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman309d3d52007-06-22 14:59:07 +00001267 unsigned ShAmt = SA->getValue();
1268
Dan Gohman9db0aa82008-02-26 18:50:50 +00001269 // If the shift count is an invalid immediate, don't do anything.
1270 if (ShAmt >= BitWidth)
1271 return;
1272
Dan Gohmanf990faf2008-02-13 00:35:47 +00001273 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001274 // If any of the demanded bits are produced by the sign extension, we also
1275 // demand the input sign bit.
Dan Gohman95d25d32008-02-13 22:43:25 +00001276 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1277 if (HighBits.getBoolValue())
Dan Gohmanf990faf2008-02-13 00:35:47 +00001278 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001279
1280 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1281 Depth+1);
1282 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanf990faf2008-02-13 00:35:47 +00001283 KnownZero = KnownZero.lshr(ShAmt);
1284 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001285
1286 // Handle the sign bits.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001287 APInt SignBit = APInt::getSignBit(BitWidth);
1288 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohman309d3d52007-06-22 14:59:07 +00001289
Dan Gohmanb717fda2008-02-20 16:30:17 +00001290 if (KnownZero.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00001291 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanb717fda2008-02-20 16:30:17 +00001292 } else if (KnownOne.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00001293 KnownOne |= HighBits; // New bits are known one.
1294 }
1295 }
1296 return;
1297 case ISD::SIGN_EXTEND_INREG: {
1298 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001299 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohman309d3d52007-06-22 14:59:07 +00001300
1301 // Sign extension. Compute the demanded bits in the result that are not
1302 // present in the input.
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001303 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohman309d3d52007-06-22 14:59:07 +00001304
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001305 APInt InSignBit = APInt::getSignBit(EBits);
1306 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00001307
1308 // If the sign extended bits are demanded, we know that the sign
1309 // bit is demanded.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001310 InSignBit.zext(BitWidth);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001311 if (NewBits.getBoolValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00001312 InputDemandedBits |= InSignBit;
1313
1314 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1315 KnownZero, KnownOne, Depth+1);
1316 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1317
1318 // If the sign bit of the input is known set or clear, then we know the
1319 // top bits of the result.
Dan Gohmanb717fda2008-02-20 16:30:17 +00001320 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohman309d3d52007-06-22 14:59:07 +00001321 KnownZero |= NewBits;
1322 KnownOne &= ~NewBits;
Dan Gohmanb717fda2008-02-20 16:30:17 +00001323 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohman309d3d52007-06-22 14:59:07 +00001324 KnownOne |= NewBits;
1325 KnownZero &= ~NewBits;
1326 } else { // Input sign bit unknown
1327 KnownZero &= ~NewBits;
1328 KnownOne &= ~NewBits;
1329 }
1330 return;
1331 }
1332 case ISD::CTTZ:
1333 case ISD::CTLZ:
1334 case ISD::CTPOP: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001335 unsigned LowBits = Log2_32(BitWidth)+1;
1336 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1337 KnownOne = APInt(BitWidth, 0);
Dan Gohman309d3d52007-06-22 14:59:07 +00001338 return;
1339 }
1340 case ISD::LOAD: {
1341 if (ISD::isZEXTLoad(Op.Val)) {
1342 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001343 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001344 unsigned MemBits = MVT::getSizeInBits(VT);
1345 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohman309d3d52007-06-22 14:59:07 +00001346 }
1347 return;
1348 }
1349 case ISD::ZERO_EXTEND: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001350 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1351 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001352 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1353 APInt InMask = Mask;
1354 InMask.trunc(InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001355 KnownZero.trunc(InBits);
1356 KnownOne.trunc(InBits);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001357 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001358 KnownZero.zext(BitWidth);
1359 KnownOne.zext(BitWidth);
1360 KnownZero |= NewBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00001361 return;
1362 }
1363 case ISD::SIGN_EXTEND: {
1364 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohmanf990faf2008-02-13 00:35:47 +00001365 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001366 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001367 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1368 APInt InMask = Mask;
1369 InMask.trunc(InBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00001370
1371 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001372 // bit is demanded. Temporarily set this bit in the mask for our callee.
1373 if (NewBits.getBoolValue())
1374 InMask |= InSignBit;
Dan Gohmanf990faf2008-02-13 00:35:47 +00001375
Dan Gohmanf990faf2008-02-13 00:35:47 +00001376 KnownZero.trunc(InBits);
1377 KnownOne.trunc(InBits);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001378 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1379
1380 // Note if the sign bit is known to be zero or one.
1381 bool SignBitKnownZero = KnownZero.isNegative();
1382 bool SignBitKnownOne = KnownOne.isNegative();
1383 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1384 "Sign bit can't be known to be both zero and one!");
1385
1386 // If the sign bit wasn't actually demanded by our caller, we don't
1387 // want it set in the KnownZero and KnownOne result values. Reset the
1388 // mask and reapply it to the result values.
1389 InMask = Mask;
1390 InMask.trunc(InBits);
1391 KnownZero &= InMask;
1392 KnownOne &= InMask;
1393
Dan Gohmanf990faf2008-02-13 00:35:47 +00001394 KnownZero.zext(BitWidth);
1395 KnownOne.zext(BitWidth);
1396
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001397 // If the sign bit is known zero or one, the top bits match.
1398 if (SignBitKnownZero)
Dan Gohman309d3d52007-06-22 14:59:07 +00001399 KnownZero |= NewBits;
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001400 else if (SignBitKnownOne)
Dan Gohman309d3d52007-06-22 14:59:07 +00001401 KnownOne |= NewBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00001402 return;
1403 }
1404 case ISD::ANY_EXTEND: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001405 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1406 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001407 APInt InMask = Mask;
1408 InMask.trunc(InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001409 KnownZero.trunc(InBits);
1410 KnownOne.trunc(InBits);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001411 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001412 KnownZero.zext(BitWidth);
1413 KnownOne.zext(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001414 return;
1415 }
1416 case ISD::TRUNCATE: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001417 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1418 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001419 APInt InMask = Mask;
1420 InMask.zext(InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00001421 KnownZero.zext(InBits);
1422 KnownOne.zext(InBits);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001423 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001424 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanf990faf2008-02-13 00:35:47 +00001425 KnownZero.trunc(BitWidth);
1426 KnownOne.trunc(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001427 break;
1428 }
1429 case ISD::AssertZext: {
1430 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanf990faf2008-02-13 00:35:47 +00001431 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohman309d3d52007-06-22 14:59:07 +00001432 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1433 KnownOne, Depth+1);
1434 KnownZero |= (~InMask) & Mask;
1435 return;
1436 }
Chris Lattnerafc8f132007-12-22 21:26:52 +00001437 case ISD::FGETSIGN:
1438 // All bits are zero except the low bit.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001439 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerafc8f132007-12-22 21:26:52 +00001440 return;
1441
Dan Gohman309d3d52007-06-22 14:59:07 +00001442 case ISD::ADD: {
1443 // If either the LHS or the RHS are Zero, the result is zero.
1444 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1445 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1446 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1447 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1448
1449 // Output known-0 bits are known if clear or set in both the low clear bits
1450 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1451 // low 3 bits clear.
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001452 unsigned KnownZeroOut = std::min(KnownZero.countTrailingOnes(),
1453 KnownZero2.countTrailingOnes());
Dan Gohman309d3d52007-06-22 14:59:07 +00001454
Dan Gohmanf990faf2008-02-13 00:35:47 +00001455 KnownZero = APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1456 KnownOne = APInt(BitWidth, 0);
Dan Gohman309d3d52007-06-22 14:59:07 +00001457 return;
1458 }
1459 case ISD::SUB: {
1460 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1461 if (!CLHS) return;
1462
1463 // We know that the top bits of C-X are clear if X contains less bits
1464 // than C (i.e. no wrap-around can happen). For example, 20-X is
1465 // positive if we can prove that X is >= 0 and < 16.
Dan Gohmane1d9ee62008-02-13 22:28:48 +00001466 if (CLHS->getAPIntValue().isNonNegative()) {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001467 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1468 // NLZ can't be BitWidth with no sign bit
Chris Lattner558a3ba2008-02-14 18:48:56 +00001469 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001470 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1471
1472 // If all of the MaskV bits are known to be zero, then we know the output
1473 // top bits are zero, because we now know that the output is from [0-C].
1474 if ((KnownZero & MaskV) == MaskV) {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001475 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1476 // Top bits known zero.
1477 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1478 KnownOne = APInt(BitWidth, 0); // No one bits known.
Dan Gohman309d3d52007-06-22 14:59:07 +00001479 } else {
Dan Gohmanf990faf2008-02-13 00:35:47 +00001480 KnownZero = KnownOne = APInt(BitWidth, 0); // Otherwise, nothing known.
Dan Gohman309d3d52007-06-22 14:59:07 +00001481 }
1482 }
1483 return;
1484 }
1485 default:
1486 // Allow the target to implement this method for its nodes.
1487 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1488 case ISD::INTRINSIC_WO_CHAIN:
1489 case ISD::INTRINSIC_W_CHAIN:
1490 case ISD::INTRINSIC_VOID:
1491 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1492 }
1493 return;
1494 }
1495}
1496
1497/// ComputeNumSignBits - Return the number of times the sign bit of the
1498/// register is replicated into the other bits. We know that at least 1 bit
1499/// is always equal to the sign bit (itself), but other cases can give us
1500/// information. For example, immediately after an "SRA X, 2", we know that
1501/// the top 3 bits are all equal to each other, so we return 3.
1502unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1503 MVT::ValueType VT = Op.getValueType();
1504 assert(MVT::isInteger(VT) && "Invalid VT!");
1505 unsigned VTBits = MVT::getSizeInBits(VT);
1506 unsigned Tmp, Tmp2;
1507
1508 if (Depth == 6)
1509 return 1; // Limit search depth.
1510
1511 switch (Op.getOpcode()) {
1512 default: break;
1513 case ISD::AssertSext:
1514 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1515 return VTBits-Tmp+1;
1516 case ISD::AssertZext:
1517 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1518 return VTBits-Tmp;
1519
1520 case ISD::Constant: {
Dan Gohman10f34072008-03-03 23:35:36 +00001521 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1522 // If negative, return # leading ones.
1523 if (Val.isNegative())
1524 return Val.countLeadingOnes();
Dan Gohman309d3d52007-06-22 14:59:07 +00001525
Dan Gohman10f34072008-03-03 23:35:36 +00001526 // Return # leading zeros.
1527 return Val.countLeadingZeros();
Dan Gohman309d3d52007-06-22 14:59:07 +00001528 }
1529
1530 case ISD::SIGN_EXTEND:
1531 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1532 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1533
1534 case ISD::SIGN_EXTEND_INREG:
1535 // Max of the input and what this extends.
1536 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1537 Tmp = VTBits-Tmp+1;
1538
1539 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1540 return std::max(Tmp, Tmp2);
1541
1542 case ISD::SRA:
1543 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1544 // SRA X, C -> adds C sign bits.
1545 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1546 Tmp += C->getValue();
1547 if (Tmp > VTBits) Tmp = VTBits;
1548 }
1549 return Tmp;
1550 case ISD::SHL:
1551 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1552 // shl destroys sign bits.
1553 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1554 if (C->getValue() >= VTBits || // Bad shift.
1555 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1556 return Tmp - C->getValue();
1557 }
1558 break;
1559 case ISD::AND:
1560 case ISD::OR:
1561 case ISD::XOR: // NOT is handled here.
1562 // Logical binary ops preserve the number of sign bits.
1563 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1564 if (Tmp == 1) return 1; // Early out.
1565 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1566 return std::min(Tmp, Tmp2);
1567
1568 case ISD::SELECT:
1569 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1570 if (Tmp == 1) return 1; // Early out.
1571 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1572 return std::min(Tmp, Tmp2);
1573
1574 case ISD::SETCC:
1575 // If setcc returns 0/-1, all bits are sign bits.
1576 if (TLI.getSetCCResultContents() ==
1577 TargetLowering::ZeroOrNegativeOneSetCCResult)
1578 return VTBits;
1579 break;
1580 case ISD::ROTL:
1581 case ISD::ROTR:
1582 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1583 unsigned RotAmt = C->getValue() & (VTBits-1);
1584
1585 // Handle rotate right by N like a rotate left by 32-N.
1586 if (Op.getOpcode() == ISD::ROTR)
1587 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1588
1589 // If we aren't rotating out all of the known-in sign bits, return the
1590 // number that are left. This handles rotl(sext(x), 1) for example.
1591 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1592 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1593 }
1594 break;
1595 case ISD::ADD:
1596 // Add can have at most one carry bit. Thus we know that the output
1597 // is, at worst, one more bit than the inputs.
1598 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1599 if (Tmp == 1) return 1; // Early out.
1600
1601 // Special case decrementing a value (ADD X, -1):
1602 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1603 if (CRHS->isAllOnesValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00001604 APInt KnownZero, KnownOne;
1605 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00001606 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1607
1608 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1609 // sign bits set.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001610 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohman309d3d52007-06-22 14:59:07 +00001611 return VTBits;
1612
1613 // If we are subtracting one from a positive number, there is no carry
1614 // out of the result.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001615 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00001616 return Tmp;
1617 }
1618
1619 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1620 if (Tmp2 == 1) return 1;
1621 return std::min(Tmp, Tmp2)-1;
1622 break;
1623
1624 case ISD::SUB:
1625 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1626 if (Tmp2 == 1) return 1;
1627
1628 // Handle NEG.
1629 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1630 if (CLHS->getValue() == 0) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00001631 APInt KnownZero, KnownOne;
1632 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00001633 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1634 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1635 // sign bits set.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001636 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohman309d3d52007-06-22 14:59:07 +00001637 return VTBits;
1638
1639 // If the input is known to be positive (the sign bit is known clear),
1640 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001641 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00001642 return Tmp2;
1643
1644 // Otherwise, we treat this like a SUB.
1645 }
1646
1647 // Sub can have at most one carry bit. Thus we know that the output
1648 // is, at worst, one more bit than the inputs.
1649 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1650 if (Tmp == 1) return 1; // Early out.
1651 return std::min(Tmp, Tmp2)-1;
1652 break;
1653 case ISD::TRUNCATE:
1654 // FIXME: it's tricky to do anything useful for this, but it is an important
1655 // case for targets like X86.
1656 break;
1657 }
1658
1659 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1660 if (Op.getOpcode() == ISD::LOAD) {
1661 LoadSDNode *LD = cast<LoadSDNode>(Op);
1662 unsigned ExtType = LD->getExtensionType();
1663 switch (ExtType) {
1664 default: break;
1665 case ISD::SEXTLOAD: // '17' bits known
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001666 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohman309d3d52007-06-22 14:59:07 +00001667 return VTBits-Tmp+1;
1668 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001669 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohman309d3d52007-06-22 14:59:07 +00001670 return VTBits-Tmp;
1671 }
1672 }
1673
1674 // Allow the target to implement this method for its nodes.
1675 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1676 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1677 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1678 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1679 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1680 if (NumBits > 1) return NumBits;
1681 }
1682
1683 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1684 // use this information.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001685 APInt KnownZero, KnownOne;
1686 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00001687 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1688
Dan Gohmanf19609a2008-02-27 01:23:58 +00001689 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohman309d3d52007-06-22 14:59:07 +00001690 Mask = KnownZero;
Dan Gohmanf19609a2008-02-27 01:23:58 +00001691 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohman309d3d52007-06-22 14:59:07 +00001692 Mask = KnownOne;
1693 } else {
1694 // Nothing known.
1695 return 1;
1696 }
1697
1698 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1699 // the number of identical bits in the top of the input value.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001700 Mask = ~Mask;
1701 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00001702 // Return # leading zeros. We use 'min' here in case Val was zero before
1703 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmanf19609a2008-02-27 01:23:58 +00001704 return std::min(VTBits, Mask.countLeadingZeros());
Dan Gohman309d3d52007-06-22 14:59:07 +00001705}
1706
Chris Lattnerbd9acad2006-10-14 00:41:01 +00001707
Evan Chengefd142a2008-02-02 04:07:54 +00001708bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1709 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1710 if (!GA) return false;
1711 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1712 if (!GV) return false;
1713 MachineModuleInfo *MMI = getMachineModuleInfo();
1714 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1715}
1716
1717
Chris Lattner061a1ea2005-01-07 07:46:32 +00001718/// getNode - Gets or creates the specified node.
Chris Lattner600d3082003-08-11 14:57:33 +00001719///
Chris Lattner061a1ea2005-01-07 07:46:32 +00001720SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001721 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00001722 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattnerfcb16472006-08-11 18:38:11 +00001723 void *IP = 0;
1724 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1725 return SDOperand(E, 0);
Chris Lattner9af2c862007-02-04 08:35:21 +00001726 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattnerfcb16472006-08-11 18:38:11 +00001727 CSEMap.InsertNode(N, IP);
1728
1729 AllNodes.push_back(N);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001730 return SDOperand(N, 0);
1731}
1732
Chris Lattner061a1ea2005-01-07 07:46:32 +00001733SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1734 SDOperand Operand) {
Chris Lattnera1874602005-12-23 05:30:37 +00001735 // Constant fold unary operations with an integer constant operand.
Chris Lattner061a1ea2005-01-07 07:46:32 +00001736 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001737 const APInt &Val = C->getAPIntValue();
1738 unsigned BitWidth = MVT::getSizeInBits(VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001739 switch (Opcode) {
1740 default: break;
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001741 case ISD::SIGN_EXTEND: return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner8c393c22005-09-02 00:17:32 +00001742 case ISD::ANY_EXTEND:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001743 case ISD::ZERO_EXTEND:
1744 case ISD::TRUNCATE: return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen7d67e542007-09-19 23:55:34 +00001745 case ISD::UINT_TO_FP:
1746 case ISD::SINT_TO_FP: {
1747 const uint64_t zero[] = {0, 0};
Dale Johannesene5facd52007-10-16 23:38:29 +00001748 // No compile time operations on this type.
1749 if (VT==MVT::ppcf128)
1750 break;
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001751 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
1752 (void)apf.convertFromAPInt(Val,
1753 Opcode==ISD::SINT_TO_FP,
1754 APFloat::rmNearestTiesToEven);
Dale Johannesen7d67e542007-09-19 23:55:34 +00001755 return getConstantFP(apf, VT);
1756 }
Chris Lattnera1874602005-12-23 05:30:37 +00001757 case ISD::BIT_CONVERT:
Chris Lattner6b052902006-03-24 02:20:47 +00001758 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001759 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattner6b052902006-03-24 02:20:47 +00001760 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001761 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattnera1874602005-12-23 05:30:37 +00001762 break;
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00001763 case ISD::BSWAP:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001764 return getConstant(Val.byteSwap(), VT);
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00001765 case ISD::CTPOP:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001766 return getConstant(Val.countPopulation(), VT);
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00001767 case ISD::CTLZ:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001768 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00001769 case ISD::CTTZ:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001770 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001771 }
1772 }
1773
Dale Johannesen446b9002007-08-31 23:34:27 +00001774 // Constant fold unary operations with a floating point constant operand.
1775 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1776 APFloat V = C->getValueAPF(); // make copy
Chris Lattner72733e52008-01-17 07:00:52 +00001777 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesene5facd52007-10-16 23:38:29 +00001778 switch (Opcode) {
1779 case ISD::FNEG:
1780 V.changeSign();
1781 return getConstantFP(V, VT);
1782 case ISD::FABS:
1783 V.clearSign();
1784 return getConstantFP(V, VT);
1785 case ISD::FP_ROUND:
1786 case ISD::FP_EXTEND:
1787 // This can return overflow, underflow, or inexact; we don't care.
1788 // FIXME need to be more flexible about rounding mode.
1789 (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle :
1790 VT==MVT::f64 ? APFloat::IEEEdouble :
1791 VT==MVT::f80 ? APFloat::x87DoubleExtended :
1792 VT==MVT::f128 ? APFloat::IEEEquad :
1793 APFloat::Bogus,
1794 APFloat::rmNearestTiesToEven);
1795 return getConstantFP(V, VT);
1796 case ISD::FP_TO_SINT:
1797 case ISD::FP_TO_UINT: {
1798 integerPart x;
1799 assert(integerPartWidth >= 64);
1800 // FIXME need to be more flexible about rounding mode.
1801 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1802 Opcode==ISD::FP_TO_SINT,
1803 APFloat::rmTowardZero);
1804 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1805 break;
1806 return getConstant(x, VT);
1807 }
1808 case ISD::BIT_CONVERT:
1809 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1810 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1811 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1812 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesen446b9002007-08-31 23:34:27 +00001813 break;
Dale Johannesene5facd52007-10-16 23:38:29 +00001814 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001815 }
Dale Johannesen446b9002007-08-31 23:34:27 +00001816 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001817
1818 unsigned OpOpcode = Operand.Val->getOpcode();
1819 switch (Opcode) {
Chris Lattner96e809c2005-01-21 18:01:22 +00001820 case ISD::TokenFactor:
1821 return Operand; // Factor of one node? No factor.
Chris Lattner72733e52008-01-17 07:00:52 +00001822 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattner18d67182007-04-09 05:23:13 +00001823 case ISD::FP_EXTEND:
1824 assert(MVT::isFloatingPoint(VT) &&
1825 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner52188502008-01-16 17:59:31 +00001826 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner18d67182007-04-09 05:23:13 +00001827 break;
Chris Lattner72733e52008-01-17 07:00:52 +00001828 case ISD::SIGN_EXTEND:
Chris Lattner18d67182007-04-09 05:23:13 +00001829 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1830 "Invalid SIGN_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00001831 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001832 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1833 && "Invalid sext node, dst < src!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00001834 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1835 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1836 break;
1837 case ISD::ZERO_EXTEND:
Chris Lattner18d67182007-04-09 05:23:13 +00001838 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1839 "Invalid ZERO_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00001840 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001841 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1842 && "Invalid zext node, dst < src!");
Chris Lattnerb32d9312005-04-07 19:43:53 +00001843 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner4dfd2cf2005-01-12 18:51:15 +00001844 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattner061a1ea2005-01-07 07:46:32 +00001845 break;
Chris Lattner8c393c22005-09-02 00:17:32 +00001846 case ISD::ANY_EXTEND:
Chris Lattner18d67182007-04-09 05:23:13 +00001847 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1848 "Invalid ANY_EXTEND!");
Chris Lattner8c393c22005-09-02 00:17:32 +00001849 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001850 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1851 && "Invalid anyext node, dst < src!");
Chris Lattner8c393c22005-09-02 00:17:32 +00001852 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1853 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1854 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1855 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001856 case ISD::TRUNCATE:
Chris Lattner18d67182007-04-09 05:23:13 +00001857 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1858 "Invalid TRUNCATE!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00001859 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001860 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1861 && "Invalid truncate node, src < dst!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00001862 if (OpOpcode == ISD::TRUNCATE)
1863 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner8c393c22005-09-02 00:17:32 +00001864 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1865 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattner4d5ba992005-01-07 21:56:24 +00001866 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001867 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1868 < MVT::getSizeInBits(VT))
Chris Lattner4d5ba992005-01-07 21:56:24 +00001869 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001870 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1871 > MVT::getSizeInBits(VT))
Chris Lattner4d5ba992005-01-07 21:56:24 +00001872 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1873 else
1874 return Operand.Val->getOperand(0);
1875 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001876 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00001877 case ISD::BIT_CONVERT:
1878 // Basic sanity checking.
Chris Lattner5fe1f542006-03-31 02:06:56 +00001879 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencer22301442006-11-11 20:07:59 +00001880 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner36e663d2005-12-23 00:16:34 +00001881 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerefbbedbf2005-12-23 05:37:50 +00001882 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1883 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattnera9e77d12006-04-04 01:02:22 +00001884 if (OpOpcode == ISD::UNDEF)
1885 return getNode(ISD::UNDEF, VT);
Chris Lattner36e663d2005-12-23 00:16:34 +00001886 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001887 case ISD::SCALAR_TO_VECTOR:
1888 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman5c441312007-06-14 22:58:02 +00001889 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001890 "Illegal SCALAR_TO_VECTOR node!");
1891 break;
Chris Lattner0ea81f92005-04-09 03:02:46 +00001892 case ISD::FNEG:
Chris Lattner6f3b5772005-09-28 22:28:18 +00001893 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1894 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner0ea81f92005-04-09 03:02:46 +00001895 Operand.Val->getOperand(0));
1896 if (OpOpcode == ISD::FNEG) // --X -> X
1897 return Operand.Val->getOperand(0);
1898 break;
1899 case ISD::FABS:
1900 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1901 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1902 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001903 }
1904
Chris Lattnerf9c19152005-08-25 19:12:10 +00001905 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00001906 SDVTList VTs = getVTList(VT);
Chris Lattnerf9c19152005-08-25 19:12:10 +00001907 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskeyf576b422006-10-27 23:46:08 +00001908 FoldingSetNodeID ID;
Chris Lattner9af2c862007-02-04 08:35:21 +00001909 SDOperand Ops[1] = { Operand };
Chris Lattnerf17b4222007-02-04 07:28:00 +00001910 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00001911 void *IP = 0;
1912 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1913 return SDOperand(E, 0);
Chris Lattner9af2c862007-02-04 08:35:21 +00001914 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00001915 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00001916 } else {
Chris Lattner9af2c862007-02-04 08:35:21 +00001917 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnerf9c19152005-08-25 19:12:10 +00001918 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001919 AllNodes.push_back(N);
1920 return SDOperand(N, 0);
Chris Lattner600d3082003-08-11 14:57:33 +00001921}
1922
Chris Lattnerd929f8b2005-04-18 03:48:41 +00001923
1924
Chris Lattner061a1ea2005-01-07 07:46:32 +00001925SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1926 SDOperand N1, SDOperand N2) {
Chris Lattner16713612008-01-22 19:09:33 +00001927 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1928 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner4e550eb2005-01-16 02:23:22 +00001929 switch (Opcode) {
Chris Lattner16713612008-01-22 19:09:33 +00001930 default: break;
Chris Lattner9b75e142005-01-19 18:01:40 +00001931 case ISD::TokenFactor:
1932 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1933 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner16713612008-01-22 19:09:33 +00001934 // Fold trivial token factors.
1935 if (N1.getOpcode() == ISD::EntryToken) return N2;
1936 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner9b75e142005-01-19 18:01:40 +00001937 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00001938 case ISD::AND:
Chris Lattner16713612008-01-22 19:09:33 +00001939 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1940 N1.getValueType() == VT && "Binary operator types must match!");
1941 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1942 // worth handling here.
1943 if (N2C && N2C->getValue() == 0)
1944 return N2;
Chris Lattner720d8992008-01-26 01:05:42 +00001945 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
1946 return N1;
Chris Lattner16713612008-01-22 19:09:33 +00001947 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00001948 case ISD::OR:
1949 case ISD::XOR:
Chris Lattner16713612008-01-22 19:09:33 +00001950 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1951 N1.getValueType() == VT && "Binary operator types must match!");
1952 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1953 // worth handling here.
1954 if (N2C && N2C->getValue() == 0)
1955 return N1;
1956 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00001957 case ISD::UDIV:
1958 case ISD::UREM:
Chris Lattner51836bb2005-05-15 05:39:08 +00001959 case ISD::MULHU:
1960 case ISD::MULHS:
Chris Lattner4e550eb2005-01-16 02:23:22 +00001961 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1962 // fall through
1963 case ISD::ADD:
1964 case ISD::SUB:
1965 case ISD::MUL:
1966 case ISD::SDIV:
1967 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00001968 case ISD::FADD:
1969 case ISD::FSUB:
1970 case ISD::FMUL:
1971 case ISD::FDIV:
1972 case ISD::FREM:
Chris Lattner4e550eb2005-01-16 02:23:22 +00001973 assert(N1.getValueType() == N2.getValueType() &&
1974 N1.getValueType() == VT && "Binary operator types must match!");
1975 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00001976 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1977 assert(N1.getValueType() == VT &&
1978 MVT::isFloatingPoint(N1.getValueType()) &&
1979 MVT::isFloatingPoint(N2.getValueType()) &&
1980 "Invalid FCOPYSIGN!");
1981 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00001982 case ISD::SHL:
1983 case ISD::SRA:
1984 case ISD::SRL:
Nate Begeman1b8121b2006-01-11 21:21:00 +00001985 case ISD::ROTL:
1986 case ISD::ROTR:
Chris Lattner4e550eb2005-01-16 02:23:22 +00001987 assert(VT == N1.getValueType() &&
1988 "Shift operators return type must be the same as their first arg");
1989 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner16f64df2005-01-17 17:15:02 +00001990 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner4e550eb2005-01-16 02:23:22 +00001991 break;
Chris Lattner0b6ba902005-07-10 00:07:11 +00001992 case ISD::FP_ROUND_INREG: {
1993 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1994 assert(VT == N1.getValueType() && "Not an inreg round!");
1995 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1996 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00001997 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1998 "Not rounding down!");
Chris Lattner16713612008-01-22 19:09:33 +00001999 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner0b6ba902005-07-10 00:07:11 +00002000 break;
2001 }
Chris Lattner72733e52008-01-17 07:00:52 +00002002 case ISD::FP_ROUND:
2003 assert(MVT::isFloatingPoint(VT) &&
2004 MVT::isFloatingPoint(N1.getValueType()) &&
2005 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2006 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner16713612008-01-22 19:09:33 +00002007 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner72733e52008-01-17 07:00:52 +00002008 break;
Nate Begeman43144a22005-08-30 02:44:00 +00002009 case ISD::AssertSext:
Chris Lattner16713612008-01-22 19:09:33 +00002010 case ISD::AssertZext: {
2011 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2012 assert(VT == N1.getValueType() && "Not an inreg extend!");
2013 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2014 "Cannot *_EXTEND_INREG FP types");
2015 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2016 "Not extending!");
Duncan Sands56689502008-02-10 10:08:52 +00002017 if (VT == EVT) return N1; // noop assertion.
Chris Lattner16713612008-01-22 19:09:33 +00002018 break;
2019 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00002020 case ISD::SIGN_EXTEND_INREG: {
2021 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2022 assert(VT == N1.getValueType() && "Not an inreg extend!");
2023 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2024 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00002025 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2026 "Not extending!");
Chris Lattner16713612008-01-22 19:09:33 +00002027 if (EVT == VT) return N1; // Not actually extending
Chris Lattner0b6ba902005-07-10 00:07:11 +00002028
Chris Lattner16713612008-01-22 19:09:33 +00002029 if (N1C) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002030 APInt Val = N1C->getAPIntValue();
Chris Lattner751817c2006-05-06 23:05:41 +00002031 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002032 Val <<= Val.getBitWidth()-FromBits;
2033 Val = Val.lshr(Val.getBitWidth()-FromBits);
Chris Lattner751817c2006-05-06 23:05:41 +00002034 return getConstant(Val, VT);
2035 }
Chris Lattner16713612008-01-22 19:09:33 +00002036 break;
2037 }
2038 case ISD::EXTRACT_VECTOR_ELT:
2039 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2040
2041 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2042 // expanding copies of large vectors from registers.
2043 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2044 N1.getNumOperands() > 0) {
2045 unsigned Factor =
2046 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2047 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2048 N1.getOperand(N2C->getValue() / Factor),
2049 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2050 }
2051
2052 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2053 // expanding large vector constants.
2054 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2055 return N1.getOperand(N2C->getValue());
2056
2057 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2058 // operations are lowered to scalars.
2059 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2060 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2061 if (IEC == N2C)
2062 return N1.getOperand(1);
2063 else
2064 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2065 }
2066 break;
2067 case ISD::EXTRACT_ELEMENT:
2068 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Chris Lattner751817c2006-05-06 23:05:41 +00002069
Chris Lattner16713612008-01-22 19:09:33 +00002070 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2071 // 64-bit integers into 32-bit parts. Instead of building the extract of
2072 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2073 if (N1.getOpcode() == ISD::BUILD_PAIR)
2074 return N1.getOperand(N2C->getValue());
2075
2076 // EXTRACT_ELEMENT of a constant int is also very common.
2077 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2078 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2079 return getConstant(C->getValue() >> Shift, VT);
2080 }
2081 break;
Duncan Sandse7b462b2008-02-20 17:38:09 +00002082 case ISD::EXTRACT_SUBVECTOR:
2083 if (N1.getValueType() == VT) // Trivial extraction.
2084 return N1;
2085 break;
Chris Lattner16713612008-01-22 19:09:33 +00002086 }
2087
2088 if (N1C) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00002089 if (N2C) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002090 APInt C1 = N1C->getAPIntValue(), C2 = N2C->getAPIntValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002091 switch (Opcode) {
2092 case ISD::ADD: return getConstant(C1 + C2, VT);
2093 case ISD::SUB: return getConstant(C1 - C2, VT);
2094 case ISD::MUL: return getConstant(C1 * C2, VT);
2095 case ISD::UDIV:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002096 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002097 break;
2098 case ISD::UREM :
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002099 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002100 break;
2101 case ISD::SDIV :
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002102 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002103 break;
2104 case ISD::SREM :
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002105 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002106 break;
2107 case ISD::AND : return getConstant(C1 & C2, VT);
2108 case ISD::OR : return getConstant(C1 | C2, VT);
2109 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemane07bc282005-08-31 00:27:53 +00002110 case ISD::SHL : return getConstant(C1 << C2, VT);
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002111 case ISD::SRL : return getConstant(C1.lshr(C2), VT);
2112 case ISD::SRA : return getConstant(C1.ashr(C2), VT);
2113 case ISD::ROTL : return getConstant(C1.rotl(C2), VT);
2114 case ISD::ROTR : return getConstant(C1.rotr(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002115 default: break;
2116 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002117 } else { // Cannonicalize constant to RHS if commutative
2118 if (isCommutativeBinOp(Opcode)) {
2119 std::swap(N1C, N2C);
2120 std::swap(N1, N2);
2121 }
2122 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002123 }
2124
Chris Lattner16713612008-01-22 19:09:33 +00002125 // Constant fold FP operations.
Chris Lattner061a1ea2005-01-07 07:46:32 +00002126 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2127 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner0b6ba902005-07-10 00:07:11 +00002128 if (N1CFP) {
Chris Lattner16713612008-01-22 19:09:33 +00002129 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2130 // Cannonicalize constant to RHS if commutative
2131 std::swap(N1CFP, N2CFP);
2132 std::swap(N1, N2);
2133 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesen446b9002007-08-31 23:34:27 +00002134 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2135 APFloat::opStatus s;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002136 switch (Opcode) {
Dale Johannesen446b9002007-08-31 23:34:27 +00002137 case ISD::FADD:
2138 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner16713612008-01-22 19:09:33 +00002139 if (s != APFloat::opInvalidOp)
Dale Johannesen446b9002007-08-31 23:34:27 +00002140 return getConstantFP(V1, VT);
2141 break;
2142 case ISD::FSUB:
2143 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2144 if (s!=APFloat::opInvalidOp)
2145 return getConstantFP(V1, VT);
2146 break;
2147 case ISD::FMUL:
2148 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2149 if (s!=APFloat::opInvalidOp)
2150 return getConstantFP(V1, VT);
2151 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00002152 case ISD::FDIV:
Dale Johannesen446b9002007-08-31 23:34:27 +00002153 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2154 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2155 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002156 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00002157 case ISD::FREM :
Dale Johannesen446b9002007-08-31 23:34:27 +00002158 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2159 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2160 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002161 break;
Dale Johannesen446b9002007-08-31 23:34:27 +00002162 case ISD::FCOPYSIGN:
2163 V1.copySign(V2);
2164 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002165 default: break;
2166 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002167 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00002168 }
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002169
2170 // Canonicalize an UNDEF to the RHS, even over a constant.
2171 if (N1.getOpcode() == ISD::UNDEF) {
2172 if (isCommutativeBinOp(Opcode)) {
2173 std::swap(N1, N2);
2174 } else {
2175 switch (Opcode) {
2176 case ISD::FP_ROUND_INREG:
2177 case ISD::SIGN_EXTEND_INREG:
2178 case ISD::SUB:
2179 case ISD::FSUB:
2180 case ISD::FDIV:
2181 case ISD::FREM:
Chris Lattner78da6792006-05-08 17:29:49 +00002182 case ISD::SRA:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002183 return N1; // fold op(undef, arg2) -> undef
2184 case ISD::UDIV:
2185 case ISD::SDIV:
2186 case ISD::UREM:
2187 case ISD::SREM:
Chris Lattner78da6792006-05-08 17:29:49 +00002188 case ISD::SRL:
2189 case ISD::SHL:
Chris Lattner01a26c72007-04-25 00:00:45 +00002190 if (!MVT::isVector(VT))
2191 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2192 // For vectors, we can't easily build an all zero vector, just return
2193 // the LHS.
2194 return N2;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002195 }
2196 }
2197 }
2198
Chris Lattner751817c2006-05-06 23:05:41 +00002199 // Fold a bunch of operators when the RHS is undef.
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002200 if (N2.getOpcode() == ISD::UNDEF) {
2201 switch (Opcode) {
2202 case ISD::ADD:
Chris Lattner362621c2007-03-04 20:01:46 +00002203 case ISD::ADDC:
2204 case ISD::ADDE:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002205 case ISD::SUB:
2206 case ISD::FADD:
2207 case ISD::FSUB:
2208 case ISD::FMUL:
2209 case ISD::FDIV:
2210 case ISD::FREM:
2211 case ISD::UDIV:
2212 case ISD::SDIV:
2213 case ISD::UREM:
2214 case ISD::SREM:
2215 case ISD::XOR:
2216 return N2; // fold op(arg1, undef) -> undef
2217 case ISD::MUL:
2218 case ISD::AND:
Chris Lattner78da6792006-05-08 17:29:49 +00002219 case ISD::SRL:
2220 case ISD::SHL:
Chris Lattner01a26c72007-04-25 00:00:45 +00002221 if (!MVT::isVector(VT))
2222 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2223 // For vectors, we can't easily build an all zero vector, just return
2224 // the LHS.
2225 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002226 case ISD::OR:
Chris Lattner01a26c72007-04-25 00:00:45 +00002227 if (!MVT::isVector(VT))
2228 return getConstant(MVT::getIntVTBitMask(VT), VT);
2229 // For vectors, we can't easily build an all one vector, just return
2230 // the LHS.
2231 return N1;
Chris Lattner78da6792006-05-08 17:29:49 +00002232 case ISD::SRA:
2233 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00002234 }
2235 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00002236
Chris Lattner724f7ee2005-05-11 18:57:39 +00002237 // Memoize this node if possible.
2238 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002239 SDVTList VTs = getVTList(VT);
Chris Lattnerccb44762006-01-29 07:58:15 +00002240 if (VT != MVT::Flag) {
Chris Lattner9af2c862007-02-04 08:35:21 +00002241 SDOperand Ops[] = { N1, N2 };
Jim Laskeyf576b422006-10-27 23:46:08 +00002242 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00002243 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002244 void *IP = 0;
2245 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2246 return SDOperand(E, 0);
Chris Lattner9af2c862007-02-04 08:35:21 +00002247 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002248 CSEMap.InsertNode(N, IP);
Chris Lattner724f7ee2005-05-11 18:57:39 +00002249 } else {
Chris Lattner9af2c862007-02-04 08:35:21 +00002250 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner724f7ee2005-05-11 18:57:39 +00002251 }
2252
Chris Lattner061a1ea2005-01-07 07:46:32 +00002253 AllNodes.push_back(N);
2254 return SDOperand(N, 0);
2255}
2256
Chris Lattner061a1ea2005-01-07 07:46:32 +00002257SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2258 SDOperand N1, SDOperand N2, SDOperand N3) {
2259 // Perform various simplifications.
2260 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2261 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002262 switch (Opcode) {
Chris Lattnerd47675e2005-08-09 20:20:18 +00002263 case ISD::SETCC: {
Chris Lattnerbd9acad2006-10-14 00:41:01 +00002264 // Use FoldSetCC to simplify SETCC's.
2265 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattnerd47675e2005-08-09 20:20:18 +00002266 if (Simp.Val) return Simp;
2267 break;
2268 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002269 case ISD::SELECT:
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00002270 if (N1C) {
2271 if (N1C->getValue())
Chris Lattner061a1ea2005-01-07 07:46:32 +00002272 return N2; // select true, X, Y -> X
Misha Brukman835702a2005-04-21 22:36:52 +00002273 else
Chris Lattner061a1ea2005-01-07 07:46:32 +00002274 return N3; // select false, X, Y -> Y
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00002275 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002276
2277 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattner061a1ea2005-01-07 07:46:32 +00002278 break;
Chris Lattner5c66e452005-01-07 22:49:57 +00002279 case ISD::BRCOND:
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00002280 if (N2C) {
Chris Lattner5c66e452005-01-07 22:49:57 +00002281 if (N2C->getValue()) // Unconditional branch
2282 return getNode(ISD::BR, MVT::Other, N1, N3);
2283 else
2284 return N1; // Never-taken branch
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00002285 }
Chris Lattnere0f1fe12005-01-07 23:32:00 +00002286 break;
Chris Lattner00f05892006-03-19 23:56:04 +00002287 case ISD::VECTOR_SHUFFLE:
2288 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2289 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2290 N3.getOpcode() == ISD::BUILD_VECTOR &&
2291 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2292 "Illegal VECTOR_SHUFFLE node!");
2293 break;
Dan Gohmana8665142007-06-25 16:23:39 +00002294 case ISD::BIT_CONVERT:
2295 // Fold bit_convert nodes from a type to themselves.
2296 if (N1.getValueType() == VT)
2297 return N1;
Chris Lattnera77cb3c2007-04-12 05:58:43 +00002298 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002299 }
2300
Chris Lattnerf9c19152005-08-25 19:12:10 +00002301 // Memoize node if it doesn't produce a flag.
2302 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002303 SDVTList VTs = getVTList(VT);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002304 if (VT != MVT::Flag) {
Chris Lattner9af2c862007-02-04 08:35:21 +00002305 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00002306 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00002307 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002308 void *IP = 0;
2309 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2310 return SDOperand(E, 0);
Chris Lattner9af2c862007-02-04 08:35:21 +00002311 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002312 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002313 } else {
Chris Lattner9af2c862007-02-04 08:35:21 +00002314 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002315 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002316 AllNodes.push_back(N);
2317 return SDOperand(N, 0);
2318}
2319
2320SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00002321 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00002322 SDOperand N4) {
Chris Lattner97af9d52006-08-08 01:09:31 +00002323 SDOperand Ops[] = { N1, N2, N3, N4 };
2324 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00002325}
2326
Chris Lattner36db1ed2005-07-10 00:29:18 +00002327SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2328 SDOperand N1, SDOperand N2, SDOperand N3,
2329 SDOperand N4, SDOperand N5) {
Chris Lattner97af9d52006-08-08 01:09:31 +00002330 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2331 return getNode(Opcode, VT, Ops, 5);
Chris Lattner36db1ed2005-07-10 00:29:18 +00002332}
2333
Rafael Espindola846c19dd2007-10-19 10:41:11 +00002334SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2335 SDOperand Src, SDOperand Size,
2336 SDOperand Align,
2337 SDOperand AlwaysInline) {
2338 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2339 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2340}
2341
2342SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2343 SDOperand Src, SDOperand Size,
2344 SDOperand Align,
2345 SDOperand AlwaysInline) {
2346 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2347 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2348}
2349
2350SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2351 SDOperand Src, SDOperand Size,
2352 SDOperand Align,
2353 SDOperand AlwaysInline) {
2354 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2355 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2356}
2357
Andrew Lenharth95528942008-02-21 06:45:13 +00002358SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharth72548262008-02-21 16:11:38 +00002359 SDOperand Ptr, SDOperand Cmp,
2360 SDOperand Swp, MVT::ValueType VT) {
Andrew Lenharth95528942008-02-21 06:45:13 +00002361 assert(Opcode == ISD::ATOMIC_LCS && "Invalid Atomic Op");
Andrew Lenharth72548262008-02-21 16:11:38 +00002362 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
2363 SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
Andrew Lenharth95528942008-02-21 06:45:13 +00002364 FoldingSetNodeID ID;
Andrew Lenharth72548262008-02-21 16:11:38 +00002365 SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharth95528942008-02-21 06:45:13 +00002366 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
2367 ID.AddInteger((unsigned int)VT);
2368 void* IP = 0;
2369 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2370 return SDOperand(E, 0);
Andrew Lenharth72548262008-02-21 16:11:38 +00002371 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, VT);
Andrew Lenharth95528942008-02-21 06:45:13 +00002372 CSEMap.InsertNode(N, IP);
2373 AllNodes.push_back(N);
2374 return SDOperand(N, 0);
2375}
2376
2377SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharth72548262008-02-21 16:11:38 +00002378 SDOperand Ptr, SDOperand Val,
Andrew Lenharth95528942008-02-21 06:45:13 +00002379 MVT::ValueType VT) {
2380 assert((Opcode == ISD::ATOMIC_LAS || Opcode == ISD::ATOMIC_SWAP)
2381 && "Invalid Atomic Op");
Andrew Lenharth72548262008-02-21 16:11:38 +00002382 SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
Andrew Lenharth95528942008-02-21 06:45:13 +00002383 FoldingSetNodeID ID;
Andrew Lenharth72548262008-02-21 16:11:38 +00002384 SDOperand Ops[] = {Chain, Ptr, Val};
Andrew Lenharth95528942008-02-21 06:45:13 +00002385 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2386 ID.AddInteger((unsigned int)VT);
2387 void* IP = 0;
2388 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2389 return SDOperand(E, 0);
Andrew Lenharth72548262008-02-21 16:11:38 +00002390 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, VT);
Andrew Lenharth95528942008-02-21 06:45:13 +00002391 CSEMap.InsertNode(N, IP);
2392 AllNodes.push_back(N);
2393 return SDOperand(N, 0);
2394}
2395
Evan Chengdadc1052005-12-10 00:37:58 +00002396SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2397 SDOperand Chain, SDOperand Ptr,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002398 const Value *SV, int SVOffset,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002399 bool isVolatile, unsigned Alignment) {
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002400 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2401 const Type *Ty = 0;
Dan Gohmana8665142007-06-25 16:23:39 +00002402 if (VT != MVT::iPTR) {
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002403 Ty = MVT::getTypeForValueType(VT);
2404 } else if (SV) {
2405 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2406 assert(PT && "Value for load must be a pointer");
2407 Ty = PT->getElementType();
2408 }
2409 assert(Ty && "Could not get type information for load");
2410 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2411 }
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002412 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Chengab51cf22006-10-13 21:14:26 +00002413 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattnerf17b4222007-02-04 07:28:00 +00002414 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskeyf576b422006-10-27 23:46:08 +00002415 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00002416 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002417 ID.AddInteger(ISD::UNINDEXED);
2418 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner7955bbd2007-09-13 06:09:48 +00002419 ID.AddInteger((unsigned int)VT);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002420 ID.AddInteger(Alignment);
2421 ID.AddInteger(isVolatile);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002422 void *IP = 0;
2423 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2424 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002425 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Chengab51cf22006-10-13 21:14:26 +00002426 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2427 isVolatile);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002428 CSEMap.InsertNode(N, IP);
2429 AllNodes.push_back(N);
2430 return SDOperand(N, 0);
2431}
2432
2433SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattner296a83c2007-02-01 04:55:59 +00002434 SDOperand Chain, SDOperand Ptr,
2435 const Value *SV,
Evan Chenge71fe34d2006-10-09 20:57:25 +00002436 int SVOffset, MVT::ValueType EVT,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002437 bool isVolatile, unsigned Alignment) {
Evan Chenge71fe34d2006-10-09 20:57:25 +00002438 // If they are asking for an extending load from/to the same thing, return a
2439 // normal load.
2440 if (VT == EVT)
Duncan Sandsd9834b22007-10-19 13:05:40 +00002441 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002442
2443 if (MVT::isVector(VT))
Dan Gohman5c441312007-06-14 22:58:02 +00002444 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Chenge71fe34d2006-10-09 20:57:25 +00002445 else
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00002446 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2447 "Should only be an extending load, not truncating!");
Evan Chenge71fe34d2006-10-09 20:57:25 +00002448 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2449 "Cannot sign/zero extend a FP/Vector load!");
2450 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2451 "Cannot convert from FP to Int or Int -> FP!");
2452
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002453 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2454 const Type *Ty = 0;
Dan Gohmana8665142007-06-25 16:23:39 +00002455 if (VT != MVT::iPTR) {
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002456 Ty = MVT::getTypeForValueType(VT);
2457 } else if (SV) {
2458 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2459 assert(PT && "Value for load must be a pointer");
2460 Ty = PT->getElementType();
2461 }
2462 assert(Ty && "Could not get type information for load");
2463 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2464 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00002465 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Chengab51cf22006-10-13 21:14:26 +00002466 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattnerf17b4222007-02-04 07:28:00 +00002467 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskeyf576b422006-10-27 23:46:08 +00002468 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00002469 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002470 ID.AddInteger(ISD::UNINDEXED);
2471 ID.AddInteger(ExtType);
Chris Lattner7955bbd2007-09-13 06:09:48 +00002472 ID.AddInteger((unsigned int)EVT);
Evan Chenge71fe34d2006-10-09 20:57:25 +00002473 ID.AddInteger(Alignment);
2474 ID.AddInteger(isVolatile);
2475 void *IP = 0;
2476 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2477 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002478 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Chengab51cf22006-10-13 21:14:26 +00002479 SV, SVOffset, Alignment, isVolatile);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002480 CSEMap.InsertNode(N, IP);
Evan Chengdadc1052005-12-10 00:37:58 +00002481 AllNodes.push_back(N);
2482 return SDOperand(N, 0);
2483}
2484
Evan Chengb1500072006-11-09 17:55:04 +00002485SDOperand
2486SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2487 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng1839d762006-10-17 21:14:32 +00002488 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng96d6bf52006-10-26 21:53:40 +00002489 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2490 "Load is already a indexed load!");
Evan Cheng1839d762006-10-17 21:14:32 +00002491 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng96d6bf52006-10-26 21:53:40 +00002492 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattnerf17b4222007-02-04 07:28:00 +00002493 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskeyf576b422006-10-27 23:46:08 +00002494 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00002495 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng1839d762006-10-17 21:14:32 +00002496 ID.AddInteger(AM);
2497 ID.AddInteger(LD->getExtensionType());
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002498 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng1839d762006-10-17 21:14:32 +00002499 ID.AddInteger(LD->getAlignment());
2500 ID.AddInteger(LD->isVolatile());
2501 void *IP = 0;
2502 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2503 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002504 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002505 LD->getExtensionType(), LD->getMemoryVT(),
Evan Cheng1839d762006-10-17 21:14:32 +00002506 LD->getSrcValue(), LD->getSrcValueOffset(),
2507 LD->getAlignment(), LD->isVolatile());
Evan Cheng1839d762006-10-17 21:14:32 +00002508 CSEMap.InsertNode(N, IP);
2509 AllNodes.push_back(N);
2510 return SDOperand(N, 0);
2511}
2512
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002513SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Chengab51cf22006-10-13 21:14:26 +00002514 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002515 bool isVolatile, unsigned Alignment) {
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002516 MVT::ValueType VT = Val.getValueType();
Evan Chengab51cf22006-10-13 21:14:26 +00002517
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002518 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2519 const Type *Ty = 0;
Dan Gohmana8665142007-06-25 16:23:39 +00002520 if (VT != MVT::iPTR) {
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002521 Ty = MVT::getTypeForValueType(VT);
2522 } else if (SV) {
2523 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2524 assert(PT && "Value for store must be a pointer");
2525 Ty = PT->getElementType();
2526 }
2527 assert(Ty && "Could not get type information for store");
2528 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2529 }
Evan Chengaf309d22006-10-05 22:57:11 +00002530 SDVTList VTs = getVTList(MVT::Other);
Evan Chengab51cf22006-10-13 21:14:26 +00002531 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002532 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskeyf576b422006-10-27 23:46:08 +00002533 FoldingSetNodeID ID;
2534 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Chengab51cf22006-10-13 21:14:26 +00002535 ID.AddInteger(ISD::UNINDEXED);
2536 ID.AddInteger(false);
Chris Lattner7955bbd2007-09-13 06:09:48 +00002537 ID.AddInteger((unsigned int)VT);
Evan Chengab51cf22006-10-13 21:14:26 +00002538 ID.AddInteger(Alignment);
2539 ID.AddInteger(isVolatile);
Evan Chengaf309d22006-10-05 22:57:11 +00002540 void *IP = 0;
2541 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2542 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002543 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Chengab51cf22006-10-13 21:14:26 +00002544 VT, SV, SVOffset, Alignment, isVolatile);
Evan Chengab51cf22006-10-13 21:14:26 +00002545 CSEMap.InsertNode(N, IP);
2546 AllNodes.push_back(N);
2547 return SDOperand(N, 0);
2548}
2549
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002550SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Chengab51cf22006-10-13 21:14:26 +00002551 SDOperand Ptr, const Value *SV,
2552 int SVOffset, MVT::ValueType SVT,
Christopher Lamb8af6d582007-04-22 23:15:30 +00002553 bool isVolatile, unsigned Alignment) {
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002554 MVT::ValueType VT = Val.getValueType();
Duncan Sands341f0932007-10-30 12:40:58 +00002555
2556 if (VT == SVT)
2557 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002558
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00002559 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2560 "Not a truncation?");
Evan Chengab51cf22006-10-13 21:14:26 +00002561 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2562 "Can't do FP-INT conversion!");
2563
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002564 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2565 const Type *Ty = 0;
Dan Gohmana8665142007-06-25 16:23:39 +00002566 if (VT != MVT::iPTR) {
Dan Gohman92a7f3a2007-06-04 15:49:41 +00002567 Ty = MVT::getTypeForValueType(VT);
2568 } else if (SV) {
2569 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2570 assert(PT && "Value for store must be a pointer");
2571 Ty = PT->getElementType();
2572 }
2573 assert(Ty && "Could not get type information for store");
2574 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2575 }
Evan Chengab51cf22006-10-13 21:14:26 +00002576 SDVTList VTs = getVTList(MVT::Other);
2577 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohen7d6f3db2006-11-05 19:31:28 +00002578 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskeyf576b422006-10-27 23:46:08 +00002579 FoldingSetNodeID ID;
2580 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Chengab51cf22006-10-13 21:14:26 +00002581 ID.AddInteger(ISD::UNINDEXED);
Duncan Sands341f0932007-10-30 12:40:58 +00002582 ID.AddInteger(1);
Chris Lattner7955bbd2007-09-13 06:09:48 +00002583 ID.AddInteger((unsigned int)SVT);
Evan Chengab51cf22006-10-13 21:14:26 +00002584 ID.AddInteger(Alignment);
2585 ID.AddInteger(isVolatile);
2586 void *IP = 0;
2587 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2588 return SDOperand(E, 0);
Duncan Sands341f0932007-10-30 12:40:58 +00002589 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Chengab51cf22006-10-13 21:14:26 +00002590 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengaf309d22006-10-05 22:57:11 +00002591 CSEMap.InsertNode(N, IP);
2592 AllNodes.push_back(N);
2593 return SDOperand(N, 0);
2594}
2595
Evan Chengb1500072006-11-09 17:55:04 +00002596SDOperand
2597SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2598 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng1a1e23e2006-11-05 09:30:09 +00002599 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2600 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2601 "Store is already a indexed store!");
2602 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2603 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2604 FoldingSetNodeID ID;
2605 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2606 ID.AddInteger(AM);
2607 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002608 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng1a1e23e2006-11-05 09:30:09 +00002609 ID.AddInteger(ST->getAlignment());
2610 ID.AddInteger(ST->isVolatile());
2611 void *IP = 0;
2612 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2613 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002614 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002615 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng1a1e23e2006-11-05 09:30:09 +00002616 ST->getSrcValue(), ST->getSrcValueOffset(),
2617 ST->getAlignment(), ST->isVolatile());
Evan Cheng1a1e23e2006-11-05 09:30:09 +00002618 CSEMap.InsertNode(N, IP);
2619 AllNodes.push_back(N);
2620 return SDOperand(N, 0);
2621}
2622
Nate Begemane74795c2006-01-25 18:21:52 +00002623SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2624 SDOperand Chain, SDOperand Ptr,
2625 SDOperand SV) {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00002626 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattner65879ca2006-08-16 22:57:46 +00002627 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemane74795c2006-01-25 18:21:52 +00002628}
2629
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00002630SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattner97af9d52006-08-08 01:09:31 +00002631 const SDOperand *Ops, unsigned NumOps) {
2632 switch (NumOps) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00002633 case 0: return getNode(Opcode, VT);
Chris Lattnerd5531332005-05-14 06:20:26 +00002634 case 1: return getNode(Opcode, VT, Ops[0]);
2635 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2636 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattnerb0713c72005-04-09 03:27:28 +00002637 default: break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002638 }
Chris Lattnerbf4f23322005-11-09 23:47:37 +00002639
Chris Lattnerb0713c72005-04-09 03:27:28 +00002640 switch (Opcode) {
2641 default: break;
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00002642 case ISD::SELECT_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002643 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00002644 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2645 "LHS and RHS of condition must have same type!");
2646 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2647 "True and False arms of SelectCC must have same type!");
2648 assert(Ops[2].getValueType() == VT &&
2649 "select_cc node must be of same type as true and false value!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00002650 break;
2651 }
2652 case ISD::BR_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002653 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00002654 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2655 "LHS/RHS of comparison should match types!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00002656 break;
2657 }
Chris Lattnerb0713c72005-04-09 03:27:28 +00002658 }
2659
Chris Lattner566307f2005-05-14 07:42:29 +00002660 // Memoize nodes.
Chris Lattnerf9c19152005-08-25 19:12:10 +00002661 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002662 SDVTList VTs = getVTList(VT);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002663 if (VT != MVT::Flag) {
Jim Laskeyf576b422006-10-27 23:46:08 +00002664 FoldingSetNodeID ID;
2665 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002666 void *IP = 0;
2667 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2668 return SDOperand(E, 0);
Chris Lattner22639f32007-02-04 07:37:24 +00002669 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002670 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002671 } else {
Chris Lattner22639f32007-02-04 07:37:24 +00002672 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002673 }
Chris Lattnerb0713c72005-04-09 03:27:28 +00002674 AllNodes.push_back(N);
2675 return SDOperand(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002676}
2677
Chris Lattnerd5531332005-05-14 06:20:26 +00002678SDOperand SelectionDAG::getNode(unsigned Opcode,
2679 std::vector<MVT::ValueType> &ResultTys,
Chris Lattner97af9d52006-08-08 01:09:31 +00002680 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner3bf4be42006-08-14 23:31:51 +00002681 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2682 Ops, NumOps);
2683}
2684
2685SDOperand SelectionDAG::getNode(unsigned Opcode,
2686 const MVT::ValueType *VTs, unsigned NumVTs,
2687 const SDOperand *Ops, unsigned NumOps) {
2688 if (NumVTs == 1)
2689 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattner65879ca2006-08-16 22:57:46 +00002690 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2691}
2692
2693SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2694 const SDOperand *Ops, unsigned NumOps) {
2695 if (VTList.NumVTs == 1)
2696 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattnerd5531332005-05-14 06:20:26 +00002697
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002698 switch (Opcode) {
Chris Lattner669e8c22005-05-14 07:25:05 +00002699 // FIXME: figure out how to safely handle things like
2700 // int foo(int x) { return 1 << (x & 255); }
2701 // int bar() { return foo(256); }
2702#if 0
Chris Lattner669e8c22005-05-14 07:25:05 +00002703 case ISD::SRA_PARTS:
2704 case ISD::SRL_PARTS:
2705 case ISD::SHL_PARTS:
2706 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00002707 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattner669e8c22005-05-14 07:25:05 +00002708 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2709 else if (N3.getOpcode() == ISD::AND)
2710 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2711 // If the and is only masking out bits that cannot effect the shift,
2712 // eliminate the and.
2713 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2714 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2715 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2716 }
2717 break;
Chris Lattner669e8c22005-05-14 07:25:05 +00002718#endif
Chris Lattnerde0a4b12005-07-10 01:55:33 +00002719 }
Chris Lattnerd5531332005-05-14 06:20:26 +00002720
Chris Lattnerf9c19152005-08-25 19:12:10 +00002721 // Memoize the node unless it returns a flag.
2722 SDNode *N;
Chris Lattner65879ca2006-08-16 22:57:46 +00002723 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskeyf576b422006-10-27 23:46:08 +00002724 FoldingSetNodeID ID;
2725 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002726 void *IP = 0;
2727 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2728 return SDOperand(E, 0);
Chris Lattner9af2c862007-02-04 08:35:21 +00002729 if (NumOps == 1)
2730 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2731 else if (NumOps == 2)
2732 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2733 else if (NumOps == 3)
2734 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2735 else
2736 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002737 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002738 } else {
Chris Lattner9af2c862007-02-04 08:35:21 +00002739 if (NumOps == 1)
2740 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2741 else if (NumOps == 2)
2742 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2743 else if (NumOps == 3)
2744 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2745 else
2746 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002747 }
Chris Lattner006f56b2005-05-14 06:42:57 +00002748 AllNodes.push_back(N);
Chris Lattnerd5531332005-05-14 06:20:26 +00002749 return SDOperand(N, 0);
2750}
2751
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00002752SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2753 return getNode(Opcode, VTList, 0, 0);
2754}
2755
2756SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2757 SDOperand N1) {
2758 SDOperand Ops[] = { N1 };
2759 return getNode(Opcode, VTList, Ops, 1);
2760}
2761
2762SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2763 SDOperand N1, SDOperand N2) {
2764 SDOperand Ops[] = { N1, N2 };
2765 return getNode(Opcode, VTList, Ops, 2);
2766}
2767
2768SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2769 SDOperand N1, SDOperand N2, SDOperand N3) {
2770 SDOperand Ops[] = { N1, N2, N3 };
2771 return getNode(Opcode, VTList, Ops, 3);
2772}
2773
2774SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2775 SDOperand N1, SDOperand N2, SDOperand N3,
2776 SDOperand N4) {
2777 SDOperand Ops[] = { N1, N2, N3, N4 };
2778 return getNode(Opcode, VTList, Ops, 4);
2779}
2780
2781SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2782 SDOperand N1, SDOperand N2, SDOperand N3,
2783 SDOperand N4, SDOperand N5) {
2784 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2785 return getNode(Opcode, VTList, Ops, 5);
2786}
2787
Chris Lattnerf98411a2006-08-15 17:46:01 +00002788SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00002789 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattner88fa11c2005-11-08 23:30:28 +00002790}
2791
Chris Lattnerf98411a2006-08-15 17:46:01 +00002792SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattner88fa11c2005-11-08 23:30:28 +00002793 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2794 E = VTList.end(); I != E; ++I) {
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002795 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattnerf98411a2006-08-15 17:46:01 +00002796 return makeVTList(&(*I)[0], 2);
Chris Lattner88fa11c2005-11-08 23:30:28 +00002797 }
2798 std::vector<MVT::ValueType> V;
2799 V.push_back(VT1);
2800 V.push_back(VT2);
2801 VTList.push_front(V);
Chris Lattnerf98411a2006-08-15 17:46:01 +00002802 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattner88fa11c2005-11-08 23:30:28 +00002803}
Chris Lattnerf98411a2006-08-15 17:46:01 +00002804SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2805 MVT::ValueType VT3) {
Chris Lattner3bf4be42006-08-14 23:31:51 +00002806 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattnerf98411a2006-08-15 17:46:01 +00002807 E = VTList.end(); I != E; ++I) {
2808 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2809 (*I)[2] == VT3)
2810 return makeVTList(&(*I)[0], 3);
2811 }
Chris Lattner3bf4be42006-08-14 23:31:51 +00002812 std::vector<MVT::ValueType> V;
2813 V.push_back(VT1);
2814 V.push_back(VT2);
2815 V.push_back(VT3);
2816 VTList.push_front(V);
Chris Lattnerf98411a2006-08-15 17:46:01 +00002817 return makeVTList(&(*VTList.begin())[0], 3);
2818}
2819
2820SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2821 switch (NumVTs) {
2822 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohmana8665142007-06-25 16:23:39 +00002823 case 1: return getVTList(VTs[0]);
Chris Lattnerf98411a2006-08-15 17:46:01 +00002824 case 2: return getVTList(VTs[0], VTs[1]);
2825 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2826 default: break;
2827 }
2828
2829 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2830 E = VTList.end(); I != E; ++I) {
2831 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2832
2833 bool NoMatch = false;
2834 for (unsigned i = 2; i != NumVTs; ++i)
2835 if (VTs[i] != (*I)[i]) {
2836 NoMatch = true;
2837 break;
2838 }
2839 if (!NoMatch)
2840 return makeVTList(&*I->begin(), NumVTs);
2841 }
2842
2843 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2844 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner3bf4be42006-08-14 23:31:51 +00002845}
2846
2847
Chris Lattnerf34156e2006-01-28 09:32:45 +00002848/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2849/// specified operands. If the resultant node already exists in the DAG,
2850/// this does not modify the specified node, instead it returns the node that
2851/// already exists. If the resultant node does not exist in the DAG, the
2852/// input node is returned. As a degenerate case, if you specify the same
2853/// input operands as the node already has, the input node is returned.
2854SDOperand SelectionDAG::
2855UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2856 SDNode *N = InN.Val;
2857 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2858
2859 // Check to see if there is no change.
2860 if (Op == N->getOperand(0)) return InN;
2861
2862 // See if the modified node already exists.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002863 void *InsertPos = 0;
2864 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2865 return SDOperand(Existing, InN.ResNo);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002866
2867 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002868 if (InsertPos)
Chris Lattnerf34156e2006-01-28 09:32:45 +00002869 RemoveNodeFromCSEMaps(N);
2870
2871 // Now we update the operands.
2872 N->OperandList[0].Val->removeUser(N);
2873 Op.Val->addUser(N);
2874 N->OperandList[0] = Op;
2875
2876 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002877 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002878 return InN;
2879}
2880
2881SDOperand SelectionDAG::
2882UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2883 SDNode *N = InN.Val;
2884 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2885
2886 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00002887 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2888 return InN; // No operands changed, just return the input node.
2889
2890 // See if the modified node already exists.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002891 void *InsertPos = 0;
2892 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2893 return SDOperand(Existing, InN.ResNo);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002894
2895 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002896 if (InsertPos)
Chris Lattnerf34156e2006-01-28 09:32:45 +00002897 RemoveNodeFromCSEMaps(N);
2898
2899 // Now we update the operands.
2900 if (N->OperandList[0] != Op1) {
2901 N->OperandList[0].Val->removeUser(N);
2902 Op1.Val->addUser(N);
2903 N->OperandList[0] = Op1;
2904 }
2905 if (N->OperandList[1] != Op2) {
2906 N->OperandList[1].Val->removeUser(N);
2907 Op2.Val->addUser(N);
2908 N->OperandList[1] = Op2;
2909 }
2910
2911 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002912 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002913 return InN;
2914}
2915
2916SDOperand SelectionDAG::
2917UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattner97af9d52006-08-08 01:09:31 +00002918 SDOperand Ops[] = { Op1, Op2, Op3 };
2919 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002920}
2921
2922SDOperand SelectionDAG::
2923UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2924 SDOperand Op3, SDOperand Op4) {
Chris Lattner97af9d52006-08-08 01:09:31 +00002925 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2926 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002927}
2928
2929SDOperand SelectionDAG::
Chris Lattner580b12a2006-01-28 10:09:25 +00002930UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2931 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattner97af9d52006-08-08 01:09:31 +00002932 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2933 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner580b12a2006-01-28 10:09:25 +00002934}
2935
2936
2937SDOperand SelectionDAG::
Chris Lattner97af9d52006-08-08 01:09:31 +00002938UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00002939 SDNode *N = InN.Val;
Chris Lattner97af9d52006-08-08 01:09:31 +00002940 assert(N->getNumOperands() == NumOps &&
Chris Lattnerf34156e2006-01-28 09:32:45 +00002941 "Update with wrong number of operands");
2942
2943 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00002944 bool AnyChange = false;
2945 for (unsigned i = 0; i != NumOps; ++i) {
2946 if (Ops[i] != N->getOperand(i)) {
2947 AnyChange = true;
2948 break;
2949 }
2950 }
2951
2952 // No operands changed, just return the input node.
2953 if (!AnyChange) return InN;
2954
2955 // See if the modified node already exists.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002956 void *InsertPos = 0;
Chris Lattner97af9d52006-08-08 01:09:31 +00002957 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002958 return SDOperand(Existing, InN.ResNo);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002959
2960 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002961 if (InsertPos)
Chris Lattnerf34156e2006-01-28 09:32:45 +00002962 RemoveNodeFromCSEMaps(N);
2963
2964 // Now we update the operands.
2965 for (unsigned i = 0; i != NumOps; ++i) {
2966 if (N->OperandList[i] != Ops[i]) {
2967 N->OperandList[i].Val->removeUser(N);
2968 Ops[i].Val->addUser(N);
2969 N->OperandList[i] = Ops[i];
2970 }
2971 }
2972
2973 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002974 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerf34156e2006-01-28 09:32:45 +00002975 return InN;
2976}
2977
2978
Chris Lattneredfc7e52007-02-04 02:49:29 +00002979/// MorphNodeTo - This frees the operands of the current node, resets the
2980/// opcode, types, and operands to the specified value. This should only be
2981/// used by the SelectionDAG class.
2982void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2983 const SDOperand *Ops, unsigned NumOps) {
2984 NodeType = Opc;
2985 ValueList = L.VTs;
2986 NumValues = L.NumVTs;
2987
2988 // Clear the operands list, updating used nodes to remove this from their
2989 // use list.
2990 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2991 I->Val->removeUser(this);
Chris Lattnerf17b4222007-02-04 07:28:00 +00002992
2993 // If NumOps is larger than the # of operands we currently have, reallocate
2994 // the operand list.
2995 if (NumOps > NumOperands) {
2996 if (OperandsNeedDelete)
2997 delete [] OperandList;
2998 OperandList = new SDOperand[NumOps];
2999 OperandsNeedDelete = true;
3000 }
Chris Lattneredfc7e52007-02-04 02:49:29 +00003001
3002 // Assign the new operands.
3003 NumOperands = NumOps;
Chris Lattneredfc7e52007-02-04 02:49:29 +00003004
3005 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3006 OperandList[i] = Ops[i];
3007 SDNode *N = OperandList[i].Val;
3008 N->Uses.push_back(this);
3009 }
3010}
Chris Lattner19732782005-08-16 18:17:10 +00003011
3012/// SelectNodeTo - These are used for target selectors to *mutate* the
3013/// specified node to have the specified return type, Target opcode, and
3014/// operands. Note that target opcodes are stored as
3015/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattner9d0d7152005-12-01 18:00:57 +00003016///
3017/// Note that SelectNodeTo returns the resultant node. If there is already a
3018/// node of the specified opcode and operands, it returns that node instead of
3019/// the current one.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003020SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3021 MVT::ValueType VT) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003022 SDVTList VTs = getVTList(VT);
Jim Laskeyf576b422006-10-27 23:46:08 +00003023 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003024 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerfcb16472006-08-11 18:38:11 +00003025 void *IP = 0;
3026 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003027 return ON;
Chris Lattnerfcb16472006-08-11 18:38:11 +00003028
Chris Lattner45e1ce42005-08-24 23:00:29 +00003029 RemoveNodeFromCSEMaps(N);
Chris Lattner9d0d7152005-12-01 18:00:57 +00003030
Chris Lattneredfc7e52007-02-04 02:49:29 +00003031 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner9d0d7152005-12-01 18:00:57 +00003032
Chris Lattnerfcb16472006-08-11 18:38:11 +00003033 CSEMap.InsertNode(N, IP);
Evan Cheng34b70ee2006-08-26 08:00:10 +00003034 return N;
Chris Lattner45e1ce42005-08-24 23:00:29 +00003035}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003036
Evan Cheng34b70ee2006-08-26 08:00:10 +00003037SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3038 MVT::ValueType VT, SDOperand Op1) {
Chris Lattner9d0d7152005-12-01 18:00:57 +00003039 // If an identical node already exists, use it.
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003040 SDVTList VTs = getVTList(VT);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003041 SDOperand Ops[] = { Op1 };
3042
Jim Laskeyf576b422006-10-27 23:46:08 +00003043 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003044 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003045 void *IP = 0;
3046 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003047 return ON;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003048
Chris Lattner19732782005-08-16 18:17:10 +00003049 RemoveNodeFromCSEMaps(N);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003050 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003051 CSEMap.InsertNode(N, IP);
Evan Cheng34b70ee2006-08-26 08:00:10 +00003052 return N;
Chris Lattner19732782005-08-16 18:17:10 +00003053}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003054
Evan Cheng34b70ee2006-08-26 08:00:10 +00003055SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3056 MVT::ValueType VT, SDOperand Op1,
3057 SDOperand Op2) {
Chris Lattner9d0d7152005-12-01 18:00:57 +00003058 // If an identical node already exists, use it.
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003059 SDVTList VTs = getVTList(VT);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003060 SDOperand Ops[] = { Op1, Op2 };
3061
Jim Laskeyf576b422006-10-27 23:46:08 +00003062 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003063 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003064 void *IP = 0;
3065 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003066 return ON;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003067
Chris Lattner19732782005-08-16 18:17:10 +00003068 RemoveNodeFromCSEMaps(N);
Chris Lattner486edfb2007-02-04 02:32:44 +00003069
Chris Lattnerf17b4222007-02-04 07:28:00 +00003070 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattner9d0d7152005-12-01 18:00:57 +00003071
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003072 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003073 return N;
Chris Lattner19732782005-08-16 18:17:10 +00003074}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003075
Evan Cheng34b70ee2006-08-26 08:00:10 +00003076SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3077 MVT::ValueType VT, SDOperand Op1,
3078 SDOperand Op2, SDOperand Op3) {
Chris Lattner9d0d7152005-12-01 18:00:57 +00003079 // If an identical node already exists, use it.
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003080 SDVTList VTs = getVTList(VT);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003081 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00003082 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003083 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003084 void *IP = 0;
3085 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003086 return ON;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003087
Chris Lattner19732782005-08-16 18:17:10 +00003088 RemoveNodeFromCSEMaps(N);
Chris Lattner486edfb2007-02-04 02:32:44 +00003089
Chris Lattnerf17b4222007-02-04 07:28:00 +00003090 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattner9d0d7152005-12-01 18:00:57 +00003091
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003092 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003093 return N;
Chris Lattner19732782005-08-16 18:17:10 +00003094}
Chris Lattner466fece2005-08-21 22:30:30 +00003095
Evan Cheng34b70ee2006-08-26 08:00:10 +00003096SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng849f4bf2006-08-27 08:08:54 +00003097 MVT::ValueType VT, const SDOperand *Ops,
3098 unsigned NumOps) {
Chris Lattner9d0d7152005-12-01 18:00:57 +00003099 // If an identical node already exists, use it.
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003100 SDVTList VTs = getVTList(VT);
Jim Laskeyf576b422006-10-27 23:46:08 +00003101 FoldingSetNodeID ID;
3102 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003103 void *IP = 0;
3104 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003105 return ON;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003106
Chris Lattner707b39f2005-08-21 18:49:33 +00003107 RemoveNodeFromCSEMaps(N);
Chris Lattneredfc7e52007-02-04 02:49:29 +00003108 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth683352382006-01-23 21:51:14 +00003109
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003110 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003111 return N;
Andrew Lenharth683352382006-01-23 21:51:14 +00003112}
Andrew Lenharthc2856382006-01-23 20:59:12 +00003113
Evan Cheng34b70ee2006-08-26 08:00:10 +00003114SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3115 MVT::ValueType VT1, MVT::ValueType VT2,
3116 SDOperand Op1, SDOperand Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003117 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskeyf576b422006-10-27 23:46:08 +00003118 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003119 SDOperand Ops[] = { Op1, Op2 };
3120 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003121 void *IP = 0;
3122 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003123 return ON;
Chris Lattner9d0d7152005-12-01 18:00:57 +00003124
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003125 RemoveNodeFromCSEMaps(N);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003126 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003127 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003128 return N;
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003129}
3130
Evan Cheng34b70ee2006-08-26 08:00:10 +00003131SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3132 MVT::ValueType VT1, MVT::ValueType VT2,
3133 SDOperand Op1, SDOperand Op2,
3134 SDOperand Op3) {
Chris Lattner9d0d7152005-12-01 18:00:57 +00003135 // If an identical node already exists, use it.
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003136 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattnerf17b4222007-02-04 07:28:00 +00003137 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00003138 FoldingSetNodeID ID;
Chris Lattnerf17b4222007-02-04 07:28:00 +00003139 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003140 void *IP = 0;
3141 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng34b70ee2006-08-26 08:00:10 +00003142 return ON;
Chris Lattner9d0d7152005-12-01 18:00:57 +00003143
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003144 RemoveNodeFromCSEMaps(N);
Chris Lattner486edfb2007-02-04 02:32:44 +00003145
Chris Lattnerf17b4222007-02-04 07:28:00 +00003146 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003147 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00003148 return N;
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003149}
3150
Chris Lattnerf090f7e2005-11-19 01:44:53 +00003151
Evan Chengd3f1db92006-02-09 07:15:23 +00003152/// getTargetNode - These are used for target selectors to create a new node
3153/// with specified return type(s), target opcode, and operands.
3154///
3155/// Note that getTargetNode returns the resultant node. If there is already a
3156/// node of the specified opcode and operands, it returns that node instead of
3157/// the current one.
3158SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3159 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3160}
3161SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3162 SDOperand Op1) {
3163 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3164}
3165SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3166 SDOperand Op1, SDOperand Op2) {
3167 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3168}
3169SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattner296a83c2007-02-01 04:55:59 +00003170 SDOperand Op1, SDOperand Op2,
3171 SDOperand Op3) {
Evan Chengd3f1db92006-02-09 07:15:23 +00003172 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3173}
3174SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003175 const SDOperand *Ops, unsigned NumOps) {
3176 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003177}
3178SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen666323e2007-10-10 01:01:31 +00003179 MVT::ValueType VT2) {
3180 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3181 SDOperand Op;
3182 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3183}
3184SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Chengd3f1db92006-02-09 07:15:23 +00003185 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattnerf98411a2006-08-15 17:46:01 +00003186 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner3bf4be42006-08-14 23:31:51 +00003187 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003188}
3189SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003190 MVT::ValueType VT2, SDOperand Op1,
3191 SDOperand Op2) {
Chris Lattnerf98411a2006-08-15 17:46:01 +00003192 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003193 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner3bf4be42006-08-14 23:31:51 +00003194 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003195}
3196SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003197 MVT::ValueType VT2, SDOperand Op1,
3198 SDOperand Op2, SDOperand Op3) {
Chris Lattnerf98411a2006-08-15 17:46:01 +00003199 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003200 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner3bf4be42006-08-14 23:31:51 +00003201 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003202}
Evan Cheng849f4bf2006-08-27 08:08:54 +00003203SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3204 MVT::ValueType VT2,
3205 const SDOperand *Ops, unsigned NumOps) {
Chris Lattnerf98411a2006-08-15 17:46:01 +00003206 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng849f4bf2006-08-27 08:08:54 +00003207 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003208}
3209SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3210 MVT::ValueType VT2, MVT::ValueType VT3,
3211 SDOperand Op1, SDOperand Op2) {
Chris Lattnerf98411a2006-08-15 17:46:01 +00003212 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003213 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner3bf4be42006-08-14 23:31:51 +00003214 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003215}
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00003216SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3217 MVT::ValueType VT2, MVT::ValueType VT3,
3218 SDOperand Op1, SDOperand Op2,
3219 SDOperand Op3) {
3220 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3221 SDOperand Ops[] = { Op1, Op2, Op3 };
3222 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3223}
Evan Chengd3f1db92006-02-09 07:15:23 +00003224SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng849f4bf2006-08-27 08:08:54 +00003225 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerc24a1d32006-08-08 02:23:42 +00003226 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng849f4bf2006-08-27 08:08:54 +00003227 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3228 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Chengd3f1db92006-02-09 07:15:23 +00003229}
Evan Chengbb6a5742007-09-12 23:39:49 +00003230SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3231 MVT::ValueType VT2, MVT::ValueType VT3,
3232 MVT::ValueType VT4,
3233 const SDOperand *Ops, unsigned NumOps) {
3234 std::vector<MVT::ValueType> VTList;
3235 VTList.push_back(VT1);
3236 VTList.push_back(VT2);
3237 VTList.push_back(VT3);
3238 VTList.push_back(VT4);
3239 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3240 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3241}
Evan Cheng48523032007-10-05 01:10:49 +00003242SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3243 std::vector<MVT::ValueType> &ResultTys,
3244 const SDOperand *Ops, unsigned NumOps) {
3245 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3246 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3247 Ops, NumOps).Val;
3248}
Evan Chengd3f1db92006-02-09 07:15:23 +00003249
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003250
Evan Cheng445b91a2006-08-07 22:13:29 +00003251/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattnerab0de9d2005-08-17 19:00:20 +00003252/// This can cause recursive merging of nodes in the DAG.
3253///
Chris Lattner76858912008-02-03 03:35:22 +00003254/// This version assumes From has a single result value.
Chris Lattner373f0482005-08-26 18:36:28 +00003255///
Chris Lattner76858912008-02-03 03:35:22 +00003256void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003257 DAGUpdateListener *UpdateListener) {
Chris Lattner76858912008-02-03 03:35:22 +00003258 SDNode *From = FromN.Val;
Chris Lattner76858912008-02-03 03:35:22 +00003259 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner373f0482005-08-26 18:36:28 +00003260 "Cannot replace with this method!");
Chris Lattner76858912008-02-03 03:35:22 +00003261 assert(From != To.Val && "Cannot replace uses of with self");
Chris Lattner373f0482005-08-26 18:36:28 +00003262
Chris Lattnerab0de9d2005-08-17 19:00:20 +00003263 while (!From->use_empty()) {
3264 // Process users until they are all gone.
3265 SDNode *U = *From->use_begin();
3266
3267 // This node is about to morph, remove its old self from the CSE maps.
3268 RemoveNodeFromCSEMaps(U);
3269
Chris Lattner7e4b5d32005-11-08 22:07:03 +00003270 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3271 I != E; ++I)
3272 if (I->Val == From) {
Chris Lattner373f0482005-08-26 18:36:28 +00003273 From->removeUser(U);
Chris Lattner76858912008-02-03 03:35:22 +00003274 *I = To;
3275 To.Val->addUser(U);
Chris Lattner373f0482005-08-26 18:36:28 +00003276 }
3277
3278 // Now that we have modified U, add it back to the CSE maps. If it already
3279 // exists there, recursively merge the results together.
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003280 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003281 ReplaceAllUsesWith(U, Existing, UpdateListener);
3282 // U is now dead. Inform the listener if it exists and delete it.
3283 if (UpdateListener)
3284 UpdateListener->NodeDeleted(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003285 DeleteNodeNotInCSEMaps(U);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003286 } else {
3287 // If the node doesn't already exist, we updated it. Inform a listener if
3288 // it exists.
3289 if (UpdateListener)
3290 UpdateListener->NodeUpdated(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003291 }
Chris Lattner373f0482005-08-26 18:36:28 +00003292 }
3293}
3294
3295/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3296/// This can cause recursive merging of nodes in the DAG.
3297///
3298/// This version assumes From/To have matching types and numbers of result
3299/// values.
3300///
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003301void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003302 DAGUpdateListener *UpdateListener) {
Chris Lattner373f0482005-08-26 18:36:28 +00003303 assert(From != To && "Cannot replace uses of with self");
3304 assert(From->getNumValues() == To->getNumValues() &&
3305 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner76858912008-02-03 03:35:22 +00003306 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003307 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3308 UpdateListener);
Chris Lattner373f0482005-08-26 18:36:28 +00003309
3310 while (!From->use_empty()) {
3311 // Process users until they are all gone.
3312 SDNode *U = *From->use_begin();
3313
3314 // This node is about to morph, remove its old self from the CSE maps.
3315 RemoveNodeFromCSEMaps(U);
3316
Chris Lattner7e4b5d32005-11-08 22:07:03 +00003317 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3318 I != E; ++I)
3319 if (I->Val == From) {
Chris Lattnerab0de9d2005-08-17 19:00:20 +00003320 From->removeUser(U);
Chris Lattner7e4b5d32005-11-08 22:07:03 +00003321 I->Val = To;
Chris Lattnerab0de9d2005-08-17 19:00:20 +00003322 To->addUser(U);
3323 }
3324
3325 // Now that we have modified U, add it back to the CSE maps. If it already
3326 // exists there, recursively merge the results together.
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003327 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003328 ReplaceAllUsesWith(U, Existing, UpdateListener);
3329 // U is now dead. Inform the listener if it exists and delete it.
3330 if (UpdateListener)
3331 UpdateListener->NodeDeleted(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003332 DeleteNodeNotInCSEMaps(U);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003333 } else {
3334 // If the node doesn't already exist, we updated it. Inform a listener if
3335 // it exists.
3336 if (UpdateListener)
3337 UpdateListener->NodeUpdated(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003338 }
Chris Lattnerab0de9d2005-08-17 19:00:20 +00003339 }
3340}
3341
Chris Lattner373f0482005-08-26 18:36:28 +00003342/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3343/// This can cause recursive merging of nodes in the DAG.
3344///
3345/// This version can replace From with any result values. To must match the
3346/// number and types of values returned by From.
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003347void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnera2f40862006-08-11 17:46:28 +00003348 const SDOperand *To,
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003349 DAGUpdateListener *UpdateListener) {
Chris Lattner76858912008-02-03 03:35:22 +00003350 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003351 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003352
3353 while (!From->use_empty()) {
3354 // Process users until they are all gone.
3355 SDNode *U = *From->use_begin();
3356
3357 // This node is about to morph, remove its old self from the CSE maps.
3358 RemoveNodeFromCSEMaps(U);
3359
Chris Lattner7e4b5d32005-11-08 22:07:03 +00003360 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3361 I != E; ++I)
3362 if (I->Val == From) {
3363 const SDOperand &ToOp = To[I->ResNo];
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003364 From->removeUser(U);
Chris Lattner7e4b5d32005-11-08 22:07:03 +00003365 *I = ToOp;
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003366 ToOp.Val->addUser(U);
3367 }
3368
3369 // Now that we have modified U, add it back to the CSE maps. If it already
3370 // exists there, recursively merge the results together.
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003371 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003372 ReplaceAllUsesWith(U, Existing, UpdateListener);
3373 // U is now dead. Inform the listener if it exists and delete it.
3374 if (UpdateListener)
3375 UpdateListener->NodeDeleted(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003376 DeleteNodeNotInCSEMaps(U);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003377 } else {
3378 // If the node doesn't already exist, we updated it. Inform a listener if
3379 // it exists.
3380 if (UpdateListener)
3381 UpdateListener->NodeUpdated(U);
Chris Lattnerfe883ad2005-09-07 05:37:01 +00003382 }
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003383 }
3384}
3385
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003386namespace {
3387 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3388 /// any deleted nodes from the set passed into its constructor and recursively
3389 /// notifies another update listener if specified.
3390 class ChainedSetUpdaterListener :
3391 public SelectionDAG::DAGUpdateListener {
3392 SmallSetVector<SDNode*, 16> &Set;
3393 SelectionDAG::DAGUpdateListener *Chain;
3394 public:
3395 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3396 SelectionDAG::DAGUpdateListener *chain)
3397 : Set(set), Chain(chain) {}
3398
3399 virtual void NodeDeleted(SDNode *N) {
3400 Set.remove(N);
3401 if (Chain) Chain->NodeDeleted(N);
3402 }
3403 virtual void NodeUpdated(SDNode *N) {
3404 if (Chain) Chain->NodeUpdated(N);
3405 }
3406 };
3407}
3408
Chris Lattner375e1a72006-02-17 21:58:01 +00003409/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3410/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003411/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner375e1a72006-02-17 21:58:01 +00003412void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003413 DAGUpdateListener *UpdateListener){
Chris Lattner375e1a72006-02-17 21:58:01 +00003414 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003415
Chris Lattner375e1a72006-02-17 21:58:01 +00003416 // Handle the simple, trivial, case efficiently.
Chris Lattner76858912008-02-03 03:35:22 +00003417 if (From.Val->getNumValues() == 1) {
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003418 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner375e1a72006-02-17 21:58:01 +00003419 return;
3420 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003421
3422 if (From.use_empty()) return;
3423
Chris Lattnerfeec7132007-02-04 00:14:31 +00003424 // Get all of the users of From.Val. We want these in a nice,
3425 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3426 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner375e1a72006-02-17 21:58:01 +00003427
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003428 // When one of the recursive merges deletes nodes from the graph, we need to
3429 // make sure that UpdateListener is notified *and* that the node is removed
3430 // from Users if present. CSUL does this.
3431 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003432
Chris Lattner375e1a72006-02-17 21:58:01 +00003433 while (!Users.empty()) {
3434 // We know that this user uses some value of From. If it is the right
3435 // value, update it.
3436 SDNode *User = Users.back();
3437 Users.pop_back();
3438
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003439 // Scan for an operand that matches From.
3440 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3441 for (; Op != E; ++Op)
3442 if (*Op == From) break;
3443
3444 // If there are no matches, the user must use some other result of From.
3445 if (Op == E) continue;
3446
3447 // Okay, we know this user needs to be updated. Remove its old self
3448 // from the CSE maps.
3449 RemoveNodeFromCSEMaps(User);
3450
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003451 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003452 for (; Op != E; ++Op) {
Chris Lattner375e1a72006-02-17 21:58:01 +00003453 if (*Op == From) {
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003454 From.Val->removeUser(User);
3455 *Op = To;
3456 To.Val->addUser(User);
Chris Lattner375e1a72006-02-17 21:58:01 +00003457 }
3458 }
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003459
3460 // Now that we have modified User, add it back to the CSE maps. If it
3461 // already exists there, recursively merge the results together.
3462 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003463 if (!Existing) {
3464 if (UpdateListener) UpdateListener->NodeUpdated(User);
3465 continue; // Continue on to next user.
3466 }
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003467
3468 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003469 // to replace the dead one with the existing one. This can cause
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003470 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003471 // can cause deletion of nodes that used the old value. To handle this, we
3472 // use CSUL to remove them from the Users set.
3473 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003474
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00003475 // User is now dead. Notify a listener if present.
3476 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner3cfb56d2007-10-15 06:10:22 +00003477 DeleteNodeNotInCSEMaps(User);
Chris Lattner375e1a72006-02-17 21:58:01 +00003478 }
3479}
3480
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00003481
Evan Cheng9631a602006-08-01 08:20:41 +00003482/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3483/// their allnodes order. It returns the maximum id.
Evan Chengacb606f2006-07-27 07:36:47 +00003484unsigned SelectionDAG::AssignNodeIds() {
3485 unsigned Id = 0;
Evan Cheng29eefc12006-07-27 06:39:06 +00003486 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3487 SDNode *N = I;
3488 N->setNodeId(Id++);
3489 }
3490 return Id;
3491}
3492
Evan Cheng9631a602006-08-01 08:20:41 +00003493/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengbba1ebd2006-08-02 22:00:34 +00003494/// based on their topological order. It returns the maximum id and a vector
3495/// of the SDNodes* in assigned order by reference.
3496unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Cheng9631a602006-08-01 08:20:41 +00003497 unsigned DAGSize = AllNodes.size();
Evan Chengbba1ebd2006-08-02 22:00:34 +00003498 std::vector<unsigned> InDegree(DAGSize);
3499 std::vector<SDNode*> Sources;
3500
3501 // Use a two pass approach to avoid using a std::map which is slow.
3502 unsigned Id = 0;
Evan Cheng9631a602006-08-01 08:20:41 +00003503 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3504 SDNode *N = I;
Evan Chengbba1ebd2006-08-02 22:00:34 +00003505 N->setNodeId(Id++);
Evan Cheng9631a602006-08-01 08:20:41 +00003506 unsigned Degree = N->use_size();
Evan Chengbba1ebd2006-08-02 22:00:34 +00003507 InDegree[N->getNodeId()] = Degree;
Evan Cheng9631a602006-08-01 08:20:41 +00003508 if (Degree == 0)
Evan Chengbba1ebd2006-08-02 22:00:34 +00003509 Sources.push_back(N);
Evan Cheng9631a602006-08-01 08:20:41 +00003510 }
3511
Evan Cheng445b91a2006-08-07 22:13:29 +00003512 TopOrder.clear();
Evan Cheng9631a602006-08-01 08:20:41 +00003513 while (!Sources.empty()) {
Evan Chengbba1ebd2006-08-02 22:00:34 +00003514 SDNode *N = Sources.back();
3515 Sources.pop_back();
Evan Cheng9631a602006-08-01 08:20:41 +00003516 TopOrder.push_back(N);
Evan Cheng9631a602006-08-01 08:20:41 +00003517 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3518 SDNode *P = I->Val;
Evan Chengbba1ebd2006-08-02 22:00:34 +00003519 unsigned Degree = --InDegree[P->getNodeId()];
Evan Cheng9631a602006-08-01 08:20:41 +00003520 if (Degree == 0)
3521 Sources.push_back(P);
Evan Cheng9631a602006-08-01 08:20:41 +00003522 }
3523 }
3524
Evan Chengbba1ebd2006-08-02 22:00:34 +00003525 // Second pass, assign the actual topological order as node ids.
3526 Id = 0;
3527 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3528 TI != TE; ++TI)
3529 (*TI)->setNodeId(Id++);
3530
3531 return Id;
Evan Cheng9631a602006-08-01 08:20:41 +00003532}
3533
3534
Evan Cheng29eefc12006-07-27 06:39:06 +00003535
Jim Laskeyd66e6162005-08-17 20:08:02 +00003536//===----------------------------------------------------------------------===//
3537// SDNode Class
3538//===----------------------------------------------------------------------===//
Chris Lattner19732782005-08-16 18:17:10 +00003539
Chris Lattnerc0973ed2006-07-19 00:00:37 +00003540// Out-of-line virtual method to give class a home.
Chris Lattner20754cc2007-02-04 02:23:32 +00003541void SDNode::ANCHOR() {}
Chris Lattner9af2c862007-02-04 08:35:21 +00003542void UnarySDNode::ANCHOR() {}
3543void BinarySDNode::ANCHOR() {}
3544void TernarySDNode::ANCHOR() {}
Chris Lattner20754cc2007-02-04 02:23:32 +00003545void HandleSDNode::ANCHOR() {}
3546void StringSDNode::ANCHOR() {}
3547void ConstantSDNode::ANCHOR() {}
3548void ConstantFPSDNode::ANCHOR() {}
3549void GlobalAddressSDNode::ANCHOR() {}
3550void FrameIndexSDNode::ANCHOR() {}
3551void JumpTableSDNode::ANCHOR() {}
3552void ConstantPoolSDNode::ANCHOR() {}
3553void BasicBlockSDNode::ANCHOR() {}
3554void SrcValueSDNode::ANCHOR() {}
Dan Gohman2d489b52008-02-06 22:27:42 +00003555void MemOperandSDNode::ANCHOR() {}
Chris Lattner20754cc2007-02-04 02:23:32 +00003556void RegisterSDNode::ANCHOR() {}
3557void ExternalSymbolSDNode::ANCHOR() {}
3558void CondCodeSDNode::ANCHOR() {}
3559void VTSDNode::ANCHOR() {}
3560void LoadSDNode::ANCHOR() {}
3561void StoreSDNode::ANCHOR() {}
Andrew Lenharth95528942008-02-21 06:45:13 +00003562void AtomicSDNode::ANCHOR() {}
Chris Lattnerc0973ed2006-07-19 00:00:37 +00003563
Chris Lattner3bf17b62007-02-04 02:41:42 +00003564HandleSDNode::~HandleSDNode() {
3565 SDVTList VTs = { 0, 0 };
Chris Lattneredfc7e52007-02-04 02:49:29 +00003566 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner3bf17b62007-02-04 02:41:42 +00003567}
3568
Lauro Ramos Venancio4e919082007-04-21 20:56:26 +00003569GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3570 MVT::ValueType VT, int o)
3571 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohmanb6a8ae22007-07-23 20:24:29 +00003572 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio4e919082007-04-21 20:56:26 +00003573 // Thread Local
3574 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3575 // Non Thread Local
3576 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3577 getSDVTList(VT)), Offset(o) {
3578 TheGlobal = const_cast<GlobalValue*>(GA);
3579}
Chris Lattner3bf17b62007-02-04 02:41:42 +00003580
Dan Gohman2d489b52008-02-06 22:27:42 +00003581/// getMemOperand - Return a MemOperand object describing the memory
3582/// reference performed by this load or store.
3583MemOperand LSBaseSDNode::getMemOperand() const {
3584 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
3585 int Flags =
3586 getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
3587 if (IsVolatile) Flags |= MemOperand::MOVolatile;
3588
3589 // Check if the load references a frame index, and does not have
3590 // an SV attached.
3591 const FrameIndexSDNode *FI =
3592 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
3593 if (!getSrcValue() && FI)
Dan Gohman16d4bc32008-02-07 18:41:25 +00003594 return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
Dan Gohman2d489b52008-02-06 22:27:42 +00003595 FI->getIndex(), Size, Alignment);
3596 else
3597 return MemOperand(getSrcValue(), Flags,
3598 getSrcValueOffset(), Size, Alignment);
3599}
3600
Jim Laskeyf576b422006-10-27 23:46:08 +00003601/// Profile - Gather unique data for the node.
3602///
3603void SDNode::Profile(FoldingSetNodeID &ID) {
3604 AddNodeIDNode(ID, this);
3605}
3606
Chris Lattner88fa11c2005-11-08 23:30:28 +00003607/// getValueTypeList - Return a pointer to the specified value type.
3608///
Dan Gohman140a73e2008-02-08 03:26:46 +00003609const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00003610 if (MVT::isExtendedVT(VT)) {
3611 static std::set<MVT::ValueType> EVTs;
Dan Gohman140a73e2008-02-08 03:26:46 +00003612 return &(*EVTs.insert(VT).first);
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00003613 } else {
3614 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3615 VTs[VT] = VT;
3616 return &VTs[VT];
3617 }
Chris Lattner88fa11c2005-11-08 23:30:28 +00003618}
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00003619
Chris Lattner40e79822005-01-12 18:37:47 +00003620/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3621/// indicated value. This method ignores uses of other values defined by this
3622/// operation.
Evan Chengd37645c2006-02-05 06:29:23 +00003623bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner40e79822005-01-12 18:37:47 +00003624 assert(Value < getNumValues() && "Bad value!");
3625
3626 // If there is only one value, this is easy.
3627 if (getNumValues() == 1)
3628 return use_size() == NUses;
Evan Cheng358c3d12007-08-02 05:29:38 +00003629 if (use_size() < NUses) return false;
Chris Lattner40e79822005-01-12 18:37:47 +00003630
Evan Chengd37645c2006-02-05 06:29:23 +00003631 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner40e79822005-01-12 18:37:47 +00003632
Chris Lattnercba058c2007-02-04 00:24:41 +00003633 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner40e79822005-01-12 18:37:47 +00003634
Chris Lattnera4f36252006-08-16 20:59:32 +00003635 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner40e79822005-01-12 18:37:47 +00003636 SDNode *User = *UI;
3637 if (User->getNumOperands() == 1 ||
Chris Lattnercba058c2007-02-04 00:24:41 +00003638 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner40e79822005-01-12 18:37:47 +00003639 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3640 if (User->getOperand(i) == TheValue) {
3641 if (NUses == 0)
3642 return false; // too many uses
3643 --NUses;
3644 }
3645 }
3646
3647 // Found exactly the right number of uses?
3648 return NUses == 0;
3649}
3650
3651
Evan Cheng358c3d12007-08-02 05:29:38 +00003652/// hasAnyUseOfValue - Return true if there are any use of the indicated
3653/// value. This method ignores uses of other values defined by this operation.
3654bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3655 assert(Value < getNumValues() && "Bad value!");
3656
Dan Gohman70de4cb2008-01-29 13:02:09 +00003657 if (use_empty()) return false;
Evan Cheng358c3d12007-08-02 05:29:38 +00003658
3659 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3660
3661 SmallPtrSet<SDNode*, 32> UsersHandled;
3662
3663 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3664 SDNode *User = *UI;
3665 if (User->getNumOperands() == 1 ||
3666 UsersHandled.insert(User)) // First time we've seen this?
3667 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3668 if (User->getOperand(i) == TheValue) {
3669 return true;
3670 }
3671 }
3672
3673 return false;
3674}
3675
3676
Evan Cheng567d2e52008-03-04 00:41:45 +00003677/// isOnlyUseOf - Return true if this node is the only use of N.
Evan Cheng9456dd82006-11-03 07:31:32 +00003678///
Evan Cheng567d2e52008-03-04 00:41:45 +00003679bool SDNode::isOnlyUseOf(SDNode *N) const {
Evan Chengd37645c2006-02-05 06:29:23 +00003680 bool Seen = false;
3681 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3682 SDNode *User = *I;
3683 if (User == this)
3684 Seen = true;
3685 else
3686 return false;
3687 }
3688
3689 return Seen;
3690}
3691
Evan Cheng9456dd82006-11-03 07:31:32 +00003692/// isOperand - Return true if this node is an operand of N.
3693///
Evan Cheng567d2e52008-03-04 00:41:45 +00003694bool SDOperand::isOperandOf(SDNode *N) const {
Evan Cheng23e75f52006-03-03 06:42:32 +00003695 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3696 if (*this == N->getOperand(i))
3697 return true;
3698 return false;
3699}
3700
Evan Cheng567d2e52008-03-04 00:41:45 +00003701bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng6b08ae82006-03-03 06:24:54 +00003702 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3703 if (this == N->OperandList[i].Val)
3704 return true;
3705 return false;
3706}
Evan Chengd37645c2006-02-05 06:29:23 +00003707
Chris Lattner2e50a6f2008-01-16 05:49:24 +00003708/// reachesChainWithoutSideEffects - Return true if this operand (which must
3709/// be a chain) reaches the specified operand without crossing any
3710/// side-effecting instructions. In practice, this looks through token
3711/// factors and non-volatile loads. In order to remain efficient, this only
3712/// looks a couple of nodes in, it does not do an exhaustive search.
3713bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3714 unsigned Depth) const {
3715 if (*this == Dest) return true;
3716
3717 // Don't search too deeply, we just want to be able to see through
3718 // TokenFactor's etc.
3719 if (Depth == 0) return false;
3720
3721 // If this is a token factor, all inputs to the TF happen in parallel. If any
3722 // of the operands of the TF reach dest, then we can do the xform.
3723 if (getOpcode() == ISD::TokenFactor) {
3724 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3725 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3726 return true;
3727 return false;
3728 }
3729
3730 // Loads don't have side effects, look through them.
3731 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3732 if (!Ld->isVolatile())
3733 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3734 }
3735 return false;
3736}
3737
3738
Evan Chengc176f032006-11-03 03:05:24 +00003739static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnercba058c2007-02-04 00:24:41 +00003740 SmallPtrSet<SDNode *, 32> &Visited) {
3741 if (found || !Visited.insert(N))
Evan Chengc176f032006-11-03 03:05:24 +00003742 return;
3743
3744 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3745 SDNode *Op = N->getOperand(i).Val;
3746 if (Op == P) {
3747 found = true;
3748 return;
3749 }
3750 findPredecessor(Op, P, found, Visited);
3751 }
3752}
3753
Evan Cheng567d2e52008-03-04 00:41:45 +00003754/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Cheng9456dd82006-11-03 07:31:32 +00003755/// is either an operand of N or it can be reached by recursively traversing
3756/// up the operands.
3757/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng567d2e52008-03-04 00:41:45 +00003758bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnercba058c2007-02-04 00:24:41 +00003759 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc176f032006-11-03 03:05:24 +00003760 bool found = false;
3761 findPredecessor(N, this, found, Visited);
3762 return found;
3763}
3764
Evan Cheng5d9fd972006-10-04 00:56:09 +00003765uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3766 assert(Num < NumOperands && "Invalid child # of SDNode!");
3767 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3768}
3769
Reid Spencera090ffb2007-04-01 07:32:19 +00003770std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattner9e4c7612005-01-10 23:25:25 +00003771 switch (getOpcode()) {
Chris Lattnerbc892262005-08-16 18:33:07 +00003772 default:
3773 if (getOpcode() < ISD::BUILTIN_OP_END)
3774 return "<<Unknown DAG Node>>";
3775 else {
Evan Cheng6af02632005-12-20 06:22:03 +00003776 if (G) {
Chris Lattnerbc892262005-08-16 18:33:07 +00003777 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner16e5cb82005-09-09 22:35:03 +00003778 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattnerb0d06b42008-01-07 03:13:06 +00003779 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng9fd95412005-12-19 23:11:49 +00003780
Evan Cheng6af02632005-12-20 06:22:03 +00003781 TargetLowering &TLI = G->getTargetLoweringInfo();
3782 const char *Name =
3783 TLI.getTargetNodeName(getOpcode());
3784 if (Name) return Name;
3785 }
3786
3787 return "<<Unknown Target Node>>";
Chris Lattnerbc892262005-08-16 18:33:07 +00003788 }
3789
Andrew Lenharth9b254ee2008-02-16 01:24:58 +00003790 case ISD::MEMBARRIER: return "MemBarrier";
Andrew Lenharth95528942008-02-21 06:45:13 +00003791 case ISD::ATOMIC_LCS: return "AtomicLCS";
3792 case ISD::ATOMIC_LAS: return "AtomicLAS";
3793 case ISD::ATOMIC_SWAP: return "AtomicSWAP";
Andrew Lenharthdec53922005-03-31 21:24:06 +00003794 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth01aa5632005-11-11 16:47:30 +00003795 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner9440d6e2005-05-09 04:08:27 +00003796 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman2d489b52008-02-06 22:27:42 +00003797 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003798 case ISD::EntryToken: return "EntryToken";
Chris Lattner4b1be0d2005-01-13 17:59:10 +00003799 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman43144a22005-08-30 02:44:00 +00003800 case ISD::AssertSext: return "AssertSext";
3801 case ISD::AssertZext: return "AssertZext";
Evan Chengbe85e892006-03-01 00:51:13 +00003802
3803 case ISD::STRING: return "String";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003804 case ISD::BasicBlock: return "BasicBlock";
Evan Chengbe85e892006-03-01 00:51:13 +00003805 case ISD::VALUETYPE: return "ValueType";
Chris Lattner33182322005-08-16 21:55:35 +00003806 case ISD::Register: return "Register";
Evan Chengbe85e892006-03-01 00:51:13 +00003807
3808 case ISD::Constant: return "Constant";
3809 case ISD::ConstantFP: return "ConstantFP";
3810 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00003811 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Chengbe85e892006-03-01 00:51:13 +00003812 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003813 case ISD::JumpTable: return "JumpTable";
Andrew Lenhartha6bbf332006-10-11 04:29:42 +00003814 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemaneda59972007-01-29 22:58:52 +00003815 case ISD::RETURNADDR: return "RETURNADDR";
3816 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov383a3242007-07-14 14:06:15 +00003817 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskey4b37a4c2007-02-21 22:53:45 +00003818 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3819 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov383a3242007-07-14 14:06:15 +00003820 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattnerc30405e2005-08-26 17:15:30 +00003821 case ISD::ConstantPool: return "ConstantPool";
Evan Chengbe85e892006-03-01 00:51:13 +00003822 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattnere55d1712006-03-28 00:40:33 +00003823 case ISD::INTRINSIC_WO_CHAIN: {
3824 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3825 return Intrinsic::getName((Intrinsic::ID)IID);
3826 }
3827 case ISD::INTRINSIC_VOID:
3828 case ISD::INTRINSIC_W_CHAIN: {
3829 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner52fcad32006-03-27 06:45:25 +00003830 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner0e84f1e2006-03-27 16:10:59 +00003831 }
Evan Chengbe85e892006-03-01 00:51:13 +00003832
Chris Lattnerf4e1a532006-03-19 00:52:58 +00003833 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Chengbe85e892006-03-01 00:51:13 +00003834 case ISD::TargetConstant: return "TargetConstant";
3835 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Chengbe85e892006-03-01 00:51:13 +00003836 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00003837 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Chengbe85e892006-03-01 00:51:13 +00003838 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003839 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattnerc30405e2005-08-26 17:15:30 +00003840 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Chengbe85e892006-03-01 00:51:13 +00003841 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Chengbe85e892006-03-01 00:51:13 +00003842
Chris Lattner9e4c7612005-01-10 23:25:25 +00003843 case ISD::CopyToReg: return "CopyToReg";
3844 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemancda9aa72005-04-01 22:34:39 +00003845 case ISD::UNDEF: return "undef";
Dan Gohmana2826942007-07-05 20:15:43 +00003846 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattner476e67b2006-01-26 22:24:51 +00003847 case ISD::INLINEASM: return "inlineasm";
Jim Laskeyf9e54452007-01-26 14:34:52 +00003848 case ISD::LABEL: return "label";
Evan Chengefd142a2008-02-02 04:07:54 +00003849 case ISD::DECLARE: return "declare";
Evan Cheng02b5b9c2006-02-03 01:33:01 +00003850 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerd3b504a2006-04-12 16:20:43 +00003851 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattneraaa23d92006-05-16 22:53:20 +00003852 case ISD::CALL: return "call";
Chris Lattner476e67b2006-01-26 22:24:51 +00003853
Chris Lattnerc4a20462005-04-02 04:58:41 +00003854 // Unary operators
3855 case ISD::FABS: return "fabs";
3856 case ISD::FNEG: return "fneg";
Chris Lattner2f82d2d2005-04-28 21:44:03 +00003857 case ISD::FSQRT: return "fsqrt";
3858 case ISD::FSIN: return "fsin";
3859 case ISD::FCOS: return "fcos";
Chris Lattnerf0359b32006-09-09 06:03:30 +00003860 case ISD::FPOWI: return "fpowi";
Dan Gohmandaee0022007-10-11 23:06:37 +00003861 case ISD::FPOW: return "fpow";
Chris Lattnerc4a20462005-04-02 04:58:41 +00003862
3863 // Binary operators
Chris Lattner9e4c7612005-01-10 23:25:25 +00003864 case ISD::ADD: return "add";
3865 case ISD::SUB: return "sub";
3866 case ISD::MUL: return "mul";
Nate Begeman55e86252005-04-05 22:36:56 +00003867 case ISD::MULHU: return "mulhu";
3868 case ISD::MULHS: return "mulhs";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003869 case ISD::SDIV: return "sdiv";
3870 case ISD::UDIV: return "udiv";
3871 case ISD::SREM: return "srem";
3872 case ISD::UREM: return "urem";
Dan Gohman1a77dfb2007-10-05 14:11:04 +00003873 case ISD::SMUL_LOHI: return "smul_lohi";
3874 case ISD::UMUL_LOHI: return "umul_lohi";
3875 case ISD::SDIVREM: return "sdivrem";
3876 case ISD::UDIVREM: return "divrem";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003877 case ISD::AND: return "and";
3878 case ISD::OR: return "or";
3879 case ISD::XOR: return "xor";
3880 case ISD::SHL: return "shl";
3881 case ISD::SRA: return "sra";
3882 case ISD::SRL: return "srl";
Nate Begeman1b8121b2006-01-11 21:21:00 +00003883 case ISD::ROTL: return "rotl";
3884 case ISD::ROTR: return "rotr";
Chris Lattner6f3b5772005-09-28 22:28:18 +00003885 case ISD::FADD: return "fadd";
3886 case ISD::FSUB: return "fsub";
3887 case ISD::FMUL: return "fmul";
3888 case ISD::FDIV: return "fdiv";
3889 case ISD::FREM: return "frem";
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003890 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerafc8f132007-12-22 21:26:52 +00003891 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner98931bc2006-03-17 19:53:59 +00003892
Chris Lattnerd47675e2005-08-09 20:20:18 +00003893 case ISD::SETCC: return "setcc";
3894 case ISD::SELECT: return "select";
Nate Begemane5b86d72005-08-10 20:51:12 +00003895 case ISD::SELECT_CC: return "select_cc";
Chris Lattner02274a52006-04-08 22:22:57 +00003896 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattner02274a52006-04-08 22:22:57 +00003897 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohmana8665142007-06-25 16:23:39 +00003898 case ISD::CONCAT_VECTORS: return "concat_vectors";
3899 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattner02274a52006-04-08 22:22:57 +00003900 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattner02274a52006-04-08 22:22:57 +00003901 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattner47206662007-03-04 20:40:38 +00003902 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman5965bd12006-02-17 05:43:56 +00003903 case ISD::ADDC: return "addc";
3904 case ISD::ADDE: return "adde";
3905 case ISD::SUBC: return "subc";
3906 case ISD::SUBE: return "sube";
Chris Lattner5b7bb562005-04-02 03:30:42 +00003907 case ISD::SHL_PARTS: return "shl_parts";
3908 case ISD::SRA_PARTS: return "sra_parts";
3909 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamba8fc0e52007-07-26 07:34:40 +00003910
3911 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3912 case ISD::INSERT_SUBREG: return "insert_subreg";
3913
Chris Lattner2f82d2d2005-04-28 21:44:03 +00003914 // Conversion operators.
Chris Lattner9e4c7612005-01-10 23:25:25 +00003915 case ISD::SIGN_EXTEND: return "sign_extend";
3916 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner8c393c22005-09-02 00:17:32 +00003917 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner1001c6e2005-01-15 06:17:04 +00003918 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003919 case ISD::TRUNCATE: return "truncate";
3920 case ISD::FP_ROUND: return "fp_round";
Dan Gohman9ba4d762008-01-31 00:41:03 +00003921 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner1001c6e2005-01-15 06:17:04 +00003922 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003923 case ISD::FP_EXTEND: return "fp_extend";
3924
3925 case ISD::SINT_TO_FP: return "sint_to_fp";
3926 case ISD::UINT_TO_FP: return "uint_to_fp";
3927 case ISD::FP_TO_SINT: return "fp_to_sint";
3928 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner36e663d2005-12-23 00:16:34 +00003929 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003930
3931 // Control flow instructions
3932 case ISD::BR: return "br";
Nate Begeman4ca2ea52006-04-22 18:53:45 +00003933 case ISD::BRIND: return "brind";
Evan Chengc3e69512006-10-30 07:59:36 +00003934 case ISD::BR_JT: return "br_jt";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003935 case ISD::BRCOND: return "brcond";
Nate Begemanbb01d4f2006-03-17 01:40:33 +00003936 case ISD::BR_CC: return "br_cc";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003937 case ISD::RET: return "ret";
Chris Lattnere3677d62005-05-12 23:51:40 +00003938 case ISD::CALLSEQ_START: return "callseq_start";
3939 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003940
3941 // Other operators
Nate Begemane74795c2006-01-25 18:21:52 +00003942 case ISD::LOAD: return "load";
3943 case ISD::STORE: return "store";
Nate Begemane74795c2006-01-25 18:21:52 +00003944 case ISD::VAARG: return "vaarg";
3945 case ISD::VACOPY: return "vacopy";
3946 case ISD::VAEND: return "vaend";
3947 case ISD::VASTART: return "vastart";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003948 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattnera5110e82006-01-13 02:39:42 +00003949 case ISD::EXTRACT_ELEMENT: return "extract_element";
3950 case ISD::BUILD_PAIR: return "build_pair";
3951 case ISD::STACKSAVE: return "stacksave";
3952 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003953 case ISD::TRAP: return "trap";
3954
Chris Lattnera5110e82006-01-13 02:39:42 +00003955 // Block memory operations.
Chris Lattner844277f2005-01-11 05:57:01 +00003956 case ISD::MEMSET: return "memset";
3957 case ISD::MEMCPY: return "memcpy";
3958 case ISD::MEMMOVE: return "memmove";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003959
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00003960 // Bit manipulation
3961 case ISD::BSWAP: return "bswap";
Chris Lattner93f4f5f2005-05-11 04:50:30 +00003962 case ISD::CTPOP: return "ctpop";
3963 case ISD::CTTZ: return "cttz";
3964 case ISD::CTLZ: return "ctlz";
3965
Chris Lattner435b4022005-11-29 06:21:05 +00003966 // Debug info
3967 case ISD::LOCATION: return "location";
Jim Laskey7c462762005-12-16 22:45:29 +00003968 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner435b4022005-11-29 06:21:05 +00003969
Duncan Sands644f9172007-07-27 12:58:54 +00003970 // Trampolines
Duncan Sands86e01192007-09-11 14:10:23 +00003971 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands644f9172007-07-27 12:58:54 +00003972
Chris Lattnerd47675e2005-08-09 20:20:18 +00003973 case ISD::CONDCODE:
3974 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattner9e4c7612005-01-10 23:25:25 +00003975 default: assert(0 && "Unknown setcc condition!");
Chris Lattnerd47675e2005-08-09 20:20:18 +00003976 case ISD::SETOEQ: return "setoeq";
3977 case ISD::SETOGT: return "setogt";
3978 case ISD::SETOGE: return "setoge";
3979 case ISD::SETOLT: return "setolt";
3980 case ISD::SETOLE: return "setole";
3981 case ISD::SETONE: return "setone";
Misha Brukman835702a2005-04-21 22:36:52 +00003982
Chris Lattnerd47675e2005-08-09 20:20:18 +00003983 case ISD::SETO: return "seto";
3984 case ISD::SETUO: return "setuo";
3985 case ISD::SETUEQ: return "setue";
3986 case ISD::SETUGT: return "setugt";
3987 case ISD::SETUGE: return "setuge";
3988 case ISD::SETULT: return "setult";
3989 case ISD::SETULE: return "setule";
3990 case ISD::SETUNE: return "setune";
Misha Brukman835702a2005-04-21 22:36:52 +00003991
Chris Lattnerd47675e2005-08-09 20:20:18 +00003992 case ISD::SETEQ: return "seteq";
3993 case ISD::SETGT: return "setgt";
3994 case ISD::SETGE: return "setge";
3995 case ISD::SETLT: return "setlt";
3996 case ISD::SETLE: return "setle";
3997 case ISD::SETNE: return "setne";
Chris Lattner9e4c7612005-01-10 23:25:25 +00003998 }
3999 }
4000}
Chris Lattner061a1ea2005-01-07 07:46:32 +00004001
Evan Chengb1500072006-11-09 17:55:04 +00004002const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng1839d762006-10-17 21:14:32 +00004003 switch (AM) {
4004 default:
4005 return "";
4006 case ISD::PRE_INC:
4007 return "<pre-inc>";
4008 case ISD::PRE_DEC:
4009 return "<pre-dec>";
4010 case ISD::POST_INC:
4011 return "<post-inc>";
4012 case ISD::POST_DEC:
4013 return "<post-dec>";
4014 }
4015}
4016
Chris Lattnerbc892262005-08-16 18:33:07 +00004017void SDNode::dump() const { dump(0); }
4018void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling22e978a2006-12-07 20:04:42 +00004019 cerr << (void*)this << ": ";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004020
4021 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004022 if (i) cerr << ",";
Chris Lattner09d1b3d2005-01-15 07:14:32 +00004023 if (getValueType(i) == MVT::Other)
Bill Wendling22e978a2006-12-07 20:04:42 +00004024 cerr << "ch";
Chris Lattner09d1b3d2005-01-15 07:14:32 +00004025 else
Bill Wendling22e978a2006-12-07 20:04:42 +00004026 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattner061a1ea2005-01-07 07:46:32 +00004027 }
Bill Wendling22e978a2006-12-07 20:04:42 +00004028 cerr << " = " << getOperationName(G);
Chris Lattner061a1ea2005-01-07 07:46:32 +00004029
Bill Wendling22e978a2006-12-07 20:04:42 +00004030 cerr << " ";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004031 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004032 if (i) cerr << ", ";
4033 cerr << (void*)getOperand(i).Val;
Chris Lattner061a1ea2005-01-07 07:46:32 +00004034 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling22e978a2006-12-07 20:04:42 +00004035 cerr << ":" << RN;
Chris Lattner061a1ea2005-01-07 07:46:32 +00004036 }
4037
Evan Chengf5403022007-12-11 02:08:35 +00004038 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4039 SDNode *Mask = getOperand(2).Val;
4040 cerr << "<";
4041 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4042 if (i) cerr << ",";
4043 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4044 cerr << "u";
4045 else
4046 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4047 }
4048 cerr << ">";
4049 }
4050
Chris Lattner061a1ea2005-01-07 07:46:32 +00004051 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004052 cerr << "<" << CSDN->getValue() << ">";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004053 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen98d3a082007-09-14 22:26:36 +00004054 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4055 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4056 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4057 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4058 else {
4059 cerr << "<APFloat(";
4060 CSDN->getValueAPF().convertToAPInt().dump();
4061 cerr << ")>";
4062 }
Misha Brukman835702a2005-04-21 22:36:52 +00004063 } else if (const GlobalAddressSDNode *GADN =
Chris Lattner061a1ea2005-01-07 07:46:32 +00004064 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng0e0de2f2005-11-30 02:04:11 +00004065 int offset = GADN->getOffset();
Bill Wendling22e978a2006-12-07 20:04:42 +00004066 cerr << "<";
Bill Wendling355fc5a2006-12-07 20:28:15 +00004067 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng0e0de2f2005-11-30 02:04:11 +00004068 if (offset > 0)
Bill Wendling22e978a2006-12-07 20:04:42 +00004069 cerr << " + " << offset;
Evan Cheng0e0de2f2005-11-30 02:04:11 +00004070 else
Bill Wendling22e978a2006-12-07 20:04:42 +00004071 cerr << " " << offset;
Misha Brukman77451162005-04-22 04:01:18 +00004072 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004073 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng415f3652006-11-01 04:48:30 +00004074 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004075 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004076 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng9f9662b2006-02-26 08:36:57 +00004077 int offset = CP->getOffset();
Evan Cheng45fe3bc2006-09-12 21:00:35 +00004078 if (CP->isMachineConstantPoolEntry())
Bill Wendling22e978a2006-12-07 20:04:42 +00004079 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Cheng45fe3bc2006-09-12 21:00:35 +00004080 else
Bill Wendling22e978a2006-12-07 20:04:42 +00004081 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng9f9662b2006-02-26 08:36:57 +00004082 if (offset > 0)
Bill Wendling22e978a2006-12-07 20:04:42 +00004083 cerr << " + " << offset;
Evan Cheng9f9662b2006-02-26 08:36:57 +00004084 else
Bill Wendling22e978a2006-12-07 20:04:42 +00004085 cerr << " " << offset;
Misha Brukman77451162005-04-22 04:01:18 +00004086 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004087 cerr << "<";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004088 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4089 if (LBB)
Bill Wendling22e978a2006-12-07 20:04:42 +00004090 cerr << LBB->getName() << " ";
4091 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattner0875d1a2005-08-19 21:34:13 +00004092 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman3a4be0f2008-02-10 18:45:23 +00004093 if (G && R->getReg() &&
4094 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendlingd7a258d2008-02-26 21:47:57 +00004095 cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner49903352005-08-19 21:21:16 +00004096 } else {
Bill Wendling22e978a2006-12-07 20:04:42 +00004097 cerr << " #" << R->getReg();
Chris Lattner49903352005-08-19 21:21:16 +00004098 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00004099 } else if (const ExternalSymbolSDNode *ES =
4100 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling22e978a2006-12-07 20:04:42 +00004101 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner9440d6e2005-05-09 04:08:27 +00004102 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4103 if (M->getValue())
Dan Gohman2d489b52008-02-06 22:27:42 +00004104 cerr << "<" << M->getValue() << ">";
Chris Lattner9440d6e2005-05-09 04:08:27 +00004105 else
Dan Gohman2d489b52008-02-06 22:27:42 +00004106 cerr << "<null>";
4107 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4108 if (M->MO.getValue())
4109 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4110 else
4111 cerr << "<null:" << M->MO.getOffset() << ">";
Chris Lattner802080d2005-08-18 03:31:02 +00004112 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman703e0f82007-05-24 14:33:05 +00004113 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Chengfe858532006-10-10 20:05:10 +00004114 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng78ced472007-12-18 19:06:30 +00004115 const Value *SrcValue = LD->getSrcValue();
4116 int SrcOffset = LD->getSrcValueOffset();
4117 cerr << " <";
4118 if (SrcValue)
4119 cerr << SrcValue;
4120 else
4121 cerr << "null";
4122 cerr << ":" << SrcOffset << ">";
4123
Evan Chengfe858532006-10-10 20:05:10 +00004124 bool doExt = true;
4125 switch (LD->getExtensionType()) {
4126 default: doExt = false; break;
4127 case ISD::EXTLOAD:
Bill Wendling22e978a2006-12-07 20:04:42 +00004128 cerr << " <anyext ";
Evan Chengfe858532006-10-10 20:05:10 +00004129 break;
4130 case ISD::SEXTLOAD:
Bill Wendling22e978a2006-12-07 20:04:42 +00004131 cerr << " <sext ";
Evan Chengfe858532006-10-10 20:05:10 +00004132 break;
4133 case ISD::ZEXTLOAD:
Bill Wendling22e978a2006-12-07 20:04:42 +00004134 cerr << " <zext ";
Evan Chengfe858532006-10-10 20:05:10 +00004135 break;
4136 }
4137 if (doExt)
Dan Gohman47a7d6f2008-01-30 00:15:11 +00004138 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Evan Chengfe858532006-10-10 20:05:10 +00004139
Evan Chengb1500072006-11-09 17:55:04 +00004140 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands85ec2af2007-07-19 07:31:58 +00004141 if (*AM)
Bill Wendling22e978a2006-12-07 20:04:42 +00004142 cerr << " " << AM;
Evan Cheng78ced472007-12-18 19:06:30 +00004143 if (LD->isVolatile())
4144 cerr << " <volatile>";
4145 cerr << " alignment=" << LD->getAlignment();
Evan Cheng1839d762006-10-17 21:14:32 +00004146 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Chenge2dbba52007-12-18 07:02:08 +00004147 const Value *SrcValue = ST->getSrcValue();
4148 int SrcOffset = ST->getSrcValueOffset();
4149 cerr << " <";
4150 if (SrcValue)
4151 cerr << SrcValue;
4152 else
4153 cerr << "null";
4154 cerr << ":" << SrcOffset << ">";
Evan Cheng78ced472007-12-18 19:06:30 +00004155
4156 if (ST->isTruncatingStore())
4157 cerr << " <trunc "
Dan Gohman47a7d6f2008-01-30 00:15:11 +00004158 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng78ced472007-12-18 19:06:30 +00004159
4160 const char *AM = getIndexedModeName(ST->getAddressingMode());
4161 if (*AM)
4162 cerr << " " << AM;
4163 if (ST->isVolatile())
4164 cerr << " <volatile>";
4165 cerr << " alignment=" << ST->getAlignment();
Chris Lattner061a1ea2005-01-07 07:46:32 +00004166 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00004167}
4168
Chris Lattnerbf4f23322005-11-09 23:47:37 +00004169static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnere6f78822005-01-09 20:38:33 +00004170 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4171 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerbc892262005-08-16 18:33:07 +00004172 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnere6f78822005-01-09 20:38:33 +00004173 else
Bill Wendling22e978a2006-12-07 20:04:42 +00004174 cerr << "\n" << std::string(indent+2, ' ')
4175 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukman835702a2005-04-21 22:36:52 +00004176
Chris Lattnere6f78822005-01-09 20:38:33 +00004177
Bill Wendling22e978a2006-12-07 20:04:42 +00004178 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerbc892262005-08-16 18:33:07 +00004179 N->dump(G);
Chris Lattnere6f78822005-01-09 20:38:33 +00004180}
4181
Chris Lattner061a1ea2005-01-07 07:46:32 +00004182void SelectionDAG::dump() const {
Bill Wendling22e978a2006-12-07 20:04:42 +00004183 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerbf4f23322005-11-09 23:47:37 +00004184 std::vector<const SDNode*> Nodes;
4185 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4186 I != E; ++I)
4187 Nodes.push_back(I);
4188
Chris Lattner1270acc2005-01-09 20:26:36 +00004189 std::sort(Nodes.begin(), Nodes.end());
4190
4191 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnere6f78822005-01-09 20:38:33 +00004192 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerbc892262005-08-16 18:33:07 +00004193 DumpNodes(Nodes[i], 2, this);
Chris Lattner061a1ea2005-01-07 07:46:32 +00004194 }
Chris Lattnere6f78822005-01-09 20:38:33 +00004195
Jim Laskeye7d2c242006-10-17 19:33:52 +00004196 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnere6f78822005-01-09 20:38:33 +00004197
Bill Wendling22e978a2006-12-07 20:04:42 +00004198 cerr << "\n\n";
Chris Lattner061a1ea2005-01-07 07:46:32 +00004199}
4200
Evan Cheng45fe3bc2006-09-12 21:00:35 +00004201const Type *ConstantPoolSDNode::getType() const {
4202 if (isMachineConstantPoolEntry())
4203 return Val.MachineCPVal->getType();
4204 return Val.ConstVal->getType();
4205}