blob: 1db78fe2a405c6e9fe9d29691f41641041538432 [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000015#include "llvm/Constants.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000016#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000018#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000024#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000025#include "llvm/Support/MathExtras.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000026#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000027#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000028#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000031#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000032#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000033#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000034#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000035#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000036#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000037#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000038using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000039
Chris Lattner0b3e5252006-08-15 19:11:05 +000040/// makeVTList - Return an instance of the SDVTList struct initialized with the
41/// specified members.
42static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
43 SDVTList Res = {VTs, NumVTs};
44 return Res;
45}
46
Chris Lattnerec4a5672008-03-05 06:48:13 +000047static const fltSemantics *MVTToAPFloatSemantics(MVT::ValueType VT) {
48 switch (VT) {
49 default: assert(0 && "Unknown FP format");
50 case MVT::f32: return &APFloat::IEEEsingle;
51 case MVT::f64: return &APFloat::IEEEdouble;
52 case MVT::f80: return &APFloat::x87DoubleExtended;
53 case MVT::f128: return &APFloat::IEEEquad;
54 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
55 }
56}
57
Chris Lattnerf8dc0612008-02-03 06:49:24 +000058SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
59
Jim Laskey58b968b2005-08-17 20:08:02 +000060//===----------------------------------------------------------------------===//
61// ConstantFPSDNode Class
62//===----------------------------------------------------------------------===//
63
64/// isExactlyValue - We don't rely on operator== working on double values, as
65/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
66/// As such, this method can be used to do an exact bit-for-bit comparison of
67/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000068bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000069 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000070}
71
Dale Johannesenf04afdb2007-08-30 00:23:21 +000072bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
73 const APFloat& Val) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000074 assert(MVT::isFloatingPoint(VT) && "Can only convert between FP types");
75
76 // Anything can be extended to ppc long double.
77 if (VT == MVT::ppcf128)
78 return true;
79
80 // PPC long double cannot be shrunk to anything though.
81 if (&Val.getSemantics() == &APFloat::PPCDoubleDouble)
82 return false;
83
Dale Johannesenf04afdb2007-08-30 00:23:21 +000084 // convert modifies in place, so make a copy.
85 APFloat Val2 = APFloat(Val);
Chris Lattnerec4a5672008-03-05 06:48:13 +000086 return Val2.convert(*MVTToAPFloatSemantics(VT),
87 APFloat::rmNearestTiesToEven) == APFloat::opOK;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000088}
89
Jim Laskey58b968b2005-08-17 20:08:02 +000090//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000091// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000092//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000093
Evan Chenga8df1662006-03-27 06:58:47 +000094/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000095/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000096bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000097 // Look through a bit convert.
98 if (N->getOpcode() == ISD::BIT_CONVERT)
99 N = N->getOperand(0).Val;
100
Evan Chenga8df1662006-03-27 06:58:47 +0000101 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000102
103 unsigned i = 0, e = N->getNumOperands();
104
105 // Skip over all of the undef values.
106 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
107 ++i;
108
109 // Do not accept an all-undef vector.
110 if (i == e) return false;
111
112 // Do not accept build_vectors that aren't all constants or which have non-~0
113 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000114 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000115 if (isa<ConstantSDNode>(NotZero)) {
116 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
117 return false;
118 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000119 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
120 convertToAPInt().isAllOnesValue())
121 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000122 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000123 return false;
124
125 // Okay, we have at least one ~0 value, check to see if the rest match or are
126 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000127 for (++i; i != e; ++i)
128 if (N->getOperand(i) != NotZero &&
129 N->getOperand(i).getOpcode() != ISD::UNDEF)
130 return false;
131 return true;
132}
133
134
Evan Cheng4a147842006-03-26 09:50:58 +0000135/// isBuildVectorAllZeros - Return true if the specified node is a
136/// BUILD_VECTOR where all of the elements are 0 or undef.
137bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000138 // Look through a bit convert.
139 if (N->getOpcode() == ISD::BIT_CONVERT)
140 N = N->getOperand(0).Val;
141
Evan Cheng4a147842006-03-26 09:50:58 +0000142 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000143
144 unsigned i = 0, e = N->getNumOperands();
145
146 // Skip over all of the undef values.
147 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
148 ++i;
149
150 // Do not accept an all-undef vector.
151 if (i == e) return false;
152
153 // Do not accept build_vectors that aren't all constants or which have non-~0
154 // elements.
155 SDOperand Zero = N->getOperand(i);
156 if (isa<ConstantSDNode>(Zero)) {
157 if (!cast<ConstantSDNode>(Zero)->isNullValue())
158 return false;
159 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000160 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000161 return false;
162 } else
163 return false;
164
165 // Okay, we have at least one ~0 value, check to see if the rest match or are
166 // undefs.
167 for (++i; i != e; ++i)
168 if (N->getOperand(i) != Zero &&
169 N->getOperand(i).getOpcode() != ISD::UNDEF)
170 return false;
171 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000172}
173
Evan Chengefec7512008-02-18 23:04:32 +0000174/// isScalarToVector - Return true if the specified node is a
175/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
176/// element is not an undef.
177bool ISD::isScalarToVector(const SDNode *N) {
178 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
179 return true;
180
181 if (N->getOpcode() != ISD::BUILD_VECTOR)
182 return false;
183 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
184 return false;
185 unsigned NumElems = N->getNumOperands();
186 for (unsigned i = 1; i < NumElems; ++i) {
187 SDOperand V = N->getOperand(i);
188 if (V.getOpcode() != ISD::UNDEF)
189 return false;
190 }
191 return true;
192}
193
194
Evan Chengbb81d972008-01-31 09:59:15 +0000195/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengfc718542008-02-04 23:10:38 +0000196/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Chengbb81d972008-01-31 09:59:15 +0000197/// is 0).
198bool ISD::isDebugLabel(const SDNode *N) {
199 SDOperand Zero;
200 if (N->getOpcode() == ISD::LABEL)
201 Zero = N->getOperand(2);
202 else if (N->isTargetOpcode() &&
203 N->getTargetOpcode() == TargetInstrInfo::LABEL)
204 // Chain moved to last operand.
205 Zero = N->getOperand(1);
206 else
207 return false;
208 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
209}
210
Chris Lattnerc3aae252005-01-07 07:46:32 +0000211/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
212/// when given the operation for (X op Y).
213ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
214 // To perform this operation, we just need to swap the L and G bits of the
215 // operation.
216 unsigned OldL = (Operation >> 2) & 1;
217 unsigned OldG = (Operation >> 1) & 1;
218 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
219 (OldL << 1) | // New G bit
220 (OldG << 2)); // New L bit.
221}
222
223/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
224/// 'op' is a valid SetCC operation.
225ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
226 unsigned Operation = Op;
227 if (isInteger)
228 Operation ^= 7; // Flip L, G, E bits, but not U.
229 else
230 Operation ^= 15; // Flip all of the condition bits.
231 if (Operation > ISD::SETTRUE2)
232 Operation &= ~8; // Don't let N and U bits get set.
233 return ISD::CondCode(Operation);
234}
235
236
237/// isSignedOp - For an integer comparison, return 1 if the comparison is a
238/// signed operation and 2 if the result is an unsigned comparison. Return zero
239/// if the operation does not depend on the sign of the input (setne and seteq).
240static int isSignedOp(ISD::CondCode Opcode) {
241 switch (Opcode) {
242 default: assert(0 && "Illegal integer setcc operation!");
243 case ISD::SETEQ:
244 case ISD::SETNE: return 0;
245 case ISD::SETLT:
246 case ISD::SETLE:
247 case ISD::SETGT:
248 case ISD::SETGE: return 1;
249 case ISD::SETULT:
250 case ISD::SETULE:
251 case ISD::SETUGT:
252 case ISD::SETUGE: return 2;
253 }
254}
255
256/// getSetCCOrOperation - Return the result of a logical OR between different
257/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
258/// returns SETCC_INVALID if it is not possible to represent the resultant
259/// comparison.
260ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
261 bool isInteger) {
262 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
263 // Cannot fold a signed integer setcc with an unsigned integer setcc.
264 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000265
Chris Lattnerc3aae252005-01-07 07:46:32 +0000266 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000267
Chris Lattnerc3aae252005-01-07 07:46:32 +0000268 // If the N and U bits get set then the resultant comparison DOES suddenly
269 // care about orderedness, and is true when ordered.
270 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000271 Op &= ~16; // Clear the U bit if the N bit is set.
272
273 // Canonicalize illegal integer setcc's.
274 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
275 Op = ISD::SETNE;
276
Chris Lattnerc3aae252005-01-07 07:46:32 +0000277 return ISD::CondCode(Op);
278}
279
280/// getSetCCAndOperation - Return the result of a logical AND between different
281/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
282/// function returns zero if it is not possible to represent the resultant
283/// comparison.
284ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
285 bool isInteger) {
286 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
287 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000288 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000289
290 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000291 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
292
293 // Canonicalize illegal integer setcc's.
294 if (isInteger) {
295 switch (Result) {
296 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000297 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
298 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
299 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
300 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000301 }
302 }
303
304 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000305}
306
Chris Lattnerb48da392005-01-23 04:39:44 +0000307const TargetMachine &SelectionDAG::getTarget() const {
308 return TLI.getTargetMachine();
309}
310
Jim Laskey58b968b2005-08-17 20:08:02 +0000311//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000312// SDNode Profile Support
313//===----------------------------------------------------------------------===//
314
Jim Laskeydef69b92006-10-27 23:52:51 +0000315/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
316///
Jim Laskey583bd472006-10-27 23:46:08 +0000317static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
318 ID.AddInteger(OpC);
319}
320
321/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
322/// solely with their pointer.
323void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
324 ID.AddPointer(VTList.VTs);
325}
326
Jim Laskeydef69b92006-10-27 23:52:51 +0000327/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
328///
Jim Laskey583bd472006-10-27 23:46:08 +0000329static void AddNodeIDOperands(FoldingSetNodeID &ID,
330 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000331 for (; NumOps; --NumOps, ++Ops) {
332 ID.AddPointer(Ops->Val);
333 ID.AddInteger(Ops->ResNo);
334 }
Jim Laskey583bd472006-10-27 23:46:08 +0000335}
336
Jim Laskey583bd472006-10-27 23:46:08 +0000337static void AddNodeIDNode(FoldingSetNodeID &ID,
338 unsigned short OpC, SDVTList VTList,
339 const SDOperand *OpList, unsigned N) {
340 AddNodeIDOpcode(ID, OpC);
341 AddNodeIDValueTypes(ID, VTList);
342 AddNodeIDOperands(ID, OpList, N);
343}
344
Jim Laskeydef69b92006-10-27 23:52:51 +0000345/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
346/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000347static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
348 AddNodeIDOpcode(ID, N->getOpcode());
349 // Add the return value info.
350 AddNodeIDValueTypes(ID, N->getVTList());
351 // Add the operand info.
352 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
353
354 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000355 switch (N->getOpcode()) {
356 default: break; // Normal nodes don't need extra info.
357 case ISD::TargetConstant:
358 case ISD::Constant:
Chris Lattner19fc1d32008-02-20 06:28:01 +0000359 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000360 break;
361 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000362 case ISD::ConstantFP: {
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000363 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000364 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000365 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000366 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000367 case ISD::GlobalAddress:
368 case ISD::TargetGlobalTLSAddress:
369 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000370 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
371 ID.AddPointer(GA->getGlobal());
372 ID.AddInteger(GA->getOffset());
373 break;
374 }
375 case ISD::BasicBlock:
376 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
377 break;
378 case ISD::Register:
379 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
380 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000381 case ISD::SRCVALUE:
382 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
383 break;
384 case ISD::MEMOPERAND: {
385 const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
386 ID.AddPointer(MO.getValue());
387 ID.AddInteger(MO.getFlags());
388 ID.AddInteger(MO.getOffset());
389 ID.AddInteger(MO.getSize());
390 ID.AddInteger(MO.getAlignment());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000391 break;
392 }
393 case ISD::FrameIndex:
394 case ISD::TargetFrameIndex:
395 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
396 break;
397 case ISD::JumpTable:
398 case ISD::TargetJumpTable:
399 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
400 break;
401 case ISD::ConstantPool:
402 case ISD::TargetConstantPool: {
403 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
404 ID.AddInteger(CP->getAlignment());
405 ID.AddInteger(CP->getOffset());
406 if (CP->isMachineConstantPoolEntry())
407 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
408 else
409 ID.AddPointer(CP->getConstVal());
410 break;
411 }
412 case ISD::LOAD: {
413 LoadSDNode *LD = cast<LoadSDNode>(N);
414 ID.AddInteger(LD->getAddressingMode());
415 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000416 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000417 ID.AddInteger(LD->getAlignment());
418 ID.AddInteger(LD->isVolatile());
419 break;
420 }
421 case ISD::STORE: {
422 StoreSDNode *ST = cast<StoreSDNode>(N);
423 ID.AddInteger(ST->getAddressingMode());
424 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000425 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000426 ID.AddInteger(ST->getAlignment());
427 ID.AddInteger(ST->isVolatile());
428 break;
429 }
Jim Laskey583bd472006-10-27 23:46:08 +0000430 }
431}
432
433//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000434// SelectionDAG Class
435//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000436
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000437/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000438/// SelectionDAG.
439void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000440 // Create a dummy node (which is not added to allnodes), that adds a reference
441 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000442 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000443
Chris Lattner190a4182006-08-04 17:45:20 +0000444 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000445
Chris Lattner190a4182006-08-04 17:45:20 +0000446 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000447 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000448 if (I->use_empty())
449 DeadNodes.push_back(I);
450
451 // Process the worklist, deleting the nodes and adding their uses to the
452 // worklist.
453 while (!DeadNodes.empty()) {
454 SDNode *N = DeadNodes.back();
455 DeadNodes.pop_back();
456
457 // Take the node out of the appropriate CSE map.
458 RemoveNodeFromCSEMaps(N);
459
460 // Next, brutally remove the operand list. This is safe to do, as there are
461 // no cycles in the graph.
462 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
463 SDNode *Operand = I->Val;
464 Operand->removeUser(N);
465
466 // Now that we removed this operand, see if there are no uses of it left.
467 if (Operand->use_empty())
468 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000469 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000470 if (N->OperandsNeedDelete)
471 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000472 N->OperandList = 0;
473 N->NumOperands = 0;
474
475 // Finally, remove N itself.
476 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000477 }
478
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000479 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000480 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000481}
482
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000483void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Cheng130a6472006-10-12 20:34:05 +0000484 SmallVector<SDNode*, 16> DeadNodes;
485 DeadNodes.push_back(N);
486
487 // Process the worklist, deleting the nodes and adding their uses to the
488 // worklist.
489 while (!DeadNodes.empty()) {
490 SDNode *N = DeadNodes.back();
491 DeadNodes.pop_back();
492
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000493 if (UpdateListener)
494 UpdateListener->NodeDeleted(N);
495
Evan Cheng130a6472006-10-12 20:34:05 +0000496 // Take the node out of the appropriate CSE map.
497 RemoveNodeFromCSEMaps(N);
498
499 // Next, brutally remove the operand list. This is safe to do, as there are
500 // no cycles in the graph.
501 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
502 SDNode *Operand = I->Val;
503 Operand->removeUser(N);
504
505 // Now that we removed this operand, see if there are no uses of it left.
506 if (Operand->use_empty())
507 DeadNodes.push_back(Operand);
508 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000509 if (N->OperandsNeedDelete)
510 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000511 N->OperandList = 0;
512 N->NumOperands = 0;
513
514 // Finally, remove N itself.
Evan Cheng130a6472006-10-12 20:34:05 +0000515 AllNodes.erase(N);
516 }
517}
518
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000519void SelectionDAG::DeleteNode(SDNode *N) {
520 assert(N->use_empty() && "Cannot delete a node that is not dead!");
521
522 // First take this out of the appropriate CSE map.
523 RemoveNodeFromCSEMaps(N);
524
Chris Lattner1e111c72005-09-07 05:37:01 +0000525 // Finally, remove uses due to operands of this node, remove from the
526 // AllNodes list, and delete the node.
527 DeleteNodeNotInCSEMaps(N);
528}
529
530void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
531
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000532 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000533 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000534
535 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000536 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
537 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000538 if (N->OperandsNeedDelete)
539 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000540 N->OperandList = 0;
541 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000542
543 delete N;
544}
545
Chris Lattner149c58c2005-08-16 18:17:10 +0000546/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
547/// correspond to it. This is useful when we're about to delete or repurpose
548/// the node. We don't want future request for structurally identical nodes
549/// to return N anymore.
550void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000551 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000552 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000553 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000554 case ISD::STRING:
555 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
556 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000557 case ISD::CONDCODE:
558 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
559 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000560 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000561 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
562 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000563 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000564 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000565 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000566 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000567 Erased =
568 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000569 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000570 case ISD::VALUETYPE: {
571 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
572 if (MVT::isExtendedVT(VT)) {
573 Erased = ExtendedValueTypeNodes.erase(VT);
574 } else {
575 Erased = ValueTypeNodes[VT] != 0;
576 ValueTypeNodes[VT] = 0;
577 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000578 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000579 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000580 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000581 // Remove it from the CSE Map.
582 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000583 break;
584 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000585#ifndef NDEBUG
586 // Verify that the node was actually in one of the CSE maps, unless it has a
587 // flag result (which cannot be CSE'd) or is one of the special cases that are
588 // not subject to CSE.
589 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000590 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000591 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000592 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000593 assert(0 && "Node is not in map!");
594 }
595#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000596}
597
Chris Lattner8b8749f2005-08-17 19:00:20 +0000598/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
599/// has been taken out and modified in some way. If the specified node already
600/// exists in the CSE maps, do not modify the maps, but return the existing node
601/// instead. If it doesn't exist, add it and return null.
602///
603SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
604 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000605 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000606 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000607
Chris Lattner9f8cc692005-12-19 22:21:21 +0000608 // Check that remaining values produced are not flags.
609 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
610 if (N->getValueType(i) == MVT::Flag)
611 return 0; // Never CSE anything that produces a flag.
612
Chris Lattnera5682852006-08-07 23:03:03 +0000613 SDNode *New = CSEMap.GetOrInsertNode(N);
614 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000615 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000616}
617
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000618/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
619/// were replaced with those specified. If this node is never memoized,
620/// return null, otherwise return a pointer to the slot it would take. If a
621/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000622SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
623 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000624 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000625 return 0; // Never add these nodes.
626
627 // Check that remaining values produced are not flags.
628 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
629 if (N->getValueType(i) == MVT::Flag)
630 return 0; // Never CSE anything that produces a flag.
631
Chris Lattner63e3f142007-02-04 07:28:00 +0000632 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000633 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000634 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000635 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000636}
637
638/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
639/// were replaced with those specified. If this node is never memoized,
640/// return null, otherwise return a pointer to the slot it would take. If a
641/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000642SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
643 SDOperand Op1, SDOperand Op2,
644 void *&InsertPos) {
645 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
646 return 0; // Never add these nodes.
647
648 // Check that remaining values produced are not flags.
649 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
650 if (N->getValueType(i) == MVT::Flag)
651 return 0; // Never CSE anything that produces a flag.
652
Chris Lattner63e3f142007-02-04 07:28:00 +0000653 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000654 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000655 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000656 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
657}
658
659
660/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
661/// were replaced with those specified. If this node is never memoized,
662/// return null, otherwise return a pointer to the slot it would take. If a
663/// node already exists with these operands, the slot will be non-null.
664SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000665 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000666 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000667 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000668 return 0; // Never add these nodes.
669
670 // Check that remaining values produced are not flags.
671 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
672 if (N->getValueType(i) == MVT::Flag)
673 return 0; // Never CSE anything that produces a flag.
674
Jim Laskey583bd472006-10-27 23:46:08 +0000675 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000676 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000677
Evan Cheng9629aba2006-10-11 01:47:58 +0000678 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
679 ID.AddInteger(LD->getAddressingMode());
680 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000681 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng9629aba2006-10-11 01:47:58 +0000682 ID.AddInteger(LD->getAlignment());
683 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000684 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
685 ID.AddInteger(ST->getAddressingMode());
686 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000687 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000688 ID.AddInteger(ST->getAlignment());
689 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000690 }
Jim Laskey583bd472006-10-27 23:46:08 +0000691
Chris Lattnera5682852006-08-07 23:03:03 +0000692 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000693}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000694
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000695
Chris Lattner78ec3112003-08-11 14:57:33 +0000696SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000697 while (!AllNodes.empty()) {
698 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000699 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000700 if (N->OperandsNeedDelete)
701 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000702 N->OperandList = 0;
703 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000704 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000705 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000706}
707
Chris Lattner0f2287b2005-04-13 02:38:18 +0000708SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000709 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000710 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
711 MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000712 return getNode(ISD::AND, Op.getValueType(), Op,
713 getConstant(Imm, Op.getValueType()));
714}
715
Chris Lattner36ce6912005-11-29 06:21:05 +0000716SDOperand SelectionDAG::getString(const std::string &Val) {
717 StringSDNode *&N = StringNodes[Val];
718 if (!N) {
719 N = new StringSDNode(Val);
720 AllNodes.push_back(N);
721 }
722 return SDOperand(N, 0);
723}
724
Chris Lattner61b09412006-08-11 21:01:22 +0000725SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohman6394b092008-02-08 22:59:30 +0000726 MVT::ValueType EltVT =
727 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
728
729 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
730}
731
732SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000733 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000734
735 MVT::ValueType EltVT =
736 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000737
Dan Gohman6394b092008-02-08 22:59:30 +0000738 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
739 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000740
741 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000742 FoldingSetNodeID ID;
Dan Gohman89081322007-12-12 22:21:26 +0000743 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000744 ID.Add(Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000745 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000746 SDNode *N = NULL;
747 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
748 if (!MVT::isVector(VT))
749 return SDOperand(N, 0);
750 if (!N) {
751 N = new ConstantSDNode(isT, Val, EltVT);
752 CSEMap.InsertNode(N, IP);
753 AllNodes.push_back(N);
754 }
755
756 SDOperand Result(N, 0);
757 if (MVT::isVector(VT)) {
758 SmallVector<SDOperand, 8> Ops;
759 Ops.assign(MVT::getVectorNumElements(VT), Result);
760 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
761 }
762 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000763}
764
Chris Lattner0bd48932008-01-17 07:00:52 +0000765SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
766 return getConstant(Val, TLI.getPointerTy(), isTarget);
767}
768
769
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000770SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000771 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000772 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000773
Dan Gohman7f321562007-06-25 16:23:39 +0000774 MVT::ValueType EltVT =
775 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000776
Chris Lattnerd8658612005-02-17 20:17:32 +0000777 // Do the map lookup using the actual bit pattern for the floating point
778 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
779 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000780 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000781 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000782 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000783 ID.Add(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000784 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000785 SDNode *N = NULL;
786 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
787 if (!MVT::isVector(VT))
788 return SDOperand(N, 0);
789 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000790 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000791 CSEMap.InsertNode(N, IP);
792 AllNodes.push_back(N);
793 }
794
Dan Gohman7f321562007-06-25 16:23:39 +0000795 SDOperand Result(N, 0);
796 if (MVT::isVector(VT)) {
797 SmallVector<SDOperand, 8> Ops;
798 Ops.assign(MVT::getVectorNumElements(VT), Result);
799 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
800 }
801 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000802}
803
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000804SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
805 bool isTarget) {
806 MVT::ValueType EltVT =
807 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
808 if (EltVT==MVT::f32)
809 return getConstantFP(APFloat((float)Val), VT, isTarget);
810 else
811 return getConstantFP(APFloat(Val), VT, isTarget);
812}
813
Chris Lattnerc3aae252005-01-07 07:46:32 +0000814SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000815 MVT::ValueType VT, int Offset,
816 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000817 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
818 unsigned Opc;
819 if (GVar && GVar->isThreadLocal())
820 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
821 else
822 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000823 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000824 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000825 ID.AddPointer(GV);
826 ID.AddInteger(Offset);
827 void *IP = 0;
828 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
829 return SDOperand(E, 0);
830 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
831 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000832 AllNodes.push_back(N);
833 return SDOperand(N, 0);
834}
835
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000836SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
837 bool isTarget) {
838 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000839 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000840 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000841 ID.AddInteger(FI);
842 void *IP = 0;
843 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
844 return SDOperand(E, 0);
845 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
846 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000847 AllNodes.push_back(N);
848 return SDOperand(N, 0);
849}
850
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000851SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
852 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000853 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000854 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000855 ID.AddInteger(JTI);
856 void *IP = 0;
857 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
858 return SDOperand(E, 0);
859 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
860 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000861 AllNodes.push_back(N);
862 return SDOperand(N, 0);
863}
864
Evan Chengb8973bd2006-01-31 22:23:14 +0000865SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000866 unsigned Alignment, int Offset,
867 bool isTarget) {
868 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000869 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000870 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000871 ID.AddInteger(Alignment);
872 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000873 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000874 void *IP = 0;
875 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
876 return SDOperand(E, 0);
877 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
878 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000879 AllNodes.push_back(N);
880 return SDOperand(N, 0);
881}
882
Chris Lattnerc3aae252005-01-07 07:46:32 +0000883
Evan Chengd6594ae2006-09-12 21:00:35 +0000884SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
885 MVT::ValueType VT,
886 unsigned Alignment, int Offset,
887 bool isTarget) {
888 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000889 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000890 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000891 ID.AddInteger(Alignment);
892 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000893 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000894 void *IP = 0;
895 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
896 return SDOperand(E, 0);
897 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
898 CSEMap.InsertNode(N, IP);
899 AllNodes.push_back(N);
900 return SDOperand(N, 0);
901}
902
903
Chris Lattnerc3aae252005-01-07 07:46:32 +0000904SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000905 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000906 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000907 ID.AddPointer(MBB);
908 void *IP = 0;
909 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
910 return SDOperand(E, 0);
911 SDNode *N = new BasicBlockSDNode(MBB);
912 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000913 AllNodes.push_back(N);
914 return SDOperand(N, 0);
915}
916
Chris Lattner15e4b012005-07-10 00:07:11 +0000917SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000918 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner15e4b012005-07-10 00:07:11 +0000919 ValueTypeNodes.resize(VT+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000920
Duncan Sandsf411b832007-10-17 13:49:58 +0000921 SDNode *&N = MVT::isExtendedVT(VT) ?
922 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
923
924 if (N) return SDOperand(N, 0);
925 N = new VTSDNode(VT);
926 AllNodes.push_back(N);
927 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000928}
929
Chris Lattnerc3aae252005-01-07 07:46:32 +0000930SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
931 SDNode *&N = ExternalSymbols[Sym];
932 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000933 N = new ExternalSymbolSDNode(false, Sym, VT);
934 AllNodes.push_back(N);
935 return SDOperand(N, 0);
936}
937
Chris Lattner809ec112006-01-28 10:09:25 +0000938SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
939 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000940 SDNode *&N = TargetExternalSymbols[Sym];
941 if (N) return SDOperand(N, 0);
942 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000943 AllNodes.push_back(N);
944 return SDOperand(N, 0);
945}
946
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000947SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
948 if ((unsigned)Cond >= CondCodeNodes.size())
949 CondCodeNodes.resize(Cond+1);
950
Chris Lattner079a27a2005-08-09 20:40:02 +0000951 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000952 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000953 AllNodes.push_back(CondCodeNodes[Cond]);
954 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000955 return SDOperand(CondCodeNodes[Cond], 0);
956}
957
Chris Lattner0fdd7682005-08-30 22:38:38 +0000958SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000959 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000960 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000961 ID.AddInteger(RegNo);
962 void *IP = 0;
963 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
964 return SDOperand(E, 0);
965 SDNode *N = new RegisterSDNode(RegNo, VT);
966 CSEMap.InsertNode(N, IP);
967 AllNodes.push_back(N);
968 return SDOperand(N, 0);
969}
970
Dan Gohman69de1932008-02-06 22:27:42 +0000971SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +0000972 assert((!V || isa<PointerType>(V->getType())) &&
973 "SrcValue is not a pointer?");
974
Jim Laskey583bd472006-10-27 23:46:08 +0000975 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000976 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000977 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +0000978
Chris Lattner61b09412006-08-11 21:01:22 +0000979 void *IP = 0;
980 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
981 return SDOperand(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +0000982
983 SDNode *N = new SrcValueSDNode(V);
984 CSEMap.InsertNode(N, IP);
985 AllNodes.push_back(N);
986 return SDOperand(N, 0);
987}
988
989SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
990 const Value *v = MO.getValue();
991 assert((!v || isa<PointerType>(v->getType())) &&
992 "SrcValue is not a pointer?");
993
994 FoldingSetNodeID ID;
995 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
996 ID.AddPointer(v);
997 ID.AddInteger(MO.getFlags());
998 ID.AddInteger(MO.getOffset());
999 ID.AddInteger(MO.getSize());
1000 ID.AddInteger(MO.getAlignment());
1001
1002 void *IP = 0;
1003 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1004 return SDOperand(E, 0);
1005
1006 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001007 CSEMap.InsertNode(N, IP);
1008 AllNodes.push_back(N);
1009 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001010}
1011
Chris Lattner37ce9df2007-10-15 17:47:20 +00001012/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1013/// specified value type.
1014SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
1015 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1016 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1017 const Type *Ty = MVT::getTypeForValueType(VT);
1018 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1019 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1020 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1021}
1022
1023
Chris Lattner51dabfb2006-10-14 00:41:01 +00001024SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1025 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001026 // These setcc operations always fold.
1027 switch (Cond) {
1028 default: break;
1029 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001030 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001031 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001032 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001033
1034 case ISD::SETOEQ:
1035 case ISD::SETOGT:
1036 case ISD::SETOGE:
1037 case ISD::SETOLT:
1038 case ISD::SETOLE:
1039 case ISD::SETONE:
1040 case ISD::SETO:
1041 case ISD::SETUO:
1042 case ISD::SETUEQ:
1043 case ISD::SETUNE:
1044 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1045 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001046 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001047
Chris Lattner67255a12005-04-07 18:14:58 +00001048 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001049 const APInt &C2 = N2C->getAPIntValue();
Chris Lattner67255a12005-04-07 18:14:58 +00001050 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001051 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001052
Chris Lattnerc3aae252005-01-07 07:46:32 +00001053 switch (Cond) {
1054 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001055 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1056 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001057 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1058 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1059 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1060 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1061 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1062 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1063 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1064 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001065 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001066 }
Chris Lattner67255a12005-04-07 18:14:58 +00001067 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001068 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001069 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001070 // No compile time operations on this type yet.
1071 if (N1C->getValueType(0) == MVT::ppcf128)
1072 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001073
1074 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001075 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001076 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001077 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1078 return getNode(ISD::UNDEF, VT);
1079 // fall through
1080 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1081 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1082 return getNode(ISD::UNDEF, VT);
1083 // fall through
1084 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001085 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001086 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1087 return getNode(ISD::UNDEF, VT);
1088 // fall through
1089 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1090 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1091 return getNode(ISD::UNDEF, VT);
1092 // fall through
1093 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1094 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1095 return getNode(ISD::UNDEF, VT);
1096 // fall through
1097 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001098 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001099 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1100 return getNode(ISD::UNDEF, VT);
1101 // fall through
1102 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001103 R==APFloat::cmpEqual, VT);
1104 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1105 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1106 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1107 R==APFloat::cmpEqual, VT);
1108 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1109 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1110 R==APFloat::cmpLessThan, VT);
1111 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1112 R==APFloat::cmpUnordered, VT);
1113 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1114 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001115 }
1116 } else {
1117 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001118 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001119 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001120 }
1121
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001122 // Could not fold it.
1123 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001124}
1125
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001126/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1127/// use this predicate to simplify operations downstream.
1128bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1129 unsigned BitWidth = Op.getValueSizeInBits();
1130 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1131}
1132
Dan Gohmanea859be2007-06-22 14:59:07 +00001133/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1134/// this predicate to simplify operations downstream. Mask is known to be zero
1135/// for bits that V cannot have.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001136bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001137 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001138 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001139 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1140 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1141 return (KnownZero & Mask) == Mask;
1142}
1143
1144/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1145/// known to be either zero or one and return them in the KnownZero/KnownOne
1146/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1147/// processing.
Dan Gohman977a76f2008-02-13 22:28:48 +00001148void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001149 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001150 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001151 unsigned BitWidth = Mask.getBitWidth();
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001152 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1153 "Mask size mismatches value type size!");
1154
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001155 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001156 if (Depth == 6 || Mask == 0)
1157 return; // Limit search depth.
1158
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001159 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001160
1161 switch (Op.getOpcode()) {
1162 case ISD::Constant:
1163 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001164 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001165 KnownZero = ~KnownOne & Mask;
1166 return;
1167 case ISD::AND:
1168 // If either the LHS or the RHS are Zero, the result is zero.
1169 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001170 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1171 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001172 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1173 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1174
1175 // Output known-1 bits are only known if set in both the LHS & RHS.
1176 KnownOne &= KnownOne2;
1177 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1178 KnownZero |= KnownZero2;
1179 return;
1180 case ISD::OR:
1181 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001182 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1183 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001184 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1185 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1186
1187 // Output known-0 bits are only known if clear in both the LHS & RHS.
1188 KnownZero &= KnownZero2;
1189 // Output known-1 are known to be set if set in either the LHS | RHS.
1190 KnownOne |= KnownOne2;
1191 return;
1192 case ISD::XOR: {
1193 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1194 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1195 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1196 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1197
1198 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001199 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001200 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1201 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1202 KnownZero = KnownZeroOut;
1203 return;
1204 }
1205 case ISD::SELECT:
1206 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1207 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1208 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1209 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1210
1211 // Only known if known in both the LHS and RHS.
1212 KnownOne &= KnownOne2;
1213 KnownZero &= KnownZero2;
1214 return;
1215 case ISD::SELECT_CC:
1216 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1217 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1218 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1219 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1220
1221 // Only known if known in both the LHS and RHS.
1222 KnownOne &= KnownOne2;
1223 KnownZero &= KnownZero2;
1224 return;
1225 case ISD::SETCC:
1226 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001227 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1228 BitWidth > 1)
1229 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001230 return;
1231 case ISD::SHL:
1232 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1233 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmand4cf9922008-02-26 18:50:50 +00001234 unsigned ShAmt = SA->getValue();
1235
1236 // If the shift count is an invalid immediate, don't do anything.
1237 if (ShAmt >= BitWidth)
1238 return;
1239
1240 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001241 KnownZero, KnownOne, Depth+1);
1242 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001243 KnownZero <<= ShAmt;
1244 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001245 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001246 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001247 }
1248 return;
1249 case ISD::SRL:
1250 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1251 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001252 unsigned ShAmt = SA->getValue();
1253
Dan Gohmand4cf9922008-02-26 18:50:50 +00001254 // If the shift count is an invalid immediate, don't do anything.
1255 if (ShAmt >= BitWidth)
1256 return;
1257
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001258 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001259 KnownZero, KnownOne, Depth+1);
1260 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001261 KnownZero = KnownZero.lshr(ShAmt);
1262 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001263
Dan Gohman72d2fd52008-02-13 22:43:25 +00001264 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001265 KnownZero |= HighBits; // High bits known zero.
1266 }
1267 return;
1268 case ISD::SRA:
1269 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001270 unsigned ShAmt = SA->getValue();
1271
Dan Gohmand4cf9922008-02-26 18:50:50 +00001272 // If the shift count is an invalid immediate, don't do anything.
1273 if (ShAmt >= BitWidth)
1274 return;
1275
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001276 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001277 // If any of the demanded bits are produced by the sign extension, we also
1278 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001279 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1280 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001281 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001282
1283 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1284 Depth+1);
1285 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001286 KnownZero = KnownZero.lshr(ShAmt);
1287 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001288
1289 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001290 APInt SignBit = APInt::getSignBit(BitWidth);
1291 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001292
Dan Gohmanca93a432008-02-20 16:30:17 +00001293 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001294 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001295 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001296 KnownOne |= HighBits; // New bits are known one.
1297 }
1298 }
1299 return;
1300 case ISD::SIGN_EXTEND_INREG: {
1301 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001302 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohmanea859be2007-06-22 14:59:07 +00001303
1304 // Sign extension. Compute the demanded bits in the result that are not
1305 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001306 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001307
Dan Gohman977a76f2008-02-13 22:28:48 +00001308 APInt InSignBit = APInt::getSignBit(EBits);
1309 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001310
1311 // If the sign extended bits are demanded, we know that the sign
1312 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001313 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001314 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001315 InputDemandedBits |= InSignBit;
1316
1317 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1318 KnownZero, KnownOne, Depth+1);
1319 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1320
1321 // If the sign bit of the input is known set or clear, then we know the
1322 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001323 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001324 KnownZero |= NewBits;
1325 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001326 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001327 KnownOne |= NewBits;
1328 KnownZero &= ~NewBits;
1329 } else { // Input sign bit unknown
1330 KnownZero &= ~NewBits;
1331 KnownOne &= ~NewBits;
1332 }
1333 return;
1334 }
1335 case ISD::CTTZ:
1336 case ISD::CTLZ:
1337 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001338 unsigned LowBits = Log2_32(BitWidth)+1;
1339 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1340 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001341 return;
1342 }
1343 case ISD::LOAD: {
1344 if (ISD::isZEXTLoad(Op.Val)) {
1345 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001346 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001347 unsigned MemBits = MVT::getSizeInBits(VT);
1348 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001349 }
1350 return;
1351 }
1352 case ISD::ZERO_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001353 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1354 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001355 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1356 APInt InMask = Mask;
1357 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001358 KnownZero.trunc(InBits);
1359 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001360 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001361 KnownZero.zext(BitWidth);
1362 KnownOne.zext(BitWidth);
1363 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001364 return;
1365 }
1366 case ISD::SIGN_EXTEND: {
1367 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001369 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001370 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1371 APInt InMask = Mask;
1372 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001373
1374 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001375 // bit is demanded. Temporarily set this bit in the mask for our callee.
1376 if (NewBits.getBoolValue())
1377 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001378
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001379 KnownZero.trunc(InBits);
1380 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001381 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1382
1383 // Note if the sign bit is known to be zero or one.
1384 bool SignBitKnownZero = KnownZero.isNegative();
1385 bool SignBitKnownOne = KnownOne.isNegative();
1386 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1387 "Sign bit can't be known to be both zero and one!");
1388
1389 // If the sign bit wasn't actually demanded by our caller, we don't
1390 // want it set in the KnownZero and KnownOne result values. Reset the
1391 // mask and reapply it to the result values.
1392 InMask = Mask;
1393 InMask.trunc(InBits);
1394 KnownZero &= InMask;
1395 KnownOne &= InMask;
1396
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001397 KnownZero.zext(BitWidth);
1398 KnownOne.zext(BitWidth);
1399
Dan Gohman977a76f2008-02-13 22:28:48 +00001400 // If the sign bit is known zero or one, the top bits match.
1401 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001402 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001403 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001404 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001405 return;
1406 }
1407 case ISD::ANY_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001408 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1409 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001410 APInt InMask = Mask;
1411 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001412 KnownZero.trunc(InBits);
1413 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001414 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001415 KnownZero.zext(BitWidth);
1416 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001417 return;
1418 }
1419 case ISD::TRUNCATE: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001420 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1421 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001422 APInt InMask = Mask;
1423 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001424 KnownZero.zext(InBits);
1425 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001426 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001427 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001428 KnownZero.trunc(BitWidth);
1429 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001430 break;
1431 }
1432 case ISD::AssertZext: {
1433 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001434 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001435 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1436 KnownOne, Depth+1);
1437 KnownZero |= (~InMask) & Mask;
1438 return;
1439 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001440 case ISD::FGETSIGN:
1441 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001442 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001443 return;
1444
Dan Gohmanea859be2007-06-22 14:59:07 +00001445 case ISD::ADD: {
1446 // If either the LHS or the RHS are Zero, the result is zero.
1447 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1448 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1449 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1450 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1451
1452 // Output known-0 bits are known if clear or set in both the low clear bits
1453 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1454 // low 3 bits clear.
Dan Gohman977a76f2008-02-13 22:28:48 +00001455 unsigned KnownZeroOut = std::min(KnownZero.countTrailingOnes(),
1456 KnownZero2.countTrailingOnes());
Dan Gohmanea859be2007-06-22 14:59:07 +00001457
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001458 KnownZero = APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1459 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001460 return;
1461 }
1462 case ISD::SUB: {
1463 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1464 if (!CLHS) return;
1465
1466 // We know that the top bits of C-X are clear if X contains less bits
1467 // than C (i.e. no wrap-around can happen). For example, 20-X is
1468 // positive if we can prove that X is >= 0 and < 16.
Dan Gohman977a76f2008-02-13 22:28:48 +00001469 if (CLHS->getAPIntValue().isNonNegative()) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001470 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1471 // NLZ can't be BitWidth with no sign bit
Chris Lattner423be622008-02-14 18:48:56 +00001472 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001473 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1474
1475 // If all of the MaskV bits are known to be zero, then we know the output
1476 // top bits are zero, because we now know that the output is from [0-C].
1477 if ((KnownZero & MaskV) == MaskV) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001478 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1479 // Top bits known zero.
1480 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1481 KnownOne = APInt(BitWidth, 0); // No one bits known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001482 } else {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001483 KnownZero = KnownOne = APInt(BitWidth, 0); // Otherwise, nothing known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001484 }
1485 }
1486 return;
1487 }
1488 default:
1489 // Allow the target to implement this method for its nodes.
1490 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1491 case ISD::INTRINSIC_WO_CHAIN:
1492 case ISD::INTRINSIC_W_CHAIN:
1493 case ISD::INTRINSIC_VOID:
1494 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1495 }
1496 return;
1497 }
1498}
1499
1500/// ComputeNumSignBits - Return the number of times the sign bit of the
1501/// register is replicated into the other bits. We know that at least 1 bit
1502/// is always equal to the sign bit (itself), but other cases can give us
1503/// information. For example, immediately after an "SRA X, 2", we know that
1504/// the top 3 bits are all equal to each other, so we return 3.
1505unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1506 MVT::ValueType VT = Op.getValueType();
1507 assert(MVT::isInteger(VT) && "Invalid VT!");
1508 unsigned VTBits = MVT::getSizeInBits(VT);
1509 unsigned Tmp, Tmp2;
1510
1511 if (Depth == 6)
1512 return 1; // Limit search depth.
1513
1514 switch (Op.getOpcode()) {
1515 default: break;
1516 case ISD::AssertSext:
1517 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1518 return VTBits-Tmp+1;
1519 case ISD::AssertZext:
1520 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1521 return VTBits-Tmp;
1522
1523 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001524 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1525 // If negative, return # leading ones.
1526 if (Val.isNegative())
1527 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001528
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001529 // Return # leading zeros.
1530 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001531 }
1532
1533 case ISD::SIGN_EXTEND:
1534 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1535 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1536
1537 case ISD::SIGN_EXTEND_INREG:
1538 // Max of the input and what this extends.
1539 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1540 Tmp = VTBits-Tmp+1;
1541
1542 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1543 return std::max(Tmp, Tmp2);
1544
1545 case ISD::SRA:
1546 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1547 // SRA X, C -> adds C sign bits.
1548 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1549 Tmp += C->getValue();
1550 if (Tmp > VTBits) Tmp = VTBits;
1551 }
1552 return Tmp;
1553 case ISD::SHL:
1554 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1555 // shl destroys sign bits.
1556 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1557 if (C->getValue() >= VTBits || // Bad shift.
1558 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1559 return Tmp - C->getValue();
1560 }
1561 break;
1562 case ISD::AND:
1563 case ISD::OR:
1564 case ISD::XOR: // NOT is handled here.
1565 // Logical binary ops preserve the number of sign bits.
1566 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1567 if (Tmp == 1) return 1; // Early out.
1568 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1569 return std::min(Tmp, Tmp2);
1570
1571 case ISD::SELECT:
1572 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1573 if (Tmp == 1) return 1; // Early out.
1574 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1575 return std::min(Tmp, Tmp2);
1576
1577 case ISD::SETCC:
1578 // If setcc returns 0/-1, all bits are sign bits.
1579 if (TLI.getSetCCResultContents() ==
1580 TargetLowering::ZeroOrNegativeOneSetCCResult)
1581 return VTBits;
1582 break;
1583 case ISD::ROTL:
1584 case ISD::ROTR:
1585 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1586 unsigned RotAmt = C->getValue() & (VTBits-1);
1587
1588 // Handle rotate right by N like a rotate left by 32-N.
1589 if (Op.getOpcode() == ISD::ROTR)
1590 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1591
1592 // If we aren't rotating out all of the known-in sign bits, return the
1593 // number that are left. This handles rotl(sext(x), 1) for example.
1594 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1595 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1596 }
1597 break;
1598 case ISD::ADD:
1599 // Add can have at most one carry bit. Thus we know that the output
1600 // is, at worst, one more bit than the inputs.
1601 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1602 if (Tmp == 1) return 1; // Early out.
1603
1604 // Special case decrementing a value (ADD X, -1):
1605 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1606 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001607 APInt KnownZero, KnownOne;
1608 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001609 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1610
1611 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1612 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001613 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001614 return VTBits;
1615
1616 // If we are subtracting one from a positive number, there is no carry
1617 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001618 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001619 return Tmp;
1620 }
1621
1622 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1623 if (Tmp2 == 1) return 1;
1624 return std::min(Tmp, Tmp2)-1;
1625 break;
1626
1627 case ISD::SUB:
1628 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1629 if (Tmp2 == 1) return 1;
1630
1631 // Handle NEG.
1632 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1633 if (CLHS->getValue() == 0) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001634 APInt KnownZero, KnownOne;
1635 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001636 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1637 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1638 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001639 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001640 return VTBits;
1641
1642 // If the input is known to be positive (the sign bit is known clear),
1643 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001644 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001645 return Tmp2;
1646
1647 // Otherwise, we treat this like a SUB.
1648 }
1649
1650 // Sub can have at most one carry bit. Thus we know that the output
1651 // is, at worst, one more bit than the inputs.
1652 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1653 if (Tmp == 1) return 1; // Early out.
1654 return std::min(Tmp, Tmp2)-1;
1655 break;
1656 case ISD::TRUNCATE:
1657 // FIXME: it's tricky to do anything useful for this, but it is an important
1658 // case for targets like X86.
1659 break;
1660 }
1661
1662 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1663 if (Op.getOpcode() == ISD::LOAD) {
1664 LoadSDNode *LD = cast<LoadSDNode>(Op);
1665 unsigned ExtType = LD->getExtensionType();
1666 switch (ExtType) {
1667 default: break;
1668 case ISD::SEXTLOAD: // '17' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001669 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001670 return VTBits-Tmp+1;
1671 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001672 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001673 return VTBits-Tmp;
1674 }
1675 }
1676
1677 // Allow the target to implement this method for its nodes.
1678 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1679 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1680 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1681 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1682 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1683 if (NumBits > 1) return NumBits;
1684 }
1685
1686 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1687 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001688 APInt KnownZero, KnownOne;
1689 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001690 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1691
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001692 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001693 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001694 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001695 Mask = KnownOne;
1696 } else {
1697 // Nothing known.
1698 return 1;
1699 }
1700
1701 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1702 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001703 Mask = ~Mask;
1704 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001705 // Return # leading zeros. We use 'min' here in case Val was zero before
1706 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001707 return std::min(VTBits, Mask.countLeadingZeros());
Dan Gohmanea859be2007-06-22 14:59:07 +00001708}
1709
Chris Lattner51dabfb2006-10-14 00:41:01 +00001710
Evan Chenga844bde2008-02-02 04:07:54 +00001711bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1712 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1713 if (!GA) return false;
1714 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1715 if (!GV) return false;
1716 MachineModuleInfo *MMI = getMachineModuleInfo();
1717 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1718}
1719
1720
Chris Lattnerc3aae252005-01-07 07:46:32 +00001721/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001722///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001723SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001724 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001725 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001726 void *IP = 0;
1727 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1728 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001729 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001730 CSEMap.InsertNode(N, IP);
1731
1732 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001733 return SDOperand(N, 0);
1734}
1735
Chris Lattnerc3aae252005-01-07 07:46:32 +00001736SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1737 SDOperand Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00001738 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001739 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001740 const APInt &Val = C->getAPIntValue();
1741 unsigned BitWidth = MVT::getSizeInBits(VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001742 switch (Opcode) {
1743 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00001744 case ISD::SIGN_EXTEND:
1745 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001746 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00001747 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00001748 case ISD::TRUNCATE:
1749 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001750 case ISD::UINT_TO_FP:
1751 case ISD::SINT_TO_FP: {
1752 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001753 // No compile time operations on this type.
1754 if (VT==MVT::ppcf128)
1755 break;
Dan Gohman6c231502008-02-29 01:47:35 +00001756 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
1757 (void)apf.convertFromAPInt(Val,
1758 Opcode==ISD::SINT_TO_FP,
1759 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001760 return getConstantFP(apf, VT);
1761 }
Chris Lattner94683772005-12-23 05:30:37 +00001762 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001763 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00001764 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001765 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00001766 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001767 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001768 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00001769 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001770 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00001771 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001772 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001773 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001774 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001775 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001776 }
1777 }
1778
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001779 // Constant fold unary operations with a floating point constant operand.
1780 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1781 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001782 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001783 switch (Opcode) {
1784 case ISD::FNEG:
1785 V.changeSign();
1786 return getConstantFP(V, VT);
1787 case ISD::FABS:
1788 V.clearSign();
1789 return getConstantFP(V, VT);
1790 case ISD::FP_ROUND:
1791 case ISD::FP_EXTEND:
1792 // This can return overflow, underflow, or inexact; we don't care.
1793 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00001794 (void)V.convert(*MVTToAPFloatSemantics(VT),
1795 APFloat::rmNearestTiesToEven);
Dale Johannesendb44bf82007-10-16 23:38:29 +00001796 return getConstantFP(V, VT);
1797 case ISD::FP_TO_SINT:
1798 case ISD::FP_TO_UINT: {
1799 integerPart x;
1800 assert(integerPartWidth >= 64);
1801 // FIXME need to be more flexible about rounding mode.
1802 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1803 Opcode==ISD::FP_TO_SINT,
1804 APFloat::rmTowardZero);
1805 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1806 break;
1807 return getConstant(x, VT);
1808 }
1809 case ISD::BIT_CONVERT:
1810 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1811 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1812 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1813 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001814 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001815 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001816 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001817 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001818
1819 unsigned OpOpcode = Operand.Val->getOpcode();
1820 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001821 case ISD::TokenFactor:
1822 return Operand; // Factor of one node? No factor.
Chris Lattner0bd48932008-01-17 07:00:52 +00001823 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001824 case ISD::FP_EXTEND:
1825 assert(MVT::isFloatingPoint(VT) &&
1826 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001827 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001828 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00001829 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001830 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1831 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001832 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001833 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1834 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001835 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1836 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1837 break;
1838 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001839 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1840 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001841 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001842 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1843 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001844 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001845 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001846 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001847 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001848 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1849 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001850 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001851 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1852 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001853 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1854 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1855 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1856 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001857 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001858 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1859 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001860 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsaf47b112007-10-16 09:56:48 +00001861 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1862 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001863 if (OpOpcode == ISD::TRUNCATE)
1864 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001865 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1866 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001867 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsaf47b112007-10-16 09:56:48 +00001868 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1869 < MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001870 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsaf47b112007-10-16 09:56:48 +00001871 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1872 > MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001873 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1874 else
1875 return Operand.Val->getOperand(0);
1876 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001877 break;
Chris Lattner35481892005-12-23 00:16:34 +00001878 case ISD::BIT_CONVERT:
1879 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001880 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001881 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001882 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001883 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1884 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001885 if (OpOpcode == ISD::UNDEF)
1886 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001887 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001888 case ISD::SCALAR_TO_VECTOR:
1889 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001890 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001891 "Illegal SCALAR_TO_VECTOR node!");
1892 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001893 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001894 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1895 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001896 Operand.Val->getOperand(0));
1897 if (OpOpcode == ISD::FNEG) // --X -> X
1898 return Operand.Val->getOperand(0);
1899 break;
1900 case ISD::FABS:
1901 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1902 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1903 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001904 }
1905
Chris Lattner43247a12005-08-25 19:12:10 +00001906 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001907 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001908 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001909 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001910 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001911 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001912 void *IP = 0;
1913 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1914 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001915 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001916 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001917 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001918 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001919 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001920 AllNodes.push_back(N);
1921 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001922}
1923
Chris Lattner36019aa2005-04-18 03:48:41 +00001924
1925
Chris Lattnerc3aae252005-01-07 07:46:32 +00001926SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1927 SDOperand N1, SDOperand N2) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001928 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1929 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner76365122005-01-16 02:23:22 +00001930 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001931 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00001932 case ISD::TokenFactor:
1933 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1934 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001935 // Fold trivial token factors.
1936 if (N1.getOpcode() == ISD::EntryToken) return N2;
1937 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00001938 break;
Chris Lattner76365122005-01-16 02:23:22 +00001939 case ISD::AND:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001940 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1941 N1.getValueType() == VT && "Binary operator types must match!");
1942 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1943 // worth handling here.
1944 if (N2C && N2C->getValue() == 0)
1945 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00001946 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
1947 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001948 break;
Chris Lattner76365122005-01-16 02:23:22 +00001949 case ISD::OR:
1950 case ISD::XOR:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001951 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1952 N1.getValueType() == VT && "Binary operator types must match!");
1953 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1954 // worth handling here.
1955 if (N2C && N2C->getValue() == 0)
1956 return N1;
1957 break;
Chris Lattner76365122005-01-16 02:23:22 +00001958 case ISD::UDIV:
1959 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00001960 case ISD::MULHU:
1961 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00001962 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1963 // fall through
1964 case ISD::ADD:
1965 case ISD::SUB:
1966 case ISD::MUL:
1967 case ISD::SDIV:
1968 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00001969 case ISD::FADD:
1970 case ISD::FSUB:
1971 case ISD::FMUL:
1972 case ISD::FDIV:
1973 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00001974 assert(N1.getValueType() == N2.getValueType() &&
1975 N1.getValueType() == VT && "Binary operator types must match!");
1976 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00001977 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
1978 assert(N1.getValueType() == VT &&
1979 MVT::isFloatingPoint(N1.getValueType()) &&
1980 MVT::isFloatingPoint(N2.getValueType()) &&
1981 "Invalid FCOPYSIGN!");
1982 break;
Chris Lattner76365122005-01-16 02:23:22 +00001983 case ISD::SHL:
1984 case ISD::SRA:
1985 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00001986 case ISD::ROTL:
1987 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00001988 assert(VT == N1.getValueType() &&
1989 "Shift operators return type must be the same as their first arg");
1990 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00001991 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00001992 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00001993 case ISD::FP_ROUND_INREG: {
1994 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1995 assert(VT == N1.getValueType() && "Not an inreg round!");
1996 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1997 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00001998 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1999 "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002000 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002001 break;
2002 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002003 case ISD::FP_ROUND:
2004 assert(MVT::isFloatingPoint(VT) &&
2005 MVT::isFloatingPoint(N1.getValueType()) &&
2006 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2007 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002008 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002009 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002010 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002011 case ISD::AssertZext: {
2012 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2013 assert(VT == N1.getValueType() && "Not an inreg extend!");
2014 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2015 "Cannot *_EXTEND_INREG FP types");
2016 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2017 "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002018 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002019 break;
2020 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002021 case ISD::SIGN_EXTEND_INREG: {
2022 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2023 assert(VT == N1.getValueType() && "Not an inreg extend!");
2024 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2025 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002026 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2027 "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002028 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002029
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002030 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002031 APInt Val = N1C->getAPIntValue();
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002032 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
Dan Gohman6c231502008-02-29 01:47:35 +00002033 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002034 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002035 return getConstant(Val, VT);
2036 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002037 break;
2038 }
2039 case ISD::EXTRACT_VECTOR_ELT:
2040 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2041
2042 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2043 // expanding copies of large vectors from registers.
2044 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2045 N1.getNumOperands() > 0) {
2046 unsigned Factor =
2047 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2048 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2049 N1.getOperand(N2C->getValue() / Factor),
2050 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2051 }
2052
2053 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2054 // expanding large vector constants.
2055 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2056 return N1.getOperand(N2C->getValue());
2057
2058 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2059 // operations are lowered to scalars.
2060 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2061 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2062 if (IEC == N2C)
2063 return N1.getOperand(1);
2064 else
2065 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2066 }
2067 break;
2068 case ISD::EXTRACT_ELEMENT:
2069 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002070
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002071 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2072 // 64-bit integers into 32-bit parts. Instead of building the extract of
2073 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2074 if (N1.getOpcode() == ISD::BUILD_PAIR)
2075 return N1.getOperand(N2C->getValue());
2076
2077 // EXTRACT_ELEMENT of a constant int is also very common.
2078 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2079 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2080 return getConstant(C->getValue() >> Shift, VT);
2081 }
2082 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002083 case ISD::EXTRACT_SUBVECTOR:
2084 if (N1.getValueType() == VT) // Trivial extraction.
2085 return N1;
2086 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002087 }
2088
2089 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002090 if (N2C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002091 APInt C1 = N1C->getAPIntValue(), C2 = N2C->getAPIntValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002092 switch (Opcode) {
2093 case ISD::ADD: return getConstant(C1 + C2, VT);
2094 case ISD::SUB: return getConstant(C1 - C2, VT);
2095 case ISD::MUL: return getConstant(C1 * C2, VT);
2096 case ISD::UDIV:
Dan Gohman6c231502008-02-29 01:47:35 +00002097 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002098 break;
2099 case ISD::UREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002100 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002101 break;
2102 case ISD::SDIV :
Dan Gohman6c231502008-02-29 01:47:35 +00002103 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002104 break;
2105 case ISD::SREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002106 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002107 break;
2108 case ISD::AND : return getConstant(C1 & C2, VT);
2109 case ISD::OR : return getConstant(C1 | C2, VT);
2110 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00002111 case ISD::SHL : return getConstant(C1 << C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00002112 case ISD::SRL : return getConstant(C1.lshr(C2), VT);
2113 case ISD::SRA : return getConstant(C1.ashr(C2), VT);
2114 case ISD::ROTL : return getConstant(C1.rotl(C2), VT);
2115 case ISD::ROTR : return getConstant(C1.rotr(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002116 default: break;
2117 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002118 } else { // Cannonicalize constant to RHS if commutative
2119 if (isCommutativeBinOp(Opcode)) {
2120 std::swap(N1C, N2C);
2121 std::swap(N1, N2);
2122 }
2123 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002124 }
2125
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002126 // Constant fold FP operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002127 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2128 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00002129 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002130 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2131 // Cannonicalize constant to RHS if commutative
2132 std::swap(N1CFP, N2CFP);
2133 std::swap(N1, N2);
2134 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002135 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2136 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002137 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002138 case ISD::FADD:
2139 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002140 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002141 return getConstantFP(V1, VT);
2142 break;
2143 case ISD::FSUB:
2144 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2145 if (s!=APFloat::opInvalidOp)
2146 return getConstantFP(V1, VT);
2147 break;
2148 case ISD::FMUL:
2149 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2150 if (s!=APFloat::opInvalidOp)
2151 return getConstantFP(V1, VT);
2152 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002153 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002154 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2155 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2156 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002157 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002158 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002159 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2160 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2161 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002162 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002163 case ISD::FCOPYSIGN:
2164 V1.copySign(V2);
2165 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002166 default: break;
2167 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002168 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002169 }
Chris Lattner62b57722006-04-20 05:39:12 +00002170
2171 // Canonicalize an UNDEF to the RHS, even over a constant.
2172 if (N1.getOpcode() == ISD::UNDEF) {
2173 if (isCommutativeBinOp(Opcode)) {
2174 std::swap(N1, N2);
2175 } else {
2176 switch (Opcode) {
2177 case ISD::FP_ROUND_INREG:
2178 case ISD::SIGN_EXTEND_INREG:
2179 case ISD::SUB:
2180 case ISD::FSUB:
2181 case ISD::FDIV:
2182 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002183 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002184 return N1; // fold op(undef, arg2) -> undef
2185 case ISD::UDIV:
2186 case ISD::SDIV:
2187 case ISD::UREM:
2188 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002189 case ISD::SRL:
2190 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002191 if (!MVT::isVector(VT))
2192 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2193 // For vectors, we can't easily build an all zero vector, just return
2194 // the LHS.
2195 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002196 }
2197 }
2198 }
2199
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002200 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002201 if (N2.getOpcode() == ISD::UNDEF) {
2202 switch (Opcode) {
2203 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002204 case ISD::ADDC:
2205 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002206 case ISD::SUB:
2207 case ISD::FADD:
2208 case ISD::FSUB:
2209 case ISD::FMUL:
2210 case ISD::FDIV:
2211 case ISD::FREM:
2212 case ISD::UDIV:
2213 case ISD::SDIV:
2214 case ISD::UREM:
2215 case ISD::SREM:
2216 case ISD::XOR:
2217 return N2; // fold op(arg1, undef) -> undef
2218 case ISD::MUL:
2219 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002220 case ISD::SRL:
2221 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002222 if (!MVT::isVector(VT))
2223 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2224 // For vectors, we can't easily build an all zero vector, just return
2225 // the LHS.
2226 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002227 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00002228 if (!MVT::isVector(VT))
2229 return getConstant(MVT::getIntVTBitMask(VT), VT);
2230 // For vectors, we can't easily build an all one vector, just return
2231 // the LHS.
2232 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002233 case ISD::SRA:
2234 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002235 }
2236 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002237
Chris Lattner27e9b412005-05-11 18:57:39 +00002238 // Memoize this node if possible.
2239 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002240 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002241 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002242 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002243 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002244 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002245 void *IP = 0;
2246 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2247 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002248 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002249 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002250 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002251 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002252 }
2253
Chris Lattnerc3aae252005-01-07 07:46:32 +00002254 AllNodes.push_back(N);
2255 return SDOperand(N, 0);
2256}
2257
Chris Lattnerc3aae252005-01-07 07:46:32 +00002258SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2259 SDOperand N1, SDOperand N2, SDOperand N3) {
2260 // Perform various simplifications.
2261 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2262 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002263 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002264 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002265 // Use FoldSetCC to simplify SETCC's.
2266 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002267 if (Simp.Val) return Simp;
2268 break;
2269 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002270 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002271 if (N1C) {
2272 if (N1C->getValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002273 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002274 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002275 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002276 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002277
2278 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002279 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002280 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002281 if (N2C) {
Chris Lattner5351e9b2005-01-07 22:49:57 +00002282 if (N2C->getValue()) // Unconditional branch
2283 return getNode(ISD::BR, MVT::Other, N1, N3);
2284 else
2285 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002286 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002287 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002288 case ISD::VECTOR_SHUFFLE:
2289 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2290 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2291 N3.getOpcode() == ISD::BUILD_VECTOR &&
2292 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2293 "Illegal VECTOR_SHUFFLE node!");
2294 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002295 case ISD::BIT_CONVERT:
2296 // Fold bit_convert nodes from a type to themselves.
2297 if (N1.getValueType() == VT)
2298 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002299 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002300 }
2301
Chris Lattner43247a12005-08-25 19:12:10 +00002302 // Memoize node if it doesn't produce a flag.
2303 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002304 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002305 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002306 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002307 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002308 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002309 void *IP = 0;
2310 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2311 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002312 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002313 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002314 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002315 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002316 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002317 AllNodes.push_back(N);
2318 return SDOperand(N, 0);
2319}
2320
2321SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002322 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002323 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002324 SDOperand Ops[] = { N1, N2, N3, N4 };
2325 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002326}
2327
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002328SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2329 SDOperand N1, SDOperand N2, SDOperand N3,
2330 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002331 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2332 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002333}
2334
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002335SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2336 SDOperand Src, SDOperand Size,
2337 SDOperand Align,
2338 SDOperand AlwaysInline) {
2339 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2340 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2341}
2342
2343SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2344 SDOperand Src, SDOperand Size,
2345 SDOperand Align,
2346 SDOperand AlwaysInline) {
2347 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2348 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2349}
2350
2351SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2352 SDOperand Src, SDOperand Size,
2353 SDOperand Align,
2354 SDOperand AlwaysInline) {
2355 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2356 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2357}
2358
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002359SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002360 SDOperand Ptr, SDOperand Cmp,
2361 SDOperand Swp, MVT::ValueType VT) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002362 assert(Opcode == ISD::ATOMIC_LCS && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002363 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
2364 SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002365 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002366 SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002367 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
2368 ID.AddInteger((unsigned int)VT);
2369 void* IP = 0;
2370 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2371 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002372 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002373 CSEMap.InsertNode(N, IP);
2374 AllNodes.push_back(N);
2375 return SDOperand(N, 0);
2376}
2377
2378SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002379 SDOperand Ptr, SDOperand Val,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002380 MVT::ValueType VT) {
2381 assert((Opcode == ISD::ATOMIC_LAS || Opcode == ISD::ATOMIC_SWAP)
2382 && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002383 SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002384 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002385 SDOperand Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002386 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2387 ID.AddInteger((unsigned int)VT);
2388 void* IP = 0;
2389 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2390 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002391 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002392 CSEMap.InsertNode(N, IP);
2393 AllNodes.push_back(N);
2394 return SDOperand(N, 0);
2395}
2396
Evan Cheng7038daf2005-12-10 00:37:58 +00002397SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2398 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002399 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002400 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002401 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2402 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002403 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002404 Ty = MVT::getTypeForValueType(VT);
2405 } else if (SV) {
2406 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2407 assert(PT && "Value for load must be a pointer");
2408 Ty = PT->getElementType();
2409 }
2410 assert(Ty && "Could not get type information for load");
2411 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2412 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002413 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002414 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002415 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002416 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002417 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002418 ID.AddInteger(ISD::UNINDEXED);
2419 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002420 ID.AddInteger((unsigned int)VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002421 ID.AddInteger(Alignment);
2422 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002423 void *IP = 0;
2424 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2425 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002426 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002427 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2428 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002429 CSEMap.InsertNode(N, IP);
2430 AllNodes.push_back(N);
2431 return SDOperand(N, 0);
2432}
2433
2434SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002435 SDOperand Chain, SDOperand Ptr,
2436 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002437 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002438 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002439 // If they are asking for an extending load from/to the same thing, return a
2440 // normal load.
2441 if (VT == EVT)
Duncan Sands5d868b12007-10-19 13:05:40 +00002442 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00002443
2444 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002445 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002446 else
Duncan Sandsaf47b112007-10-16 09:56:48 +00002447 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2448 "Should only be an extending load, not truncating!");
Evan Cheng466685d2006-10-09 20:57:25 +00002449 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2450 "Cannot sign/zero extend a FP/Vector load!");
2451 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2452 "Cannot convert from FP to Int or Int -> FP!");
2453
Dan Gohman575e2f42007-06-04 15:49:41 +00002454 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2455 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002456 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002457 Ty = MVT::getTypeForValueType(VT);
2458 } else if (SV) {
2459 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2460 assert(PT && "Value for load must be a pointer");
2461 Ty = PT->getElementType();
2462 }
2463 assert(Ty && "Could not get type information for load");
2464 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2465 }
Evan Cheng466685d2006-10-09 20:57:25 +00002466 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002467 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002468 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002469 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002470 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002471 ID.AddInteger(ISD::UNINDEXED);
2472 ID.AddInteger(ExtType);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002473 ID.AddInteger((unsigned int)EVT);
Evan Cheng466685d2006-10-09 20:57:25 +00002474 ID.AddInteger(Alignment);
2475 ID.AddInteger(isVolatile);
2476 void *IP = 0;
2477 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2478 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002479 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002480 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002481 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002482 AllNodes.push_back(N);
2483 return SDOperand(N, 0);
2484}
2485
Evan Cheng144d8f02006-11-09 17:55:04 +00002486SDOperand
2487SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2488 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002489 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002490 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2491 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002492 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002493 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002494 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002495 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002496 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002497 ID.AddInteger(AM);
2498 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002499 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng2caccca2006-10-17 21:14:32 +00002500 ID.AddInteger(LD->getAlignment());
2501 ID.AddInteger(LD->isVolatile());
2502 void *IP = 0;
2503 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2504 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002505 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002506 LD->getExtensionType(), LD->getMemoryVT(),
Evan Cheng2caccca2006-10-17 21:14:32 +00002507 LD->getSrcValue(), LD->getSrcValueOffset(),
2508 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002509 CSEMap.InsertNode(N, IP);
2510 AllNodes.push_back(N);
2511 return SDOperand(N, 0);
2512}
2513
Jeff Cohend41b30d2006-11-05 19:31:28 +00002514SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002515 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002516 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002517 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002518
Dan Gohman575e2f42007-06-04 15:49:41 +00002519 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2520 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002521 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002522 Ty = MVT::getTypeForValueType(VT);
2523 } else if (SV) {
2524 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2525 assert(PT && "Value for store must be a pointer");
2526 Ty = PT->getElementType();
2527 }
2528 assert(Ty && "Could not get type information for store");
2529 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2530 }
Evan Chengad071e12006-10-05 22:57:11 +00002531 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002532 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002533 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002534 FoldingSetNodeID ID;
2535 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002536 ID.AddInteger(ISD::UNINDEXED);
2537 ID.AddInteger(false);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002538 ID.AddInteger((unsigned int)VT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002539 ID.AddInteger(Alignment);
2540 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002541 void *IP = 0;
2542 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2543 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002544 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002545 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002546 CSEMap.InsertNode(N, IP);
2547 AllNodes.push_back(N);
2548 return SDOperand(N, 0);
2549}
2550
Jeff Cohend41b30d2006-11-05 19:31:28 +00002551SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002552 SDOperand Ptr, const Value *SV,
2553 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002554 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002555 MVT::ValueType VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002556
2557 if (VT == SVT)
2558 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002559
Duncan Sandsaf47b112007-10-16 09:56:48 +00002560 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2561 "Not a truncation?");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002562 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2563 "Can't do FP-INT conversion!");
2564
Dan Gohman575e2f42007-06-04 15:49:41 +00002565 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2566 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002567 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002568 Ty = MVT::getTypeForValueType(VT);
2569 } else if (SV) {
2570 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2571 assert(PT && "Value for store must be a pointer");
2572 Ty = PT->getElementType();
2573 }
2574 assert(Ty && "Could not get type information for store");
2575 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2576 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002577 SDVTList VTs = getVTList(MVT::Other);
2578 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002579 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002580 FoldingSetNodeID ID;
2581 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002582 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002583 ID.AddInteger(1);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002584 ID.AddInteger((unsigned int)SVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002585 ID.AddInteger(Alignment);
2586 ID.AddInteger(isVolatile);
2587 void *IP = 0;
2588 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2589 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002590 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002591 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002592 CSEMap.InsertNode(N, IP);
2593 AllNodes.push_back(N);
2594 return SDOperand(N, 0);
2595}
2596
Evan Cheng144d8f02006-11-09 17:55:04 +00002597SDOperand
2598SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2599 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002600 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2601 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2602 "Store is already a indexed store!");
2603 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2604 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2605 FoldingSetNodeID ID;
2606 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2607 ID.AddInteger(AM);
2608 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002609 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng9109fb12006-11-05 09:30:09 +00002610 ID.AddInteger(ST->getAlignment());
2611 ID.AddInteger(ST->isVolatile());
2612 void *IP = 0;
2613 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2614 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002615 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002616 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng9109fb12006-11-05 09:30:09 +00002617 ST->getSrcValue(), ST->getSrcValueOffset(),
2618 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002619 CSEMap.InsertNode(N, IP);
2620 AllNodes.push_back(N);
2621 return SDOperand(N, 0);
2622}
2623
Nate Begemanacc398c2006-01-25 18:21:52 +00002624SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2625 SDOperand Chain, SDOperand Ptr,
2626 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002627 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002628 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002629}
2630
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002631SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002632 const SDOperand *Ops, unsigned NumOps) {
2633 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002634 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002635 case 1: return getNode(Opcode, VT, Ops[0]);
2636 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2637 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002638 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002639 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002640
Chris Lattneref847df2005-04-09 03:27:28 +00002641 switch (Opcode) {
2642 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002643 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002644 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002645 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2646 "LHS and RHS of condition must have same type!");
2647 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2648 "True and False arms of SelectCC must have same type!");
2649 assert(Ops[2].getValueType() == VT &&
2650 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002651 break;
2652 }
2653 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002654 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002655 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2656 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002657 break;
2658 }
Chris Lattneref847df2005-04-09 03:27:28 +00002659 }
2660
Chris Lattner385328c2005-05-14 07:42:29 +00002661 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002662 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002663 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002664 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002665 FoldingSetNodeID ID;
2666 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002667 void *IP = 0;
2668 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2669 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002670 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002671 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002672 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002673 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002674 }
Chris Lattneref847df2005-04-09 03:27:28 +00002675 AllNodes.push_back(N);
2676 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002677}
2678
Chris Lattner89c34632005-05-14 06:20:26 +00002679SDOperand SelectionDAG::getNode(unsigned Opcode,
2680 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002681 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002682 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2683 Ops, NumOps);
2684}
2685
2686SDOperand SelectionDAG::getNode(unsigned Opcode,
2687 const MVT::ValueType *VTs, unsigned NumVTs,
2688 const SDOperand *Ops, unsigned NumOps) {
2689 if (NumVTs == 1)
2690 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002691 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2692}
2693
2694SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2695 const SDOperand *Ops, unsigned NumOps) {
2696 if (VTList.NumVTs == 1)
2697 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002698
Chris Lattner5f056bf2005-07-10 01:55:33 +00002699 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002700 // FIXME: figure out how to safely handle things like
2701 // int foo(int x) { return 1 << (x & 255); }
2702 // int bar() { return foo(256); }
2703#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002704 case ISD::SRA_PARTS:
2705 case ISD::SRL_PARTS:
2706 case ISD::SHL_PARTS:
2707 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002708 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002709 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2710 else if (N3.getOpcode() == ISD::AND)
2711 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2712 // If the and is only masking out bits that cannot effect the shift,
2713 // eliminate the and.
2714 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2715 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2716 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2717 }
2718 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002719#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002720 }
Chris Lattner89c34632005-05-14 06:20:26 +00002721
Chris Lattner43247a12005-08-25 19:12:10 +00002722 // Memoize the node unless it returns a flag.
2723 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002724 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002725 FoldingSetNodeID ID;
2726 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002727 void *IP = 0;
2728 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2729 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002730 if (NumOps == 1)
2731 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2732 else if (NumOps == 2)
2733 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2734 else if (NumOps == 3)
2735 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2736 else
2737 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002738 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002739 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002740 if (NumOps == 1)
2741 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2742 else if (NumOps == 2)
2743 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2744 else if (NumOps == 3)
2745 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2746 else
2747 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002748 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002749 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002750 return SDOperand(N, 0);
2751}
2752
Dan Gohman08ce9762007-10-08 15:49:58 +00002753SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2754 return getNode(Opcode, VTList, 0, 0);
2755}
2756
2757SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2758 SDOperand N1) {
2759 SDOperand Ops[] = { N1 };
2760 return getNode(Opcode, VTList, Ops, 1);
2761}
2762
2763SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2764 SDOperand N1, SDOperand N2) {
2765 SDOperand Ops[] = { N1, N2 };
2766 return getNode(Opcode, VTList, Ops, 2);
2767}
2768
2769SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2770 SDOperand N1, SDOperand N2, SDOperand N3) {
2771 SDOperand Ops[] = { N1, N2, N3 };
2772 return getNode(Opcode, VTList, Ops, 3);
2773}
2774
2775SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2776 SDOperand N1, SDOperand N2, SDOperand N3,
2777 SDOperand N4) {
2778 SDOperand Ops[] = { N1, N2, N3, N4 };
2779 return getNode(Opcode, VTList, Ops, 4);
2780}
2781
2782SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2783 SDOperand N1, SDOperand N2, SDOperand N3,
2784 SDOperand N4, SDOperand N5) {
2785 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2786 return getNode(Opcode, VTList, Ops, 5);
2787}
2788
Chris Lattner70046e92006-08-15 17:46:01 +00002789SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00002790 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002791}
2792
Chris Lattner70046e92006-08-15 17:46:01 +00002793SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002794 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2795 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002796 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002797 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002798 }
2799 std::vector<MVT::ValueType> V;
2800 V.push_back(VT1);
2801 V.push_back(VT2);
2802 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002803 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002804}
Chris Lattner70046e92006-08-15 17:46:01 +00002805SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2806 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002807 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002808 E = VTList.end(); I != E; ++I) {
2809 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2810 (*I)[2] == VT3)
2811 return makeVTList(&(*I)[0], 3);
2812 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002813 std::vector<MVT::ValueType> V;
2814 V.push_back(VT1);
2815 V.push_back(VT2);
2816 V.push_back(VT3);
2817 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002818 return makeVTList(&(*VTList.begin())[0], 3);
2819}
2820
2821SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2822 switch (NumVTs) {
2823 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002824 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002825 case 2: return getVTList(VTs[0], VTs[1]);
2826 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2827 default: break;
2828 }
2829
2830 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2831 E = VTList.end(); I != E; ++I) {
2832 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2833
2834 bool NoMatch = false;
2835 for (unsigned i = 2; i != NumVTs; ++i)
2836 if (VTs[i] != (*I)[i]) {
2837 NoMatch = true;
2838 break;
2839 }
2840 if (!NoMatch)
2841 return makeVTList(&*I->begin(), NumVTs);
2842 }
2843
2844 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2845 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002846}
2847
2848
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002849/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2850/// specified operands. If the resultant node already exists in the DAG,
2851/// this does not modify the specified node, instead it returns the node that
2852/// already exists. If the resultant node does not exist in the DAG, the
2853/// input node is returned. As a degenerate case, if you specify the same
2854/// input operands as the node already has, the input node is returned.
2855SDOperand SelectionDAG::
2856UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2857 SDNode *N = InN.Val;
2858 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2859
2860 // Check to see if there is no change.
2861 if (Op == N->getOperand(0)) return InN;
2862
2863 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002864 void *InsertPos = 0;
2865 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2866 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002867
2868 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002869 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002870 RemoveNodeFromCSEMaps(N);
2871
2872 // Now we update the operands.
2873 N->OperandList[0].Val->removeUser(N);
2874 Op.Val->addUser(N);
2875 N->OperandList[0] = Op;
2876
2877 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002878 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002879 return InN;
2880}
2881
2882SDOperand SelectionDAG::
2883UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2884 SDNode *N = InN.Val;
2885 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2886
2887 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002888 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2889 return InN; // No operands changed, just return the input node.
2890
2891 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002892 void *InsertPos = 0;
2893 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2894 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002895
2896 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002897 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002898 RemoveNodeFromCSEMaps(N);
2899
2900 // Now we update the operands.
2901 if (N->OperandList[0] != Op1) {
2902 N->OperandList[0].Val->removeUser(N);
2903 Op1.Val->addUser(N);
2904 N->OperandList[0] = Op1;
2905 }
2906 if (N->OperandList[1] != Op2) {
2907 N->OperandList[1].Val->removeUser(N);
2908 Op2.Val->addUser(N);
2909 N->OperandList[1] = Op2;
2910 }
2911
2912 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002913 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002914 return InN;
2915}
2916
2917SDOperand SelectionDAG::
2918UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002919 SDOperand Ops[] = { Op1, Op2, Op3 };
2920 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002921}
2922
2923SDOperand SelectionDAG::
2924UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2925 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002926 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2927 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002928}
2929
2930SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002931UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2932 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002933 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2934 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002935}
2936
2937
2938SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002939UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002940 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002941 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002942 "Update with wrong number of operands");
2943
2944 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002945 bool AnyChange = false;
2946 for (unsigned i = 0; i != NumOps; ++i) {
2947 if (Ops[i] != N->getOperand(i)) {
2948 AnyChange = true;
2949 break;
2950 }
2951 }
2952
2953 // No operands changed, just return the input node.
2954 if (!AnyChange) return InN;
2955
2956 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002957 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002958 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002959 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002960
2961 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002962 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002963 RemoveNodeFromCSEMaps(N);
2964
2965 // Now we update the operands.
2966 for (unsigned i = 0; i != NumOps; ++i) {
2967 if (N->OperandList[i] != Ops[i]) {
2968 N->OperandList[i].Val->removeUser(N);
2969 Ops[i].Val->addUser(N);
2970 N->OperandList[i] = Ops[i];
2971 }
2972 }
2973
2974 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002975 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002976 return InN;
2977}
2978
2979
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002980/// MorphNodeTo - This frees the operands of the current node, resets the
2981/// opcode, types, and operands to the specified value. This should only be
2982/// used by the SelectionDAG class.
2983void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2984 const SDOperand *Ops, unsigned NumOps) {
2985 NodeType = Opc;
2986 ValueList = L.VTs;
2987 NumValues = L.NumVTs;
2988
2989 // Clear the operands list, updating used nodes to remove this from their
2990 // use list.
2991 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2992 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002993
2994 // If NumOps is larger than the # of operands we currently have, reallocate
2995 // the operand list.
2996 if (NumOps > NumOperands) {
2997 if (OperandsNeedDelete)
2998 delete [] OperandList;
2999 OperandList = new SDOperand[NumOps];
3000 OperandsNeedDelete = true;
3001 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003002
3003 // Assign the new operands.
3004 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003005
3006 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3007 OperandList[i] = Ops[i];
3008 SDNode *N = OperandList[i].Val;
3009 N->Uses.push_back(this);
3010 }
3011}
Chris Lattner149c58c2005-08-16 18:17:10 +00003012
3013/// SelectNodeTo - These are used for target selectors to *mutate* the
3014/// specified node to have the specified return type, Target opcode, and
3015/// operands. Note that target opcodes are stored as
3016/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003017///
3018/// Note that SelectNodeTo returns the resultant node. If there is already a
3019/// node of the specified opcode and operands, it returns that node instead of
3020/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00003021SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3022 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003023 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003024 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003025 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00003026 void *IP = 0;
3027 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003028 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00003029
Chris Lattner7651fa42005-08-24 23:00:29 +00003030 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003031
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003032 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003033
Chris Lattner4a283e92006-08-11 18:38:11 +00003034 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003035 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00003036}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003037
Evan Cheng95514ba2006-08-26 08:00:10 +00003038SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3039 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003040 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003041 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003042 SDOperand Ops[] = { Op1 };
3043
Jim Laskey583bd472006-10-27 23:46:08 +00003044 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003045 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003046 void *IP = 0;
3047 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003048 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003049
Chris Lattner149c58c2005-08-16 18:17:10 +00003050 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003051 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003052 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003053 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003054}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003055
Evan Cheng95514ba2006-08-26 08:00:10 +00003056SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3057 MVT::ValueType VT, SDOperand Op1,
3058 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003059 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003060 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003061 SDOperand Ops[] = { Op1, Op2 };
3062
Jim Laskey583bd472006-10-27 23:46:08 +00003063 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003064 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003065 void *IP = 0;
3066 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003067 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003068
Chris Lattner149c58c2005-08-16 18:17:10 +00003069 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003070
Chris Lattner63e3f142007-02-04 07:28:00 +00003071 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003072
Chris Lattnera5682852006-08-07 23:03:03 +00003073 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003074 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003075}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003076
Evan Cheng95514ba2006-08-26 08:00:10 +00003077SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3078 MVT::ValueType VT, SDOperand Op1,
3079 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003080 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003081 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003082 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003083 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003084 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003085 void *IP = 0;
3086 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003087 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003088
Chris Lattner149c58c2005-08-16 18:17:10 +00003089 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003090
Chris Lattner63e3f142007-02-04 07:28:00 +00003091 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003092
Chris Lattnera5682852006-08-07 23:03:03 +00003093 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003094 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003095}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003096
Evan Cheng95514ba2006-08-26 08:00:10 +00003097SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00003098 MVT::ValueType VT, const SDOperand *Ops,
3099 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003100 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003101 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003102 FoldingSetNodeID ID;
3103 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003104 void *IP = 0;
3105 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003106 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003107
Chris Lattner6b09a292005-08-21 18:49:33 +00003108 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003109 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003110
Chris Lattnera5682852006-08-07 23:03:03 +00003111 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003112 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003113}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003114
Evan Cheng95514ba2006-08-26 08:00:10 +00003115SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3116 MVT::ValueType VT1, MVT::ValueType VT2,
3117 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003118 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003119 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003120 SDOperand Ops[] = { Op1, Op2 };
3121 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003122 void *IP = 0;
3123 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003124 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003125
Chris Lattner0fb094f2005-11-19 01:44:53 +00003126 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003127 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003128 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003129 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003130}
3131
Evan Cheng95514ba2006-08-26 08:00:10 +00003132SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3133 MVT::ValueType VT1, MVT::ValueType VT2,
3134 SDOperand Op1, SDOperand Op2,
3135 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003136 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003137 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003138 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003139 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003140 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003141 void *IP = 0;
3142 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003143 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003144
Chris Lattner0fb094f2005-11-19 01:44:53 +00003145 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003146
Chris Lattner63e3f142007-02-04 07:28:00 +00003147 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003148 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003149 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003150}
3151
Chris Lattner0fb094f2005-11-19 01:44:53 +00003152
Evan Cheng6ae46c42006-02-09 07:15:23 +00003153/// getTargetNode - These are used for target selectors to create a new node
3154/// with specified return type(s), target opcode, and operands.
3155///
3156/// Note that getTargetNode returns the resultant node. If there is already a
3157/// node of the specified opcode and operands, it returns that node instead of
3158/// the current one.
3159SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3160 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3161}
3162SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3163 SDOperand Op1) {
3164 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3165}
3166SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3167 SDOperand Op1, SDOperand Op2) {
3168 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3169}
3170SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003171 SDOperand Op1, SDOperand Op2,
3172 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003173 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3174}
3175SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003176 const SDOperand *Ops, unsigned NumOps) {
3177 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003178}
3179SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003180 MVT::ValueType VT2) {
3181 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3182 SDOperand Op;
3183 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3184}
3185SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003186 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00003187 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003188 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003189}
3190SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003191 MVT::ValueType VT2, SDOperand Op1,
3192 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003193 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003194 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003195 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003196}
3197SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003198 MVT::ValueType VT2, SDOperand Op1,
3199 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00003200 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003201 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003202 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003203}
Evan Cheng694481e2006-08-27 08:08:54 +00003204SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3205 MVT::ValueType VT2,
3206 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00003207 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003208 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003209}
3210SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3211 MVT::ValueType VT2, MVT::ValueType VT3,
3212 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003213 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003214 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003215 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003216}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003217SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3218 MVT::ValueType VT2, MVT::ValueType VT3,
3219 SDOperand Op1, SDOperand Op2,
3220 SDOperand Op3) {
3221 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3222 SDOperand Ops[] = { Op1, Op2, Op3 };
3223 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3224}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003225SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00003226 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003227 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00003228 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3229 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003230}
Evan Cheng05e69c12007-09-12 23:39:49 +00003231SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3232 MVT::ValueType VT2, MVT::ValueType VT3,
3233 MVT::ValueType VT4,
3234 const SDOperand *Ops, unsigned NumOps) {
3235 std::vector<MVT::ValueType> VTList;
3236 VTList.push_back(VT1);
3237 VTList.push_back(VT2);
3238 VTList.push_back(VT3);
3239 VTList.push_back(VT4);
3240 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3241 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3242}
Evan Cheng39305cf2007-10-05 01:10:49 +00003243SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3244 std::vector<MVT::ValueType> &ResultTys,
3245 const SDOperand *Ops, unsigned NumOps) {
3246 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3247 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3248 Ops, NumOps).Val;
3249}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003250
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003251
Evan Cheng99157a02006-08-07 22:13:29 +00003252/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003253/// This can cause recursive merging of nodes in the DAG.
3254///
Chris Lattner11d049c2008-02-03 03:35:22 +00003255/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00003256///
Chris Lattner11d049c2008-02-03 03:35:22 +00003257void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003258 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003259 SDNode *From = FromN.Val;
Chris Lattner11d049c2008-02-03 03:35:22 +00003260 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00003261 "Cannot replace with this method!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003262 assert(From != To.Val && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00003263
Chris Lattner8b8749f2005-08-17 19:00:20 +00003264 while (!From->use_empty()) {
3265 // Process users until they are all gone.
3266 SDNode *U = *From->use_begin();
3267
3268 // This node is about to morph, remove its old self from the CSE maps.
3269 RemoveNodeFromCSEMaps(U);
3270
Chris Lattner65113b22005-11-08 22:07:03 +00003271 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3272 I != E; ++I)
3273 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003274 From->removeUser(U);
Chris Lattner11d049c2008-02-03 03:35:22 +00003275 *I = To;
3276 To.Val->addUser(U);
Chris Lattner8b52f212005-08-26 18:36:28 +00003277 }
3278
3279 // Now that we have modified U, add it back to the CSE maps. If it already
3280 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003281 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003282 ReplaceAllUsesWith(U, Existing, UpdateListener);
3283 // U is now dead. Inform the listener if it exists and delete it.
3284 if (UpdateListener)
3285 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003286 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003287 } else {
3288 // If the node doesn't already exist, we updated it. Inform a listener if
3289 // it exists.
3290 if (UpdateListener)
3291 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003292 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003293 }
3294}
3295
3296/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3297/// This can cause recursive merging of nodes in the DAG.
3298///
3299/// This version assumes From/To have matching types and numbers of result
3300/// values.
3301///
Chris Lattner1e111c72005-09-07 05:37:01 +00003302void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003303 DAGUpdateListener *UpdateListener) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003304 assert(From != To && "Cannot replace uses of with self");
3305 assert(From->getNumValues() == To->getNumValues() &&
3306 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003307 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003308 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3309 UpdateListener);
Chris Lattner8b52f212005-08-26 18:36:28 +00003310
3311 while (!From->use_empty()) {
3312 // Process users until they are all gone.
3313 SDNode *U = *From->use_begin();
3314
3315 // This node is about to morph, remove its old self from the CSE maps.
3316 RemoveNodeFromCSEMaps(U);
3317
Chris Lattner65113b22005-11-08 22:07:03 +00003318 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3319 I != E; ++I)
3320 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003321 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003322 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003323 To->addUser(U);
3324 }
3325
3326 // Now that we have modified U, add it back to the CSE maps. If it already
3327 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003328 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003329 ReplaceAllUsesWith(U, Existing, UpdateListener);
3330 // U is now dead. Inform the listener if it exists and delete it.
3331 if (UpdateListener)
3332 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003333 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003334 } else {
3335 // If the node doesn't already exist, we updated it. Inform a listener if
3336 // it exists.
3337 if (UpdateListener)
3338 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003339 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003340 }
3341}
3342
Chris Lattner8b52f212005-08-26 18:36:28 +00003343/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3344/// This can cause recursive merging of nodes in the DAG.
3345///
3346/// This version can replace From with any result values. To must match the
3347/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003348void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003349 const SDOperand *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003350 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003351 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003352 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003353
3354 while (!From->use_empty()) {
3355 // Process users until they are all gone.
3356 SDNode *U = *From->use_begin();
3357
3358 // This node is about to morph, remove its old self from the CSE maps.
3359 RemoveNodeFromCSEMaps(U);
3360
Chris Lattner65113b22005-11-08 22:07:03 +00003361 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3362 I != E; ++I)
3363 if (I->Val == From) {
3364 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003365 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003366 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003367 ToOp.Val->addUser(U);
3368 }
3369
3370 // Now that we have modified U, add it back to the CSE maps. If it already
3371 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003372 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003373 ReplaceAllUsesWith(U, Existing, UpdateListener);
3374 // U is now dead. Inform the listener if it exists and delete it.
3375 if (UpdateListener)
3376 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003377 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003378 } else {
3379 // If the node doesn't already exist, we updated it. Inform a listener if
3380 // it exists.
3381 if (UpdateListener)
3382 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003383 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003384 }
3385}
3386
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003387namespace {
3388 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3389 /// any deleted nodes from the set passed into its constructor and recursively
3390 /// notifies another update listener if specified.
3391 class ChainedSetUpdaterListener :
3392 public SelectionDAG::DAGUpdateListener {
3393 SmallSetVector<SDNode*, 16> &Set;
3394 SelectionDAG::DAGUpdateListener *Chain;
3395 public:
3396 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3397 SelectionDAG::DAGUpdateListener *chain)
3398 : Set(set), Chain(chain) {}
3399
3400 virtual void NodeDeleted(SDNode *N) {
3401 Set.remove(N);
3402 if (Chain) Chain->NodeDeleted(N);
3403 }
3404 virtual void NodeUpdated(SDNode *N) {
3405 if (Chain) Chain->NodeUpdated(N);
3406 }
3407 };
3408}
3409
Chris Lattner012f2412006-02-17 21:58:01 +00003410/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3411/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003412/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner012f2412006-02-17 21:58:01 +00003413void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003414 DAGUpdateListener *UpdateListener){
Chris Lattner012f2412006-02-17 21:58:01 +00003415 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003416
Chris Lattner012f2412006-02-17 21:58:01 +00003417 // Handle the simple, trivial, case efficiently.
Chris Lattner11d049c2008-02-03 03:35:22 +00003418 if (From.Val->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003419 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00003420 return;
3421 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003422
3423 if (From.use_empty()) return;
3424
Chris Lattnercf5640b2007-02-04 00:14:31 +00003425 // Get all of the users of From.Val. We want these in a nice,
3426 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3427 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003428
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003429 // When one of the recursive merges deletes nodes from the graph, we need to
3430 // make sure that UpdateListener is notified *and* that the node is removed
3431 // from Users if present. CSUL does this.
3432 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00003433
Chris Lattner012f2412006-02-17 21:58:01 +00003434 while (!Users.empty()) {
3435 // We know that this user uses some value of From. If it is the right
3436 // value, update it.
3437 SDNode *User = Users.back();
3438 Users.pop_back();
3439
Chris Lattner01d029b2007-10-15 06:10:22 +00003440 // Scan for an operand that matches From.
3441 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3442 for (; Op != E; ++Op)
3443 if (*Op == From) break;
3444
3445 // If there are no matches, the user must use some other result of From.
3446 if (Op == E) continue;
3447
3448 // Okay, we know this user needs to be updated. Remove its old self
3449 // from the CSE maps.
3450 RemoveNodeFromCSEMaps(User);
3451
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003452 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00003453 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00003454 if (*Op == From) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003455 From.Val->removeUser(User);
3456 *Op = To;
3457 To.Val->addUser(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003458 }
3459 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003460
3461 // Now that we have modified User, add it back to the CSE maps. If it
3462 // already exists there, recursively merge the results together.
3463 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003464 if (!Existing) {
3465 if (UpdateListener) UpdateListener->NodeUpdated(User);
3466 continue; // Continue on to next user.
3467 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003468
3469 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003470 // to replace the dead one with the existing one. This can cause
Chris Lattner01d029b2007-10-15 06:10:22 +00003471 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003472 // can cause deletion of nodes that used the old value. To handle this, we
3473 // use CSUL to remove them from the Users set.
3474 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner01d029b2007-10-15 06:10:22 +00003475
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003476 // User is now dead. Notify a listener if present.
3477 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner01d029b2007-10-15 06:10:22 +00003478 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003479 }
3480}
3481
Chris Lattner7b2880c2005-08-24 22:44:39 +00003482
Evan Chenge6f35d82006-08-01 08:20:41 +00003483/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3484/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003485unsigned SelectionDAG::AssignNodeIds() {
3486 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003487 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3488 SDNode *N = I;
3489 N->setNodeId(Id++);
3490 }
3491 return Id;
3492}
3493
Evan Chenge6f35d82006-08-01 08:20:41 +00003494/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003495/// based on their topological order. It returns the maximum id and a vector
3496/// of the SDNodes* in assigned order by reference.
3497unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003498 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003499 std::vector<unsigned> InDegree(DAGSize);
3500 std::vector<SDNode*> Sources;
3501
3502 // Use a two pass approach to avoid using a std::map which is slow.
3503 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003504 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3505 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003506 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003507 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003508 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003509 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003510 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003511 }
3512
Evan Cheng99157a02006-08-07 22:13:29 +00003513 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003514 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003515 SDNode *N = Sources.back();
3516 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003517 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003518 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3519 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003520 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003521 if (Degree == 0)
3522 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003523 }
3524 }
3525
Evan Chengc384d6c2006-08-02 22:00:34 +00003526 // Second pass, assign the actual topological order as node ids.
3527 Id = 0;
3528 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3529 TI != TE; ++TI)
3530 (*TI)->setNodeId(Id++);
3531
3532 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003533}
3534
3535
Evan Cheng091cba12006-07-27 06:39:06 +00003536
Jim Laskey58b968b2005-08-17 20:08:02 +00003537//===----------------------------------------------------------------------===//
3538// SDNode Class
3539//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003540
Chris Lattner917d2c92006-07-19 00:00:37 +00003541// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003542void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003543void UnarySDNode::ANCHOR() {}
3544void BinarySDNode::ANCHOR() {}
3545void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003546void HandleSDNode::ANCHOR() {}
3547void StringSDNode::ANCHOR() {}
3548void ConstantSDNode::ANCHOR() {}
3549void ConstantFPSDNode::ANCHOR() {}
3550void GlobalAddressSDNode::ANCHOR() {}
3551void FrameIndexSDNode::ANCHOR() {}
3552void JumpTableSDNode::ANCHOR() {}
3553void ConstantPoolSDNode::ANCHOR() {}
3554void BasicBlockSDNode::ANCHOR() {}
3555void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00003556void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003557void RegisterSDNode::ANCHOR() {}
3558void ExternalSymbolSDNode::ANCHOR() {}
3559void CondCodeSDNode::ANCHOR() {}
3560void VTSDNode::ANCHOR() {}
3561void LoadSDNode::ANCHOR() {}
3562void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003563void AtomicSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003564
Chris Lattner48b85922007-02-04 02:41:42 +00003565HandleSDNode::~HandleSDNode() {
3566 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003567 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003568}
3569
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003570GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3571 MVT::ValueType VT, int o)
3572 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00003573 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003574 // Thread Local
3575 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3576 // Non Thread Local
3577 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3578 getSDVTList(VT)), Offset(o) {
3579 TheGlobal = const_cast<GlobalValue*>(GA);
3580}
Chris Lattner48b85922007-02-04 02:41:42 +00003581
Dan Gohman69de1932008-02-06 22:27:42 +00003582/// getMemOperand - Return a MemOperand object describing the memory
3583/// reference performed by this load or store.
3584MemOperand LSBaseSDNode::getMemOperand() const {
3585 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
3586 int Flags =
3587 getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
3588 if (IsVolatile) Flags |= MemOperand::MOVolatile;
3589
3590 // Check if the load references a frame index, and does not have
3591 // an SV attached.
3592 const FrameIndexSDNode *FI =
3593 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
3594 if (!getSrcValue() && FI)
Dan Gohman3069b872008-02-07 18:41:25 +00003595 return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
Dan Gohman69de1932008-02-06 22:27:42 +00003596 FI->getIndex(), Size, Alignment);
3597 else
3598 return MemOperand(getSrcValue(), Flags,
3599 getSrcValueOffset(), Size, Alignment);
3600}
3601
Jim Laskey583bd472006-10-27 23:46:08 +00003602/// Profile - Gather unique data for the node.
3603///
3604void SDNode::Profile(FoldingSetNodeID &ID) {
3605 AddNodeIDNode(ID, this);
3606}
3607
Chris Lattnera3255112005-11-08 23:30:28 +00003608/// getValueTypeList - Return a pointer to the specified value type.
3609///
Dan Gohman547ca532008-02-08 03:26:46 +00003610const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003611 if (MVT::isExtendedVT(VT)) {
3612 static std::set<MVT::ValueType> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00003613 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00003614 } else {
3615 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3616 VTs[VT] = VT;
3617 return &VTs[VT];
3618 }
Chris Lattnera3255112005-11-08 23:30:28 +00003619}
Duncan Sandsaf47b112007-10-16 09:56:48 +00003620
Chris Lattner5c884562005-01-12 18:37:47 +00003621/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3622/// indicated value. This method ignores uses of other values defined by this
3623/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003624bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003625 assert(Value < getNumValues() && "Bad value!");
3626
3627 // If there is only one value, this is easy.
3628 if (getNumValues() == 1)
3629 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00003630 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00003631
Evan Cheng4ee62112006-02-05 06:29:23 +00003632 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003633
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003634 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003635
Chris Lattnerf83482d2006-08-16 20:59:32 +00003636 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003637 SDNode *User = *UI;
3638 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003639 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003640 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3641 if (User->getOperand(i) == TheValue) {
3642 if (NUses == 0)
3643 return false; // too many uses
3644 --NUses;
3645 }
3646 }
3647
3648 // Found exactly the right number of uses?
3649 return NUses == 0;
3650}
3651
3652
Evan Cheng33d55952007-08-02 05:29:38 +00003653/// hasAnyUseOfValue - Return true if there are any use of the indicated
3654/// value. This method ignores uses of other values defined by this operation.
3655bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3656 assert(Value < getNumValues() && "Bad value!");
3657
Dan Gohman30359592008-01-29 13:02:09 +00003658 if (use_empty()) return false;
Evan Cheng33d55952007-08-02 05:29:38 +00003659
3660 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3661
3662 SmallPtrSet<SDNode*, 32> UsersHandled;
3663
3664 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3665 SDNode *User = *UI;
3666 if (User->getNumOperands() == 1 ||
3667 UsersHandled.insert(User)) // First time we've seen this?
3668 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3669 if (User->getOperand(i) == TheValue) {
3670 return true;
3671 }
3672 }
3673
3674 return false;
3675}
3676
3677
Evan Cheng917be682008-03-04 00:41:45 +00003678/// isOnlyUseOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00003679///
Evan Cheng917be682008-03-04 00:41:45 +00003680bool SDNode::isOnlyUseOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00003681 bool Seen = false;
3682 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3683 SDNode *User = *I;
3684 if (User == this)
3685 Seen = true;
3686 else
3687 return false;
3688 }
3689
3690 return Seen;
3691}
3692
Evan Chenge6e97e62006-11-03 07:31:32 +00003693/// isOperand - Return true if this node is an operand of N.
3694///
Evan Cheng917be682008-03-04 00:41:45 +00003695bool SDOperand::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00003696 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3697 if (*this == N->getOperand(i))
3698 return true;
3699 return false;
3700}
3701
Evan Cheng917be682008-03-04 00:41:45 +00003702bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003703 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3704 if (this == N->OperandList[i].Val)
3705 return true;
3706 return false;
3707}
Evan Cheng4ee62112006-02-05 06:29:23 +00003708
Chris Lattner572dee72008-01-16 05:49:24 +00003709/// reachesChainWithoutSideEffects - Return true if this operand (which must
3710/// be a chain) reaches the specified operand without crossing any
3711/// side-effecting instructions. In practice, this looks through token
3712/// factors and non-volatile loads. In order to remain efficient, this only
3713/// looks a couple of nodes in, it does not do an exhaustive search.
3714bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3715 unsigned Depth) const {
3716 if (*this == Dest) return true;
3717
3718 // Don't search too deeply, we just want to be able to see through
3719 // TokenFactor's etc.
3720 if (Depth == 0) return false;
3721
3722 // If this is a token factor, all inputs to the TF happen in parallel. If any
3723 // of the operands of the TF reach dest, then we can do the xform.
3724 if (getOpcode() == ISD::TokenFactor) {
3725 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3726 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3727 return true;
3728 return false;
3729 }
3730
3731 // Loads don't have side effects, look through them.
3732 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3733 if (!Ld->isVolatile())
3734 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3735 }
3736 return false;
3737}
3738
3739
Evan Chengc5fc57d2006-11-03 03:05:24 +00003740static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003741 SmallPtrSet<SDNode *, 32> &Visited) {
3742 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003743 return;
3744
3745 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3746 SDNode *Op = N->getOperand(i).Val;
3747 if (Op == P) {
3748 found = true;
3749 return;
3750 }
3751 findPredecessor(Op, P, found, Visited);
3752 }
3753}
3754
Evan Cheng917be682008-03-04 00:41:45 +00003755/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00003756/// is either an operand of N or it can be reached by recursively traversing
3757/// up the operands.
3758/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00003759bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003760 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003761 bool found = false;
3762 findPredecessor(N, this, found, Visited);
3763 return found;
3764}
3765
Evan Chengc5484282006-10-04 00:56:09 +00003766uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3767 assert(Num < NumOperands && "Invalid child # of SDNode!");
3768 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3769}
3770
Reid Spencer577cc322007-04-01 07:32:19 +00003771std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003772 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003773 default:
3774 if (getOpcode() < ISD::BUILTIN_OP_END)
3775 return "<<Unknown DAG Node>>";
3776 else {
Evan Cheng72261582005-12-20 06:22:03 +00003777 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003778 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003779 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00003780 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00003781
Evan Cheng72261582005-12-20 06:22:03 +00003782 TargetLowering &TLI = G->getTargetLoweringInfo();
3783 const char *Name =
3784 TLI.getTargetNodeName(getOpcode());
3785 if (Name) return Name;
3786 }
3787
3788 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003789 }
3790
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003791 case ISD::MEMBARRIER: return "MemBarrier";
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003792 case ISD::ATOMIC_LCS: return "AtomicLCS";
3793 case ISD::ATOMIC_LAS: return "AtomicLAS";
3794 case ISD::ATOMIC_SWAP: return "AtomicSWAP";
Andrew Lenharth95762122005-03-31 21:24:06 +00003795 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003796 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003797 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00003798 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003799 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003800 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003801 case ISD::AssertSext: return "AssertSext";
3802 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003803
3804 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003805 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003806 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003807 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003808
3809 case ISD::Constant: return "Constant";
3810 case ISD::ConstantFP: return "ConstantFP";
3811 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003812 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003813 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003814 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003815 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003816 case ISD::RETURNADDR: return "RETURNADDR";
3817 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003818 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003819 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3820 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003821 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003822 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003823 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003824 case ISD::INTRINSIC_WO_CHAIN: {
3825 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3826 return Intrinsic::getName((Intrinsic::ID)IID);
3827 }
3828 case ISD::INTRINSIC_VOID:
3829 case ISD::INTRINSIC_W_CHAIN: {
3830 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003831 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003832 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003833
Chris Lattnerb2827b02006-03-19 00:52:58 +00003834 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003835 case ISD::TargetConstant: return "TargetConstant";
3836 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003837 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003838 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003839 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003840 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003841 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003842 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003843
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003844 case ISD::CopyToReg: return "CopyToReg";
3845 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003846 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003847 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003848 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003849 case ISD::LABEL: return "label";
Evan Chenga844bde2008-02-02 04:07:54 +00003850 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003851 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003852 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003853 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003854
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003855 // Unary operators
3856 case ISD::FABS: return "fabs";
3857 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003858 case ISD::FSQRT: return "fsqrt";
3859 case ISD::FSIN: return "fsin";
3860 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003861 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00003862 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003863
3864 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003865 case ISD::ADD: return "add";
3866 case ISD::SUB: return "sub";
3867 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003868 case ISD::MULHU: return "mulhu";
3869 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003870 case ISD::SDIV: return "sdiv";
3871 case ISD::UDIV: return "udiv";
3872 case ISD::SREM: return "srem";
3873 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00003874 case ISD::SMUL_LOHI: return "smul_lohi";
3875 case ISD::UMUL_LOHI: return "umul_lohi";
3876 case ISD::SDIVREM: return "sdivrem";
3877 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003878 case ISD::AND: return "and";
3879 case ISD::OR: return "or";
3880 case ISD::XOR: return "xor";
3881 case ISD::SHL: return "shl";
3882 case ISD::SRA: return "sra";
3883 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003884 case ISD::ROTL: return "rotl";
3885 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003886 case ISD::FADD: return "fadd";
3887 case ISD::FSUB: return "fsub";
3888 case ISD::FMUL: return "fmul";
3889 case ISD::FDIV: return "fdiv";
3890 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003891 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00003892 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003893
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003894 case ISD::SETCC: return "setcc";
3895 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003896 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003897 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003898 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003899 case ISD::CONCAT_VECTORS: return "concat_vectors";
3900 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003901 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003902 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003903 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003904 case ISD::ADDC: return "addc";
3905 case ISD::ADDE: return "adde";
3906 case ISD::SUBC: return "subc";
3907 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003908 case ISD::SHL_PARTS: return "shl_parts";
3909 case ISD::SRA_PARTS: return "sra_parts";
3910 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00003911
3912 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3913 case ISD::INSERT_SUBREG: return "insert_subreg";
3914
Chris Lattner7f644642005-04-28 21:44:03 +00003915 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003916 case ISD::SIGN_EXTEND: return "sign_extend";
3917 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003918 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003919 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003920 case ISD::TRUNCATE: return "truncate";
3921 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00003922 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00003923 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003924 case ISD::FP_EXTEND: return "fp_extend";
3925
3926 case ISD::SINT_TO_FP: return "sint_to_fp";
3927 case ISD::UINT_TO_FP: return "uint_to_fp";
3928 case ISD::FP_TO_SINT: return "fp_to_sint";
3929 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003930 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003931
3932 // Control flow instructions
3933 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003934 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003935 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003936 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003937 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003938 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003939 case ISD::CALLSEQ_START: return "callseq_start";
3940 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003941
3942 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003943 case ISD::LOAD: return "load";
3944 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00003945 case ISD::VAARG: return "vaarg";
3946 case ISD::VACOPY: return "vacopy";
3947 case ISD::VAEND: return "vaend";
3948 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003949 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003950 case ISD::EXTRACT_ELEMENT: return "extract_element";
3951 case ISD::BUILD_PAIR: return "build_pair";
3952 case ISD::STACKSAVE: return "stacksave";
3953 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003954 case ISD::TRAP: return "trap";
3955
Chris Lattner5a67afc2006-01-13 02:39:42 +00003956 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003957 case ISD::MEMSET: return "memset";
3958 case ISD::MEMCPY: return "memcpy";
3959 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003960
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003961 // Bit manipulation
3962 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003963 case ISD::CTPOP: return "ctpop";
3964 case ISD::CTTZ: return "cttz";
3965 case ISD::CTLZ: return "ctlz";
3966
Chris Lattner36ce6912005-11-29 06:21:05 +00003967 // Debug info
3968 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003969 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003970
Duncan Sands36397f52007-07-27 12:58:54 +00003971 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00003972 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00003973
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003974 case ISD::CONDCODE:
3975 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003976 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003977 case ISD::SETOEQ: return "setoeq";
3978 case ISD::SETOGT: return "setogt";
3979 case ISD::SETOGE: return "setoge";
3980 case ISD::SETOLT: return "setolt";
3981 case ISD::SETOLE: return "setole";
3982 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003983
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003984 case ISD::SETO: return "seto";
3985 case ISD::SETUO: return "setuo";
3986 case ISD::SETUEQ: return "setue";
3987 case ISD::SETUGT: return "setugt";
3988 case ISD::SETUGE: return "setuge";
3989 case ISD::SETULT: return "setult";
3990 case ISD::SETULE: return "setule";
3991 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003992
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003993 case ISD::SETEQ: return "seteq";
3994 case ISD::SETGT: return "setgt";
3995 case ISD::SETGE: return "setge";
3996 case ISD::SETLT: return "setlt";
3997 case ISD::SETLE: return "setle";
3998 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003999 }
4000 }
4001}
Chris Lattnerc3aae252005-01-07 07:46:32 +00004002
Evan Cheng144d8f02006-11-09 17:55:04 +00004003const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00004004 switch (AM) {
4005 default:
4006 return "";
4007 case ISD::PRE_INC:
4008 return "<pre-inc>";
4009 case ISD::PRE_DEC:
4010 return "<pre-dec>";
4011 case ISD::POST_INC:
4012 return "<post-inc>";
4013 case ISD::POST_DEC:
4014 return "<post-dec>";
4015 }
4016}
4017
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004018void SDNode::dump() const { dump(0); }
4019void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00004020 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004021
4022 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004023 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00004024 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00004025 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00004026 else
Bill Wendling832171c2006-12-07 20:04:42 +00004027 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00004028 }
Bill Wendling832171c2006-12-07 20:04:42 +00004029 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004030
Bill Wendling832171c2006-12-07 20:04:42 +00004031 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004032 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004033 if (i) cerr << ", ";
4034 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004035 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00004036 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004037 }
4038
Evan Chengce254432007-12-11 02:08:35 +00004039 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4040 SDNode *Mask = getOperand(2).Val;
4041 cerr << "<";
4042 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4043 if (i) cerr << ",";
4044 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4045 cerr << "u";
4046 else
4047 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4048 }
4049 cerr << ">";
4050 }
4051
Chris Lattnerc3aae252005-01-07 07:46:32 +00004052 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004053 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004054 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004055 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4056 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4057 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4058 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4059 else {
4060 cerr << "<APFloat(";
4061 CSDN->getValueAPF().convertToAPInt().dump();
4062 cerr << ")>";
4063 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00004064 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00004065 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00004066 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00004067 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00004068 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00004069 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004070 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00004071 else
Bill Wendling832171c2006-12-07 20:04:42 +00004072 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004073 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004074 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00004075 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004076 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004077 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00004078 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00004079 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00004080 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00004081 else
Bill Wendling832171c2006-12-07 20:04:42 +00004082 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00004083 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004084 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00004085 else
Bill Wendling832171c2006-12-07 20:04:42 +00004086 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004087 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004088 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004089 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4090 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00004091 cerr << LBB->getName() << " ";
4092 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00004093 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004094 if (G && R->getReg() &&
4095 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +00004096 cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00004097 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00004098 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00004099 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004100 } else if (const ExternalSymbolSDNode *ES =
4101 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004102 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004103 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4104 if (M->getValue())
Dan Gohman69de1932008-02-06 22:27:42 +00004105 cerr << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004106 else
Dan Gohman69de1932008-02-06 22:27:42 +00004107 cerr << "<null>";
4108 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4109 if (M->MO.getValue())
4110 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4111 else
4112 cerr << "<null:" << M->MO.getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00004113 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00004114 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004115 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00004116 const Value *SrcValue = LD->getSrcValue();
4117 int SrcOffset = LD->getSrcValueOffset();
4118 cerr << " <";
4119 if (SrcValue)
4120 cerr << SrcValue;
4121 else
4122 cerr << "null";
4123 cerr << ":" << SrcOffset << ">";
4124
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004125 bool doExt = true;
4126 switch (LD->getExtensionType()) {
4127 default: doExt = false; break;
4128 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004129 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004130 break;
4131 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004132 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004133 break;
4134 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004135 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004136 break;
4137 }
4138 if (doExt)
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004139 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004140
Evan Cheng144d8f02006-11-09 17:55:04 +00004141 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004142 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004143 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004144 if (LD->isVolatile())
4145 cerr << " <volatile>";
4146 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004147 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004148 const Value *SrcValue = ST->getSrcValue();
4149 int SrcOffset = ST->getSrcValueOffset();
4150 cerr << " <";
4151 if (SrcValue)
4152 cerr << SrcValue;
4153 else
4154 cerr << "null";
4155 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004156
4157 if (ST->isTruncatingStore())
4158 cerr << " <trunc "
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004159 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004160
4161 const char *AM = getIndexedModeName(ST->getAddressingMode());
4162 if (*AM)
4163 cerr << " " << AM;
4164 if (ST->isVolatile())
4165 cerr << " <volatile>";
4166 cerr << " alignment=" << ST->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004167 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004168}
4169
Chris Lattnerde202b32005-11-09 23:47:37 +00004170static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004171 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4172 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004173 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004174 else
Bill Wendling832171c2006-12-07 20:04:42 +00004175 cerr << "\n" << std::string(indent+2, ' ')
4176 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004177
Chris Lattnerea946cd2005-01-09 20:38:33 +00004178
Bill Wendling832171c2006-12-07 20:04:42 +00004179 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004180 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004181}
4182
Chris Lattnerc3aae252005-01-07 07:46:32 +00004183void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004184 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004185 std::vector<const SDNode*> Nodes;
4186 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4187 I != E; ++I)
4188 Nodes.push_back(I);
4189
Chris Lattner49d24712005-01-09 20:26:36 +00004190 std::sort(Nodes.begin(), Nodes.end());
4191
4192 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004193 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004194 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004195 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004196
Jim Laskey26f7fa72006-10-17 19:33:52 +00004197 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004198
Bill Wendling832171c2006-12-07 20:04:42 +00004199 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004200}
4201
Evan Chengd6594ae2006-09-12 21:00:35 +00004202const Type *ConstantPoolSDNode::getType() const {
4203 if (isMachineConstantPoolEntry())
4204 return Val.MachineCPVal->getType();
4205 return Val.ConstVal->getType();
4206}