blob: f75d39293e238cf4516c2e185117564f5168c6d5 [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//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +000013#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000014#include "llvm/Constants.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000015#include "llvm/Analysis/ValueTracking.h"
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +000016#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000017#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000018#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000020#include "llvm/Assembly/Writer.h"
Dan Gohman707e0182008-04-12 04:36:06 +000021#include "llvm/CallingConv.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000028#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000029#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000030#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetMachine.h"
Bill Wendling6f287b22008-09-30 21:22:07 +000032#include "llvm/Support/CommandLine.h"
Chris Lattner944fac72008-08-23 22:23:09 +000033#include "llvm/Support/MathExtras.h"
34#include "llvm/Support/raw_ostream.h"
Chris Lattner012f2412006-02-17 21:58:01 +000035#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000036#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000037#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000038#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000039#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000040#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000041#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000042using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000043
Chris Lattner0b3e5252006-08-15 19:11:05 +000044/// makeVTList - Return an instance of the SDVTList struct initialized with the
45/// specified members.
Duncan Sands83ec4b62008-06-06 12:08:01 +000046static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000047 SDVTList Res = {VTs, NumVTs};
48 return Res;
49}
50
Duncan Sands83ec4b62008-06-06 12:08:01 +000051static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
52 switch (VT.getSimpleVT()) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000053 default: assert(0 && "Unknown FP format");
54 case MVT::f32: return &APFloat::IEEEsingle;
55 case MVT::f64: return &APFloat::IEEEdouble;
56 case MVT::f80: return &APFloat::x87DoubleExtended;
57 case MVT::f128: return &APFloat::IEEEquad;
58 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
59 }
60}
61
Chris Lattnerf8dc0612008-02-03 06:49:24 +000062SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
63
Jim Laskey58b968b2005-08-17 20:08:02 +000064//===----------------------------------------------------------------------===//
65// ConstantFPSDNode Class
66//===----------------------------------------------------------------------===//
67
68/// isExactlyValue - We don't rely on operator== working on double values, as
69/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
70/// As such, this method can be used to do an exact bit-for-bit comparison of
71/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000072bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohman4fbd7962008-09-12 18:08:03 +000073 return getValueAPF().bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000074}
75
Duncan Sands83ec4b62008-06-06 12:08:01 +000076bool ConstantFPSDNode::isValueValidForType(MVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000077 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000078 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Chris Lattnerec4a5672008-03-05 06:48:13 +000079
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000080 // PPC long double cannot be converted to any other type.
81 if (VT == MVT::ppcf128 ||
82 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000083 return false;
84
Dale Johannesenf04afdb2007-08-30 00:23:21 +000085 // convert modifies in place, so make a copy.
86 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +000087 bool losesInfo;
88 (void) Val2.convert(*MVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
89 &losesInfo);
90 return !losesInfo;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000091}
92
Jim Laskey58b968b2005-08-17 20:08:02 +000093//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000094// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000095//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000096
Evan Chenga8df1662006-03-27 06:58:47 +000097/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000098/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000099bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000100 // Look through a bit convert.
101 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000102 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000103
Evan Chenga8df1662006-03-27 06:58:47 +0000104 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000105
106 unsigned i = 0, e = N->getNumOperands();
107
108 // Skip over all of the undef values.
109 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
110 ++i;
111
112 // Do not accept an all-undef vector.
113 if (i == e) return false;
114
115 // Do not accept build_vectors that aren't all constants or which have non-~0
116 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000117 SDValue NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000118 if (isa<ConstantSDNode>(NotZero)) {
119 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
120 return false;
121 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000122 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
Dale Johannesen23a98552008-10-09 23:00:39 +0000123 bitcastToAPInt().isAllOnesValue())
Dan Gohman6c231502008-02-29 01:47:35 +0000124 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000125 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000126 return false;
127
128 // Okay, we have at least one ~0 value, check to see if the rest match or are
129 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000130 for (++i; i != e; ++i)
131 if (N->getOperand(i) != NotZero &&
132 N->getOperand(i).getOpcode() != ISD::UNDEF)
133 return false;
134 return true;
135}
136
137
Evan Cheng4a147842006-03-26 09:50:58 +0000138/// isBuildVectorAllZeros - Return true if the specified node is a
139/// BUILD_VECTOR where all of the elements are 0 or undef.
140bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000141 // Look through a bit convert.
142 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000143 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000144
Evan Cheng4a147842006-03-26 09:50:58 +0000145 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000146
147 unsigned i = 0, e = N->getNumOperands();
148
149 // Skip over all of the undef values.
150 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
151 ++i;
152
153 // Do not accept an all-undef vector.
154 if (i == e) return false;
155
156 // Do not accept build_vectors that aren't all constants or which have non-~0
157 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000158 SDValue Zero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000159 if (isa<ConstantSDNode>(Zero)) {
160 if (!cast<ConstantSDNode>(Zero)->isNullValue())
161 return false;
162 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000163 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000164 return false;
165 } else
166 return false;
167
168 // Okay, we have at least one ~0 value, check to see if the rest match or are
169 // undefs.
170 for (++i; i != e; ++i)
171 if (N->getOperand(i) != Zero &&
172 N->getOperand(i).getOpcode() != ISD::UNDEF)
173 return false;
174 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000175}
176
Evan Chengefec7512008-02-18 23:04:32 +0000177/// isScalarToVector - Return true if the specified node is a
178/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
179/// element is not an undef.
180bool ISD::isScalarToVector(const SDNode *N) {
181 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
182 return true;
183
184 if (N->getOpcode() != ISD::BUILD_VECTOR)
185 return false;
186 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
187 return false;
188 unsigned NumElems = N->getNumOperands();
189 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000190 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000191 if (V.getOpcode() != ISD::UNDEF)
192 return false;
193 }
194 return true;
195}
196
197
Evan Chengbb81d972008-01-31 09:59:15 +0000198/// isDebugLabel - Return true if the specified node represents a debug
Dan Gohman44066042008-07-01 00:05:16 +0000199/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
Evan Chengbb81d972008-01-31 09:59:15 +0000200bool ISD::isDebugLabel(const SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000201 SDValue Zero;
Dan Gohman44066042008-07-01 00:05:16 +0000202 if (N->getOpcode() == ISD::DBG_LABEL)
203 return true;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000204 if (N->isMachineOpcode() &&
205 N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
Dan Gohman44066042008-07-01 00:05:16 +0000206 return true;
207 return false;
Evan Chengbb81d972008-01-31 09:59:15 +0000208}
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211/// when given the operation for (X op Y).
212ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213 // To perform this operation, we just need to swap the L and G bits of the
214 // operation.
215 unsigned OldL = (Operation >> 2) & 1;
216 unsigned OldG = (Operation >> 1) & 1;
217 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
218 (OldL << 1) | // New G bit
219 (OldG << 2)); // New L bit.
220}
221
222/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223/// 'op' is a valid SetCC operation.
224ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225 unsigned Operation = Op;
226 if (isInteger)
227 Operation ^= 7; // Flip L, G, E bits, but not U.
228 else
229 Operation ^= 15; // Flip all of the condition bits.
230 if (Operation > ISD::SETTRUE2)
231 Operation &= ~8; // Don't let N and U bits get set.
232 return ISD::CondCode(Operation);
233}
234
235
236/// isSignedOp - For an integer comparison, return 1 if the comparison is a
237/// signed operation and 2 if the result is an unsigned comparison. Return zero
238/// if the operation does not depend on the sign of the input (setne and seteq).
239static int isSignedOp(ISD::CondCode Opcode) {
240 switch (Opcode) {
241 default: assert(0 && "Illegal integer setcc operation!");
242 case ISD::SETEQ:
243 case ISD::SETNE: return 0;
244 case ISD::SETLT:
245 case ISD::SETLE:
246 case ISD::SETGT:
247 case ISD::SETGE: return 1;
248 case ISD::SETULT:
249 case ISD::SETULE:
250 case ISD::SETUGT:
251 case ISD::SETUGE: return 2;
252 }
253}
254
255/// getSetCCOrOperation - Return the result of a logical OR between different
256/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
257/// returns SETCC_INVALID if it is not possible to represent the resultant
258/// comparison.
259ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
260 bool isInteger) {
261 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
262 // Cannot fold a signed integer setcc with an unsigned integer setcc.
263 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000264
Chris Lattnerc3aae252005-01-07 07:46:32 +0000265 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000266
Chris Lattnerc3aae252005-01-07 07:46:32 +0000267 // If the N and U bits get set then the resultant comparison DOES suddenly
268 // care about orderedness, and is true when ordered.
269 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000270 Op &= ~16; // Clear the U bit if the N bit is set.
271
272 // Canonicalize illegal integer setcc's.
273 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
274 Op = ISD::SETNE;
275
Chris Lattnerc3aae252005-01-07 07:46:32 +0000276 return ISD::CondCode(Op);
277}
278
279/// getSetCCAndOperation - Return the result of a logical AND between different
280/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
281/// function returns zero if it is not possible to represent the resultant
282/// comparison.
283ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
284 bool isInteger) {
285 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
286 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000287 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000288
289 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000290 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
291
292 // Canonicalize illegal integer setcc's.
293 if (isInteger) {
294 switch (Result) {
295 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000296 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000297 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000298 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 {
Dan Gohman6448d912008-09-04 15:39:15 +0000308 return MF->getTarget();
Chris Lattnerb48da392005-01-23 04:39:44 +0000309}
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.
Dan Gohman844731a2008-05-13 00:00:25 +0000323static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000324 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,
Dan Gohman475871a2008-07-27 21:46:04 +0000330 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000331 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000332 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000333 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000334 }
Jim Laskey583bd472006-10-27 23:46:08 +0000335}
336
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000337/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
338///
339static void AddNodeIDOperands(FoldingSetNodeID &ID,
340 const SDUse *Ops, unsigned NumOps) {
341 for (; NumOps; --NumOps, ++Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +0000342 ID.AddPointer(Ops->getVal());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000343 ID.AddInteger(Ops->getSDValue().getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000344 }
345}
346
Jim Laskey583bd472006-10-27 23:46:08 +0000347static void AddNodeIDNode(FoldingSetNodeID &ID,
348 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000349 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000350 AddNodeIDOpcode(ID, OpC);
351 AddNodeIDValueTypes(ID, VTList);
352 AddNodeIDOperands(ID, OpList, N);
353}
354
Roman Levenstein9cac5252008-04-16 16:15:27 +0000355
Jim Laskeydef69b92006-10-27 23:52:51 +0000356/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
357/// data.
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000358static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000359 AddNodeIDOpcode(ID, N->getOpcode());
360 // Add the return value info.
361 AddNodeIDValueTypes(ID, N->getVTList());
362 // Add the operand info.
363 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
364
365 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000366 switch (N->getOpcode()) {
367 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000368 case ISD::ARG_FLAGS:
369 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
370 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000371 case ISD::TargetConstant:
372 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000373 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000374 break;
375 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000376 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000377 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000378 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000379 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000380 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000381 case ISD::GlobalAddress:
382 case ISD::TargetGlobalTLSAddress:
383 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000384 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000385 ID.AddPointer(GA->getGlobal());
386 ID.AddInteger(GA->getOffset());
387 break;
388 }
389 case ISD::BasicBlock:
390 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
391 break;
392 case ISD::Register:
393 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
394 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000395 case ISD::DBG_STOPPOINT: {
396 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
397 ID.AddInteger(DSP->getLine());
398 ID.AddInteger(DSP->getColumn());
399 ID.AddPointer(DSP->getCompileUnit());
400 break;
401 }
Dan Gohman69de1932008-02-06 22:27:42 +0000402 case ISD::SRCVALUE:
403 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
404 break;
405 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000406 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000407 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000408 break;
409 }
410 case ISD::FrameIndex:
411 case ISD::TargetFrameIndex:
412 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
413 break;
414 case ISD::JumpTable:
415 case ISD::TargetJumpTable:
416 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
417 break;
418 case ISD::ConstantPool:
419 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000420 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000421 ID.AddInteger(CP->getAlignment());
422 ID.AddInteger(CP->getOffset());
423 if (CP->isMachineConstantPoolEntry())
424 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
425 else
426 ID.AddPointer(CP->getConstVal());
427 break;
428 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000429 case ISD::CALL: {
430 const CallSDNode *Call = cast<CallSDNode>(N);
431 ID.AddInteger(Call->getCallingConv());
432 ID.AddInteger(Call->isVarArg());
433 break;
434 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000435 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000436 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000437 ID.AddInteger(LD->getAddressingMode());
438 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000439 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000440 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000441 break;
442 }
443 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000444 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000445 ID.AddInteger(ST->getAddressingMode());
446 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000447 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000448 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000449 break;
450 }
Dale Johannesene00a8a22008-08-28 02:44:49 +0000451 case ISD::ATOMIC_CMP_SWAP_8:
452 case ISD::ATOMIC_SWAP_8:
453 case ISD::ATOMIC_LOAD_ADD_8:
454 case ISD::ATOMIC_LOAD_SUB_8:
455 case ISD::ATOMIC_LOAD_AND_8:
456 case ISD::ATOMIC_LOAD_OR_8:
457 case ISD::ATOMIC_LOAD_XOR_8:
458 case ISD::ATOMIC_LOAD_NAND_8:
459 case ISD::ATOMIC_LOAD_MIN_8:
460 case ISD::ATOMIC_LOAD_MAX_8:
461 case ISD::ATOMIC_LOAD_UMIN_8:
462 case ISD::ATOMIC_LOAD_UMAX_8:
463 case ISD::ATOMIC_CMP_SWAP_16:
464 case ISD::ATOMIC_SWAP_16:
465 case ISD::ATOMIC_LOAD_ADD_16:
466 case ISD::ATOMIC_LOAD_SUB_16:
467 case ISD::ATOMIC_LOAD_AND_16:
468 case ISD::ATOMIC_LOAD_OR_16:
469 case ISD::ATOMIC_LOAD_XOR_16:
470 case ISD::ATOMIC_LOAD_NAND_16:
471 case ISD::ATOMIC_LOAD_MIN_16:
472 case ISD::ATOMIC_LOAD_MAX_16:
473 case ISD::ATOMIC_LOAD_UMIN_16:
474 case ISD::ATOMIC_LOAD_UMAX_16:
475 case ISD::ATOMIC_CMP_SWAP_32:
476 case ISD::ATOMIC_SWAP_32:
477 case ISD::ATOMIC_LOAD_ADD_32:
478 case ISD::ATOMIC_LOAD_SUB_32:
479 case ISD::ATOMIC_LOAD_AND_32:
480 case ISD::ATOMIC_LOAD_OR_32:
481 case ISD::ATOMIC_LOAD_XOR_32:
482 case ISD::ATOMIC_LOAD_NAND_32:
483 case ISD::ATOMIC_LOAD_MIN_32:
484 case ISD::ATOMIC_LOAD_MAX_32:
485 case ISD::ATOMIC_LOAD_UMIN_32:
486 case ISD::ATOMIC_LOAD_UMAX_32:
487 case ISD::ATOMIC_CMP_SWAP_64:
488 case ISD::ATOMIC_SWAP_64:
489 case ISD::ATOMIC_LOAD_ADD_64:
490 case ISD::ATOMIC_LOAD_SUB_64:
491 case ISD::ATOMIC_LOAD_AND_64:
492 case ISD::ATOMIC_LOAD_OR_64:
493 case ISD::ATOMIC_LOAD_XOR_64:
494 case ISD::ATOMIC_LOAD_NAND_64:
495 case ISD::ATOMIC_LOAD_MIN_64:
496 case ISD::ATOMIC_LOAD_MAX_64:
497 case ISD::ATOMIC_LOAD_UMIN_64:
498 case ISD::ATOMIC_LOAD_UMAX_64: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000499 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
500 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000501 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000502 }
Mon P Wang28873102008-06-25 08:15:39 +0000503 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000504}
505
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000506/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
507/// the CSE map that carries both alignment and volatility information.
508///
509static unsigned encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
510 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
511}
512
Jim Laskey583bd472006-10-27 23:46:08 +0000513//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000514// SelectionDAG Class
515//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000516
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000517/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000518/// SelectionDAG.
519void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000520 // Create a dummy node (which is not added to allnodes), that adds a reference
521 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000522 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000523
Chris Lattner190a4182006-08-04 17:45:20 +0000524 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000525
Chris Lattner190a4182006-08-04 17:45:20 +0000526 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000527 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000528 if (I->use_empty())
529 DeadNodes.push_back(I);
530
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000531 RemoveDeadNodes(DeadNodes);
532
533 // If the root changed (e.g. it was a dead load, update the root).
534 setRoot(Dummy.getValue());
535}
536
537/// RemoveDeadNodes - This method deletes the unreachable nodes in the
538/// given list, and any nodes that become unreachable as a result.
539void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
540 DAGUpdateListener *UpdateListener) {
541
Chris Lattner190a4182006-08-04 17:45:20 +0000542 // Process the worklist, deleting the nodes and adding their uses to the
543 // worklist.
544 while (!DeadNodes.empty()) {
545 SDNode *N = DeadNodes.back();
546 DeadNodes.pop_back();
547
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000548 if (UpdateListener)
549 UpdateListener->NodeDeleted(N, 0);
550
Chris Lattner190a4182006-08-04 17:45:20 +0000551 // Take the node out of the appropriate CSE map.
552 RemoveNodeFromCSEMaps(N);
553
554 // Next, brutally remove the operand list. This is safe to do, as there are
555 // no cycles in the graph.
556 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000557 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000558 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000559
560 // Now that we removed this operand, see if there are no uses of it left.
561 if (Operand->use_empty())
562 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000563 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000564 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000565 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000566 }
Chris Lattner190a4182006-08-04 17:45:20 +0000567 N->OperandList = 0;
568 N->NumOperands = 0;
569
570 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000571 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000572 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000573}
574
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000575void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000576 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000577 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000578}
579
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000580void SelectionDAG::DeleteNode(SDNode *N) {
581 assert(N->use_empty() && "Cannot delete a node that is not dead!");
582
583 // First take this out of the appropriate CSE map.
584 RemoveNodeFromCSEMaps(N);
585
Chris Lattner1e111c72005-09-07 05:37:01 +0000586 // Finally, remove uses due to operands of this node, remove from the
587 // AllNodes list, and delete the node.
588 DeleteNodeNotInCSEMaps(N);
589}
590
591void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
592
Dan Gohmanf06c8352008-09-30 18:30:35 +0000593 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000594 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000595 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Dan Gohmanf350b272008-08-23 02:25:05 +0000596 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000597 delete[] N->OperandList;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000598
Dan Gohman11467282008-08-26 01:44:34 +0000599 assert(N != AllNodes.begin());
600 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000601}
602
Chris Lattner149c58c2005-08-16 18:17:10 +0000603/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
604/// correspond to it. This is useful when we're about to delete or repurpose
605/// the node. We don't want future request for structurally identical nodes
606/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000607bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000608 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000609 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000610 case ISD::EntryToken:
611 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000612 return false;
613 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000614 case ISD::CONDCODE:
615 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
616 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000617 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000618 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
619 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000620 case ISD::ExternalSymbol:
621 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000622 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000623 case ISD::TargetExternalSymbol:
624 Erased =
625 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000626 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000627 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000628 MVT VT = cast<VTSDNode>(N)->getVT();
629 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000630 Erased = ExtendedValueTypeNodes.erase(VT);
631 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000632 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
633 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000634 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000635 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000636 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000637 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000638 // Remove it from the CSE Map.
639 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000640 break;
641 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000642#ifndef NDEBUG
643 // Verify that the node was actually in one of the CSE maps, unless it has a
644 // flag result (which cannot be CSE'd) or is one of the special cases that are
645 // not subject to CSE.
646 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Dan Gohman095cc292008-09-13 01:54:27 +0000647 !N->isMachineOpcode() &&
Evan Cheng71e86852008-07-08 20:06:39 +0000648 N->getOpcode() != ISD::DBG_LABEL &&
649 N->getOpcode() != ISD::DBG_STOPPOINT &&
650 N->getOpcode() != ISD::EH_LABEL &&
651 N->getOpcode() != ISD::DECLARE) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000652 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000653 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000654 assert(0 && "Node is not in map!");
655 }
656#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000657 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000658}
659
Chris Lattner8b8749f2005-08-17 19:00:20 +0000660/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
661/// has been taken out and modified in some way. If the specified node already
662/// exists in the CSE maps, do not modify the maps, but return the existing node
663/// instead. If it doesn't exist, add it and return null.
664///
665SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
666 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000667
668 if (N->getValueType(0) == MVT::Flag)
669 return 0; // Never CSE anything that produces a flag.
670
671 switch (N->getOpcode()) {
672 default: break;
673 case ISD::HANDLENODE:
674 case ISD::DBG_LABEL:
675 case ISD::DBG_STOPPOINT:
676 case ISD::EH_LABEL:
677 case ISD::DECLARE:
Chris Lattnerfe14b342005-12-01 23:14:50 +0000678 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000679 }
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000680
Chris Lattner9f8cc692005-12-19 22:21:21 +0000681 // Check that remaining values produced are not flags.
682 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
683 if (N->getValueType(i) == MVT::Flag)
684 return 0; // Never CSE anything that produces a flag.
685
Chris Lattnera5682852006-08-07 23:03:03 +0000686 SDNode *New = CSEMap.GetOrInsertNode(N);
687 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000688 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000689}
690
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000691/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
692/// were replaced with those specified. If this node is never memoized,
693/// return null, otherwise return a pointer to the slot it would take. If a
694/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000695SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000696 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000697 if (N->getValueType(0) == MVT::Flag)
698 return 0; // Never CSE anything that produces a flag.
699
700 switch (N->getOpcode()) {
701 default: break;
702 case ISD::HANDLENODE:
703 case ISD::DBG_LABEL:
704 case ISD::DBG_STOPPOINT:
705 case ISD::EH_LABEL:
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000706 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000707 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000708
709 // Check that remaining values produced are not flags.
710 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
711 if (N->getValueType(i) == MVT::Flag)
712 return 0; // Never CSE anything that produces a flag.
713
Dan Gohman475871a2008-07-27 21:46:04 +0000714 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000715 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000716 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000717 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000718}
719
720/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
721/// were replaced with those specified. If this node is never memoized,
722/// return null, otherwise return a pointer to the slot it would take. If a
723/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000724SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000725 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000726 void *&InsertPos) {
727 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnera5682852006-08-07 23:03:03 +0000728
729 // Check that remaining values produced are not flags.
730 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
731 if (N->getValueType(i) == MVT::Flag)
732 return 0; // Never CSE anything that produces a flag.
733
Dan Gohman475871a2008-07-27 21:46:04 +0000734 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000735 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000736 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000737 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
738}
739
740
741/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
742/// were replaced with those specified. If this node is never memoized,
743/// return null, otherwise return a pointer to the slot it would take. If a
744/// node already exists with these operands, the slot will be non-null.
745SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000746 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000747 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000748 if (N->getValueType(0) == MVT::Flag)
749 return 0; // Never CSE anything that produces a flag.
750
751 switch (N->getOpcode()) {
752 default: break;
753 case ISD::HANDLENODE:
754 case ISD::DBG_LABEL:
755 case ISD::DBG_STOPPOINT:
756 case ISD::EH_LABEL:
757 case ISD::DECLARE:
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000758 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000759 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000760
761 // Check that remaining values produced are not flags.
762 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
763 if (N->getValueType(i) == MVT::Flag)
764 return 0; // Never CSE anything that produces a flag.
765
Jim Laskey583bd472006-10-27 23:46:08 +0000766 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000767 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000768
Evan Cheng9629aba2006-10-11 01:47:58 +0000769 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
770 ID.AddInteger(LD->getAddressingMode());
771 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000772 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000773 ID.AddInteger(LD->getRawFlags());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000774 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
775 ID.AddInteger(ST->getAddressingMode());
776 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000777 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000778 ID.AddInteger(ST->getRawFlags());
Evan Cheng9629aba2006-10-11 01:47:58 +0000779 }
Jim Laskey583bd472006-10-27 23:46:08 +0000780
Chris Lattnera5682852006-08-07 23:03:03 +0000781 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000782}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000783
Duncan Sandsd038e042008-07-21 10:20:31 +0000784/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
785void SelectionDAG::VerifyNode(SDNode *N) {
786 switch (N->getOpcode()) {
787 default:
788 break;
789 case ISD::BUILD_VECTOR: {
790 assert(N->getNumValues() == 1 && "Too many results for BUILD_VECTOR!");
791 assert(N->getValueType(0).isVector() && "Wrong BUILD_VECTOR return type!");
792 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
793 "Wrong number of BUILD_VECTOR operands!");
794 MVT EltVT = N->getValueType(0).getVectorElementType();
795 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Dan Gohman475871a2008-07-27 21:46:04 +0000796 assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd038e042008-07-21 10:20:31 +0000797 "Wrong BUILD_VECTOR operand type!");
798 break;
799 }
800 }
801}
802
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000803/// getMVTAlignment - Compute the default alignment value for the
804/// given type.
805///
806unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
807 const Type *Ty = VT == MVT::iPTR ?
808 PointerType::get(Type::Int8Ty, 0) :
809 VT.getTypeForMVT();
810
811 return TLI.getTargetData()->getABITypeAlignment(Ty);
812}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000813
Dan Gohman7c3234c2008-08-27 23:52:12 +0000814SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
815 : TLI(tli), FLI(fli),
816 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000817 Root(getEntryNode()) {
818 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000819}
820
Dan Gohman7c3234c2008-08-27 23:52:12 +0000821void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
822 MF = &mf;
823 MMI = mmi;
824}
825
Chris Lattner78ec3112003-08-11 14:57:33 +0000826SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000827 allnodes_clear();
828}
829
830void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000831 assert(&*AllNodes.begin() == &EntryNode);
832 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000833 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000834 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000835 N->SetNextInBucket(0);
Dan Gohmanf350b272008-08-23 02:25:05 +0000836 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000837 delete [] N->OperandList;
Dan Gohman11467282008-08-26 01:44:34 +0000838 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000839 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000840}
841
Dan Gohman7c3234c2008-08-27 23:52:12 +0000842void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000843 allnodes_clear();
844 OperandAllocator.Reset();
845 CSEMap.clear();
846
847 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000848 ExternalSymbols.clear();
849 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000850 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
851 static_cast<CondCodeSDNode*>(0));
852 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
853 static_cast<SDNode*>(0));
854
855 EntryNode.Uses = 0;
856 AllNodes.push_back(&EntryNode);
857 Root = getEntryNode();
858}
859
Dan Gohman475871a2008-07-27 21:46:04 +0000860SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000861 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000862 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000863 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000864 return getNode(ISD::AND, Op.getValueType(), Op,
865 getConstant(Imm, Op.getValueType()));
866}
867
Dan Gohman475871a2008-07-27 21:46:04 +0000868SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000869 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000870 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000871}
872
Dan Gohman475871a2008-07-27 21:46:04 +0000873SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000874 return getConstant(*ConstantInt::get(Val), VT, isT);
875}
876
877SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000878 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000879
Evan Cheng0ff39b32008-06-30 07:31:25 +0000880 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000881 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000882 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000883
884 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000885 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000886 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000887 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000888 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000889 SDNode *N = NULL;
890 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000891 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000892 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000893 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000894 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000895 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000896 CSEMap.InsertNode(N, IP);
897 AllNodes.push_back(N);
898 }
899
Dan Gohman475871a2008-07-27 21:46:04 +0000900 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000901 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000902 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000903 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000904 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
905 }
906 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000907}
908
Dan Gohman475871a2008-07-27 21:46:04 +0000909SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000910 return getConstant(Val, TLI.getPointerTy(), isTarget);
911}
912
913
Dan Gohman475871a2008-07-27 21:46:04 +0000914SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000915 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
916}
917
918SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000920
Duncan Sands83ec4b62008-06-06 12:08:01 +0000921 MVT EltVT =
922 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000923
Chris Lattnerd8658612005-02-17 20:17:32 +0000924 // Do the map lookup using the actual bit pattern for the floating point
925 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
926 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000927 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000928 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000929 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000930 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000931 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000932 SDNode *N = NULL;
933 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000934 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000935 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000936 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000937 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000938 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000939 CSEMap.InsertNode(N, IP);
940 AllNodes.push_back(N);
941 }
942
Dan Gohman475871a2008-07-27 21:46:04 +0000943 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000944 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000945 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000946 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000947 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
948 }
949 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000950}
951
Dan Gohman475871a2008-07-27 21:46:04 +0000952SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000953 MVT EltVT =
954 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000955 if (EltVT==MVT::f32)
956 return getConstantFP(APFloat((float)Val), VT, isTarget);
957 else
958 return getConstantFP(APFloat(Val), VT, isTarget);
959}
960
Dan Gohman475871a2008-07-27 21:46:04 +0000961SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
962 MVT VT, int Offset,
963 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000964 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000965
966 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
967 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000968 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000969 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000970 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000971 }
972
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000973 if (GVar && GVar->isThreadLocal())
974 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
975 else
976 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000977
Jim Laskey583bd472006-10-27 23:46:08 +0000978 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000979 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000980 ID.AddPointer(GV);
981 ID.AddInteger(Offset);
982 void *IP = 0;
983 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000984 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000985 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000986 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +0000987 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000988 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000989 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000990}
991
Dan Gohman475871a2008-07-27 21:46:04 +0000992SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000993 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000994 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000995 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000996 ID.AddInteger(FI);
997 void *IP = 0;
998 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000999 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001000 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001001 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001002 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001003 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001004 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001005}
1006
Dan Gohman475871a2008-07-27 21:46:04 +00001007SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001008 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001009 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001010 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001011 ID.AddInteger(JTI);
1012 void *IP = 0;
1013 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001014 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001015 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001016 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001017 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001018 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001019 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001020}
1021
Dan Gohman475871a2008-07-27 21:46:04 +00001022SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1023 unsigned Alignment, int Offset,
1024 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001025 if (Alignment == 0)
1026 Alignment =
1027 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001028 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001029 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001030 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001031 ID.AddInteger(Alignment);
1032 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001033 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001034 void *IP = 0;
1035 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001036 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001037 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001038 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001039 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001040 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001041 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001042}
1043
Chris Lattnerc3aae252005-01-07 07:46:32 +00001044
Dan Gohman475871a2008-07-27 21:46:04 +00001045SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1046 unsigned Alignment, int Offset,
1047 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001048 if (Alignment == 0)
1049 Alignment =
1050 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001051 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001052 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001053 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001054 ID.AddInteger(Alignment);
1055 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001056 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001057 void *IP = 0;
1058 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001059 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001060 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001061 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001062 CSEMap.InsertNode(N, IP);
1063 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001064 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001065}
1066
1067
Dan Gohman475871a2008-07-27 21:46:04 +00001068SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001069 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001070 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001071 ID.AddPointer(MBB);
1072 void *IP = 0;
1073 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001074 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001075 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001076 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001077 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001078 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001079 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001080}
1081
Dan Gohman475871a2008-07-27 21:46:04 +00001082SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001083 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001084 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001085 ID.AddInteger(Flags.getRawBits());
1086 void *IP = 0;
1087 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001088 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001089 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001090 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001091 CSEMap.InsertNode(N, IP);
1092 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001093 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001094}
1095
Dan Gohman475871a2008-07-27 21:46:04 +00001096SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001097 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1098 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001099
Duncan Sands83ec4b62008-06-06 12:08:01 +00001100 SDNode *&N = VT.isExtended() ?
1101 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001102
Dan Gohman475871a2008-07-27 21:46:04 +00001103 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001104 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001105 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001106 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001107 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001108}
1109
Bill Wendling056292f2008-09-16 21:48:12 +00001110SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1111 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001112 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001113 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1114 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001115 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001116 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001117}
1118
Bill Wendling056292f2008-09-16 21:48:12 +00001119SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1120 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001121 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001122 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1123 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001124 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001125 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001126}
1127
Dan Gohman475871a2008-07-27 21:46:04 +00001128SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001129 if ((unsigned)Cond >= CondCodeNodes.size())
1130 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001131
Chris Lattner079a27a2005-08-09 20:40:02 +00001132 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001133 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001134 new (N) CondCodeSDNode(Cond);
1135 CondCodeNodes[Cond] = N;
1136 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001137 }
Dan Gohman475871a2008-07-27 21:46:04 +00001138 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001139}
1140
Dan Gohman475871a2008-07-27 21:46:04 +00001141SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001142 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001143 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001144 ID.AddInteger(RegNo);
1145 void *IP = 0;
1146 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001147 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001148 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001149 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001150 CSEMap.InsertNode(N, IP);
1151 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001152 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001153}
1154
Dan Gohman475871a2008-07-27 21:46:04 +00001155SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001156 unsigned Line, unsigned Col,
1157 const CompileUnitDesc *CU) {
1158 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001159 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001160 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001161 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001162}
1163
Dan Gohman475871a2008-07-27 21:46:04 +00001164SDValue SelectionDAG::getLabel(unsigned Opcode,
1165 SDValue Root,
1166 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001167 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001168 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001169 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1170 ID.AddInteger(LabelID);
1171 void *IP = 0;
1172 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001173 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001174 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001175 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001176 CSEMap.InsertNode(N, IP);
1177 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001178 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001179}
1180
Dan Gohman475871a2008-07-27 21:46:04 +00001181SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001182 assert((!V || isa<PointerType>(V->getType())) &&
1183 "SrcValue is not a pointer?");
1184
Jim Laskey583bd472006-10-27 23:46:08 +00001185 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001186 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001187 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001188
Chris Lattner61b09412006-08-11 21:01:22 +00001189 void *IP = 0;
1190 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001191 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001192
Dan Gohmanfed90b62008-07-28 21:51:04 +00001193 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001194 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001195 CSEMap.InsertNode(N, IP);
1196 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001197 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001198}
1199
Dan Gohman475871a2008-07-27 21:46:04 +00001200SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001201 const Value *v = MO.getValue();
1202 assert((!v || isa<PointerType>(v->getType())) &&
1203 "SrcValue is not a pointer?");
1204
1205 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001206 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001207 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001208
1209 void *IP = 0;
1210 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001211 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001212
Dan Gohmanfed90b62008-07-28 21:51:04 +00001213 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001214 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001215 CSEMap.InsertNode(N, IP);
1216 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001217 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001218}
1219
Chris Lattner37ce9df2007-10-15 17:47:20 +00001220/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1221/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001222SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001223 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001224 unsigned ByteSize = VT.getSizeInBits()/8;
1225 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001226 unsigned StackAlign =
1227 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1228
Chris Lattner37ce9df2007-10-15 17:47:20 +00001229 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1230 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1231}
1232
Dan Gohman475871a2008-07-27 21:46:04 +00001233SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1234 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001235 // These setcc operations always fold.
1236 switch (Cond) {
1237 default: break;
1238 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001239 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001240 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001241 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001242
1243 case ISD::SETOEQ:
1244 case ISD::SETOGT:
1245 case ISD::SETOGE:
1246 case ISD::SETOLT:
1247 case ISD::SETOLE:
1248 case ISD::SETONE:
1249 case ISD::SETO:
1250 case ISD::SETUO:
1251 case ISD::SETUEQ:
1252 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001253 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001254 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001255 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001256
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001258 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001259 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001260 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001261
Chris Lattnerc3aae252005-01-07 07:46:32 +00001262 switch (Cond) {
1263 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001264 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1265 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001266 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1267 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1268 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1269 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1270 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1271 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1272 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1273 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001274 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001275 }
Chris Lattner67255a12005-04-07 18:14:58 +00001276 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001277 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1278 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001279 // No compile time operations on this type yet.
1280 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001281 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001282
1283 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001284 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001285 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001286 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1287 return getNode(ISD::UNDEF, VT);
1288 // fall through
1289 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1290 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1291 return getNode(ISD::UNDEF, VT);
1292 // fall through
1293 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001294 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001295 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1296 return getNode(ISD::UNDEF, VT);
1297 // fall through
1298 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1299 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1300 return getNode(ISD::UNDEF, VT);
1301 // fall through
1302 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1303 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1304 return getNode(ISD::UNDEF, VT);
1305 // fall through
1306 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001307 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001308 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1309 return getNode(ISD::UNDEF, VT);
1310 // fall through
1311 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001312 R==APFloat::cmpEqual, VT);
1313 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1314 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1315 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1316 R==APFloat::cmpEqual, VT);
1317 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1318 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1319 R==APFloat::cmpLessThan, VT);
1320 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1321 R==APFloat::cmpUnordered, VT);
1322 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1323 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001324 }
1325 } else {
1326 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001327 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001328 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001329 }
1330
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001331 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001332 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001333}
1334
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001335/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1336/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001337bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001338 unsigned BitWidth = Op.getValueSizeInBits();
1339 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1340}
1341
Dan Gohmanea859be2007-06-22 14:59:07 +00001342/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1343/// this predicate to simplify operations downstream. Mask is known to be zero
1344/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001345bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001346 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001347 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001348 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1349 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1350 return (KnownZero & Mask) == Mask;
1351}
1352
1353/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1354/// known to be either zero or one and return them in the KnownZero/KnownOne
1355/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1356/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001357void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001358 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001359 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001360 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001361 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001362 "Mask size mismatches value type size!");
1363
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001364 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001365 if (Depth == 6 || Mask == 0)
1366 return; // Limit search depth.
1367
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001369
1370 switch (Op.getOpcode()) {
1371 case ISD::Constant:
1372 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001373 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001374 KnownZero = ~KnownOne & Mask;
1375 return;
1376 case ISD::AND:
1377 // If either the LHS or the RHS are Zero, the result is zero.
1378 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001379 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1380 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001381 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1382 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1383
1384 // Output known-1 bits are only known if set in both the LHS & RHS.
1385 KnownOne &= KnownOne2;
1386 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1387 KnownZero |= KnownZero2;
1388 return;
1389 case ISD::OR:
1390 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001391 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1392 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001393 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1394 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1395
1396 // Output known-0 bits are only known if clear in both the LHS & RHS.
1397 KnownZero &= KnownZero2;
1398 // Output known-1 are known to be set if set in either the LHS | RHS.
1399 KnownOne |= KnownOne2;
1400 return;
1401 case ISD::XOR: {
1402 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1403 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1404 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1405 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1406
1407 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001408 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001409 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1410 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1411 KnownZero = KnownZeroOut;
1412 return;
1413 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001414 case ISD::MUL: {
1415 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1416 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1417 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1418 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1419 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1420
1421 // If low bits are zero in either operand, output low known-0 bits.
1422 // Also compute a conserative estimate for high known-0 bits.
1423 // More trickiness is possible, but this is sufficient for the
1424 // interesting case of alignment computation.
1425 KnownOne.clear();
1426 unsigned TrailZ = KnownZero.countTrailingOnes() +
1427 KnownZero2.countTrailingOnes();
1428 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001429 KnownZero2.countLeadingOnes(),
1430 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001431
1432 TrailZ = std::min(TrailZ, BitWidth);
1433 LeadZ = std::min(LeadZ, BitWidth);
1434 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1435 APInt::getHighBitsSet(BitWidth, LeadZ);
1436 KnownZero &= Mask;
1437 return;
1438 }
1439 case ISD::UDIV: {
1440 // For the purposes of computing leading zeros we can conservatively
1441 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001442 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001443 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1444 ComputeMaskedBits(Op.getOperand(0),
1445 AllOnes, KnownZero2, KnownOne2, Depth+1);
1446 unsigned LeadZ = KnownZero2.countLeadingOnes();
1447
1448 KnownOne2.clear();
1449 KnownZero2.clear();
1450 ComputeMaskedBits(Op.getOperand(1),
1451 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001452 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1453 if (RHSUnknownLeadingOnes != BitWidth)
1454 LeadZ = std::min(BitWidth,
1455 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001456
1457 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1458 return;
1459 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001460 case ISD::SELECT:
1461 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1462 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1463 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1464 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1465
1466 // Only known if known in both the LHS and RHS.
1467 KnownOne &= KnownOne2;
1468 KnownZero &= KnownZero2;
1469 return;
1470 case ISD::SELECT_CC:
1471 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1472 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1473 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1474 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1475
1476 // Only known if known in both the LHS and RHS.
1477 KnownOne &= KnownOne2;
1478 KnownZero &= KnownZero2;
1479 return;
1480 case ISD::SETCC:
1481 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001482 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1483 BitWidth > 1)
1484 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001485 return;
1486 case ISD::SHL:
1487 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1488 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001489 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001490
1491 // If the shift count is an invalid immediate, don't do anything.
1492 if (ShAmt >= BitWidth)
1493 return;
1494
1495 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001496 KnownZero, KnownOne, Depth+1);
1497 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001498 KnownZero <<= ShAmt;
1499 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001500 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001501 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001502 }
1503 return;
1504 case ISD::SRL:
1505 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1506 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001507 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001508
Dan Gohmand4cf9922008-02-26 18:50:50 +00001509 // If the shift count is an invalid immediate, don't do anything.
1510 if (ShAmt >= BitWidth)
1511 return;
1512
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001513 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001514 KnownZero, KnownOne, Depth+1);
1515 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001516 KnownZero = KnownZero.lshr(ShAmt);
1517 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001518
Dan Gohman72d2fd52008-02-13 22:43:25 +00001519 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001520 KnownZero |= HighBits; // High bits known zero.
1521 }
1522 return;
1523 case ISD::SRA:
1524 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001525 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001526
Dan Gohmand4cf9922008-02-26 18:50:50 +00001527 // If the shift count is an invalid immediate, don't do anything.
1528 if (ShAmt >= BitWidth)
1529 return;
1530
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001531 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001532 // If any of the demanded bits are produced by the sign extension, we also
1533 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001534 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1535 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001536 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001537
1538 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1539 Depth+1);
1540 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001541 KnownZero = KnownZero.lshr(ShAmt);
1542 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001543
1544 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001545 APInt SignBit = APInt::getSignBit(BitWidth);
1546 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001547
Dan Gohmanca93a432008-02-20 16:30:17 +00001548 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001549 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001550 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001551 KnownOne |= HighBits; // New bits are known one.
1552 }
1553 }
1554 return;
1555 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001556 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1557 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001558
1559 // Sign extension. Compute the demanded bits in the result that are not
1560 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001561 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001562
Dan Gohman977a76f2008-02-13 22:28:48 +00001563 APInt InSignBit = APInt::getSignBit(EBits);
1564 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001565
1566 // If the sign extended bits are demanded, we know that the sign
1567 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001568 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001569 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001570 InputDemandedBits |= InSignBit;
1571
1572 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1573 KnownZero, KnownOne, Depth+1);
1574 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1575
1576 // If the sign bit of the input is known set or clear, then we know the
1577 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001578 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001579 KnownZero |= NewBits;
1580 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001581 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001582 KnownOne |= NewBits;
1583 KnownZero &= ~NewBits;
1584 } else { // Input sign bit unknown
1585 KnownZero &= ~NewBits;
1586 KnownOne &= ~NewBits;
1587 }
1588 return;
1589 }
1590 case ISD::CTTZ:
1591 case ISD::CTLZ:
1592 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001593 unsigned LowBits = Log2_32(BitWidth)+1;
1594 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001595 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001596 return;
1597 }
1598 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001599 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001600 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001601 MVT VT = LD->getMemoryVT();
1602 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001603 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001604 }
1605 return;
1606 }
1607 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001608 MVT InVT = Op.getOperand(0).getValueType();
1609 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001610 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1611 APInt InMask = Mask;
1612 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001613 KnownZero.trunc(InBits);
1614 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001615 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001616 KnownZero.zext(BitWidth);
1617 KnownOne.zext(BitWidth);
1618 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001619 return;
1620 }
1621 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001622 MVT InVT = Op.getOperand(0).getValueType();
1623 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001624 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001625 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1626 APInt InMask = Mask;
1627 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001628
1629 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001630 // bit is demanded. Temporarily set this bit in the mask for our callee.
1631 if (NewBits.getBoolValue())
1632 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001633
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001634 KnownZero.trunc(InBits);
1635 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001636 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1637
1638 // Note if the sign bit is known to be zero or one.
1639 bool SignBitKnownZero = KnownZero.isNegative();
1640 bool SignBitKnownOne = KnownOne.isNegative();
1641 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1642 "Sign bit can't be known to be both zero and one!");
1643
1644 // If the sign bit wasn't actually demanded by our caller, we don't
1645 // want it set in the KnownZero and KnownOne result values. Reset the
1646 // mask and reapply it to the result values.
1647 InMask = Mask;
1648 InMask.trunc(InBits);
1649 KnownZero &= InMask;
1650 KnownOne &= InMask;
1651
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001652 KnownZero.zext(BitWidth);
1653 KnownOne.zext(BitWidth);
1654
Dan Gohman977a76f2008-02-13 22:28:48 +00001655 // If the sign bit is known zero or one, the top bits match.
1656 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001657 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001658 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001659 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001660 return;
1661 }
1662 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001663 MVT InVT = Op.getOperand(0).getValueType();
1664 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001665 APInt InMask = Mask;
1666 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001667 KnownZero.trunc(InBits);
1668 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001669 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001670 KnownZero.zext(BitWidth);
1671 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001672 return;
1673 }
1674 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001675 MVT InVT = Op.getOperand(0).getValueType();
1676 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001677 APInt InMask = Mask;
1678 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001679 KnownZero.zext(InBits);
1680 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001681 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001682 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001683 KnownZero.trunc(BitWidth);
1684 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001685 break;
1686 }
1687 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001688 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1689 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001690 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1691 KnownOne, Depth+1);
1692 KnownZero |= (~InMask) & Mask;
1693 return;
1694 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001695 case ISD::FGETSIGN:
1696 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001697 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001698 return;
1699
Dan Gohman23e8b712008-04-28 17:02:21 +00001700 case ISD::SUB: {
1701 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1702 // We know that the top bits of C-X are clear if X contains less bits
1703 // than C (i.e. no wrap-around can happen). For example, 20-X is
1704 // positive if we can prove that X is >= 0 and < 16.
1705 if (CLHS->getAPIntValue().isNonNegative()) {
1706 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1707 // NLZ can't be BitWidth with no sign bit
1708 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1709 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1710 Depth+1);
1711
1712 // If all of the MaskV bits are known to be zero, then we know the
1713 // output top bits are zero, because we now know that the output is
1714 // from [0-C].
1715 if ((KnownZero2 & MaskV) == MaskV) {
1716 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1717 // Top bits known zero.
1718 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1719 }
1720 }
1721 }
1722 }
1723 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001724 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001725 // Output known-0 bits are known if clear or set in both the low clear bits
1726 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1727 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001728 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1729 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1730 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1731 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1732
1733 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1734 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1735 KnownZeroOut = std::min(KnownZeroOut,
1736 KnownZero2.countTrailingOnes());
1737
1738 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001739 return;
1740 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001741 case ISD::SREM:
1742 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001743 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001744 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001745 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001746 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1747 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001748
Dan Gohmana60832b2008-08-13 23:12:35 +00001749 // If the sign bit of the first operand is zero, the sign bit of
1750 // the result is zero. If the first operand has no one bits below
1751 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001752 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1753 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001754
Dan Gohman23e8b712008-04-28 17:02:21 +00001755 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001756
1757 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001758 }
1759 }
1760 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001761 case ISD::UREM: {
1762 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001763 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001764 if (RA.isPowerOf2()) {
1765 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001766 APInt Mask2 = LowBits & Mask;
1767 KnownZero |= ~LowBits & Mask;
1768 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1769 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1770 break;
1771 }
1772 }
1773
1774 // Since the result is less than or equal to either operand, any leading
1775 // zero bits in either operand must also exist in the result.
1776 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1777 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1778 Depth+1);
1779 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1780 Depth+1);
1781
1782 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1783 KnownZero2.countLeadingOnes());
1784 KnownOne.clear();
1785 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1786 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001787 }
1788 default:
1789 // Allow the target to implement this method for its nodes.
1790 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1791 case ISD::INTRINSIC_WO_CHAIN:
1792 case ISD::INTRINSIC_W_CHAIN:
1793 case ISD::INTRINSIC_VOID:
1794 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1795 }
1796 return;
1797 }
1798}
1799
1800/// ComputeNumSignBits - Return the number of times the sign bit of the
1801/// register is replicated into the other bits. We know that at least 1 bit
1802/// is always equal to the sign bit (itself), but other cases can give us
1803/// information. For example, immediately after an "SRA X, 2", we know that
1804/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001805unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001806 MVT VT = Op.getValueType();
1807 assert(VT.isInteger() && "Invalid VT!");
1808 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001809 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001810 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001811
1812 if (Depth == 6)
1813 return 1; // Limit search depth.
1814
1815 switch (Op.getOpcode()) {
1816 default: break;
1817 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001818 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001819 return VTBits-Tmp+1;
1820 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001821 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001822 return VTBits-Tmp;
1823
1824 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001825 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1826 // If negative, return # leading ones.
1827 if (Val.isNegative())
1828 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001829
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001830 // Return # leading zeros.
1831 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001832 }
1833
1834 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001835 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001836 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1837
1838 case ISD::SIGN_EXTEND_INREG:
1839 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001840 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001841 Tmp = VTBits-Tmp+1;
1842
1843 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1844 return std::max(Tmp, Tmp2);
1845
1846 case ISD::SRA:
1847 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1848 // SRA X, C -> adds C sign bits.
1849 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001850 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001851 if (Tmp > VTBits) Tmp = VTBits;
1852 }
1853 return Tmp;
1854 case ISD::SHL:
1855 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1856 // shl destroys sign bits.
1857 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001858 if (C->getZExtValue() >= VTBits || // Bad shift.
1859 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1860 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001861 }
1862 break;
1863 case ISD::AND:
1864 case ISD::OR:
1865 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001866 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001867 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001868 if (Tmp != 1) {
1869 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1870 FirstAnswer = std::min(Tmp, Tmp2);
1871 // We computed what we know about the sign bits as our first
1872 // answer. Now proceed to the generic code that uses
1873 // ComputeMaskedBits, and pick whichever answer is better.
1874 }
1875 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001876
1877 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001878 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001879 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001880 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001881 return std::min(Tmp, Tmp2);
1882
1883 case ISD::SETCC:
1884 // If setcc returns 0/-1, all bits are sign bits.
1885 if (TLI.getSetCCResultContents() ==
1886 TargetLowering::ZeroOrNegativeOneSetCCResult)
1887 return VTBits;
1888 break;
1889 case ISD::ROTL:
1890 case ISD::ROTR:
1891 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001892 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001893
1894 // Handle rotate right by N like a rotate left by 32-N.
1895 if (Op.getOpcode() == ISD::ROTR)
1896 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1897
1898 // If we aren't rotating out all of the known-in sign bits, return the
1899 // number that are left. This handles rotl(sext(x), 1) for example.
1900 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1901 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1902 }
1903 break;
1904 case ISD::ADD:
1905 // Add can have at most one carry bit. Thus we know that the output
1906 // is, at worst, one more bit than the inputs.
1907 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1908 if (Tmp == 1) return 1; // Early out.
1909
1910 // Special case decrementing a value (ADD X, -1):
1911 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1912 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001913 APInt KnownZero, KnownOne;
1914 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001915 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1916
1917 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1918 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001919 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001920 return VTBits;
1921
1922 // If we are subtracting one from a positive number, there is no carry
1923 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001924 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001925 return Tmp;
1926 }
1927
1928 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1929 if (Tmp2 == 1) return 1;
1930 return std::min(Tmp, Tmp2)-1;
1931 break;
1932
1933 case ISD::SUB:
1934 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1935 if (Tmp2 == 1) return 1;
1936
1937 // Handle NEG.
1938 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001939 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001940 APInt KnownZero, KnownOne;
1941 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001942 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1943 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1944 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001945 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001946 return VTBits;
1947
1948 // If the input is known to be positive (the sign bit is known clear),
1949 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001950 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001951 return Tmp2;
1952
1953 // Otherwise, we treat this like a SUB.
1954 }
1955
1956 // Sub can have at most one carry bit. Thus we know that the output
1957 // is, at worst, one more bit than the inputs.
1958 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1959 if (Tmp == 1) return 1; // Early out.
1960 return std::min(Tmp, Tmp2)-1;
1961 break;
1962 case ISD::TRUNCATE:
1963 // FIXME: it's tricky to do anything useful for this, but it is an important
1964 // case for targets like X86.
1965 break;
1966 }
1967
1968 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1969 if (Op.getOpcode() == ISD::LOAD) {
1970 LoadSDNode *LD = cast<LoadSDNode>(Op);
1971 unsigned ExtType = LD->getExtensionType();
1972 switch (ExtType) {
1973 default: break;
1974 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001975 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001976 return VTBits-Tmp+1;
1977 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001978 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001979 return VTBits-Tmp;
1980 }
1981 }
1982
1983 // Allow the target to implement this method for its nodes.
1984 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1985 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1986 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1987 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1988 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00001989 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001990 }
1991
1992 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1993 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001994 APInt KnownZero, KnownOne;
1995 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001996 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1997
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001998 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001999 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002000 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002001 Mask = KnownOne;
2002 } else {
2003 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002004 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002005 }
2006
2007 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2008 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002009 Mask = ~Mask;
2010 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002011 // Return # leading zeros. We use 'min' here in case Val was zero before
2012 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002013 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002014}
2015
Chris Lattner51dabfb2006-10-14 00:41:01 +00002016
Dan Gohman475871a2008-07-27 21:46:04 +00002017bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002018 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2019 if (!GA) return false;
2020 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2021 if (!GV) return false;
2022 MachineModuleInfo *MMI = getMachineModuleInfo();
2023 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2024}
2025
2026
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002027/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2028/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002029SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002030 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue PermMask = N->getOperand(2);
2032 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002033 if (Idx.getOpcode() == ISD::UNDEF)
2034 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002035 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002036 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002037 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002038 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002039
2040 if (V.getOpcode() == ISD::BIT_CONVERT) {
2041 V = V.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002042 if (V.getValueType().getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002043 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002044 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002045 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002046 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002047 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002048 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002049 return V.getOperand(Index);
2050 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002051 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002052 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002053}
2054
2055
Chris Lattnerc3aae252005-01-07 07:46:32 +00002056/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002057///
Dan Gohman475871a2008-07-27 21:46:04 +00002058SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002059 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002060 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002061 void *IP = 0;
2062 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002063 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002064 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002065 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002066 CSEMap.InsertNode(N, IP);
2067
2068 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002069#ifndef NDEBUG
2070 VerifyNode(N);
2071#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002072 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002073}
2074
Dan Gohman475871a2008-07-27 21:46:04 +00002075SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002076 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002077 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002078 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002079 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002080 switch (Opcode) {
2081 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002082 case ISD::SIGN_EXTEND:
2083 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002084 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002085 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002086 case ISD::TRUNCATE:
2087 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002088 case ISD::UINT_TO_FP:
2089 case ISD::SINT_TO_FP: {
2090 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002091 // No compile time operations on this type.
2092 if (VT==MVT::ppcf128)
2093 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002094 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2095 (void)apf.convertFromAPInt(Val,
2096 Opcode==ISD::SINT_TO_FP,
2097 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002098 return getConstantFP(apf, VT);
2099 }
Chris Lattner94683772005-12-23 05:30:37 +00002100 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002101 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002102 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002103 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002104 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002105 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002106 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002107 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002108 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002109 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002110 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002111 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002112 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002113 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002114 }
2115 }
2116
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002117 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002118 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002119 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002120 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002121 switch (Opcode) {
2122 case ISD::FNEG:
2123 V.changeSign();
2124 return getConstantFP(V, VT);
2125 case ISD::FABS:
2126 V.clearSign();
2127 return getConstantFP(V, VT);
2128 case ISD::FP_ROUND:
Dale Johannesen23a98552008-10-09 23:00:39 +00002129 case ISD::FP_EXTEND: {
2130 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002131 // This can return overflow, underflow, or inexact; we don't care.
2132 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002133 (void)V.convert(*MVTToAPFloatSemantics(VT),
Dale Johannesen23a98552008-10-09 23:00:39 +00002134 APFloat::rmNearestTiesToEven, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002135 return getConstantFP(V, VT);
Dale Johannesen23a98552008-10-09 23:00:39 +00002136 }
Dale Johannesendb44bf82007-10-16 23:38:29 +00002137 case ISD::FP_TO_SINT:
2138 case ISD::FP_TO_UINT: {
2139 integerPart x;
Dale Johannesen23a98552008-10-09 23:00:39 +00002140 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002141 assert(integerPartWidth >= 64);
2142 // FIXME need to be more flexible about rounding mode.
2143 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2144 Opcode==ISD::FP_TO_SINT,
Dale Johannesen23a98552008-10-09 23:00:39 +00002145 APFloat::rmTowardZero, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002146 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2147 break;
2148 return getConstant(x, VT);
2149 }
2150 case ISD::BIT_CONVERT:
2151 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Dale Johannesen23a98552008-10-09 23:00:39 +00002152 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002153 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Dale Johannesen23a98552008-10-09 23:00:39 +00002154 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002155 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002156 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002157 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002158 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002159
Gabor Greifba36cb52008-08-28 21:40:38 +00002160 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002161 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002162 case ISD::TokenFactor:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002163 case ISD::CONCAT_VECTORS:
2164 return Operand; // Factor or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002165 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002166 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002167 assert(VT.isFloatingPoint() &&
2168 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002169 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002170 if (Operand.getOpcode() == ISD::UNDEF)
2171 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002172 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002173 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002174 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002175 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002176 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002177 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002178 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002179 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002180 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002181 break;
2182 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002183 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002184 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002185 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002186 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002187 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002188 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002189 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002190 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002191 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002192 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002193 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002194 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002195 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002196 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002197 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2198 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002199 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002200 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002201 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002202 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002203 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002204 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002205 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002206 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002207 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002208 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002209 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2210 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002211 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002212 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2213 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2214 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2215 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002216 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002217 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002218 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002219 break;
Chris Lattner35481892005-12-23 00:16:34 +00002220 case ISD::BIT_CONVERT:
2221 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002222 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002223 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002224 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002225 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2226 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002227 if (OpOpcode == ISD::UNDEF)
2228 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002229 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002230 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002231 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2232 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002233 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002234 if (OpOpcode == ISD::UNDEF)
2235 return getNode(ISD::UNDEF, VT);
2236 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2237 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2238 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2239 Operand.getConstantOperandVal(1) == 0 &&
2240 Operand.getOperand(0).getValueType() == VT)
2241 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002242 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002243 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002244 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002245 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2246 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002247 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002248 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002249 break;
2250 case ISD::FABS:
2251 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002252 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002253 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002254 }
2255
Chris Lattner43247a12005-08-25 19:12:10 +00002256 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002257 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002258 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002259 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002260 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002261 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002262 void *IP = 0;
2263 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002264 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002265 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002266 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002267 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002268 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002269 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002270 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002271 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002272
Chris Lattnerc3aae252005-01-07 07:46:32 +00002273 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002274#ifndef NDEBUG
2275 VerifyNode(N);
2276#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002277 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002278}
2279
Bill Wendling688d1c42008-09-24 10:16:24 +00002280SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2281 MVT VT,
2282 ConstantSDNode *Cst1,
2283 ConstantSDNode *Cst2) {
2284 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2285
2286 switch (Opcode) {
2287 case ISD::ADD: return getConstant(C1 + C2, VT);
2288 case ISD::SUB: return getConstant(C1 - C2, VT);
2289 case ISD::MUL: return getConstant(C1 * C2, VT);
2290 case ISD::UDIV:
2291 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2292 break;
2293 case ISD::UREM:
2294 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2295 break;
2296 case ISD::SDIV:
2297 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2298 break;
2299 case ISD::SREM:
2300 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2301 break;
2302 case ISD::AND: return getConstant(C1 & C2, VT);
2303 case ISD::OR: return getConstant(C1 | C2, VT);
2304 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2305 case ISD::SHL: return getConstant(C1 << C2, VT);
2306 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2307 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2308 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2309 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2310 default: break;
2311 }
2312
2313 return SDValue();
2314}
2315
Dan Gohman475871a2008-07-27 21:46:04 +00002316SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2317 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002318 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2319 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002320 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002321 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002322 case ISD::TokenFactor:
2323 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2324 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002325 // Fold trivial token factors.
2326 if (N1.getOpcode() == ISD::EntryToken) return N2;
2327 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002328 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002329 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002330 case ISD::CONCAT_VECTORS:
2331 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2332 // one big BUILD_VECTOR.
2333 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2334 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002335 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2336 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002337 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2338 }
2339 break;
Chris Lattner76365122005-01-16 02:23:22 +00002340 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002341 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002342 N1.getValueType() == VT && "Binary operator types must match!");
2343 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2344 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002345 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002346 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002347 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2348 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002349 break;
Chris Lattner76365122005-01-16 02:23:22 +00002350 case ISD::OR:
2351 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002352 case ISD::ADD:
2353 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002354 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002355 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002356 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2357 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002358 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002359 return N1;
2360 break;
Chris Lattner76365122005-01-16 02:23:22 +00002361 case ISD::UDIV:
2362 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002363 case ISD::MULHU:
2364 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002365 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002366 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002367 case ISD::MUL:
2368 case ISD::SDIV:
2369 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002370 case ISD::FADD:
2371 case ISD::FSUB:
2372 case ISD::FMUL:
2373 case ISD::FDIV:
2374 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002375 assert(N1.getValueType() == N2.getValueType() &&
2376 N1.getValueType() == VT && "Binary operator types must match!");
2377 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002378 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2379 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002380 N1.getValueType().isFloatingPoint() &&
2381 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002382 "Invalid FCOPYSIGN!");
2383 break;
Chris Lattner76365122005-01-16 02:23:22 +00002384 case ISD::SHL:
2385 case ISD::SRA:
2386 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002387 case ISD::ROTL:
2388 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002389 assert(VT == N1.getValueType() &&
2390 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002391 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002392 "Shifts only work on integers");
2393
2394 // Always fold shifts of i1 values so the code generator doesn't need to
2395 // handle them. Since we know the size of the shift has to be less than the
2396 // size of the value, the shift/rotate count is guaranteed to be zero.
2397 if (VT == MVT::i1)
2398 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002399 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002400 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002401 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002402 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002403 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002404 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002405 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002406 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002407 break;
2408 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002409 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002410 assert(VT.isFloatingPoint() &&
2411 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002412 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002413 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002414 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002415 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002416 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002417 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002418 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002419 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002420 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002421 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002422 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002423 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002424 break;
2425 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002426 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002427 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002428 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002429 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002430 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002431 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002432 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002433
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002434 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002435 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002436 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002437 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002438 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002439 return getConstant(Val, VT);
2440 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002441 break;
2442 }
2443 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002444 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2445 if (N1.getOpcode() == ISD::UNDEF)
2446 return getNode(ISD::UNDEF, VT);
2447
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002448 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2449 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002450 if (N2C &&
2451 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002452 N1.getNumOperands() > 0) {
2453 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002454 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002455 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002456 N1.getOperand(N2C->getZExtValue() / Factor),
2457 getConstant(N2C->getZExtValue() % Factor,
2458 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002459 }
2460
2461 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2462 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002463 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002464 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002465
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002466 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2467 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002468 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2469 if (N1.getOperand(2) == N2)
2470 return N1.getOperand(1);
2471 else
2472 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2473 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002474 break;
2475 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002476 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002477 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2478 (N1.getValueType().isInteger() == VT.isInteger()) &&
2479 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002480
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002481 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2482 // 64-bit integers into 32-bit parts. Instead of building the extract of
2483 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2484 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002485 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002486
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002487 // EXTRACT_ELEMENT of a constant int is also very common.
2488 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002489 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002490 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002491 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2492 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002493 }
2494 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002495 case ISD::EXTRACT_SUBVECTOR:
2496 if (N1.getValueType() == VT) // Trivial extraction.
2497 return N1;
2498 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002499 }
2500
2501 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002502 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002503 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2504 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002505 } else { // Cannonicalize constant to RHS if commutative
2506 if (isCommutativeBinOp(Opcode)) {
2507 std::swap(N1C, N2C);
2508 std::swap(N1, N2);
2509 }
2510 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002511 }
2512
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002513 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002514 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2515 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002516 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002517 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2518 // Cannonicalize constant to RHS if commutative
2519 std::swap(N1CFP, N2CFP);
2520 std::swap(N1, N2);
2521 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002522 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2523 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002524 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002525 case ISD::FADD:
2526 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002527 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002528 return getConstantFP(V1, VT);
2529 break;
2530 case ISD::FSUB:
2531 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2532 if (s!=APFloat::opInvalidOp)
2533 return getConstantFP(V1, VT);
2534 break;
2535 case ISD::FMUL:
2536 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2537 if (s!=APFloat::opInvalidOp)
2538 return getConstantFP(V1, VT);
2539 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002540 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002541 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2542 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2543 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002544 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002545 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002546 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2547 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2548 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002549 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002550 case ISD::FCOPYSIGN:
2551 V1.copySign(V2);
2552 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002553 default: break;
2554 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002555 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002556 }
Chris Lattner62b57722006-04-20 05:39:12 +00002557
2558 // Canonicalize an UNDEF to the RHS, even over a constant.
2559 if (N1.getOpcode() == ISD::UNDEF) {
2560 if (isCommutativeBinOp(Opcode)) {
2561 std::swap(N1, N2);
2562 } else {
2563 switch (Opcode) {
2564 case ISD::FP_ROUND_INREG:
2565 case ISD::SIGN_EXTEND_INREG:
2566 case ISD::SUB:
2567 case ISD::FSUB:
2568 case ISD::FDIV:
2569 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002570 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002571 return N1; // fold op(undef, arg2) -> undef
2572 case ISD::UDIV:
2573 case ISD::SDIV:
2574 case ISD::UREM:
2575 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002576 case ISD::SRL:
2577 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002578 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002579 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2580 // For vectors, we can't easily build an all zero vector, just return
2581 // the LHS.
2582 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002583 }
2584 }
2585 }
2586
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002587 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002588 if (N2.getOpcode() == ISD::UNDEF) {
2589 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002590 case ISD::XOR:
2591 if (N1.getOpcode() == ISD::UNDEF)
2592 // Handle undef ^ undef -> 0 special case. This is a common
2593 // idiom (misuse).
2594 return getConstant(0, VT);
2595 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002596 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002597 case ISD::ADDC:
2598 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002599 case ISD::SUB:
2600 case ISD::FADD:
2601 case ISD::FSUB:
2602 case ISD::FMUL:
2603 case ISD::FDIV:
2604 case ISD::FREM:
2605 case ISD::UDIV:
2606 case ISD::SDIV:
2607 case ISD::UREM:
2608 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002609 return N2; // fold op(arg1, undef) -> undef
2610 case ISD::MUL:
2611 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002612 case ISD::SRL:
2613 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002614 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002615 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2616 // For vectors, we can't easily build an all zero vector, just return
2617 // the LHS.
2618 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002619 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002620 if (!VT.isVector())
2621 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002622 // For vectors, we can't easily build an all one vector, just return
2623 // the LHS.
2624 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002625 case ISD::SRA:
2626 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002627 }
2628 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002629
Chris Lattner27e9b412005-05-11 18:57:39 +00002630 // Memoize this node if possible.
2631 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002632 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002633 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002634 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002635 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002636 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002637 void *IP = 0;
2638 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002639 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002640 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002641 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002642 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002643 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002644 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002645 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002646 }
2647
Chris Lattnerc3aae252005-01-07 07:46:32 +00002648 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002649#ifndef NDEBUG
2650 VerifyNode(N);
2651#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002652 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002653}
2654
Dan Gohman475871a2008-07-27 21:46:04 +00002655SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2656 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002657 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002658 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2659 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002660 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002661 case ISD::CONCAT_VECTORS:
2662 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2663 // one big BUILD_VECTOR.
2664 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2665 N2.getOpcode() == ISD::BUILD_VECTOR &&
2666 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002667 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2668 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2669 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002670 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2671 }
2672 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002673 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002674 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002675 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002676 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002677 break;
2678 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002679 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002680 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002681 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002682 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002683 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002684 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002685 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002686
2687 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002688 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002689 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002690 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002691 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002692 return getNode(ISD::BR, MVT::Other, N1, N3);
2693 else
2694 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002695 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002696 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002697 case ISD::VECTOR_SHUFFLE:
2698 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002699 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002700 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002701 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002702 "Illegal VECTOR_SHUFFLE node!");
2703 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002704 case ISD::BIT_CONVERT:
2705 // Fold bit_convert nodes from a type to themselves.
2706 if (N1.getValueType() == VT)
2707 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002708 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002709 }
2710
Chris Lattner43247a12005-08-25 19:12:10 +00002711 // Memoize node if it doesn't produce a flag.
2712 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002713 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002714 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002715 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002716 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002717 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002718 void *IP = 0;
2719 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002720 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002721 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002722 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002723 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002724 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002725 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002726 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002727 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002728 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002729#ifndef NDEBUG
2730 VerifyNode(N);
2731#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002732 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002733}
2734
Dan Gohman475871a2008-07-27 21:46:04 +00002735SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2736 SDValue N1, SDValue N2, SDValue N3,
2737 SDValue N4) {
2738 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002739 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002740}
2741
Dan Gohman475871a2008-07-27 21:46:04 +00002742SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2743 SDValue N1, SDValue N2, SDValue N3,
2744 SDValue N4, SDValue N5) {
2745 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002746 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002747}
2748
Dan Gohman707e0182008-04-12 04:36:06 +00002749/// getMemsetValue - Vectorized representation of the memset value
2750/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002751static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002752 unsigned NumBits = VT.isVector() ?
2753 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002754 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002755 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002756 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002757 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002758 Val = (Val << Shift) | Val;
2759 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002760 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002761 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002762 return DAG.getConstant(Val, VT);
2763 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002764 }
Evan Chengf0df0312008-05-15 08:39:06 +00002765
2766 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2767 unsigned Shift = 8;
2768 for (unsigned i = NumBits; i > 8; i >>= 1) {
2769 Value = DAG.getNode(ISD::OR, VT,
2770 DAG.getNode(ISD::SHL, VT, Value,
2771 DAG.getConstant(Shift, MVT::i8)), Value);
2772 Shift <<= 1;
2773 }
2774
2775 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002776}
2777
Dan Gohman707e0182008-04-12 04:36:06 +00002778/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2779/// used when a memcpy is turned into a memset when the source is a constant
2780/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002781static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002782 const TargetLowering &TLI,
2783 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002784 // Handle vector with all elements zero.
2785 if (Str.empty()) {
2786 if (VT.isInteger())
2787 return DAG.getConstant(0, VT);
2788 unsigned NumElts = VT.getVectorNumElements();
2789 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2790 return DAG.getNode(ISD::BIT_CONVERT, VT,
2791 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2792 }
2793
Duncan Sands83ec4b62008-06-06 12:08:01 +00002794 assert(!VT.isVector() && "Can't handle vector type here!");
2795 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002796 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002797 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002798 if (TLI.isLittleEndian())
2799 Offset = Offset + MSB - 1;
2800 for (unsigned i = 0; i != MSB; ++i) {
2801 Val = (Val << 8) | (unsigned char)Str[Offset];
2802 Offset += TLI.isLittleEndian() ? -1 : 1;
2803 }
2804 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002805}
2806
Dan Gohman707e0182008-04-12 04:36:06 +00002807/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002808///
Dan Gohman475871a2008-07-27 21:46:04 +00002809static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002810 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002811 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002812 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2813}
2814
Evan Chengf0df0312008-05-15 08:39:06 +00002815/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2816///
Dan Gohman475871a2008-07-27 21:46:04 +00002817static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002818 unsigned SrcDelta = 0;
2819 GlobalAddressSDNode *G = NULL;
2820 if (Src.getOpcode() == ISD::GlobalAddress)
2821 G = cast<GlobalAddressSDNode>(Src);
2822 else if (Src.getOpcode() == ISD::ADD &&
2823 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2824 Src.getOperand(1).getOpcode() == ISD::Constant) {
2825 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002826 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002827 }
2828 if (!G)
2829 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002830
Evan Chengf0df0312008-05-15 08:39:06 +00002831 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002832 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2833 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002834
Evan Chengf0df0312008-05-15 08:39:06 +00002835 return false;
2836}
Dan Gohman707e0182008-04-12 04:36:06 +00002837
Evan Chengf0df0312008-05-15 08:39:06 +00002838/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2839/// to replace the memset / memcpy is below the threshold. It also returns the
2840/// types of the sequence of memory ops to perform memset / memcpy.
2841static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002842bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002843 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002844 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002845 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002846 SelectionDAG &DAG,
2847 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002848 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002849 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002850 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002851 MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002852 if (VT != MVT::iAny) {
2853 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002855 // If source is a string constant, this will require an unaligned load.
2856 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2857 if (Dst.getOpcode() != ISD::FrameIndex) {
2858 // Can't change destination alignment. It requires a unaligned store.
2859 if (AllowUnalign)
2860 VT = MVT::iAny;
2861 } else {
2862 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2863 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2864 if (MFI->isFixedObjectIndex(FI)) {
2865 // Can't change destination alignment. It requires a unaligned store.
2866 if (AllowUnalign)
2867 VT = MVT::iAny;
2868 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002869 // Give the stack frame object a larger alignment if needed.
2870 if (MFI->getObjectAlignment(FI) < NewAlign)
2871 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002872 Align = NewAlign;
2873 }
2874 }
2875 }
2876 }
2877
2878 if (VT == MVT::iAny) {
2879 if (AllowUnalign) {
2880 VT = MVT::i64;
2881 } else {
2882 switch (Align & 7) {
2883 case 0: VT = MVT::i64; break;
2884 case 4: VT = MVT::i32; break;
2885 case 2: VT = MVT::i16; break;
2886 default: VT = MVT::i8; break;
2887 }
2888 }
2889
Duncan Sands83ec4b62008-06-06 12:08:01 +00002890 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002891 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002892 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2893 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002894
Duncan Sands8e4eb092008-06-08 20:54:56 +00002895 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002896 VT = LVT;
2897 }
Dan Gohman707e0182008-04-12 04:36:06 +00002898
2899 unsigned NumMemOps = 0;
2900 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002901 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002902 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002903 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002904 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002905 VT = MVT::i64;
2906 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002907 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2908 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002909 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002910 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002911 VTSize >>= 1;
2912 }
Dan Gohman707e0182008-04-12 04:36:06 +00002913 }
Dan Gohman707e0182008-04-12 04:36:06 +00002914
2915 if (++NumMemOps > Limit)
2916 return false;
2917 MemOps.push_back(VT);
2918 Size -= VTSize;
2919 }
2920
2921 return true;
2922}
2923
Dan Gohman475871a2008-07-27 21:46:04 +00002924static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2925 SDValue Chain, SDValue Dst,
2926 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002927 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002928 const Value *DstSV, uint64_t DstSVOff,
2929 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002930 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2931
Dan Gohman21323f32008-05-29 19:42:22 +00002932 // Expand memcpy to a series of load and store ops if the size operand falls
2933 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002934 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002935 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002936 if (!AlwaysInline)
2937 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002938 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002939 std::string Str;
2940 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002941 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002942 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002943 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002944
Dan Gohman707e0182008-04-12 04:36:06 +00002945
Evan Cheng0ff39b32008-06-30 07:31:25 +00002946 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00002947 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00002948 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00002949 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002950 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002951 MVT VT = MemOps[i];
2952 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00002953 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00002954
Evan Cheng0ff39b32008-06-30 07:31:25 +00002955 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00002956 // It's unlikely a store of a vector immediate can be done in a single
2957 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002958 // We also handle store a vector with all zero's.
2959 // FIXME: Handle other cases where store of vector immediate is done in
2960 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002961 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002962 Store = DAG.getStore(Chain, Value,
2963 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00002964 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002965 } else {
2966 Value = DAG.getLoad(VT, Chain,
2967 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002968 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002969 Store = DAG.getStore(Chain, Value,
2970 getMemBasePlusOffset(Dst, DstOff, DAG),
2971 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002972 }
2973 OutChains.push_back(Store);
2974 SrcOff += VTSize;
2975 DstOff += VTSize;
2976 }
2977
2978 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2979 &OutChains[0], OutChains.size());
2980}
2981
Dan Gohman475871a2008-07-27 21:46:04 +00002982static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
2983 SDValue Chain, SDValue Dst,
2984 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00002985 unsigned Align, bool AlwaysInline,
2986 const Value *DstSV, uint64_t DstSVOff,
2987 const Value *SrcSV, uint64_t SrcSVOff){
2988 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2989
2990 // Expand memmove to a series of load and store ops if the size operand falls
2991 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002992 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002993 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00002994 if (!AlwaysInline)
2995 Limit = TLI.getMaxStoresPerMemmove();
2996 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002997 std::string Str;
2998 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00002999 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003000 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003001 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003002
Dan Gohman21323f32008-05-29 19:42:22 +00003003 uint64_t SrcOff = 0, DstOff = 0;
3004
Dan Gohman475871a2008-07-27 21:46:04 +00003005 SmallVector<SDValue, 8> LoadValues;
3006 SmallVector<SDValue, 8> LoadChains;
3007 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003008 unsigned NumMemOps = MemOps.size();
3009 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003010 MVT VT = MemOps[i];
3011 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003012 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003013
3014 Value = DAG.getLoad(VT, Chain,
3015 getMemBasePlusOffset(Src, SrcOff, DAG),
3016 SrcSV, SrcSVOff + SrcOff, false, Align);
3017 LoadValues.push_back(Value);
3018 LoadChains.push_back(Value.getValue(1));
3019 SrcOff += VTSize;
3020 }
3021 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3022 &LoadChains[0], LoadChains.size());
3023 OutChains.clear();
3024 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003025 MVT VT = MemOps[i];
3026 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003027 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003028
3029 Store = DAG.getStore(Chain, LoadValues[i],
3030 getMemBasePlusOffset(Dst, DstOff, DAG),
3031 DstSV, DstSVOff + DstOff, false, DstAlign);
3032 OutChains.push_back(Store);
3033 DstOff += VTSize;
3034 }
3035
3036 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3037 &OutChains[0], OutChains.size());
3038}
3039
Dan Gohman475871a2008-07-27 21:46:04 +00003040static SDValue getMemsetStores(SelectionDAG &DAG,
3041 SDValue Chain, SDValue Dst,
3042 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003043 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003044 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003045 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3046
3047 // Expand memset to a series of load/store ops if the size operand
3048 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003049 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003050 std::string Str;
3051 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003052 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003053 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003054 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003055
Dan Gohman475871a2008-07-27 21:46:04 +00003056 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003057 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003058
3059 unsigned NumMemOps = MemOps.size();
3060 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003061 MVT VT = MemOps[i];
3062 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003063 SDValue Value = getMemsetValue(Src, VT, DAG);
3064 SDValue Store = DAG.getStore(Chain, Value,
Dan Gohman707e0182008-04-12 04:36:06 +00003065 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003066 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003067 OutChains.push_back(Store);
3068 DstOff += VTSize;
3069 }
3070
3071 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3072 &OutChains[0], OutChains.size());
3073}
3074
Dan Gohman475871a2008-07-27 21:46:04 +00003075SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3076 SDValue Src, SDValue Size,
3077 unsigned Align, bool AlwaysInline,
3078 const Value *DstSV, uint64_t DstSVOff,
3079 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003080
3081 // Check to see if we should lower the memcpy to loads and stores first.
3082 // For cases within the target-specified limits, this is the best choice.
3083 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3084 if (ConstantSize) {
3085 // Memcpy with size zero? Just return the original chain.
3086 if (ConstantSize->isNullValue())
3087 return Chain;
3088
Dan Gohman475871a2008-07-27 21:46:04 +00003089 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003090 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3091 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003092 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003093 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003094 return Result;
3095 }
3096
3097 // Then check to see if we should lower the memcpy with target-specific
3098 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003099 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003100 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3101 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003102 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003103 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003104 return Result;
3105
3106 // If we really need inline code and the target declined to provide it,
3107 // use a (potentially long) sequence of loads and stores.
3108 if (AlwaysInline) {
3109 assert(ConstantSize && "AlwaysInline requires a constant size!");
3110 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003111 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003112 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003113 }
3114
3115 // Emit a library call.
3116 TargetLowering::ArgListTy Args;
3117 TargetLowering::ArgListEntry Entry;
3118 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3119 Entry.Node = Dst; Args.push_back(Entry);
3120 Entry.Node = Src; Args.push_back(Entry);
3121 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003122 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003123 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003124 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003125 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003126 Args, *this);
3127 return CallResult.second;
3128}
3129
Dan Gohman475871a2008-07-27 21:46:04 +00003130SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3131 SDValue Src, SDValue Size,
3132 unsigned Align,
3133 const Value *DstSV, uint64_t DstSVOff,
3134 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003135
Dan Gohman21323f32008-05-29 19:42:22 +00003136 // Check to see if we should lower the memmove to loads and stores first.
3137 // For cases within the target-specified limits, this is the best choice.
3138 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3139 if (ConstantSize) {
3140 // Memmove with size zero? Just return the original chain.
3141 if (ConstantSize->isNullValue())
3142 return Chain;
3143
Dan Gohman475871a2008-07-27 21:46:04 +00003144 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003145 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3146 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003147 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003148 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003149 return Result;
3150 }
Dan Gohman707e0182008-04-12 04:36:06 +00003151
3152 // Then check to see if we should lower the memmove with target-specific
3153 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003154 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003155 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003156 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003157 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003158 return Result;
3159
3160 // Emit a library call.
3161 TargetLowering::ArgListTy Args;
3162 TargetLowering::ArgListEntry Entry;
3163 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3164 Entry.Node = Dst; Args.push_back(Entry);
3165 Entry.Node = Src; Args.push_back(Entry);
3166 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003167 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003168 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003169 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003170 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003171 Args, *this);
3172 return CallResult.second;
3173}
3174
Dan Gohman475871a2008-07-27 21:46:04 +00003175SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3176 SDValue Src, SDValue Size,
3177 unsigned Align,
3178 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003179
3180 // Check to see if we should lower the memset to stores first.
3181 // For cases within the target-specified limits, this is the best choice.
3182 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3183 if (ConstantSize) {
3184 // Memset with size zero? Just return the original chain.
3185 if (ConstantSize->isNullValue())
3186 return Chain;
3187
Dan Gohman475871a2008-07-27 21:46:04 +00003188 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003189 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3190 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003192 return Result;
3193 }
3194
3195 // Then check to see if we should lower the memset with target-specific
3196 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003197 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003198 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003199 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003200 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003201 return Result;
3202
3203 // Emit a library call.
3204 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3205 TargetLowering::ArgListTy Args;
3206 TargetLowering::ArgListEntry Entry;
3207 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3208 Args.push_back(Entry);
3209 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003210 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003211 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3212 else
3213 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3214 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3215 Args.push_back(Entry);
3216 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3217 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003218 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003219 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003220 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003221 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003222 Args, *this);
3223 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003224}
3225
Dan Gohman475871a2008-07-27 21:46:04 +00003226SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3227 SDValue Ptr, SDValue Cmp,
3228 SDValue Swp, const Value* PtrVal,
3229 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003230 assert((Opcode == ISD::ATOMIC_CMP_SWAP_8 ||
3231 Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3232 Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3233 Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003234 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003235
3236 MVT VT = Cmp.getValueType();
3237
3238 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3239 Alignment = getMVTAlignment(VT);
3240
3241 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003242 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003243 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003244 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003245 void* IP = 0;
3246 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003247 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003248 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003249 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003250 CSEMap.InsertNode(N, IP);
3251 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003252 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003253}
3254
Dan Gohman475871a2008-07-27 21:46:04 +00003255SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3256 SDValue Ptr, SDValue Val,
3257 const Value* PtrVal,
3258 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003259 assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3260 Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3261 Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3262 Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3263 Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3264 Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3265 Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3266 Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3267 Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3268 Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3269 Opcode == ISD::ATOMIC_SWAP_8 ||
3270 Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3271 Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3272 Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3273 Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3274 Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3275 Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3276 Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3277 Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3278 Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3279 Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3280 Opcode == ISD::ATOMIC_SWAP_16 ||
3281 Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3282 Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3283 Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3284 Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3285 Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3286 Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3287 Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3288 Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3289 Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3290 Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3291 Opcode == ISD::ATOMIC_SWAP_32 ||
3292 Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3293 Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3294 Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3295 Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3296 Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3297 Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3298 Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3299 Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3300 Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3301 Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3302 Opcode == ISD::ATOMIC_SWAP_64) && "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003303
3304 MVT VT = Val.getValueType();
3305
3306 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3307 Alignment = getMVTAlignment(VT);
3308
3309 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003310 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003311 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003312 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003313 void* IP = 0;
3314 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003315 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003316 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003317 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003318 CSEMap.InsertNode(N, IP);
3319 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003320 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003321}
3322
Duncan Sands4bdcb612008-07-02 17:40:58 +00003323/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3324/// Allowed to return something different (and simpler) if Simplify is true.
Dan Gohman475871a2008-07-27 21:46:04 +00003325SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3326 bool Simplify) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00003327 if (Simplify && NumOps == 1)
3328 return Ops[0];
3329
3330 SmallVector<MVT, 4> VTs;
3331 VTs.reserve(NumOps);
3332 for (unsigned i = 0; i < NumOps; ++i)
3333 VTs.push_back(Ops[i].getValueType());
3334 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3335}
3336
Dan Gohman475871a2008-07-27 21:46:04 +00003337SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003338SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003339 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003340 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003341 // Do not include isTailCall in the folding set profile.
3342 FoldingSetNodeID ID;
3343 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3344 ID.AddInteger(CallingConv);
3345 ID.AddInteger(IsVarArgs);
3346 void *IP = 0;
3347 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3348 // Instead of including isTailCall in the folding set, we just
3349 // set the flag of the existing node.
3350 if (!IsTailCall)
3351 cast<CallSDNode>(E)->setNotTailCall();
3352 return SDValue(E, 0);
3353 }
Dan Gohman095cc292008-09-13 01:54:27 +00003354 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003355 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003356 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003357 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003358 AllNodes.push_back(N);
3359 return SDValue(N, 0);
3360}
3361
3362SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003363SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003364 MVT VT, SDValue Chain,
3365 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003366 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003367 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003368 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3369 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003370
Duncan Sands14ea39c2008-03-27 20:23:40 +00003371 if (VT == EVT) {
3372 ExtType = ISD::NON_EXTLOAD;
3373 } else if (ExtType == ISD::NON_EXTLOAD) {
3374 assert(VT == EVT && "Non-extending load from different memory type!");
3375 } else {
3376 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003377 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003378 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3379 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003380 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003381 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003382 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003383 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003384 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003385 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003386 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003387 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003388
3389 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003390 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003391 "Unindexed load with an offset!");
3392
3393 SDVTList VTs = Indexed ?
3394 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003395 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003396 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003397 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003398 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003399 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003400 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003401 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003402 void *IP = 0;
3403 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003404 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003405 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003406 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3407 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003408 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003409 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003410 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003411}
3412
Dan Gohman475871a2008-07-27 21:46:04 +00003413SDValue SelectionDAG::getLoad(MVT VT,
3414 SDValue Chain, SDValue Ptr,
3415 const Value *SV, int SVOffset,
3416 bool isVolatile, unsigned Alignment) {
3417 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003418 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3419 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003420}
3421
Dan Gohman475871a2008-07-27 21:46:04 +00003422SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3423 SDValue Chain, SDValue Ptr,
3424 const Value *SV,
3425 int SVOffset, MVT EVT,
3426 bool isVolatile, unsigned Alignment) {
3427 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003428 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3429 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003430}
3431
Dan Gohman475871a2008-07-27 21:46:04 +00003432SDValue
3433SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3434 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003435 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003436 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3437 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003438 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3439 LD->getChain(), Base, Offset, LD->getSrcValue(),
3440 LD->getSrcValueOffset(), LD->getMemoryVT(),
3441 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003442}
3443
Dan Gohman475871a2008-07-27 21:46:04 +00003444SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3445 SDValue Ptr, const Value *SV, int SVOffset,
3446 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003447 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003448
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003449 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3450 Alignment = getMVTAlignment(VT);
3451
Evan Chengad071e12006-10-05 22:57:11 +00003452 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003453 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3454 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003455 FoldingSetNodeID ID;
3456 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003457 ID.AddInteger(ISD::UNINDEXED);
3458 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003459 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003460 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003461 void *IP = 0;
3462 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003463 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003464 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003465 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3466 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003467 CSEMap.InsertNode(N, IP);
3468 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003469 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003470}
3471
Dan Gohman475871a2008-07-27 21:46:04 +00003472SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3473 SDValue Ptr, const Value *SV,
3474 int SVOffset, MVT SVT,
3475 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003476 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003477
3478 if (VT == SVT)
3479 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003480
Duncan Sands8e4eb092008-06-08 20:54:56 +00003481 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003482 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003483 "Can't do FP-INT conversion!");
3484
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003485 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3486 Alignment = getMVTAlignment(VT);
3487
Evan Cheng8b2794a2006-10-13 21:14:26 +00003488 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003489 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3490 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003491 FoldingSetNodeID ID;
3492 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003493 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003494 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003495 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003496 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003497 void *IP = 0;
3498 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003499 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003500 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003501 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3502 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003503 CSEMap.InsertNode(N, IP);
3504 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003505 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003506}
3507
Dan Gohman475871a2008-07-27 21:46:04 +00003508SDValue
3509SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3510 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003511 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3512 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3513 "Store is already a indexed store!");
3514 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003515 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003516 FoldingSetNodeID ID;
3517 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3518 ID.AddInteger(AM);
3519 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003520 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003521 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003522 void *IP = 0;
3523 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003524 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003525 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003526 new (N) StoreSDNode(Ops, VTs, AM,
3527 ST->isTruncatingStore(), ST->getMemoryVT(),
3528 ST->getSrcValue(), ST->getSrcValueOffset(),
3529 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003530 CSEMap.InsertNode(N, IP);
3531 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003532 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003533}
3534
Dan Gohman475871a2008-07-27 21:46:04 +00003535SDValue SelectionDAG::getVAArg(MVT VT,
3536 SDValue Chain, SDValue Ptr,
3537 SDValue SV) {
3538 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003539 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003540}
3541
Dan Gohman475871a2008-07-27 21:46:04 +00003542SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3543 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003544 switch (NumOps) {
3545 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003546 case 1: return getNode(Opcode, VT, Ops[0]);
3547 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3548 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003549 default: break;
3550 }
3551
Dan Gohman475871a2008-07-27 21:46:04 +00003552 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003553 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003554 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3555 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003556}
3557
Dan Gohman475871a2008-07-27 21:46:04 +00003558SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3559 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003560 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003561 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003562 case 1: return getNode(Opcode, VT, Ops[0]);
3563 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3564 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003565 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003566 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003567
Chris Lattneref847df2005-04-09 03:27:28 +00003568 switch (Opcode) {
3569 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003570 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003571 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003572 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3573 "LHS and RHS of condition must have same type!");
3574 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3575 "True and False arms of SelectCC must have same type!");
3576 assert(Ops[2].getValueType() == VT &&
3577 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003578 break;
3579 }
3580 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003581 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003582 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3583 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003584 break;
3585 }
Chris Lattneref847df2005-04-09 03:27:28 +00003586 }
3587
Chris Lattner385328c2005-05-14 07:42:29 +00003588 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003589 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003590 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003591 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003592 FoldingSetNodeID ID;
3593 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003594 void *IP = 0;
3595 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003596 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003597 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003598 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003599 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003600 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003601 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003602 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003603 }
Chris Lattneref847df2005-04-09 03:27:28 +00003604 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003605#ifndef NDEBUG
3606 VerifyNode(N);
3607#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003608 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003609}
3610
Dan Gohman475871a2008-07-27 21:46:04 +00003611SDValue SelectionDAG::getNode(unsigned Opcode,
3612 const std::vector<MVT> &ResultTys,
3613 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003614 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3615 Ops, NumOps);
3616}
3617
Dan Gohman475871a2008-07-27 21:46:04 +00003618SDValue SelectionDAG::getNode(unsigned Opcode,
3619 const MVT *VTs, unsigned NumVTs,
3620 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003621 if (NumVTs == 1)
3622 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003623 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3624}
3625
Dan Gohman475871a2008-07-27 21:46:04 +00003626SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3627 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003628 if (VTList.NumVTs == 1)
3629 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003630
Chris Lattner5f056bf2005-07-10 01:55:33 +00003631 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003632 // FIXME: figure out how to safely handle things like
3633 // int foo(int x) { return 1 << (x & 255); }
3634 // int bar() { return foo(256); }
3635#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003636 case ISD::SRA_PARTS:
3637 case ISD::SRL_PARTS:
3638 case ISD::SHL_PARTS:
3639 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003640 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003641 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3642 else if (N3.getOpcode() == ISD::AND)
3643 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3644 // If the and is only masking out bits that cannot effect the shift,
3645 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003646 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003647 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3648 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3649 }
3650 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003651#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003652 }
Chris Lattner89c34632005-05-14 06:20:26 +00003653
Chris Lattner43247a12005-08-25 19:12:10 +00003654 // Memoize the node unless it returns a flag.
3655 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003656 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003657 FoldingSetNodeID ID;
3658 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003659 void *IP = 0;
3660 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003661 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003662 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003663 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003664 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3665 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003666 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003667 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3668 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003669 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003670 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3671 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003672 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003673 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3674 }
Chris Lattnera5682852006-08-07 23:03:03 +00003675 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003676 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003677 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003678 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003679 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3680 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003681 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003682 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3683 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003684 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003685 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3686 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003687 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003688 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3689 }
Chris Lattner43247a12005-08-25 19:12:10 +00003690 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003691 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003692#ifndef NDEBUG
3693 VerifyNode(N);
3694#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003695 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003696}
3697
Dan Gohman475871a2008-07-27 21:46:04 +00003698SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003699 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003700}
3701
Dan Gohman475871a2008-07-27 21:46:04 +00003702SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3703 SDValue N1) {
3704 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003705 return getNode(Opcode, VTList, Ops, 1);
3706}
3707
Dan Gohman475871a2008-07-27 21:46:04 +00003708SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3709 SDValue N1, SDValue N2) {
3710 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003711 return getNode(Opcode, VTList, Ops, 2);
3712}
3713
Dan Gohman475871a2008-07-27 21:46:04 +00003714SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3715 SDValue N1, SDValue N2, SDValue N3) {
3716 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003717 return getNode(Opcode, VTList, Ops, 3);
3718}
3719
Dan Gohman475871a2008-07-27 21:46:04 +00003720SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3721 SDValue N1, SDValue N2, SDValue N3,
3722 SDValue N4) {
3723 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003724 return getNode(Opcode, VTList, Ops, 4);
3725}
3726
Dan Gohman475871a2008-07-27 21:46:04 +00003727SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3728 SDValue N1, SDValue N2, SDValue N3,
3729 SDValue N4, SDValue N5) {
3730 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003731 return getNode(Opcode, VTList, Ops, 5);
3732}
3733
Duncan Sands83ec4b62008-06-06 12:08:01 +00003734SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003735 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003736}
3737
Duncan Sands83ec4b62008-06-06 12:08:01 +00003738SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003739 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3740 E = VTList.rend(); I != E; ++I)
3741 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3742 return *I;
3743
3744 MVT *Array = Allocator.Allocate<MVT>(2);
3745 Array[0] = VT1;
3746 Array[1] = VT2;
3747 SDVTList Result = makeVTList(Array, 2);
3748 VTList.push_back(Result);
3749 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003750}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003751
3752SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3753 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3754 E = VTList.rend(); I != E; ++I)
3755 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3756 I->VTs[2] == VT3)
3757 return *I;
3758
3759 MVT *Array = Allocator.Allocate<MVT>(3);
3760 Array[0] = VT1;
3761 Array[1] = VT2;
3762 Array[2] = VT3;
3763 SDVTList Result = makeVTList(Array, 3);
3764 VTList.push_back(Result);
3765 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003766}
3767
Duncan Sands83ec4b62008-06-06 12:08:01 +00003768SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003769 switch (NumVTs) {
3770 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003771 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003772 case 2: return getVTList(VTs[0], VTs[1]);
3773 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3774 default: break;
3775 }
3776
Dan Gohmane8be6c62008-07-17 19:10:17 +00003777 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3778 E = VTList.rend(); I != E; ++I) {
3779 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3780 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003781
3782 bool NoMatch = false;
3783 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003784 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003785 NoMatch = true;
3786 break;
3787 }
3788 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003789 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003790 }
3791
Dan Gohmane8be6c62008-07-17 19:10:17 +00003792 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3793 std::copy(VTs, VTs+NumVTs, Array);
3794 SDVTList Result = makeVTList(Array, NumVTs);
3795 VTList.push_back(Result);
3796 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003797}
3798
3799
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003800/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3801/// specified operands. If the resultant node already exists in the DAG,
3802/// this does not modify the specified node, instead it returns the node that
3803/// already exists. If the resultant node does not exist in the DAG, the
3804/// input node is returned. As a degenerate case, if you specify the same
3805/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003806SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003807 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003808 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3809
3810 // Check to see if there is no change.
3811 if (Op == N->getOperand(0)) return InN;
3812
3813 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003814 void *InsertPos = 0;
3815 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003816 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003817
Dan Gohman79acd2b2008-07-21 22:38:59 +00003818 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003819 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003820 if (!RemoveNodeFromCSEMaps(N))
3821 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003822
3823 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003824 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003825 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003826 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003827 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003828
3829 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003830 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003831 return InN;
3832}
3833
Dan Gohman475871a2008-07-27 21:46:04 +00003834SDValue SelectionDAG::
3835UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003836 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003837 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3838
3839 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003840 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3841 return InN; // No operands changed, just return the input node.
3842
3843 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003844 void *InsertPos = 0;
3845 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003846 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003847
Dan Gohman79acd2b2008-07-21 22:38:59 +00003848 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003849 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003850 if (!RemoveNodeFromCSEMaps(N))
3851 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003852
3853 // Now we update the operands.
3854 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003855 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003856 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003857 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003858 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003859 }
3860 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003861 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003862 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003863 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003864 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003865 }
3866
3867 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003868 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003869 return InN;
3870}
3871
Dan Gohman475871a2008-07-27 21:46:04 +00003872SDValue SelectionDAG::
3873UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3874 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003875 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003876}
3877
Dan Gohman475871a2008-07-27 21:46:04 +00003878SDValue SelectionDAG::
3879UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3880 SDValue Op3, SDValue Op4) {
3881 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003882 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003883}
3884
Dan Gohman475871a2008-07-27 21:46:04 +00003885SDValue SelectionDAG::
3886UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3887 SDValue Op3, SDValue Op4, SDValue Op5) {
3888 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003889 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003890}
3891
Dan Gohman475871a2008-07-27 21:46:04 +00003892SDValue SelectionDAG::
3893UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003894 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003895 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003896 "Update with wrong number of operands");
3897
3898 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003899 bool AnyChange = false;
3900 for (unsigned i = 0; i != NumOps; ++i) {
3901 if (Ops[i] != N->getOperand(i)) {
3902 AnyChange = true;
3903 break;
3904 }
3905 }
3906
3907 // No operands changed, just return the input node.
3908 if (!AnyChange) return InN;
3909
3910 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003911 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003912 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003913 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003914
Dan Gohman7ceda162008-05-02 00:05:03 +00003915 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003916 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003917 if (!RemoveNodeFromCSEMaps(N))
3918 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003919
3920 // Now we update the operands.
3921 for (unsigned i = 0; i != NumOps; ++i) {
3922 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003923 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003924 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003925 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003926 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003927 }
3928 }
3929
3930 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003931 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003932 return InN;
3933}
3934
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003935/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00003936/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003937void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003938 // Unlike the code in MorphNodeTo that does this, we don't need to
3939 // watch for dead nodes here.
3940 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3941 I->getVal()->removeUser(std::distance(op_begin(), I), this);
3942
3943 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003944}
Chris Lattner149c58c2005-08-16 18:17:10 +00003945
Dan Gohmane8be6c62008-07-17 19:10:17 +00003946/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
3947/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003948///
Dan Gohmane8be6c62008-07-17 19:10:17 +00003949SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003950 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003951 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003952 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00003953}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003954
Dan Gohmane8be6c62008-07-17 19:10:17 +00003955SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003956 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003957 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003958 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003959 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00003960}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003961
Dan Gohmane8be6c62008-07-17 19:10:17 +00003962SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003963 MVT VT, SDValue Op1,
3964 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003965 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003966 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003967 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00003968}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003969
Dan Gohmane8be6c62008-07-17 19:10:17 +00003970SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003971 MVT VT, SDValue Op1,
3972 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003973 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003974 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003975 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00003976}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003977
Dan Gohmane8be6c62008-07-17 19:10:17 +00003978SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003979 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00003980 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003981 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003982 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00003983}
3984
Dan Gohmane8be6c62008-07-17 19:10:17 +00003985SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003986 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00003987 unsigned NumOps) {
3988 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003989 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00003990}
3991
Dan Gohmane8be6c62008-07-17 19:10:17 +00003992SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00003993 MVT VT1, MVT VT2) {
3994 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00003995 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00003996}
3997
Dan Gohmane8be6c62008-07-17 19:10:17 +00003998SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003999 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004000 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004001 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004002 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004003}
4004
Dan Gohmane8be6c62008-07-17 19:10:17 +00004005SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004006 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004007 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004008 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004009 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004010 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004011}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004012
Dan Gohmane8be6c62008-07-17 19:10:17 +00004013SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004014 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004015 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004016 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004017 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004018 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004019}
4020
Dan Gohmane8be6c62008-07-17 19:10:17 +00004021SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004022 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004023 SDValue Op1, SDValue Op2,
4024 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004025 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004026 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004027 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004028}
4029
Dan Gohmane8be6c62008-07-17 19:10:17 +00004030SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004031 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004032 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004033 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4034}
4035
4036SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4037 MVT VT) {
4038 SDVTList VTs = getVTList(VT);
4039 return MorphNodeTo(N, Opc, VTs, 0, 0);
4040}
4041
4042SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004043 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004044 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004045 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004046 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4047}
4048
4049SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004050 MVT VT, SDValue Op1,
4051 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004052 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004053 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004054 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4055}
4056
4057SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004058 MVT VT, SDValue Op1,
4059 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004060 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004061 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004062 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4063}
4064
4065SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004066 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004067 unsigned NumOps) {
4068 SDVTList VTs = getVTList(VT);
4069 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4070}
4071
4072SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004073 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004074 unsigned NumOps) {
4075 SDVTList VTs = getVTList(VT1, VT2);
4076 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4077}
4078
4079SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4080 MVT VT1, MVT VT2) {
4081 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004082 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004083}
4084
4085SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4086 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004087 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004088 SDVTList VTs = getVTList(VT1, VT2, VT3);
4089 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4090}
4091
4092SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4093 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004094 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004095 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004096 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004097 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4098}
4099
4100SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4101 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004102 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004103 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004104 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004105 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4106}
4107
4108SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4109 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004110 SDValue Op1, SDValue Op2,
4111 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004112 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004113 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004114 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4115}
4116
4117/// MorphNodeTo - These *mutate* the specified node to have the specified
4118/// return type, opcode, and operands.
4119///
4120/// Note that MorphNodeTo returns the resultant node. If there is already a
4121/// node of the specified opcode and operands, it returns that node instead of
4122/// the current one.
4123///
4124/// Using MorphNodeTo is faster than creating a new node and swapping it in
4125/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004126/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004127/// the node's users.
4128///
4129SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004131 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004132 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004133 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004134 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4135 FoldingSetNodeID ID;
4136 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4137 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4138 return ON;
4139 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004140
Dan Gohman095cc292008-09-13 01:54:27 +00004141 if (!RemoveNodeFromCSEMaps(N))
4142 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004143
Dan Gohmane8be6c62008-07-17 19:10:17 +00004144 // Start the morphing.
4145 N->NodeType = Opc;
4146 N->ValueList = VTs.VTs;
4147 N->NumValues = VTs.NumVTs;
4148
4149 // Clear the operands list, updating used nodes to remove this from their
4150 // use list. Keep track of any operands that become dead as a result.
4151 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4152 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4153 I != E; ++I) {
4154 SDNode *Used = I->getVal();
4155 Used->removeUser(std::distance(B, I), N);
4156 if (Used->use_empty())
4157 DeadNodeSet.insert(Used);
4158 }
4159
4160 // If NumOps is larger than the # of operands we currently have, reallocate
4161 // the operand list.
4162 if (NumOps > N->NumOperands) {
4163 if (N->OperandsNeedDelete)
4164 delete[] N->OperandList;
4165 if (N->isMachineOpcode()) {
4166 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004167 // remainder of the current SelectionDAG iteration, so we can allocate
4168 // the operands directly out of a pool with no recycling metadata.
4169 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004170 N->OperandsNeedDelete = false;
4171 } else {
4172 N->OperandList = new SDUse[NumOps];
4173 N->OperandsNeedDelete = true;
4174 }
4175 }
4176
4177 // Assign the new operands.
4178 N->NumOperands = NumOps;
4179 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4180 N->OperandList[i] = Ops[i];
4181 N->OperandList[i].setUser(N);
4182 SDNode *ToUse = N->OperandList[i].getVal();
4183 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004184 }
4185
4186 // Delete any nodes that are still dead after adding the uses for the
4187 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004188 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004189 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4190 E = DeadNodeSet.end(); I != E; ++I)
4191 if ((*I)->use_empty())
4192 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004193 RemoveDeadNodes(DeadNodes);
4194
Dan Gohmane8be6c62008-07-17 19:10:17 +00004195 if (IP)
4196 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004197 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004198}
4199
Chris Lattner0fb094f2005-11-19 01:44:53 +00004200
Evan Cheng6ae46c42006-02-09 07:15:23 +00004201/// getTargetNode - These are used for target selectors to create a new node
4202/// with specified return type(s), target opcode, and operands.
4203///
4204/// Note that getTargetNode returns the resultant node. If there is already a
4205/// node of the specified opcode and operands, it returns that node instead of
4206/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004207SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004208 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004209}
Dan Gohman475871a2008-07-27 21:46:04 +00004210SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004211 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004212}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004213SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004214 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004215 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004216}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004217SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004218 SDValue Op1, SDValue Op2,
4219 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004220 return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004221}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004222SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004223 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004224 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004225}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004226SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4227 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004228 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004229 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004230}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004231SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004232 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004233 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004234 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004235}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004236SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004237 MVT VT2, SDValue Op1,
4238 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004239 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004240 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004241 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004242}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004243SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004244 MVT VT2, SDValue Op1,
4245 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004246 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004247 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004248 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004249}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004250SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004251 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004252 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004253 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004254}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004255SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004256 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004257 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004258 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004259 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004260}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004261SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004262 SDValue Op1, SDValue Op2,
4263 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004264 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004265 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004266 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004267}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004268SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004269 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004270 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004271 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004272}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004273SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4274 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004275 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004276 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004277 VTList.push_back(VT1);
4278 VTList.push_back(VT2);
4279 VTList.push_back(VT3);
4280 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004281 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004282 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004283}
Evan Cheng39305cf2007-10-05 01:10:49 +00004284SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004285 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004286 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004287 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004288 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004289 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004290}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004291
Evan Cheng08b11732008-03-22 01:55:50 +00004292/// getNodeIfExists - Get the specified node if it's already available, or
4293/// else return NULL.
4294SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004295 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004296 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4297 FoldingSetNodeID ID;
4298 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4299 void *IP = 0;
4300 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4301 return E;
4302 }
4303 return NULL;
4304}
4305
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004306
Evan Cheng99157a02006-08-07 22:13:29 +00004307/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004308/// This can cause recursive merging of nodes in the DAG.
4309///
Chris Lattner11d049c2008-02-03 03:35:22 +00004310/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004311///
Dan Gohman475871a2008-07-27 21:46:04 +00004312void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004313 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004314 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004315 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004316 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004317 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004318
Chris Lattner8b8749f2005-08-17 19:00:20 +00004319 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004320 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004321 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004322
Chris Lattner8b8749f2005-08-17 19:00:20 +00004323 // This node is about to morph, remove its old self from the CSE maps.
4324 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004325 int operandNum = 0;
4326 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4327 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004328 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004329 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004330 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004331 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004332 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004333 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004334
4335 // Now that we have modified U, add it back to the CSE maps. If it already
4336 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004337 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004338 ReplaceAllUsesWith(U, Existing, UpdateListener);
4339 // U is now dead. Inform the listener if it exists and delete it.
4340 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004341 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004342 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004343 } else {
4344 // If the node doesn't already exist, we updated it. Inform a listener if
4345 // it exists.
4346 if (UpdateListener)
4347 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004348 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004349 }
4350}
4351
4352/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4353/// This can cause recursive merging of nodes in the DAG.
4354///
4355/// This version assumes From/To have matching types and numbers of result
4356/// values.
4357///
Chris Lattner1e111c72005-09-07 05:37:01 +00004358void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004359 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004360 assert(From->getVTList().VTs == To->getVTList().VTs &&
4361 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004362 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004363
4364 // Handle the trivial case.
4365 if (From == To)
4366 return;
4367
Chris Lattner8b52f212005-08-26 18:36:28 +00004368 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004369 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004370 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004371
Chris Lattner8b52f212005-08-26 18:36:28 +00004372 // This node is about to morph, remove its old self from the CSE maps.
4373 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004374 int operandNum = 0;
4375 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4376 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004377 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004378 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004379 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004380 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004381 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004382
Chris Lattner8b8749f2005-08-17 19:00:20 +00004383 // Now that we have modified U, add it back to the CSE maps. If it already
4384 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004385 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004386 ReplaceAllUsesWith(U, Existing, UpdateListener);
4387 // U is now dead. Inform the listener if it exists and delete it.
4388 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004389 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004390 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004391 } else {
4392 // If the node doesn't already exist, we updated it. Inform a listener if
4393 // it exists.
4394 if (UpdateListener)
4395 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004396 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004397 }
4398}
4399
Chris Lattner8b52f212005-08-26 18:36:28 +00004400/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4401/// This can cause recursive merging of nodes in the DAG.
4402///
4403/// This version can replace From with any result values. To must match the
4404/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004405void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004406 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004407 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004408 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004409 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004410
4411 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004412 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004413 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004414
Chris Lattner7b2880c2005-08-24 22:44:39 +00004415 // This node is about to morph, remove its old self from the CSE maps.
4416 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004417 int operandNum = 0;
4418 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4419 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004420 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004421 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004422 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004423 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004424 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004425 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004426 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004427
Chris Lattner7b2880c2005-08-24 22:44:39 +00004428 // Now that we have modified U, add it back to the CSE maps. If it already
4429 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004430 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004431 ReplaceAllUsesWith(U, Existing, UpdateListener);
4432 // U is now dead. Inform the listener if it exists and delete it.
4433 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004434 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004435 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004436 } else {
4437 // If the node doesn't already exist, we updated it. Inform a listener if
4438 // it exists.
4439 if (UpdateListener)
4440 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004441 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004442 }
4443}
4444
Chris Lattner012f2412006-02-17 21:58:01 +00004445/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004446/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004447/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004448void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004449 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004450 // Handle the really simple, really trivial case efficiently.
4451 if (From == To) return;
4452
Chris Lattner012f2412006-02-17 21:58:01 +00004453 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004454 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004455 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004456 return;
4457 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004458
Gabor Greifba36cb52008-08-28 21:40:38 +00004459 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004460 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004461 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004462
4463 while (!Users.empty()) {
4464 // We know that this user uses some value of From. If it is the right
4465 // value, update it.
4466 SDNode *User = Users.back();
4467 Users.pop_back();
4468
Chris Lattner01d029b2007-10-15 06:10:22 +00004469 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004470 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004471 for (; Op != E; ++Op)
4472 if (*Op == From) break;
4473
4474 // If there are no matches, the user must use some other result of From.
4475 if (Op == E) continue;
4476
4477 // Okay, we know this user needs to be updated. Remove its old self
4478 // from the CSE maps.
4479 RemoveNodeFromCSEMaps(User);
4480
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004481 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004482 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004483 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004484 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004485 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004486 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004487 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004488 }
4489 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004490
4491 // Now that we have modified User, add it back to the CSE maps. If it
4492 // already exists there, recursively merge the results together.
4493 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004494 if (!Existing) {
4495 if (UpdateListener) UpdateListener->NodeUpdated(User);
4496 continue; // Continue on to next user.
4497 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004498
4499 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004500 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004501 // recursive merging of other unrelated nodes down the line.
4502 ReplaceAllUsesWith(User, Existing, UpdateListener);
4503
4504 // User is now dead. Notify a listener if present.
4505 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4506 DeleteNodeNotInCSEMaps(User);
4507 }
4508}
4509
4510/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004511/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004512/// appear in both the From and To list. The Deleted vector is
4513/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004514void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4515 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004516 unsigned Num,
4517 DAGUpdateListener *UpdateListener){
4518 // Handle the simple, trivial case efficiently.
4519 if (Num == 1)
4520 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4521
4522 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4523 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004524 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4525 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004526 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004527
4528 while (!Users.empty()) {
4529 // We know that this user uses some value of From. If it is the right
4530 // value, update it.
4531 SDNode *User = Users.back().first;
4532 unsigned i = Users.back().second;
4533 Users.pop_back();
4534
4535 // Scan for an operand that matches From.
4536 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4537 for (; Op != E; ++Op)
4538 if (*Op == From[i]) break;
4539
4540 // If there are no matches, the user must use some other result of From.
4541 if (Op == E) continue;
4542
4543 // Okay, we know this user needs to be updated. Remove its old self
4544 // from the CSE maps.
4545 RemoveNodeFromCSEMaps(User);
4546
4547 // Update all operands that match "From" in case there are multiple uses.
4548 for (; Op != E; ++Op) {
4549 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004550 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004551 *Op = To[i];
4552 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004553 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004554 }
4555 }
4556
4557 // Now that we have modified User, add it back to the CSE maps. If it
4558 // already exists there, recursively merge the results together.
4559 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4560 if (!Existing) {
4561 if (UpdateListener) UpdateListener->NodeUpdated(User);
4562 continue; // Continue on to next user.
4563 }
4564
4565 // If there was already an existing matching node, use ReplaceAllUsesWith
4566 // to replace the dead one with the existing one. This can cause
4567 // recursive merging of other unrelated nodes down the line.
4568 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004569
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004570 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004571 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004572 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004573 }
4574}
4575
Evan Chenge6f35d82006-08-01 08:20:41 +00004576/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004577/// based on their topological order. It returns the maximum id and a vector
4578/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004579unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004580
Dan Gohmanf06c8352008-09-30 18:30:35 +00004581 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004582
Dan Gohmanf06c8352008-09-30 18:30:35 +00004583 // SortedPos tracks the progress of the algorithm. Nodes before it are
4584 // sorted, nodes after it are unsorted. When the algorithm completes
4585 // it is at the end of the list.
4586 allnodes_iterator SortedPos = allnodes_begin();
4587
4588 // Visit all the nodes. Add nodes with no operands to the TopOrder result
4589 // array immediately. Annotate nodes that do have operands with their
4590 // operand count. Before we do this, the Node Id fields of the nodes
4591 // may contain arbitrary values. After, the Node Id fields for nodes
4592 // before SortedPos will contain the topological sort index, and the
4593 // Node Id fields for nodes At SortedPos and after will contain the
4594 // count of outstanding operands.
4595 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4596 SDNode *N = I++;
4597 unsigned Degree = N->getNumOperands();
4598 if (Degree == 0) {
4599 // A node with no uses, add it to the result array immediately.
4600 N->setNodeId(DAGSize++);
4601 allnodes_iterator Q = N;
4602 if (Q != SortedPos)
4603 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4604 ++SortedPos;
4605 } else {
4606 // Temporarily use the Node Id as scratch space for the degree count.
4607 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004608 }
4609 }
4610
Dan Gohmanf06c8352008-09-30 18:30:35 +00004611 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4612 // such that by the time the end is reached all nodes will be sorted.
4613 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4614 SDNode *N = I;
4615 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4616 UI != UE; ++UI) {
4617 SDNode *P = *UI;
4618 unsigned Degree = P->getNodeId();
4619 --Degree;
4620 if (Degree == 0) {
4621 // All of P's operands are sorted, so P may sorted now.
4622 P->setNodeId(DAGSize++);
4623 if (P != SortedPos)
4624 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4625 ++SortedPos;
4626 } else {
4627 // Update P's outstanding operand count.
4628 P->setNodeId(Degree);
4629 }
4630 }
4631 }
4632
4633 assert(SortedPos == AllNodes.end() &&
4634 "Topological sort incomplete!");
4635 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4636 "First node in topological sort is not the entry token!");
4637 assert(AllNodes.front().getNodeId() == 0 &&
4638 "First node in topological sort has non-zero id!");
4639 assert(AllNodes.front().getNumOperands() == 0 &&
4640 "First node in topological sort has operands!");
4641 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4642 "Last node in topologic sort has unexpected id!");
4643 assert(AllNodes.back().use_empty() &&
4644 "Last node in topologic sort has users!");
4645 assert(DAGSize == allnodes_size() && "TopOrder result count mismatch!");
4646 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004647}
4648
4649
Evan Cheng091cba12006-07-27 06:39:06 +00004650
Jim Laskey58b968b2005-08-17 20:08:02 +00004651//===----------------------------------------------------------------------===//
4652// SDNode Class
4653//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004654
Chris Lattner917d2c92006-07-19 00:00:37 +00004655// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004656void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004657void UnarySDNode::ANCHOR() {}
4658void BinarySDNode::ANCHOR() {}
4659void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004660void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004661void ConstantSDNode::ANCHOR() {}
4662void ConstantFPSDNode::ANCHOR() {}
4663void GlobalAddressSDNode::ANCHOR() {}
4664void FrameIndexSDNode::ANCHOR() {}
4665void JumpTableSDNode::ANCHOR() {}
4666void ConstantPoolSDNode::ANCHOR() {}
4667void BasicBlockSDNode::ANCHOR() {}
4668void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004669void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004670void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004671void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004672void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004673void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004674void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004675void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004676void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004677void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004678void LoadSDNode::ANCHOR() {}
4679void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004680void AtomicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004681void CallSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004682
Chris Lattner48b85922007-02-04 02:41:42 +00004683HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004684 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004685}
4686
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004687GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004688 MVT VT, int o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004689 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004690 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004691 // Thread Local
4692 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4693 // Non Thread Local
4694 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4695 getSDVTList(VT)), Offset(o) {
4696 TheGlobal = const_cast<GlobalValue*>(GA);
4697}
Chris Lattner48b85922007-02-04 02:41:42 +00004698
Dan Gohman1ea58a52008-07-09 22:08:04 +00004699MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004700 const Value *srcValue, int SVO,
4701 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004702 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004703 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004704
4705 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4706 assert(getAlignment() == alignment && "Alignment representation error!");
4707 assert(isVolatile() == vol && "Volatile representation error!");
4708}
4709
Dan Gohman36b5c132008-04-07 19:35:22 +00004710/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004711/// reference performed by this memory reference.
4712MachineMemOperand MemSDNode::getMemOperand() const {
4713 int Flags;
4714 if (isa<LoadSDNode>(this))
4715 Flags = MachineMemOperand::MOLoad;
4716 else if (isa<StoreSDNode>(this))
4717 Flags = MachineMemOperand::MOStore;
4718 else {
4719 assert(isa<AtomicSDNode>(this) && "Unknown MemSDNode opcode!");
4720 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4721 }
4722
4723 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004724 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4725
Dan Gohman1ea58a52008-07-09 22:08:04 +00004726 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004727 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004728 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004729 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004730 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4731 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004732 else
4733 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4734 Size, getAlignment());
4735}
4736
Jim Laskey583bd472006-10-27 23:46:08 +00004737/// Profile - Gather unique data for the node.
4738///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004739void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004740 AddNodeIDNode(ID, this);
4741}
4742
Chris Lattnera3255112005-11-08 23:30:28 +00004743/// getValueTypeList - Return a pointer to the specified value type.
4744///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004745const MVT *SDNode::getValueTypeList(MVT VT) {
4746 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004747 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004748 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004749 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004750 static MVT VTs[MVT::LAST_VALUETYPE];
4751 VTs[VT.getSimpleVT()] = VT;
4752 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004753 }
Chris Lattnera3255112005-11-08 23:30:28 +00004754}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004755
Chris Lattner5c884562005-01-12 18:37:47 +00004756/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4757/// indicated value. This method ignores uses of other values defined by this
4758/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004759bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004760 assert(Value < getNumValues() && "Bad value!");
4761
Roman Levensteindc1adac2008-04-07 10:06:32 +00004762 // TODO: Only iterate over uses of a given value of the node
4763 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004764 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004765 if (NUses == 0)
4766 return false;
4767 --NUses;
4768 }
Chris Lattner5c884562005-01-12 18:37:47 +00004769 }
4770
4771 // Found exactly the right number of uses?
4772 return NUses == 0;
4773}
4774
4775
Evan Cheng33d55952007-08-02 05:29:38 +00004776/// hasAnyUseOfValue - Return true if there are any use of the indicated
4777/// value. This method ignores uses of other values defined by this operation.
4778bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4779 assert(Value < getNumValues() && "Bad value!");
4780
Dan Gohman1373c1c2008-07-09 22:39:01 +00004781 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004782 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004783 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004784
4785 return false;
4786}
4787
4788
Dan Gohman2a629952008-07-27 18:06:42 +00004789/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004790///
Dan Gohman2a629952008-07-27 18:06:42 +00004791bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004792 bool Seen = false;
4793 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004794 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004795 if (User == this)
4796 Seen = true;
4797 else
4798 return false;
4799 }
4800
4801 return Seen;
4802}
4803
Evan Chenge6e97e62006-11-03 07:31:32 +00004804/// isOperand - Return true if this node is an operand of N.
4805///
Dan Gohman475871a2008-07-27 21:46:04 +00004806bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004807 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4808 if (*this == N->getOperand(i))
4809 return true;
4810 return false;
4811}
4812
Evan Cheng917be682008-03-04 00:41:45 +00004813bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004814 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004815 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004816 return true;
4817 return false;
4818}
Evan Cheng4ee62112006-02-05 06:29:23 +00004819
Chris Lattner572dee72008-01-16 05:49:24 +00004820/// reachesChainWithoutSideEffects - Return true if this operand (which must
4821/// be a chain) reaches the specified operand without crossing any
4822/// side-effecting instructions. In practice, this looks through token
4823/// factors and non-volatile loads. In order to remain efficient, this only
4824/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004825bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004826 unsigned Depth) const {
4827 if (*this == Dest) return true;
4828
4829 // Don't search too deeply, we just want to be able to see through
4830 // TokenFactor's etc.
4831 if (Depth == 0) return false;
4832
4833 // If this is a token factor, all inputs to the TF happen in parallel. If any
4834 // of the operands of the TF reach dest, then we can do the xform.
4835 if (getOpcode() == ISD::TokenFactor) {
4836 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4837 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4838 return true;
4839 return false;
4840 }
4841
4842 // Loads don't have side effects, look through them.
4843 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4844 if (!Ld->isVolatile())
4845 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4846 }
4847 return false;
4848}
4849
4850
Evan Chengc5fc57d2006-11-03 03:05:24 +00004851static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004852 SmallPtrSet<SDNode *, 32> &Visited) {
4853 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004854 return;
4855
4856 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004857 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004858 if (Op == P) {
4859 found = true;
4860 return;
4861 }
4862 findPredecessor(Op, P, found, Visited);
4863 }
4864}
4865
Evan Cheng917be682008-03-04 00:41:45 +00004866/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004867/// is either an operand of N or it can be reached by recursively traversing
4868/// up the operands.
4869/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004870bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004871 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004872 bool found = false;
4873 findPredecessor(N, this, found, Visited);
4874 return found;
4875}
4876
Evan Chengc5484282006-10-04 00:56:09 +00004877uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4878 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004879 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004880}
4881
Reid Spencer577cc322007-04-01 07:32:19 +00004882std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004883 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004884 default:
4885 if (getOpcode() < ISD::BUILTIN_OP_END)
4886 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004887 if (isMachineOpcode()) {
4888 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004889 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004890 if (getMachineOpcode() < TII->getNumOpcodes())
4891 return TII->get(getMachineOpcode()).getName();
4892 return "<<Unknown Machine Node>>";
4893 }
4894 if (G) {
4895 TargetLowering &TLI = G->getTargetLoweringInfo();
4896 const char *Name = TLI.getTargetNodeName(getOpcode());
4897 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004898 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004899 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004900 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004901
Dan Gohmane8be6c62008-07-17 19:10:17 +00004902#ifndef NDEBUG
4903 case ISD::DELETED_NODE:
4904 return "<<Deleted Node!>>";
4905#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00004906 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004907 case ISD::MEMBARRIER: return "MemBarrier";
Dale Johannesene00a8a22008-08-28 02:44:49 +00004908 case ISD::ATOMIC_CMP_SWAP_8: return "AtomicCmpSwap8";
4909 case ISD::ATOMIC_SWAP_8: return "AtomicSwap8";
4910 case ISD::ATOMIC_LOAD_ADD_8: return "AtomicLoadAdd8";
4911 case ISD::ATOMIC_LOAD_SUB_8: return "AtomicLoadSub8";
4912 case ISD::ATOMIC_LOAD_AND_8: return "AtomicLoadAnd8";
4913 case ISD::ATOMIC_LOAD_OR_8: return "AtomicLoadOr8";
4914 case ISD::ATOMIC_LOAD_XOR_8: return "AtomicLoadXor8";
4915 case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
4916 case ISD::ATOMIC_LOAD_MIN_8: return "AtomicLoadMin8";
4917 case ISD::ATOMIC_LOAD_MAX_8: return "AtomicLoadMax8";
4918 case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
4919 case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
4920 case ISD::ATOMIC_CMP_SWAP_16: return "AtomicCmpSwap16";
4921 case ISD::ATOMIC_SWAP_16: return "AtomicSwap16";
4922 case ISD::ATOMIC_LOAD_ADD_16: return "AtomicLoadAdd16";
4923 case ISD::ATOMIC_LOAD_SUB_16: return "AtomicLoadSub16";
4924 case ISD::ATOMIC_LOAD_AND_16: return "AtomicLoadAnd16";
4925 case ISD::ATOMIC_LOAD_OR_16: return "AtomicLoadOr16";
4926 case ISD::ATOMIC_LOAD_XOR_16: return "AtomicLoadXor16";
4927 case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
4928 case ISD::ATOMIC_LOAD_MIN_16: return "AtomicLoadMin16";
4929 case ISD::ATOMIC_LOAD_MAX_16: return "AtomicLoadMax16";
4930 case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
4931 case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
4932 case ISD::ATOMIC_CMP_SWAP_32: return "AtomicCmpSwap32";
4933 case ISD::ATOMIC_SWAP_32: return "AtomicSwap32";
4934 case ISD::ATOMIC_LOAD_ADD_32: return "AtomicLoadAdd32";
4935 case ISD::ATOMIC_LOAD_SUB_32: return "AtomicLoadSub32";
4936 case ISD::ATOMIC_LOAD_AND_32: return "AtomicLoadAnd32";
4937 case ISD::ATOMIC_LOAD_OR_32: return "AtomicLoadOr32";
4938 case ISD::ATOMIC_LOAD_XOR_32: return "AtomicLoadXor32";
4939 case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
4940 case ISD::ATOMIC_LOAD_MIN_32: return "AtomicLoadMin32";
4941 case ISD::ATOMIC_LOAD_MAX_32: return "AtomicLoadMax32";
4942 case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
4943 case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
4944 case ISD::ATOMIC_CMP_SWAP_64: return "AtomicCmpSwap64";
4945 case ISD::ATOMIC_SWAP_64: return "AtomicSwap64";
4946 case ISD::ATOMIC_LOAD_ADD_64: return "AtomicLoadAdd64";
4947 case ISD::ATOMIC_LOAD_SUB_64: return "AtomicLoadSub64";
4948 case ISD::ATOMIC_LOAD_AND_64: return "AtomicLoadAnd64";
4949 case ISD::ATOMIC_LOAD_OR_64: return "AtomicLoadOr64";
4950 case ISD::ATOMIC_LOAD_XOR_64: return "AtomicLoadXor64";
4951 case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
4952 case ISD::ATOMIC_LOAD_MIN_64: return "AtomicLoadMin64";
4953 case ISD::ATOMIC_LOAD_MAX_64: return "AtomicLoadMax64";
4954 case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
4955 case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
Andrew Lenharth95762122005-03-31 21:24:06 +00004956 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00004957 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004958 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00004959 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004960 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00004961 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00004962 case ISD::AssertSext: return "AssertSext";
4963 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004964
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004965 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004966 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004967 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004968 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004969
4970 case ISD::Constant: return "Constant";
4971 case ISD::ConstantFP: return "ConstantFP";
4972 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004973 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004974 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004975 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00004976 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00004977 case ISD::RETURNADDR: return "RETURNADDR";
4978 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004979 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00004980 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00004981 case ISD::EHSELECTION: return "EHSELECTION";
4982 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00004983 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00004984 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00004985 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004986 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00004987 return Intrinsic::getName((Intrinsic::ID)IID);
4988 }
4989 case ISD::INTRINSIC_VOID:
4990 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004991 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00004992 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00004993 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00004994
Chris Lattnerb2827b02006-03-19 00:52:58 +00004995 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004996 case ISD::TargetConstant: return "TargetConstant";
4997 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004998 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004999 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005000 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005001 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005002 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005003 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005004
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005005 case ISD::CopyToReg: return "CopyToReg";
5006 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005007 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005008 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005009 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005010 case ISD::DBG_LABEL: return "dbg_label";
5011 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005012 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005013 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005014 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005015 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005016
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005017 // Unary operators
5018 case ISD::FABS: return "fabs";
5019 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005020 case ISD::FSQRT: return "fsqrt";
5021 case ISD::FSIN: return "fsin";
5022 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005023 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005024 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005025 case ISD::FTRUNC: return "ftrunc";
5026 case ISD::FFLOOR: return "ffloor";
5027 case ISD::FCEIL: return "fceil";
5028 case ISD::FRINT: return "frint";
5029 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005030
5031 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005032 case ISD::ADD: return "add";
5033 case ISD::SUB: return "sub";
5034 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005035 case ISD::MULHU: return "mulhu";
5036 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005037 case ISD::SDIV: return "sdiv";
5038 case ISD::UDIV: return "udiv";
5039 case ISD::SREM: return "srem";
5040 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005041 case ISD::SMUL_LOHI: return "smul_lohi";
5042 case ISD::UMUL_LOHI: return "umul_lohi";
5043 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005044 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005045 case ISD::AND: return "and";
5046 case ISD::OR: return "or";
5047 case ISD::XOR: return "xor";
5048 case ISD::SHL: return "shl";
5049 case ISD::SRA: return "sra";
5050 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005051 case ISD::ROTL: return "rotl";
5052 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005053 case ISD::FADD: return "fadd";
5054 case ISD::FSUB: return "fsub";
5055 case ISD::FMUL: return "fmul";
5056 case ISD::FDIV: return "fdiv";
5057 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005058 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005059 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005060
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005061 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005062 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005063 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005064 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005065 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005066 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005067 case ISD::CONCAT_VECTORS: return "concat_vectors";
5068 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005069 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005070 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005071 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005072 case ISD::ADDC: return "addc";
5073 case ISD::ADDE: return "adde";
5074 case ISD::SUBC: return "subc";
5075 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005076 case ISD::SHL_PARTS: return "shl_parts";
5077 case ISD::SRA_PARTS: return "sra_parts";
5078 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005079
5080 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5081 case ISD::INSERT_SUBREG: return "insert_subreg";
5082
Chris Lattner7f644642005-04-28 21:44:03 +00005083 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005084 case ISD::SIGN_EXTEND: return "sign_extend";
5085 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005086 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005087 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005088 case ISD::TRUNCATE: return "truncate";
5089 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005090 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005091 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005092 case ISD::FP_EXTEND: return "fp_extend";
5093
5094 case ISD::SINT_TO_FP: return "sint_to_fp";
5095 case ISD::UINT_TO_FP: return "uint_to_fp";
5096 case ISD::FP_TO_SINT: return "fp_to_sint";
5097 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005098 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005099
5100 // Control flow instructions
5101 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005102 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005103 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005104 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005105 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005106 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005107 case ISD::CALLSEQ_START: return "callseq_start";
5108 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005109
5110 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005111 case ISD::LOAD: return "load";
5112 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005113 case ISD::VAARG: return "vaarg";
5114 case ISD::VACOPY: return "vacopy";
5115 case ISD::VAEND: return "vaend";
5116 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005117 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005118 case ISD::EXTRACT_ELEMENT: return "extract_element";
5119 case ISD::BUILD_PAIR: return "build_pair";
5120 case ISD::STACKSAVE: return "stacksave";
5121 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005122 case ISD::TRAP: return "trap";
5123
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005124 // Bit manipulation
5125 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005126 case ISD::CTPOP: return "ctpop";
5127 case ISD::CTTZ: return "cttz";
5128 case ISD::CTLZ: return "ctlz";
5129
Chris Lattner36ce6912005-11-29 06:21:05 +00005130 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005131 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005132 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005133
Duncan Sands36397f52007-07-27 12:58:54 +00005134 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005135 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005136
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005137 case ISD::CONDCODE:
5138 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005139 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005140 case ISD::SETOEQ: return "setoeq";
5141 case ISD::SETOGT: return "setogt";
5142 case ISD::SETOGE: return "setoge";
5143 case ISD::SETOLT: return "setolt";
5144 case ISD::SETOLE: return "setole";
5145 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005146
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005147 case ISD::SETO: return "seto";
5148 case ISD::SETUO: return "setuo";
5149 case ISD::SETUEQ: return "setue";
5150 case ISD::SETUGT: return "setugt";
5151 case ISD::SETUGE: return "setuge";
5152 case ISD::SETULT: return "setult";
5153 case ISD::SETULE: return "setule";
5154 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005155
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005156 case ISD::SETEQ: return "seteq";
5157 case ISD::SETGT: return "setgt";
5158 case ISD::SETGE: return "setge";
5159 case ISD::SETLT: return "setlt";
5160 case ISD::SETLE: return "setle";
5161 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005162 }
5163 }
5164}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005165
Evan Cheng144d8f02006-11-09 17:55:04 +00005166const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005167 switch (AM) {
5168 default:
5169 return "";
5170 case ISD::PRE_INC:
5171 return "<pre-inc>";
5172 case ISD::PRE_DEC:
5173 return "<pre-dec>";
5174 case ISD::POST_INC:
5175 return "<post-inc>";
5176 case ISD::POST_DEC:
5177 return "<post-dec>";
5178 }
5179}
5180
Duncan Sands276dcbd2008-03-21 09:14:45 +00005181std::string ISD::ArgFlagsTy::getArgFlagsString() {
5182 std::string S = "< ";
5183
5184 if (isZExt())
5185 S += "zext ";
5186 if (isSExt())
5187 S += "sext ";
5188 if (isInReg())
5189 S += "inreg ";
5190 if (isSRet())
5191 S += "sret ";
5192 if (isByVal())
5193 S += "byval ";
5194 if (isNest())
5195 S += "nest ";
5196 if (getByValAlign())
5197 S += "byval-align:" + utostr(getByValAlign()) + " ";
5198 if (getOrigAlign())
5199 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5200 if (getByValSize())
5201 S += "byval-size:" + utostr(getByValSize()) + " ";
5202 return S + ">";
5203}
5204
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005205void SDNode::dump() const { dump(0); }
5206void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005207 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005208 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005209}
5210
5211void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5212 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005213
5214 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005215 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005216 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005217 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005218 else
Chris Lattner944fac72008-08-23 22:23:09 +00005219 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005220 }
Chris Lattner944fac72008-08-23 22:23:09 +00005221 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005222
Chris Lattner944fac72008-08-23 22:23:09 +00005223 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005224 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005225 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005226 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005227 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005228 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005229 }
5230
Evan Chengce254432007-12-11 02:08:35 +00005231 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005232 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005233 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005234 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005235 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005236 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005237 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005238 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005239 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005240 }
Chris Lattner944fac72008-08-23 22:23:09 +00005241 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005242 }
5243
Chris Lattnerc3aae252005-01-07 07:46:32 +00005244 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005245 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005246 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005247 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005248 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005249 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005250 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005251 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005252 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005253 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005254 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005255 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005256 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005257 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00005258 int offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005259 OS << '<';
5260 WriteAsOperand(OS, GADN->getGlobal());
5261 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005262 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005263 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005264 else
Chris Lattner944fac72008-08-23 22:23:09 +00005265 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005266 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005267 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005268 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005269 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005270 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005271 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005272 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005273 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005274 else
Chris Lattner944fac72008-08-23 22:23:09 +00005275 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005276 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005277 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005278 else
Chris Lattner944fac72008-08-23 22:23:09 +00005279 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005280 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005281 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005282 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5283 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005284 OS << LBB->getName() << " ";
5285 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005286 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005287 if (G && R->getReg() &&
5288 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005289 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005290 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005291 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005292 }
Bill Wendling056292f2008-09-16 21:48:12 +00005293 } else if (const ExternalSymbolSDNode *ES =
5294 dyn_cast<ExternalSymbolSDNode>(this)) {
5295 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005296 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5297 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005298 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005299 else
Chris Lattner944fac72008-08-23 22:23:09 +00005300 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005301 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5302 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005303 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005304 else
Chris Lattner944fac72008-08-23 22:23:09 +00005305 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005306 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005307 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005308 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005309 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005310 }
5311 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005312 const Value *SrcValue = LD->getSrcValue();
5313 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005314 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005315 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005316 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005317 else
Chris Lattner944fac72008-08-23 22:23:09 +00005318 OS << "null";
5319 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005320
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005321 bool doExt = true;
5322 switch (LD->getExtensionType()) {
5323 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005324 case ISD::EXTLOAD: OS << " <anyext "; break;
5325 case ISD::SEXTLOAD: OS << " <sext "; break;
5326 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005327 }
5328 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005329 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005330
Evan Cheng144d8f02006-11-09 17:55:04 +00005331 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005332 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005333 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005334 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005335 OS << " <volatile>";
5336 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005337 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005338 const Value *SrcValue = ST->getSrcValue();
5339 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005340 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005341 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005342 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005343 else
Chris Lattner944fac72008-08-23 22:23:09 +00005344 OS << "null";
5345 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005346
5347 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005348 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005349
5350 const char *AM = getIndexedModeName(ST->getAddressingMode());
5351 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005352 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005353 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005354 OS << " <volatile>";
5355 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005356 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5357 const Value *SrcValue = AT->getSrcValue();
5358 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005359 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005360 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005361 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005362 else
Chris Lattner944fac72008-08-23 22:23:09 +00005363 OS << "null";
5364 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005365 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005366 OS << " <volatile>";
5367 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005368 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005369}
5370
Chris Lattnerde202b32005-11-09 23:47:37 +00005371static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005372 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005373 if (N->getOperand(i).getNode()->hasOneUse())
5374 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005375 else
Bill Wendling832171c2006-12-07 20:04:42 +00005376 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005377 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005378
Chris Lattnerea946cd2005-01-09 20:38:33 +00005379
Bill Wendling832171c2006-12-07 20:04:42 +00005380 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005381 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005382}
5383
Chris Lattnerc3aae252005-01-07 07:46:32 +00005384void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005385 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005386
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005387 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5388 I != E; ++I) {
5389 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005390 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005391 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005392 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005393
Gabor Greifba36cb52008-08-28 21:40:38 +00005394 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005395
Bill Wendling832171c2006-12-07 20:04:42 +00005396 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005397}
5398
Evan Chengd6594ae2006-09-12 21:00:35 +00005399const Type *ConstantPoolSDNode::getType() const {
5400 if (isMachineConstantPoolEntry())
5401 return Val.MachineCPVal->getType();
5402 return Val.ConstVal->getType();
5403}