blob: 3d0a2d6e50cce2989bff7099ca5f3d0a6127deff [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);
Chris Lattnerec4a5672008-03-05 06:48:13 +000087 return Val2.convert(*MVTToAPFloatSemantics(VT),
88 APFloat::rmNearestTiesToEven) == APFloat::opOK;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000089}
90
Jim Laskey58b968b2005-08-17 20:08:02 +000091//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000092// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000093//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000094
Evan Chenga8df1662006-03-27 06:58:47 +000095/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000096/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000097bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000098 // Look through a bit convert.
99 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000100 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000101
Evan Chenga8df1662006-03-27 06:58:47 +0000102 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000103
104 unsigned i = 0, e = N->getNumOperands();
105
106 // Skip over all of the undef values.
107 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
108 ++i;
109
110 // Do not accept an all-undef vector.
111 if (i == e) return false;
112
113 // Do not accept build_vectors that aren't all constants or which have non-~0
114 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000115 SDValue NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000116 if (isa<ConstantSDNode>(NotZero)) {
117 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
118 return false;
119 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000120 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
121 convertToAPInt().isAllOnesValue())
122 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000123 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000124 return false;
125
126 // Okay, we have at least one ~0 value, check to see if the rest match or are
127 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000128 for (++i; i != e; ++i)
129 if (N->getOperand(i) != NotZero &&
130 N->getOperand(i).getOpcode() != ISD::UNDEF)
131 return false;
132 return true;
133}
134
135
Evan Cheng4a147842006-03-26 09:50:58 +0000136/// isBuildVectorAllZeros - Return true if the specified node is a
137/// BUILD_VECTOR where all of the elements are 0 or undef.
138bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000139 // Look through a bit convert.
140 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000141 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000142
Evan Cheng4a147842006-03-26 09:50:58 +0000143 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000144
145 unsigned i = 0, e = N->getNumOperands();
146
147 // Skip over all of the undef values.
148 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
149 ++i;
150
151 // Do not accept an all-undef vector.
152 if (i == e) return false;
153
154 // Do not accept build_vectors that aren't all constants or which have non-~0
155 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000156 SDValue Zero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000157 if (isa<ConstantSDNode>(Zero)) {
158 if (!cast<ConstantSDNode>(Zero)->isNullValue())
159 return false;
160 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000161 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000162 return false;
163 } else
164 return false;
165
166 // Okay, we have at least one ~0 value, check to see if the rest match or are
167 // undefs.
168 for (++i; i != e; ++i)
169 if (N->getOperand(i) != Zero &&
170 N->getOperand(i).getOpcode() != ISD::UNDEF)
171 return false;
172 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000173}
174
Evan Chengefec7512008-02-18 23:04:32 +0000175/// isScalarToVector - Return true if the specified node is a
176/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
177/// element is not an undef.
178bool ISD::isScalarToVector(const SDNode *N) {
179 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
180 return true;
181
182 if (N->getOpcode() != ISD::BUILD_VECTOR)
183 return false;
184 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
185 return false;
186 unsigned NumElems = N->getNumOperands();
187 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000188 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000189 if (V.getOpcode() != ISD::UNDEF)
190 return false;
191 }
192 return true;
193}
194
195
Evan Chengbb81d972008-01-31 09:59:15 +0000196/// isDebugLabel - Return true if the specified node represents a debug
Dan Gohman44066042008-07-01 00:05:16 +0000197/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
Evan Chengbb81d972008-01-31 09:59:15 +0000198bool ISD::isDebugLabel(const SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000199 SDValue Zero;
Dan Gohman44066042008-07-01 00:05:16 +0000200 if (N->getOpcode() == ISD::DBG_LABEL)
201 return true;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000202 if (N->isMachineOpcode() &&
203 N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
Dan Gohman44066042008-07-01 00:05:16 +0000204 return true;
205 return false;
Evan Chengbb81d972008-01-31 09:59:15 +0000206}
207
Chris Lattnerc3aae252005-01-07 07:46:32 +0000208/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
209/// when given the operation for (X op Y).
210ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
211 // To perform this operation, we just need to swap the L and G bits of the
212 // operation.
213 unsigned OldL = (Operation >> 2) & 1;
214 unsigned OldG = (Operation >> 1) & 1;
215 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
216 (OldL << 1) | // New G bit
217 (OldG << 2)); // New L bit.
218}
219
220/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
221/// 'op' is a valid SetCC operation.
222ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
223 unsigned Operation = Op;
224 if (isInteger)
225 Operation ^= 7; // Flip L, G, E bits, but not U.
226 else
227 Operation ^= 15; // Flip all of the condition bits.
228 if (Operation > ISD::SETTRUE2)
229 Operation &= ~8; // Don't let N and U bits get set.
230 return ISD::CondCode(Operation);
231}
232
233
234/// isSignedOp - For an integer comparison, return 1 if the comparison is a
235/// signed operation and 2 if the result is an unsigned comparison. Return zero
236/// if the operation does not depend on the sign of the input (setne and seteq).
237static int isSignedOp(ISD::CondCode Opcode) {
238 switch (Opcode) {
239 default: assert(0 && "Illegal integer setcc operation!");
240 case ISD::SETEQ:
241 case ISD::SETNE: return 0;
242 case ISD::SETLT:
243 case ISD::SETLE:
244 case ISD::SETGT:
245 case ISD::SETGE: return 1;
246 case ISD::SETULT:
247 case ISD::SETULE:
248 case ISD::SETUGT:
249 case ISD::SETUGE: return 2;
250 }
251}
252
253/// getSetCCOrOperation - Return the result of a logical OR between different
254/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
255/// returns SETCC_INVALID if it is not possible to represent the resultant
256/// comparison.
257ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
258 bool isInteger) {
259 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
260 // Cannot fold a signed integer setcc with an unsigned integer setcc.
261 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000262
Chris Lattnerc3aae252005-01-07 07:46:32 +0000263 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000264
Chris Lattnerc3aae252005-01-07 07:46:32 +0000265 // If the N and U bits get set then the resultant comparison DOES suddenly
266 // care about orderedness, and is true when ordered.
267 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000268 Op &= ~16; // Clear the U bit if the N bit is set.
269
270 // Canonicalize illegal integer setcc's.
271 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
272 Op = ISD::SETNE;
273
Chris Lattnerc3aae252005-01-07 07:46:32 +0000274 return ISD::CondCode(Op);
275}
276
277/// getSetCCAndOperation - Return the result of a logical AND between different
278/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
279/// function returns zero if it is not possible to represent the resultant
280/// comparison.
281ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
282 bool isInteger) {
283 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
284 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000285 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000286
287 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000288 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
289
290 // Canonicalize illegal integer setcc's.
291 if (isInteger) {
292 switch (Result) {
293 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000294 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000295 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000296 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
297 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
298 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000299 }
300 }
301
302 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000303}
304
Chris Lattnerb48da392005-01-23 04:39:44 +0000305const TargetMachine &SelectionDAG::getTarget() const {
Dan Gohman6448d912008-09-04 15:39:15 +0000306 return MF->getTarget();
Chris Lattnerb48da392005-01-23 04:39:44 +0000307}
308
Jim Laskey58b968b2005-08-17 20:08:02 +0000309//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000310// SDNode Profile Support
311//===----------------------------------------------------------------------===//
312
Jim Laskeydef69b92006-10-27 23:52:51 +0000313/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
314///
Jim Laskey583bd472006-10-27 23:46:08 +0000315static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
316 ID.AddInteger(OpC);
317}
318
319/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
320/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000321static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000322 ID.AddPointer(VTList.VTs);
323}
324
Jim Laskeydef69b92006-10-27 23:52:51 +0000325/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
326///
Jim Laskey583bd472006-10-27 23:46:08 +0000327static void AddNodeIDOperands(FoldingSetNodeID &ID,
Dan Gohman475871a2008-07-27 21:46:04 +0000328 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000329 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000330 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000331 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000332 }
Jim Laskey583bd472006-10-27 23:46:08 +0000333}
334
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000335/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
336///
337static void AddNodeIDOperands(FoldingSetNodeID &ID,
338 const SDUse *Ops, unsigned NumOps) {
339 for (; NumOps; --NumOps, ++Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +0000340 ID.AddPointer(Ops->getVal());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000341 ID.AddInteger(Ops->getSDValue().getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000342 }
343}
344
Jim Laskey583bd472006-10-27 23:46:08 +0000345static void AddNodeIDNode(FoldingSetNodeID &ID,
346 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000347 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000348 AddNodeIDOpcode(ID, OpC);
349 AddNodeIDValueTypes(ID, VTList);
350 AddNodeIDOperands(ID, OpList, N);
351}
352
Roman Levenstein9cac5252008-04-16 16:15:27 +0000353
Jim Laskeydef69b92006-10-27 23:52:51 +0000354/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
355/// data.
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000356static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000357 AddNodeIDOpcode(ID, N->getOpcode());
358 // Add the return value info.
359 AddNodeIDValueTypes(ID, N->getVTList());
360 // Add the operand info.
361 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
362
363 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000364 switch (N->getOpcode()) {
365 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000366 case ISD::ARG_FLAGS:
367 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
368 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000369 case ISD::TargetConstant:
370 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000371 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000372 break;
373 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000374 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000375 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000376 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000377 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000378 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000379 case ISD::GlobalAddress:
380 case ISD::TargetGlobalTLSAddress:
381 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000382 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000383 ID.AddPointer(GA->getGlobal());
384 ID.AddInteger(GA->getOffset());
385 break;
386 }
387 case ISD::BasicBlock:
388 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
389 break;
390 case ISD::Register:
391 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
392 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000393 case ISD::DBG_STOPPOINT: {
394 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
395 ID.AddInteger(DSP->getLine());
396 ID.AddInteger(DSP->getColumn());
397 ID.AddPointer(DSP->getCompileUnit());
398 break;
399 }
Dan Gohman69de1932008-02-06 22:27:42 +0000400 case ISD::SRCVALUE:
401 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
402 break;
403 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000404 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000405 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000406 break;
407 }
408 case ISD::FrameIndex:
409 case ISD::TargetFrameIndex:
410 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
411 break;
412 case ISD::JumpTable:
413 case ISD::TargetJumpTable:
414 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
415 break;
416 case ISD::ConstantPool:
417 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000418 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000419 ID.AddInteger(CP->getAlignment());
420 ID.AddInteger(CP->getOffset());
421 if (CP->isMachineConstantPoolEntry())
422 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
423 else
424 ID.AddPointer(CP->getConstVal());
425 break;
426 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000427 case ISD::CALL: {
428 const CallSDNode *Call = cast<CallSDNode>(N);
429 ID.AddInteger(Call->getCallingConv());
430 ID.AddInteger(Call->isVarArg());
431 break;
432 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000433 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000434 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000435 ID.AddInteger(LD->getAddressingMode());
436 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000437 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000438 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000439 break;
440 }
441 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000442 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000443 ID.AddInteger(ST->getAddressingMode());
444 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000445 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000446 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000447 break;
448 }
Dale Johannesene00a8a22008-08-28 02:44:49 +0000449 case ISD::ATOMIC_CMP_SWAP_8:
450 case ISD::ATOMIC_SWAP_8:
451 case ISD::ATOMIC_LOAD_ADD_8:
452 case ISD::ATOMIC_LOAD_SUB_8:
453 case ISD::ATOMIC_LOAD_AND_8:
454 case ISD::ATOMIC_LOAD_OR_8:
455 case ISD::ATOMIC_LOAD_XOR_8:
456 case ISD::ATOMIC_LOAD_NAND_8:
457 case ISD::ATOMIC_LOAD_MIN_8:
458 case ISD::ATOMIC_LOAD_MAX_8:
459 case ISD::ATOMIC_LOAD_UMIN_8:
460 case ISD::ATOMIC_LOAD_UMAX_8:
461 case ISD::ATOMIC_CMP_SWAP_16:
462 case ISD::ATOMIC_SWAP_16:
463 case ISD::ATOMIC_LOAD_ADD_16:
464 case ISD::ATOMIC_LOAD_SUB_16:
465 case ISD::ATOMIC_LOAD_AND_16:
466 case ISD::ATOMIC_LOAD_OR_16:
467 case ISD::ATOMIC_LOAD_XOR_16:
468 case ISD::ATOMIC_LOAD_NAND_16:
469 case ISD::ATOMIC_LOAD_MIN_16:
470 case ISD::ATOMIC_LOAD_MAX_16:
471 case ISD::ATOMIC_LOAD_UMIN_16:
472 case ISD::ATOMIC_LOAD_UMAX_16:
473 case ISD::ATOMIC_CMP_SWAP_32:
474 case ISD::ATOMIC_SWAP_32:
475 case ISD::ATOMIC_LOAD_ADD_32:
476 case ISD::ATOMIC_LOAD_SUB_32:
477 case ISD::ATOMIC_LOAD_AND_32:
478 case ISD::ATOMIC_LOAD_OR_32:
479 case ISD::ATOMIC_LOAD_XOR_32:
480 case ISD::ATOMIC_LOAD_NAND_32:
481 case ISD::ATOMIC_LOAD_MIN_32:
482 case ISD::ATOMIC_LOAD_MAX_32:
483 case ISD::ATOMIC_LOAD_UMIN_32:
484 case ISD::ATOMIC_LOAD_UMAX_32:
485 case ISD::ATOMIC_CMP_SWAP_64:
486 case ISD::ATOMIC_SWAP_64:
487 case ISD::ATOMIC_LOAD_ADD_64:
488 case ISD::ATOMIC_LOAD_SUB_64:
489 case ISD::ATOMIC_LOAD_AND_64:
490 case ISD::ATOMIC_LOAD_OR_64:
491 case ISD::ATOMIC_LOAD_XOR_64:
492 case ISD::ATOMIC_LOAD_NAND_64:
493 case ISD::ATOMIC_LOAD_MIN_64:
494 case ISD::ATOMIC_LOAD_MAX_64:
495 case ISD::ATOMIC_LOAD_UMIN_64:
496 case ISD::ATOMIC_LOAD_UMAX_64: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000497 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
498 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000499 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000500 }
Mon P Wang28873102008-06-25 08:15:39 +0000501 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000502}
503
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000504/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
505/// the CSE map that carries both alignment and volatility information.
506///
507static unsigned encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
508 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
509}
510
Jim Laskey583bd472006-10-27 23:46:08 +0000511//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000512// SelectionDAG Class
513//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000514
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000515/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000516/// SelectionDAG.
517void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000518 // Create a dummy node (which is not added to allnodes), that adds a reference
519 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000520 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000521
Chris Lattner190a4182006-08-04 17:45:20 +0000522 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000523
Chris Lattner190a4182006-08-04 17:45:20 +0000524 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000525 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000526 if (I->use_empty())
527 DeadNodes.push_back(I);
528
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000529 RemoveDeadNodes(DeadNodes);
530
531 // If the root changed (e.g. it was a dead load, update the root).
532 setRoot(Dummy.getValue());
533}
534
535/// RemoveDeadNodes - This method deletes the unreachable nodes in the
536/// given list, and any nodes that become unreachable as a result.
537void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
538 DAGUpdateListener *UpdateListener) {
539
Chris Lattner190a4182006-08-04 17:45:20 +0000540 // Process the worklist, deleting the nodes and adding their uses to the
541 // worklist.
542 while (!DeadNodes.empty()) {
543 SDNode *N = DeadNodes.back();
544 DeadNodes.pop_back();
545
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000546 if (UpdateListener)
547 UpdateListener->NodeDeleted(N, 0);
548
Chris Lattner190a4182006-08-04 17:45:20 +0000549 // Take the node out of the appropriate CSE map.
550 RemoveNodeFromCSEMaps(N);
551
552 // Next, brutally remove the operand list. This is safe to do, as there are
553 // no cycles in the graph.
554 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000555 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000556 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000557
558 // Now that we removed this operand, see if there are no uses of it left.
559 if (Operand->use_empty())
560 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000561 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000562 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000563 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000564 }
Chris Lattner190a4182006-08-04 17:45:20 +0000565 N->OperandList = 0;
566 N->NumOperands = 0;
567
568 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000569 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000570 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000571}
572
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000573void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000574 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000575 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000576}
577
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000578void SelectionDAG::DeleteNode(SDNode *N) {
579 assert(N->use_empty() && "Cannot delete a node that is not dead!");
580
581 // First take this out of the appropriate CSE map.
582 RemoveNodeFromCSEMaps(N);
583
Chris Lattner1e111c72005-09-07 05:37:01 +0000584 // Finally, remove uses due to operands of this node, remove from the
585 // AllNodes list, and delete the node.
586 DeleteNodeNotInCSEMaps(N);
587}
588
589void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
590
Dan Gohmanf06c8352008-09-30 18:30:35 +0000591 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000592 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000593 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Dan Gohmanf350b272008-08-23 02:25:05 +0000594 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000595 delete[] N->OperandList;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000596
Dan Gohman11467282008-08-26 01:44:34 +0000597 assert(N != AllNodes.begin());
598 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000599}
600
Chris Lattner149c58c2005-08-16 18:17:10 +0000601/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
602/// correspond to it. This is useful when we're about to delete or repurpose
603/// the node. We don't want future request for structurally identical nodes
604/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000605bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000606 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000607 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000608 case ISD::EntryToken:
609 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000610 return false;
611 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000612 case ISD::CONDCODE:
613 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
614 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000615 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000616 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
617 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000618 case ISD::ExternalSymbol:
619 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000620 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000621 case ISD::TargetExternalSymbol:
622 Erased =
623 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000624 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000625 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000626 MVT VT = cast<VTSDNode>(N)->getVT();
627 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000628 Erased = ExtendedValueTypeNodes.erase(VT);
629 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000630 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
631 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000632 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000633 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000634 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000635 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000636 // Remove it from the CSE Map.
637 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000638 break;
639 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000640#ifndef NDEBUG
641 // Verify that the node was actually in one of the CSE maps, unless it has a
642 // flag result (which cannot be CSE'd) or is one of the special cases that are
643 // not subject to CSE.
644 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Dan Gohman095cc292008-09-13 01:54:27 +0000645 !N->isMachineOpcode() &&
Evan Cheng71e86852008-07-08 20:06:39 +0000646 N->getOpcode() != ISD::DBG_LABEL &&
647 N->getOpcode() != ISD::DBG_STOPPOINT &&
648 N->getOpcode() != ISD::EH_LABEL &&
649 N->getOpcode() != ISD::DECLARE) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000650 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000651 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000652 assert(0 && "Node is not in map!");
653 }
654#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000655 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000656}
657
Chris Lattner8b8749f2005-08-17 19:00:20 +0000658/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
659/// has been taken out and modified in some way. If the specified node already
660/// exists in the CSE maps, do not modify the maps, but return the existing node
661/// instead. If it doesn't exist, add it and return null.
662///
663SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
664 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000665
666 if (N->getValueType(0) == MVT::Flag)
667 return 0; // Never CSE anything that produces a flag.
668
669 switch (N->getOpcode()) {
670 default: break;
671 case ISD::HANDLENODE:
672 case ISD::DBG_LABEL:
673 case ISD::DBG_STOPPOINT:
674 case ISD::EH_LABEL:
675 case ISD::DECLARE:
Chris Lattnerfe14b342005-12-01 23:14:50 +0000676 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000677 }
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000678
Chris Lattner9f8cc692005-12-19 22:21:21 +0000679 // Check that remaining values produced are not flags.
680 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
681 if (N->getValueType(i) == MVT::Flag)
682 return 0; // Never CSE anything that produces a flag.
683
Chris Lattnera5682852006-08-07 23:03:03 +0000684 SDNode *New = CSEMap.GetOrInsertNode(N);
685 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000686 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000687}
688
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000689/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
690/// were replaced with those specified. If this node is never memoized,
691/// return null, otherwise return a pointer to the slot it would take. If a
692/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000693SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000694 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000695 if (N->getValueType(0) == MVT::Flag)
696 return 0; // Never CSE anything that produces a flag.
697
698 switch (N->getOpcode()) {
699 default: break;
700 case ISD::HANDLENODE:
701 case ISD::DBG_LABEL:
702 case ISD::DBG_STOPPOINT:
703 case ISD::EH_LABEL:
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000704 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000705 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000706
707 // Check that remaining values produced are not flags.
708 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
709 if (N->getValueType(i) == MVT::Flag)
710 return 0; // Never CSE anything that produces a flag.
711
Dan Gohman475871a2008-07-27 21:46:04 +0000712 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000713 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000714 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000715 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000716}
717
718/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
719/// were replaced with those specified. If this node is never memoized,
720/// return null, otherwise return a pointer to the slot it would take. If a
721/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000722SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000723 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000724 void *&InsertPos) {
725 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnera5682852006-08-07 23:03:03 +0000726
727 // Check that remaining values produced are not flags.
728 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
729 if (N->getValueType(i) == MVT::Flag)
730 return 0; // Never CSE anything that produces a flag.
731
Dan Gohman475871a2008-07-27 21:46:04 +0000732 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000733 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000734 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000735 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
736}
737
738
739/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
740/// were replaced with those specified. If this node is never memoized,
741/// return null, otherwise return a pointer to the slot it would take. If a
742/// node already exists with these operands, the slot will be non-null.
743SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000744 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000745 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000746 if (N->getValueType(0) == MVT::Flag)
747 return 0; // Never CSE anything that produces a flag.
748
749 switch (N->getOpcode()) {
750 default: break;
751 case ISD::HANDLENODE:
752 case ISD::DBG_LABEL:
753 case ISD::DBG_STOPPOINT:
754 case ISD::EH_LABEL:
755 case ISD::DECLARE:
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000756 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000757 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000758
759 // Check that remaining values produced are not flags.
760 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
761 if (N->getValueType(i) == MVT::Flag)
762 return 0; // Never CSE anything that produces a flag.
763
Jim Laskey583bd472006-10-27 23:46:08 +0000764 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000765 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000766
Evan Cheng9629aba2006-10-11 01:47:58 +0000767 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
768 ID.AddInteger(LD->getAddressingMode());
769 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000770 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000771 ID.AddInteger(LD->getRawFlags());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000772 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
773 ID.AddInteger(ST->getAddressingMode());
774 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000775 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000776 ID.AddInteger(ST->getRawFlags());
Evan Cheng9629aba2006-10-11 01:47:58 +0000777 }
Jim Laskey583bd472006-10-27 23:46:08 +0000778
Chris Lattnera5682852006-08-07 23:03:03 +0000779 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000780}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000781
Duncan Sandsd038e042008-07-21 10:20:31 +0000782/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
783void SelectionDAG::VerifyNode(SDNode *N) {
784 switch (N->getOpcode()) {
785 default:
786 break;
787 case ISD::BUILD_VECTOR: {
788 assert(N->getNumValues() == 1 && "Too many results for BUILD_VECTOR!");
789 assert(N->getValueType(0).isVector() && "Wrong BUILD_VECTOR return type!");
790 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
791 "Wrong number of BUILD_VECTOR operands!");
792 MVT EltVT = N->getValueType(0).getVectorElementType();
793 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Dan Gohman475871a2008-07-27 21:46:04 +0000794 assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd038e042008-07-21 10:20:31 +0000795 "Wrong BUILD_VECTOR operand type!");
796 break;
797 }
798 }
799}
800
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000801/// getMVTAlignment - Compute the default alignment value for the
802/// given type.
803///
804unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
805 const Type *Ty = VT == MVT::iPTR ?
806 PointerType::get(Type::Int8Ty, 0) :
807 VT.getTypeForMVT();
808
809 return TLI.getTargetData()->getABITypeAlignment(Ty);
810}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000811
Dan Gohman7c3234c2008-08-27 23:52:12 +0000812SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
813 : TLI(tli), FLI(fli),
814 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000815 Root(getEntryNode()) {
816 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000817}
818
Dan Gohman7c3234c2008-08-27 23:52:12 +0000819void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
820 MF = &mf;
821 MMI = mmi;
822}
823
Chris Lattner78ec3112003-08-11 14:57:33 +0000824SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000825 allnodes_clear();
826}
827
828void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000829 assert(&*AllNodes.begin() == &EntryNode);
830 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000831 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000832 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000833 N->SetNextInBucket(0);
Dan Gohmanf350b272008-08-23 02:25:05 +0000834 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000835 delete [] N->OperandList;
Dan Gohman11467282008-08-26 01:44:34 +0000836 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000837 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000838}
839
Dan Gohman7c3234c2008-08-27 23:52:12 +0000840void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000841 allnodes_clear();
842 OperandAllocator.Reset();
843 CSEMap.clear();
844
845 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000846 ExternalSymbols.clear();
847 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000848 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
849 static_cast<CondCodeSDNode*>(0));
850 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
851 static_cast<SDNode*>(0));
852
853 EntryNode.Uses = 0;
854 AllNodes.push_back(&EntryNode);
855 Root = getEntryNode();
856}
857
Dan Gohman475871a2008-07-27 21:46:04 +0000858SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000859 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000860 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000861 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000862 return getNode(ISD::AND, Op.getValueType(), Op,
863 getConstant(Imm, Op.getValueType()));
864}
865
Dan Gohman475871a2008-07-27 21:46:04 +0000866SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000867 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000868 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000869}
870
Dan Gohman475871a2008-07-27 21:46:04 +0000871SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000872 return getConstant(*ConstantInt::get(Val), VT, isT);
873}
874
875SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000876 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000877
Evan Cheng0ff39b32008-06-30 07:31:25 +0000878 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000880 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000881
882 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000883 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000884 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000885 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000886 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000887 SDNode *N = NULL;
888 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000889 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000890 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000891 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000892 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000893 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000894 CSEMap.InsertNode(N, IP);
895 AllNodes.push_back(N);
896 }
897
Dan Gohman475871a2008-07-27 21:46:04 +0000898 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000899 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000900 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000901 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000902 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
903 }
904 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000905}
906
Dan Gohman475871a2008-07-27 21:46:04 +0000907SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000908 return getConstant(Val, TLI.getPointerTy(), isTarget);
909}
910
911
Dan Gohman475871a2008-07-27 21:46:04 +0000912SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000913 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
914}
915
916SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000917 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000918
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919 MVT EltVT =
920 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000921
Chris Lattnerd8658612005-02-17 20:17:32 +0000922 // Do the map lookup using the actual bit pattern for the floating point
923 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
924 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000925 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000926 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000927 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000928 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000929 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000930 SDNode *N = NULL;
931 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000932 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000933 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000934 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000935 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000936 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000937 CSEMap.InsertNode(N, IP);
938 AllNodes.push_back(N);
939 }
940
Dan Gohman475871a2008-07-27 21:46:04 +0000941 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000942 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000943 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000944 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000945 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
946 }
947 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000948}
949
Dan Gohman475871a2008-07-27 21:46:04 +0000950SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000951 MVT EltVT =
952 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000953 if (EltVT==MVT::f32)
954 return getConstantFP(APFloat((float)Val), VT, isTarget);
955 else
956 return getConstantFP(APFloat(Val), VT, isTarget);
957}
958
Dan Gohman475871a2008-07-27 21:46:04 +0000959SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
960 MVT VT, int Offset,
961 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000962 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000963
964 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
965 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000966 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000967 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000968 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000969 }
970
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000971 if (GVar && GVar->isThreadLocal())
972 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
973 else
974 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000975
Jim Laskey583bd472006-10-27 23:46:08 +0000976 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000977 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000978 ID.AddPointer(GV);
979 ID.AddInteger(Offset);
980 void *IP = 0;
981 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000982 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000983 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000984 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +0000985 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000986 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000987 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000988}
989
Dan Gohman475871a2008-07-27 21:46:04 +0000990SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000991 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000992 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000993 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000994 ID.AddInteger(FI);
995 void *IP = 0;
996 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000997 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000998 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000999 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001000 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001001 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001002 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001003}
1004
Dan Gohman475871a2008-07-27 21:46:04 +00001005SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001006 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001007 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001008 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001009 ID.AddInteger(JTI);
1010 void *IP = 0;
1011 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001012 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001013 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001014 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001015 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001016 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001017 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001018}
1019
Dan Gohman475871a2008-07-27 21:46:04 +00001020SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1021 unsigned Alignment, int Offset,
1022 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001023 if (Alignment == 0)
1024 Alignment =
1025 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001026 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001027 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001028 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001029 ID.AddInteger(Alignment);
1030 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001031 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001032 void *IP = 0;
1033 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001034 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001035 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001036 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001037 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001038 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001039 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001040}
1041
Chris Lattnerc3aae252005-01-07 07:46:32 +00001042
Dan Gohman475871a2008-07-27 21:46:04 +00001043SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1044 unsigned Alignment, int Offset,
1045 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001046 if (Alignment == 0)
1047 Alignment =
1048 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001049 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001050 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001051 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001052 ID.AddInteger(Alignment);
1053 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001054 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001055 void *IP = 0;
1056 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001057 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001058 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001059 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001060 CSEMap.InsertNode(N, IP);
1061 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001062 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001063}
1064
1065
Dan Gohman475871a2008-07-27 21:46:04 +00001066SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001067 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001068 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001069 ID.AddPointer(MBB);
1070 void *IP = 0;
1071 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001072 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001073 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001074 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001075 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001076 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001077 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001078}
1079
Dan Gohman475871a2008-07-27 21:46:04 +00001080SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001081 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001082 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001083 ID.AddInteger(Flags.getRawBits());
1084 void *IP = 0;
1085 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001086 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001087 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001088 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001089 CSEMap.InsertNode(N, IP);
1090 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001091 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001092}
1093
Dan Gohman475871a2008-07-27 21:46:04 +00001094SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001095 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1096 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001097
Duncan Sands83ec4b62008-06-06 12:08:01 +00001098 SDNode *&N = VT.isExtended() ?
1099 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001100
Dan Gohman475871a2008-07-27 21:46:04 +00001101 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001102 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001103 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001104 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001105 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001106}
1107
Bill Wendling056292f2008-09-16 21:48:12 +00001108SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1109 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001110 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001111 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1112 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001113 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001114 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001115}
1116
Bill Wendling056292f2008-09-16 21:48:12 +00001117SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1118 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001119 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001120 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1121 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001122 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001123 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001124}
1125
Dan Gohman475871a2008-07-27 21:46:04 +00001126SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001127 if ((unsigned)Cond >= CondCodeNodes.size())
1128 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001129
Chris Lattner079a27a2005-08-09 20:40:02 +00001130 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001131 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001132 new (N) CondCodeSDNode(Cond);
1133 CondCodeNodes[Cond] = N;
1134 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001135 }
Dan Gohman475871a2008-07-27 21:46:04 +00001136 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001137}
1138
Dan Gohman475871a2008-07-27 21:46:04 +00001139SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001140 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001141 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001142 ID.AddInteger(RegNo);
1143 void *IP = 0;
1144 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001145 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001146 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001147 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001148 CSEMap.InsertNode(N, IP);
1149 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001150 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001151}
1152
Dan Gohman475871a2008-07-27 21:46:04 +00001153SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001154 unsigned Line, unsigned Col,
1155 const CompileUnitDesc *CU) {
1156 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001157 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001158 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001159 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001160}
1161
Dan Gohman475871a2008-07-27 21:46:04 +00001162SDValue SelectionDAG::getLabel(unsigned Opcode,
1163 SDValue Root,
1164 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001165 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001166 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001167 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1168 ID.AddInteger(LabelID);
1169 void *IP = 0;
1170 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001171 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001172 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001173 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001174 CSEMap.InsertNode(N, IP);
1175 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001176 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001177}
1178
Dan Gohman475871a2008-07-27 21:46:04 +00001179SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001180 assert((!V || isa<PointerType>(V->getType())) &&
1181 "SrcValue is not a pointer?");
1182
Jim Laskey583bd472006-10-27 23:46:08 +00001183 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001184 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001185 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001186
Chris Lattner61b09412006-08-11 21:01:22 +00001187 void *IP = 0;
1188 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001189 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001190
Dan Gohmanfed90b62008-07-28 21:51:04 +00001191 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001192 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001193 CSEMap.InsertNode(N, IP);
1194 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001195 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001196}
1197
Dan Gohman475871a2008-07-27 21:46:04 +00001198SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001199 const Value *v = MO.getValue();
1200 assert((!v || isa<PointerType>(v->getType())) &&
1201 "SrcValue is not a pointer?");
1202
1203 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001204 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001205 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001206
1207 void *IP = 0;
1208 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001209 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001210
Dan Gohmanfed90b62008-07-28 21:51:04 +00001211 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001212 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001213 CSEMap.InsertNode(N, IP);
1214 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001215 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001216}
1217
Chris Lattner37ce9df2007-10-15 17:47:20 +00001218/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1219/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001220SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001221 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001222 unsigned ByteSize = VT.getSizeInBits()/8;
1223 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001224 unsigned StackAlign =
1225 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1226
Chris Lattner37ce9df2007-10-15 17:47:20 +00001227 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1228 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1229}
1230
Dan Gohman475871a2008-07-27 21:46:04 +00001231SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1232 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001233 // These setcc operations always fold.
1234 switch (Cond) {
1235 default: break;
1236 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001237 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001238 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001239 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001240
1241 case ISD::SETOEQ:
1242 case ISD::SETOGT:
1243 case ISD::SETOGE:
1244 case ISD::SETOLT:
1245 case ISD::SETOLE:
1246 case ISD::SETONE:
1247 case ISD::SETO:
1248 case ISD::SETUO:
1249 case ISD::SETUEQ:
1250 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001251 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001252 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001253 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001254
Gabor Greifba36cb52008-08-28 21:40:38 +00001255 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001256 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001258 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001259
Chris Lattnerc3aae252005-01-07 07:46:32 +00001260 switch (Cond) {
1261 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001262 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1263 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001264 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1265 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1266 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1267 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1268 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1269 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1270 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1271 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001272 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001273 }
Chris Lattner67255a12005-04-07 18:14:58 +00001274 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001275 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1276 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001277 // No compile time operations on this type yet.
1278 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001279 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001280
1281 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001282 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001283 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001284 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1285 return getNode(ISD::UNDEF, VT);
1286 // fall through
1287 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1288 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1289 return getNode(ISD::UNDEF, VT);
1290 // fall through
1291 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001292 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001293 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1294 return getNode(ISD::UNDEF, VT);
1295 // fall through
1296 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1297 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1298 return getNode(ISD::UNDEF, VT);
1299 // fall through
1300 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1301 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1302 return getNode(ISD::UNDEF, VT);
1303 // fall through
1304 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001305 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001306 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1307 return getNode(ISD::UNDEF, VT);
1308 // fall through
1309 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001310 R==APFloat::cmpEqual, VT);
1311 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1312 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1313 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1314 R==APFloat::cmpEqual, VT);
1315 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1316 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1317 R==APFloat::cmpLessThan, VT);
1318 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1319 R==APFloat::cmpUnordered, VT);
1320 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1321 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001322 }
1323 } else {
1324 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001325 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001326 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001327 }
1328
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001329 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001330 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001331}
1332
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001333/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1334/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001335bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001336 unsigned BitWidth = Op.getValueSizeInBits();
1337 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1338}
1339
Dan Gohmanea859be2007-06-22 14:59:07 +00001340/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1341/// this predicate to simplify operations downstream. Mask is known to be zero
1342/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001343bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001344 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001345 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001346 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1347 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1348 return (KnownZero & Mask) == Mask;
1349}
1350
1351/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1352/// known to be either zero or one and return them in the KnownZero/KnownOne
1353/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1354/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001355void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001356 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001357 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001358 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001359 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001360 "Mask size mismatches value type size!");
1361
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001362 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001363 if (Depth == 6 || Mask == 0)
1364 return; // Limit search depth.
1365
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001366 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001367
1368 switch (Op.getOpcode()) {
1369 case ISD::Constant:
1370 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001371 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001372 KnownZero = ~KnownOne & Mask;
1373 return;
1374 case ISD::AND:
1375 // If either the LHS or the RHS are Zero, the result is zero.
1376 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001377 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1378 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001379 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1380 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1381
1382 // Output known-1 bits are only known if set in both the LHS & RHS.
1383 KnownOne &= KnownOne2;
1384 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1385 KnownZero |= KnownZero2;
1386 return;
1387 case ISD::OR:
1388 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001389 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1390 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001391 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1392 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1393
1394 // Output known-0 bits are only known if clear in both the LHS & RHS.
1395 KnownZero &= KnownZero2;
1396 // Output known-1 are known to be set if set in either the LHS | RHS.
1397 KnownOne |= KnownOne2;
1398 return;
1399 case ISD::XOR: {
1400 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1401 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1402 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1403 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1404
1405 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001406 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001407 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1408 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1409 KnownZero = KnownZeroOut;
1410 return;
1411 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001412 case ISD::MUL: {
1413 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1414 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1415 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1416 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1417 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1418
1419 // If low bits are zero in either operand, output low known-0 bits.
1420 // Also compute a conserative estimate for high known-0 bits.
1421 // More trickiness is possible, but this is sufficient for the
1422 // interesting case of alignment computation.
1423 KnownOne.clear();
1424 unsigned TrailZ = KnownZero.countTrailingOnes() +
1425 KnownZero2.countTrailingOnes();
1426 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001427 KnownZero2.countLeadingOnes(),
1428 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001429
1430 TrailZ = std::min(TrailZ, BitWidth);
1431 LeadZ = std::min(LeadZ, BitWidth);
1432 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1433 APInt::getHighBitsSet(BitWidth, LeadZ);
1434 KnownZero &= Mask;
1435 return;
1436 }
1437 case ISD::UDIV: {
1438 // For the purposes of computing leading zeros we can conservatively
1439 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001440 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001441 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1442 ComputeMaskedBits(Op.getOperand(0),
1443 AllOnes, KnownZero2, KnownOne2, Depth+1);
1444 unsigned LeadZ = KnownZero2.countLeadingOnes();
1445
1446 KnownOne2.clear();
1447 KnownZero2.clear();
1448 ComputeMaskedBits(Op.getOperand(1),
1449 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001450 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1451 if (RHSUnknownLeadingOnes != BitWidth)
1452 LeadZ = std::min(BitWidth,
1453 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001454
1455 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1456 return;
1457 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001458 case ISD::SELECT:
1459 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1460 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1461 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1462 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1463
1464 // Only known if known in both the LHS and RHS.
1465 KnownOne &= KnownOne2;
1466 KnownZero &= KnownZero2;
1467 return;
1468 case ISD::SELECT_CC:
1469 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1470 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1471 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1472 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1473
1474 // Only known if known in both the LHS and RHS.
1475 KnownOne &= KnownOne2;
1476 KnownZero &= KnownZero2;
1477 return;
1478 case ISD::SETCC:
1479 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001480 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1481 BitWidth > 1)
1482 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001483 return;
1484 case ISD::SHL:
1485 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1486 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001487 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001488
1489 // If the shift count is an invalid immediate, don't do anything.
1490 if (ShAmt >= BitWidth)
1491 return;
1492
1493 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001494 KnownZero, KnownOne, Depth+1);
1495 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001496 KnownZero <<= ShAmt;
1497 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001498 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001499 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001500 }
1501 return;
1502 case ISD::SRL:
1503 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1504 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001505 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001506
Dan Gohmand4cf9922008-02-26 18:50:50 +00001507 // If the shift count is an invalid immediate, don't do anything.
1508 if (ShAmt >= BitWidth)
1509 return;
1510
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001511 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001512 KnownZero, KnownOne, Depth+1);
1513 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001514 KnownZero = KnownZero.lshr(ShAmt);
1515 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001516
Dan Gohman72d2fd52008-02-13 22:43:25 +00001517 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001518 KnownZero |= HighBits; // High bits known zero.
1519 }
1520 return;
1521 case ISD::SRA:
1522 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001523 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001524
Dan Gohmand4cf9922008-02-26 18:50:50 +00001525 // If the shift count is an invalid immediate, don't do anything.
1526 if (ShAmt >= BitWidth)
1527 return;
1528
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001529 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001530 // If any of the demanded bits are produced by the sign extension, we also
1531 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001532 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1533 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001534 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001535
1536 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1537 Depth+1);
1538 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001539 KnownZero = KnownZero.lshr(ShAmt);
1540 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001541
1542 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001543 APInt SignBit = APInt::getSignBit(BitWidth);
1544 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001545
Dan Gohmanca93a432008-02-20 16:30:17 +00001546 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001547 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001548 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001549 KnownOne |= HighBits; // New bits are known one.
1550 }
1551 }
1552 return;
1553 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001554 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1555 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001556
1557 // Sign extension. Compute the demanded bits in the result that are not
1558 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001559 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001560
Dan Gohman977a76f2008-02-13 22:28:48 +00001561 APInt InSignBit = APInt::getSignBit(EBits);
1562 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001563
1564 // If the sign extended bits are demanded, we know that the sign
1565 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001566 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001567 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001568 InputDemandedBits |= InSignBit;
1569
1570 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1571 KnownZero, KnownOne, Depth+1);
1572 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1573
1574 // If the sign bit of the input is known set or clear, then we know the
1575 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001576 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001577 KnownZero |= NewBits;
1578 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001579 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001580 KnownOne |= NewBits;
1581 KnownZero &= ~NewBits;
1582 } else { // Input sign bit unknown
1583 KnownZero &= ~NewBits;
1584 KnownOne &= ~NewBits;
1585 }
1586 return;
1587 }
1588 case ISD::CTTZ:
1589 case ISD::CTLZ:
1590 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001591 unsigned LowBits = Log2_32(BitWidth)+1;
1592 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001593 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001594 return;
1595 }
1596 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001597 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001598 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001599 MVT VT = LD->getMemoryVT();
1600 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001601 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001602 }
1603 return;
1604 }
1605 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001606 MVT InVT = Op.getOperand(0).getValueType();
1607 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001608 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1609 APInt InMask = Mask;
1610 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001611 KnownZero.trunc(InBits);
1612 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001613 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001614 KnownZero.zext(BitWidth);
1615 KnownOne.zext(BitWidth);
1616 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001617 return;
1618 }
1619 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001620 MVT InVT = Op.getOperand(0).getValueType();
1621 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001622 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001623 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1624 APInt InMask = Mask;
1625 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001626
1627 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001628 // bit is demanded. Temporarily set this bit in the mask for our callee.
1629 if (NewBits.getBoolValue())
1630 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001631
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001632 KnownZero.trunc(InBits);
1633 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001634 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1635
1636 // Note if the sign bit is known to be zero or one.
1637 bool SignBitKnownZero = KnownZero.isNegative();
1638 bool SignBitKnownOne = KnownOne.isNegative();
1639 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1640 "Sign bit can't be known to be both zero and one!");
1641
1642 // If the sign bit wasn't actually demanded by our caller, we don't
1643 // want it set in the KnownZero and KnownOne result values. Reset the
1644 // mask and reapply it to the result values.
1645 InMask = Mask;
1646 InMask.trunc(InBits);
1647 KnownZero &= InMask;
1648 KnownOne &= InMask;
1649
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001650 KnownZero.zext(BitWidth);
1651 KnownOne.zext(BitWidth);
1652
Dan Gohman977a76f2008-02-13 22:28:48 +00001653 // If the sign bit is known zero or one, the top bits match.
1654 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001655 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001656 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001657 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001658 return;
1659 }
1660 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001661 MVT InVT = Op.getOperand(0).getValueType();
1662 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001663 APInt InMask = Mask;
1664 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001665 KnownZero.trunc(InBits);
1666 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001667 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001668 KnownZero.zext(BitWidth);
1669 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001670 return;
1671 }
1672 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001673 MVT InVT = Op.getOperand(0).getValueType();
1674 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001675 APInt InMask = Mask;
1676 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001677 KnownZero.zext(InBits);
1678 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001679 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001680 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001681 KnownZero.trunc(BitWidth);
1682 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001683 break;
1684 }
1685 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001686 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1687 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001688 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1689 KnownOne, Depth+1);
1690 KnownZero |= (~InMask) & Mask;
1691 return;
1692 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001693 case ISD::FGETSIGN:
1694 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001695 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001696 return;
1697
Dan Gohman23e8b712008-04-28 17:02:21 +00001698 case ISD::SUB: {
1699 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1700 // We know that the top bits of C-X are clear if X contains less bits
1701 // than C (i.e. no wrap-around can happen). For example, 20-X is
1702 // positive if we can prove that X is >= 0 and < 16.
1703 if (CLHS->getAPIntValue().isNonNegative()) {
1704 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1705 // NLZ can't be BitWidth with no sign bit
1706 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1707 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1708 Depth+1);
1709
1710 // If all of the MaskV bits are known to be zero, then we know the
1711 // output top bits are zero, because we now know that the output is
1712 // from [0-C].
1713 if ((KnownZero2 & MaskV) == MaskV) {
1714 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1715 // Top bits known zero.
1716 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1717 }
1718 }
1719 }
1720 }
1721 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001722 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001723 // Output known-0 bits are known if clear or set in both the low clear bits
1724 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1725 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001726 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1727 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1728 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1729 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1730
1731 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1732 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1733 KnownZeroOut = std::min(KnownZeroOut,
1734 KnownZero2.countTrailingOnes());
1735
1736 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001737 return;
1738 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001739 case ISD::SREM:
1740 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001741 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001742 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001743 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001744 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1745 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001746
Dan Gohmana60832b2008-08-13 23:12:35 +00001747 // If the sign bit of the first operand is zero, the sign bit of
1748 // the result is zero. If the first operand has no one bits below
1749 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001750 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1751 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001752
Dan Gohman23e8b712008-04-28 17:02:21 +00001753 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001754
1755 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001756 }
1757 }
1758 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001759 case ISD::UREM: {
1760 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001761 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001762 if (RA.isPowerOf2()) {
1763 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001764 APInt Mask2 = LowBits & Mask;
1765 KnownZero |= ~LowBits & Mask;
1766 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1767 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1768 break;
1769 }
1770 }
1771
1772 // Since the result is less than or equal to either operand, any leading
1773 // zero bits in either operand must also exist in the result.
1774 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1775 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1776 Depth+1);
1777 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1778 Depth+1);
1779
1780 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1781 KnownZero2.countLeadingOnes());
1782 KnownOne.clear();
1783 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1784 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001785 }
1786 default:
1787 // Allow the target to implement this method for its nodes.
1788 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1789 case ISD::INTRINSIC_WO_CHAIN:
1790 case ISD::INTRINSIC_W_CHAIN:
1791 case ISD::INTRINSIC_VOID:
1792 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1793 }
1794 return;
1795 }
1796}
1797
1798/// ComputeNumSignBits - Return the number of times the sign bit of the
1799/// register is replicated into the other bits. We know that at least 1 bit
1800/// is always equal to the sign bit (itself), but other cases can give us
1801/// information. For example, immediately after an "SRA X, 2", we know that
1802/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001803unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001804 MVT VT = Op.getValueType();
1805 assert(VT.isInteger() && "Invalid VT!");
1806 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001807 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001808 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001809
1810 if (Depth == 6)
1811 return 1; // Limit search depth.
1812
1813 switch (Op.getOpcode()) {
1814 default: break;
1815 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001816 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001817 return VTBits-Tmp+1;
1818 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001819 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001820 return VTBits-Tmp;
1821
1822 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001823 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1824 // If negative, return # leading ones.
1825 if (Val.isNegative())
1826 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001827
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001828 // Return # leading zeros.
1829 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001830 }
1831
1832 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001833 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001834 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1835
1836 case ISD::SIGN_EXTEND_INREG:
1837 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001838 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001839 Tmp = VTBits-Tmp+1;
1840
1841 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1842 return std::max(Tmp, Tmp2);
1843
1844 case ISD::SRA:
1845 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1846 // SRA X, C -> adds C sign bits.
1847 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001848 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001849 if (Tmp > VTBits) Tmp = VTBits;
1850 }
1851 return Tmp;
1852 case ISD::SHL:
1853 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1854 // shl destroys sign bits.
1855 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001856 if (C->getZExtValue() >= VTBits || // Bad shift.
1857 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1858 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001859 }
1860 break;
1861 case ISD::AND:
1862 case ISD::OR:
1863 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001864 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001865 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001866 if (Tmp != 1) {
1867 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1868 FirstAnswer = std::min(Tmp, Tmp2);
1869 // We computed what we know about the sign bits as our first
1870 // answer. Now proceed to the generic code that uses
1871 // ComputeMaskedBits, and pick whichever answer is better.
1872 }
1873 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001874
1875 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001876 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001877 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001878 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001879 return std::min(Tmp, Tmp2);
1880
1881 case ISD::SETCC:
1882 // If setcc returns 0/-1, all bits are sign bits.
1883 if (TLI.getSetCCResultContents() ==
1884 TargetLowering::ZeroOrNegativeOneSetCCResult)
1885 return VTBits;
1886 break;
1887 case ISD::ROTL:
1888 case ISD::ROTR:
1889 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001890 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001891
1892 // Handle rotate right by N like a rotate left by 32-N.
1893 if (Op.getOpcode() == ISD::ROTR)
1894 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1895
1896 // If we aren't rotating out all of the known-in sign bits, return the
1897 // number that are left. This handles rotl(sext(x), 1) for example.
1898 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1899 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1900 }
1901 break;
1902 case ISD::ADD:
1903 // Add can have at most one carry bit. Thus we know that the output
1904 // is, at worst, one more bit than the inputs.
1905 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1906 if (Tmp == 1) return 1; // Early out.
1907
1908 // Special case decrementing a value (ADD X, -1):
1909 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1910 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001911 APInt KnownZero, KnownOne;
1912 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001913 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1914
1915 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1916 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001917 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001918 return VTBits;
1919
1920 // If we are subtracting one from a positive number, there is no carry
1921 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001922 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001923 return Tmp;
1924 }
1925
1926 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1927 if (Tmp2 == 1) return 1;
1928 return std::min(Tmp, Tmp2)-1;
1929 break;
1930
1931 case ISD::SUB:
1932 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1933 if (Tmp2 == 1) return 1;
1934
1935 // Handle NEG.
1936 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001937 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001938 APInt KnownZero, KnownOne;
1939 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001940 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1941 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1942 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001943 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001944 return VTBits;
1945
1946 // If the input is known to be positive (the sign bit is known clear),
1947 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001948 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001949 return Tmp2;
1950
1951 // Otherwise, we treat this like a SUB.
1952 }
1953
1954 // Sub can have at most one carry bit. Thus we know that the output
1955 // is, at worst, one more bit than the inputs.
1956 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1957 if (Tmp == 1) return 1; // Early out.
1958 return std::min(Tmp, Tmp2)-1;
1959 break;
1960 case ISD::TRUNCATE:
1961 // FIXME: it's tricky to do anything useful for this, but it is an important
1962 // case for targets like X86.
1963 break;
1964 }
1965
1966 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1967 if (Op.getOpcode() == ISD::LOAD) {
1968 LoadSDNode *LD = cast<LoadSDNode>(Op);
1969 unsigned ExtType = LD->getExtensionType();
1970 switch (ExtType) {
1971 default: break;
1972 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001973 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001974 return VTBits-Tmp+1;
1975 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001976 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001977 return VTBits-Tmp;
1978 }
1979 }
1980
1981 // Allow the target to implement this method for its nodes.
1982 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1983 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1984 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1985 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1986 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00001987 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001988 }
1989
1990 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1991 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001992 APInt KnownZero, KnownOne;
1993 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001994 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1995
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001996 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001997 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001998 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001999 Mask = KnownOne;
2000 } else {
2001 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002002 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002003 }
2004
2005 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2006 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002007 Mask = ~Mask;
2008 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002009 // Return # leading zeros. We use 'min' here in case Val was zero before
2010 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002011 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002012}
2013
Chris Lattner51dabfb2006-10-14 00:41:01 +00002014
Dan Gohman475871a2008-07-27 21:46:04 +00002015bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002016 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2017 if (!GA) return false;
2018 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2019 if (!GV) return false;
2020 MachineModuleInfo *MMI = getMachineModuleInfo();
2021 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2022}
2023
2024
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002025/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2026/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002027SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002028 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002029 SDValue PermMask = N->getOperand(2);
2030 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002031 if (Idx.getOpcode() == ISD::UNDEF)
2032 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002033 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002034 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002035 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002036 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002037
2038 if (V.getOpcode() == ISD::BIT_CONVERT) {
2039 V = V.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002040 if (V.getValueType().getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002041 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002042 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002043 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002044 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002045 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002046 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002047 return V.getOperand(Index);
2048 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002049 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002050 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002051}
2052
2053
Chris Lattnerc3aae252005-01-07 07:46:32 +00002054/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002055///
Dan Gohman475871a2008-07-27 21:46:04 +00002056SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002057 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002058 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002059 void *IP = 0;
2060 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002061 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002062 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002063 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002064 CSEMap.InsertNode(N, IP);
2065
2066 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002067#ifndef NDEBUG
2068 VerifyNode(N);
2069#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002070 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002071}
2072
Dan Gohman475871a2008-07-27 21:46:04 +00002073SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002074 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002075 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002076 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002077 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002078 switch (Opcode) {
2079 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002080 case ISD::SIGN_EXTEND:
2081 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002082 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002083 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002084 case ISD::TRUNCATE:
2085 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002086 case ISD::UINT_TO_FP:
2087 case ISD::SINT_TO_FP: {
2088 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002089 // No compile time operations on this type.
2090 if (VT==MVT::ppcf128)
2091 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002092 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2093 (void)apf.convertFromAPInt(Val,
2094 Opcode==ISD::SINT_TO_FP,
2095 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002096 return getConstantFP(apf, VT);
2097 }
Chris Lattner94683772005-12-23 05:30:37 +00002098 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002099 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002100 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002101 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002102 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002103 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002104 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002105 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002106 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002107 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002108 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002109 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002110 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002111 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002112 }
2113 }
2114
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002115 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002116 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002117 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002118 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002119 switch (Opcode) {
2120 case ISD::FNEG:
2121 V.changeSign();
2122 return getConstantFP(V, VT);
2123 case ISD::FABS:
2124 V.clearSign();
2125 return getConstantFP(V, VT);
2126 case ISD::FP_ROUND:
2127 case ISD::FP_EXTEND:
2128 // This can return overflow, underflow, or inexact; we don't care.
2129 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002130 (void)V.convert(*MVTToAPFloatSemantics(VT),
2131 APFloat::rmNearestTiesToEven);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002132 return getConstantFP(V, VT);
2133 case ISD::FP_TO_SINT:
2134 case ISD::FP_TO_UINT: {
2135 integerPart x;
2136 assert(integerPartWidth >= 64);
2137 // FIXME need to be more flexible about rounding mode.
2138 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2139 Opcode==ISD::FP_TO_SINT,
2140 APFloat::rmTowardZero);
2141 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2142 break;
2143 return getConstant(x, VT);
2144 }
2145 case ISD::BIT_CONVERT:
2146 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2147 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
2148 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2149 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002150 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002151 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002152 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002153 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002154
Gabor Greifba36cb52008-08-28 21:40:38 +00002155 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002156 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002157 case ISD::TokenFactor:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002158 case ISD::CONCAT_VECTORS:
2159 return Operand; // Factor or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002160 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002161 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002162 assert(VT.isFloatingPoint() &&
2163 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002164 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002165 if (Operand.getOpcode() == ISD::UNDEF)
2166 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002167 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002168 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002169 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002170 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002171 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002172 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002173 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002174 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002175 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002176 break;
2177 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002178 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002179 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002180 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002181 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002182 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002183 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002184 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002185 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002186 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002187 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002188 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002189 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002190 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002191 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002192 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2193 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002194 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002195 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002196 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002197 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002198 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002199 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002200 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002201 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002202 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002203 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002204 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2205 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002206 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002207 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2208 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2209 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2210 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002211 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002212 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002213 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002214 break;
Chris Lattner35481892005-12-23 00:16:34 +00002215 case ISD::BIT_CONVERT:
2216 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002217 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002218 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002219 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002220 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2221 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002222 if (OpOpcode == ISD::UNDEF)
2223 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002224 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002225 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002226 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2227 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002228 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002229 if (OpOpcode == ISD::UNDEF)
2230 return getNode(ISD::UNDEF, VT);
2231 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2232 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2233 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2234 Operand.getConstantOperandVal(1) == 0 &&
2235 Operand.getOperand(0).getValueType() == VT)
2236 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002237 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002238 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002239 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002240 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2241 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002242 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002243 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002244 break;
2245 case ISD::FABS:
2246 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002247 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002248 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002249 }
2250
Chris Lattner43247a12005-08-25 19:12:10 +00002251 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002252 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002253 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002254 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002255 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002256 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002257 void *IP = 0;
2258 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002259 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002260 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002261 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002262 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002263 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002264 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002265 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002266 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002267
Chris Lattnerc3aae252005-01-07 07:46:32 +00002268 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002269#ifndef NDEBUG
2270 VerifyNode(N);
2271#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002272 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002273}
2274
Bill Wendling688d1c42008-09-24 10:16:24 +00002275SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2276 MVT VT,
2277 ConstantSDNode *Cst1,
2278 ConstantSDNode *Cst2) {
2279 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2280
2281 switch (Opcode) {
2282 case ISD::ADD: return getConstant(C1 + C2, VT);
2283 case ISD::SUB: return getConstant(C1 - C2, VT);
2284 case ISD::MUL: return getConstant(C1 * C2, VT);
2285 case ISD::UDIV:
2286 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2287 break;
2288 case ISD::UREM:
2289 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2290 break;
2291 case ISD::SDIV:
2292 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2293 break;
2294 case ISD::SREM:
2295 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2296 break;
2297 case ISD::AND: return getConstant(C1 & C2, VT);
2298 case ISD::OR: return getConstant(C1 | C2, VT);
2299 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2300 case ISD::SHL: return getConstant(C1 << C2, VT);
2301 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2302 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2303 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2304 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2305 default: break;
2306 }
2307
2308 return SDValue();
2309}
2310
Dan Gohman475871a2008-07-27 21:46:04 +00002311SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2312 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002313 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2314 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002315 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002316 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002317 case ISD::TokenFactor:
2318 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2319 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002320 // Fold trivial token factors.
2321 if (N1.getOpcode() == ISD::EntryToken) return N2;
2322 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002323 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002324 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002325 case ISD::CONCAT_VECTORS:
2326 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2327 // one big BUILD_VECTOR.
2328 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2329 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002330 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2331 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002332 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2333 }
2334 break;
Chris Lattner76365122005-01-16 02:23:22 +00002335 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002336 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002337 N1.getValueType() == VT && "Binary operator types must match!");
2338 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2339 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002340 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002341 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002342 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2343 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002344 break;
Chris Lattner76365122005-01-16 02:23:22 +00002345 case ISD::OR:
2346 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002347 case ISD::ADD:
2348 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002349 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002350 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002351 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2352 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002353 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002354 return N1;
2355 break;
Chris Lattner76365122005-01-16 02:23:22 +00002356 case ISD::UDIV:
2357 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002358 case ISD::MULHU:
2359 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002360 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002361 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002362 case ISD::MUL:
2363 case ISD::SDIV:
2364 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002365 case ISD::FADD:
2366 case ISD::FSUB:
2367 case ISD::FMUL:
2368 case ISD::FDIV:
2369 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002370 assert(N1.getValueType() == N2.getValueType() &&
2371 N1.getValueType() == VT && "Binary operator types must match!");
2372 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002373 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2374 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002375 N1.getValueType().isFloatingPoint() &&
2376 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002377 "Invalid FCOPYSIGN!");
2378 break;
Chris Lattner76365122005-01-16 02:23:22 +00002379 case ISD::SHL:
2380 case ISD::SRA:
2381 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002382 case ISD::ROTL:
2383 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002384 assert(VT == N1.getValueType() &&
2385 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002386 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002387 "Shifts only work on integers");
2388
2389 // Always fold shifts of i1 values so the code generator doesn't need to
2390 // handle them. Since we know the size of the shift has to be less than the
2391 // size of the value, the shift/rotate count is guaranteed to be zero.
2392 if (VT == MVT::i1)
2393 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002394 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002395 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002396 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002397 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002398 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002399 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002400 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002401 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002402 break;
2403 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002404 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 assert(VT.isFloatingPoint() &&
2406 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002407 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002408 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002409 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002410 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002411 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002412 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002413 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002414 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002415 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002416 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002417 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002418 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002419 break;
2420 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002421 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002422 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002423 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002424 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002425 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002426 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002427 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002428
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002429 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002430 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002431 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002432 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002433 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002434 return getConstant(Val, VT);
2435 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002436 break;
2437 }
2438 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002439 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2440 if (N1.getOpcode() == ISD::UNDEF)
2441 return getNode(ISD::UNDEF, VT);
2442
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002443 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2444 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002445 if (N2C &&
2446 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002447 N1.getNumOperands() > 0) {
2448 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002449 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002450 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002451 N1.getOperand(N2C->getZExtValue() / Factor),
2452 getConstant(N2C->getZExtValue() % Factor,
2453 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002454 }
2455
2456 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2457 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002458 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002459 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002460
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002461 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2462 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002463 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2464 if (N1.getOperand(2) == N2)
2465 return N1.getOperand(1);
2466 else
2467 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2468 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002469 break;
2470 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002471 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002472 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2473 (N1.getValueType().isInteger() == VT.isInteger()) &&
2474 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002475
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002476 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2477 // 64-bit integers into 32-bit parts. Instead of building the extract of
2478 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2479 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002480 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002481
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002482 // EXTRACT_ELEMENT of a constant int is also very common.
2483 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002484 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002485 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002486 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2487 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002488 }
2489 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002490 case ISD::EXTRACT_SUBVECTOR:
2491 if (N1.getValueType() == VT) // Trivial extraction.
2492 return N1;
2493 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002494 }
2495
2496 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002497 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002498 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2499 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002500 } else { // Cannonicalize constant to RHS if commutative
2501 if (isCommutativeBinOp(Opcode)) {
2502 std::swap(N1C, N2C);
2503 std::swap(N1, N2);
2504 }
2505 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002506 }
2507
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002508 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002509 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2510 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002511 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002512 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2513 // Cannonicalize constant to RHS if commutative
2514 std::swap(N1CFP, N2CFP);
2515 std::swap(N1, N2);
2516 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002517 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2518 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002519 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002520 case ISD::FADD:
2521 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002522 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002523 return getConstantFP(V1, VT);
2524 break;
2525 case ISD::FSUB:
2526 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2527 if (s!=APFloat::opInvalidOp)
2528 return getConstantFP(V1, VT);
2529 break;
2530 case ISD::FMUL:
2531 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2532 if (s!=APFloat::opInvalidOp)
2533 return getConstantFP(V1, VT);
2534 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002535 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002536 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2537 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2538 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002539 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002540 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002541 s = V1.mod(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;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002545 case ISD::FCOPYSIGN:
2546 V1.copySign(V2);
2547 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002548 default: break;
2549 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002550 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002551 }
Chris Lattner62b57722006-04-20 05:39:12 +00002552
2553 // Canonicalize an UNDEF to the RHS, even over a constant.
2554 if (N1.getOpcode() == ISD::UNDEF) {
2555 if (isCommutativeBinOp(Opcode)) {
2556 std::swap(N1, N2);
2557 } else {
2558 switch (Opcode) {
2559 case ISD::FP_ROUND_INREG:
2560 case ISD::SIGN_EXTEND_INREG:
2561 case ISD::SUB:
2562 case ISD::FSUB:
2563 case ISD::FDIV:
2564 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002565 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002566 return N1; // fold op(undef, arg2) -> undef
2567 case ISD::UDIV:
2568 case ISD::SDIV:
2569 case ISD::UREM:
2570 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002571 case ISD::SRL:
2572 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002573 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002574 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2575 // For vectors, we can't easily build an all zero vector, just return
2576 // the LHS.
2577 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002578 }
2579 }
2580 }
2581
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002582 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002583 if (N2.getOpcode() == ISD::UNDEF) {
2584 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002585 case ISD::XOR:
2586 if (N1.getOpcode() == ISD::UNDEF)
2587 // Handle undef ^ undef -> 0 special case. This is a common
2588 // idiom (misuse).
2589 return getConstant(0, VT);
2590 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002591 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002592 case ISD::ADDC:
2593 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002594 case ISD::SUB:
2595 case ISD::FADD:
2596 case ISD::FSUB:
2597 case ISD::FMUL:
2598 case ISD::FDIV:
2599 case ISD::FREM:
2600 case ISD::UDIV:
2601 case ISD::SDIV:
2602 case ISD::UREM:
2603 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002604 return N2; // fold op(arg1, undef) -> undef
2605 case ISD::MUL:
2606 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002607 case ISD::SRL:
2608 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002609 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002610 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2611 // For vectors, we can't easily build an all zero vector, just return
2612 // the LHS.
2613 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002614 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002615 if (!VT.isVector())
2616 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002617 // For vectors, we can't easily build an all one vector, just return
2618 // the LHS.
2619 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002620 case ISD::SRA:
2621 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002622 }
2623 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002624
Chris Lattner27e9b412005-05-11 18:57:39 +00002625 // Memoize this node if possible.
2626 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002627 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002628 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002629 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002630 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002631 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002632 void *IP = 0;
2633 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002634 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002635 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002636 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002637 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002638 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002639 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002640 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002641 }
2642
Chris Lattnerc3aae252005-01-07 07:46:32 +00002643 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002644#ifndef NDEBUG
2645 VerifyNode(N);
2646#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002647 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002648}
2649
Dan Gohman475871a2008-07-27 21:46:04 +00002650SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2651 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002652 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002653 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2654 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002655 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002656 case ISD::CONCAT_VECTORS:
2657 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2658 // one big BUILD_VECTOR.
2659 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2660 N2.getOpcode() == ISD::BUILD_VECTOR &&
2661 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002662 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2663 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2664 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002665 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2666 }
2667 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002668 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002669 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002670 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002671 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002672 break;
2673 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002674 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002675 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002676 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002677 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002678 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002679 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002680 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002681
2682 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002683 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002684 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002685 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002686 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002687 return getNode(ISD::BR, MVT::Other, N1, N3);
2688 else
2689 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002690 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002691 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002692 case ISD::VECTOR_SHUFFLE:
2693 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002694 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002695 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002696 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002697 "Illegal VECTOR_SHUFFLE node!");
2698 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002699 case ISD::BIT_CONVERT:
2700 // Fold bit_convert nodes from a type to themselves.
2701 if (N1.getValueType() == VT)
2702 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002703 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002704 }
2705
Chris Lattner43247a12005-08-25 19:12:10 +00002706 // Memoize node if it doesn't produce a flag.
2707 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002708 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002709 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002710 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002711 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002712 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002713 void *IP = 0;
2714 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002715 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002716 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002717 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002718 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002719 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002720 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002721 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002722 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002723 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002724#ifndef NDEBUG
2725 VerifyNode(N);
2726#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002727 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002728}
2729
Dan Gohman475871a2008-07-27 21:46:04 +00002730SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2731 SDValue N1, SDValue N2, SDValue N3,
2732 SDValue N4) {
2733 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002734 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002735}
2736
Dan Gohman475871a2008-07-27 21:46:04 +00002737SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2738 SDValue N1, SDValue N2, SDValue N3,
2739 SDValue N4, SDValue N5) {
2740 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002741 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002742}
2743
Dan Gohman707e0182008-04-12 04:36:06 +00002744/// getMemsetValue - Vectorized representation of the memset value
2745/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002746static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002747 unsigned NumBits = VT.isVector() ?
2748 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002749 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002750 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002751 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002752 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002753 Val = (Val << Shift) | Val;
2754 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002755 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002756 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002757 return DAG.getConstant(Val, VT);
2758 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002759 }
Evan Chengf0df0312008-05-15 08:39:06 +00002760
2761 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2762 unsigned Shift = 8;
2763 for (unsigned i = NumBits; i > 8; i >>= 1) {
2764 Value = DAG.getNode(ISD::OR, VT,
2765 DAG.getNode(ISD::SHL, VT, Value,
2766 DAG.getConstant(Shift, MVT::i8)), Value);
2767 Shift <<= 1;
2768 }
2769
2770 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002771}
2772
Dan Gohman707e0182008-04-12 04:36:06 +00002773/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2774/// used when a memcpy is turned into a memset when the source is a constant
2775/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002776static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002777 const TargetLowering &TLI,
2778 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002779 // Handle vector with all elements zero.
2780 if (Str.empty()) {
2781 if (VT.isInteger())
2782 return DAG.getConstant(0, VT);
2783 unsigned NumElts = VT.getVectorNumElements();
2784 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2785 return DAG.getNode(ISD::BIT_CONVERT, VT,
2786 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2787 }
2788
Duncan Sands83ec4b62008-06-06 12:08:01 +00002789 assert(!VT.isVector() && "Can't handle vector type here!");
2790 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002791 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002792 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002793 if (TLI.isLittleEndian())
2794 Offset = Offset + MSB - 1;
2795 for (unsigned i = 0; i != MSB; ++i) {
2796 Val = (Val << 8) | (unsigned char)Str[Offset];
2797 Offset += TLI.isLittleEndian() ? -1 : 1;
2798 }
2799 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002800}
2801
Dan Gohman707e0182008-04-12 04:36:06 +00002802/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002803///
Dan Gohman475871a2008-07-27 21:46:04 +00002804static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002805 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002806 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002807 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2808}
2809
Evan Chengf0df0312008-05-15 08:39:06 +00002810/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2811///
Dan Gohman475871a2008-07-27 21:46:04 +00002812static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002813 unsigned SrcDelta = 0;
2814 GlobalAddressSDNode *G = NULL;
2815 if (Src.getOpcode() == ISD::GlobalAddress)
2816 G = cast<GlobalAddressSDNode>(Src);
2817 else if (Src.getOpcode() == ISD::ADD &&
2818 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2819 Src.getOperand(1).getOpcode() == ISD::Constant) {
2820 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002821 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002822 }
2823 if (!G)
2824 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002825
Evan Chengf0df0312008-05-15 08:39:06 +00002826 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002827 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2828 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002829
Evan Chengf0df0312008-05-15 08:39:06 +00002830 return false;
2831}
Dan Gohman707e0182008-04-12 04:36:06 +00002832
Evan Chengf0df0312008-05-15 08:39:06 +00002833/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2834/// to replace the memset / memcpy is below the threshold. It also returns the
2835/// types of the sequence of memory ops to perform memset / memcpy.
2836static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002837bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002838 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002839 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002840 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002841 SelectionDAG &DAG,
2842 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002843 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002844 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002845 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002846 MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002847 if (VT != MVT::iAny) {
2848 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002849 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002850 // If source is a string constant, this will require an unaligned load.
2851 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2852 if (Dst.getOpcode() != ISD::FrameIndex) {
2853 // Can't change destination alignment. It requires a unaligned store.
2854 if (AllowUnalign)
2855 VT = MVT::iAny;
2856 } else {
2857 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2858 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2859 if (MFI->isFixedObjectIndex(FI)) {
2860 // Can't change destination alignment. It requires a unaligned store.
2861 if (AllowUnalign)
2862 VT = MVT::iAny;
2863 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002864 // Give the stack frame object a larger alignment if needed.
2865 if (MFI->getObjectAlignment(FI) < NewAlign)
2866 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002867 Align = NewAlign;
2868 }
2869 }
2870 }
2871 }
2872
2873 if (VT == MVT::iAny) {
2874 if (AllowUnalign) {
2875 VT = MVT::i64;
2876 } else {
2877 switch (Align & 7) {
2878 case 0: VT = MVT::i64; break;
2879 case 4: VT = MVT::i32; break;
2880 case 2: VT = MVT::i16; break;
2881 default: VT = MVT::i8; break;
2882 }
2883 }
2884
Duncan Sands83ec4b62008-06-06 12:08:01 +00002885 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002886 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002887 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2888 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002889
Duncan Sands8e4eb092008-06-08 20:54:56 +00002890 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002891 VT = LVT;
2892 }
Dan Gohman707e0182008-04-12 04:36:06 +00002893
2894 unsigned NumMemOps = 0;
2895 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002896 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002897 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002898 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002899 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002900 VT = MVT::i64;
2901 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002902 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2903 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002904 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002905 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002906 VTSize >>= 1;
2907 }
Dan Gohman707e0182008-04-12 04:36:06 +00002908 }
Dan Gohman707e0182008-04-12 04:36:06 +00002909
2910 if (++NumMemOps > Limit)
2911 return false;
2912 MemOps.push_back(VT);
2913 Size -= VTSize;
2914 }
2915
2916 return true;
2917}
2918
Dan Gohman475871a2008-07-27 21:46:04 +00002919static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2920 SDValue Chain, SDValue Dst,
2921 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002922 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002923 const Value *DstSV, uint64_t DstSVOff,
2924 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002925 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2926
Dan Gohman21323f32008-05-29 19:42:22 +00002927 // Expand memcpy to a series of load and store ops if the size operand falls
2928 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002929 std::vector<MVT> MemOps;
Dan Gohman707e0182008-04-12 04:36:06 +00002930 uint64_t Limit = -1;
2931 if (!AlwaysInline)
2932 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002933 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002934 std::string Str;
2935 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002936 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002937 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002938 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002939
Dan Gohman707e0182008-04-12 04:36:06 +00002940
Evan Cheng0ff39b32008-06-30 07:31:25 +00002941 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00002942 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00002943 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00002944 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002945 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002946 MVT VT = MemOps[i];
2947 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00002948 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00002949
Evan Cheng0ff39b32008-06-30 07:31:25 +00002950 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00002951 // It's unlikely a store of a vector immediate can be done in a single
2952 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002953 // We also handle store a vector with all zero's.
2954 // FIXME: Handle other cases where store of vector immediate is done in
2955 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002956 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002957 Store = DAG.getStore(Chain, Value,
2958 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00002959 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002960 } else {
2961 Value = DAG.getLoad(VT, Chain,
2962 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002963 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002964 Store = DAG.getStore(Chain, Value,
2965 getMemBasePlusOffset(Dst, DstOff, DAG),
2966 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002967 }
2968 OutChains.push_back(Store);
2969 SrcOff += VTSize;
2970 DstOff += VTSize;
2971 }
2972
2973 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2974 &OutChains[0], OutChains.size());
2975}
2976
Dan Gohman475871a2008-07-27 21:46:04 +00002977static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
2978 SDValue Chain, SDValue Dst,
2979 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00002980 unsigned Align, bool AlwaysInline,
2981 const Value *DstSV, uint64_t DstSVOff,
2982 const Value *SrcSV, uint64_t SrcSVOff){
2983 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2984
2985 // Expand memmove to a series of load and store ops if the size operand falls
2986 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002987 std::vector<MVT> MemOps;
Dan Gohman21323f32008-05-29 19:42:22 +00002988 uint64_t Limit = -1;
2989 if (!AlwaysInline)
2990 Limit = TLI.getMaxStoresPerMemmove();
2991 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002992 std::string Str;
2993 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00002994 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002995 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002996 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00002997
Dan Gohman21323f32008-05-29 19:42:22 +00002998 uint64_t SrcOff = 0, DstOff = 0;
2999
Dan Gohman475871a2008-07-27 21:46:04 +00003000 SmallVector<SDValue, 8> LoadValues;
3001 SmallVector<SDValue, 8> LoadChains;
3002 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003003 unsigned NumMemOps = MemOps.size();
3004 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003005 MVT VT = MemOps[i];
3006 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003007 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003008
3009 Value = DAG.getLoad(VT, Chain,
3010 getMemBasePlusOffset(Src, SrcOff, DAG),
3011 SrcSV, SrcSVOff + SrcOff, false, Align);
3012 LoadValues.push_back(Value);
3013 LoadChains.push_back(Value.getValue(1));
3014 SrcOff += VTSize;
3015 }
3016 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3017 &LoadChains[0], LoadChains.size());
3018 OutChains.clear();
3019 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003020 MVT VT = MemOps[i];
3021 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003022 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003023
3024 Store = DAG.getStore(Chain, LoadValues[i],
3025 getMemBasePlusOffset(Dst, DstOff, DAG),
3026 DstSV, DstSVOff + DstOff, false, DstAlign);
3027 OutChains.push_back(Store);
3028 DstOff += VTSize;
3029 }
3030
3031 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3032 &OutChains[0], OutChains.size());
3033}
3034
Dan Gohman475871a2008-07-27 21:46:04 +00003035static SDValue getMemsetStores(SelectionDAG &DAG,
3036 SDValue Chain, SDValue Dst,
3037 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003038 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003039 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003040 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3041
3042 // Expand memset to a series of load/store ops if the size operand
3043 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003044 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003045 std::string Str;
3046 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003047 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003048 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003049 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003050
Dan Gohman475871a2008-07-27 21:46:04 +00003051 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003052 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003053
3054 unsigned NumMemOps = MemOps.size();
3055 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003056 MVT VT = MemOps[i];
3057 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003058 SDValue Value = getMemsetValue(Src, VT, DAG);
3059 SDValue Store = DAG.getStore(Chain, Value,
Dan Gohman707e0182008-04-12 04:36:06 +00003060 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003061 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003062 OutChains.push_back(Store);
3063 DstOff += VTSize;
3064 }
3065
3066 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3067 &OutChains[0], OutChains.size());
3068}
3069
Dan Gohman475871a2008-07-27 21:46:04 +00003070SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3071 SDValue Src, SDValue Size,
3072 unsigned Align, bool AlwaysInline,
3073 const Value *DstSV, uint64_t DstSVOff,
3074 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003075
3076 // Check to see if we should lower the memcpy to loads and stores first.
3077 // For cases within the target-specified limits, this is the best choice.
3078 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3079 if (ConstantSize) {
3080 // Memcpy with size zero? Just return the original chain.
3081 if (ConstantSize->isNullValue())
3082 return Chain;
3083
Dan Gohman475871a2008-07-27 21:46:04 +00003084 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003085 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3086 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003087 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003088 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003089 return Result;
3090 }
3091
3092 // Then check to see if we should lower the memcpy with target-specific
3093 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003094 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003095 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3096 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003097 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003098 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003099 return Result;
3100
3101 // If we really need inline code and the target declined to provide it,
3102 // use a (potentially long) sequence of loads and stores.
3103 if (AlwaysInline) {
3104 assert(ConstantSize && "AlwaysInline requires a constant size!");
3105 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003106 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003107 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003108 }
3109
3110 // Emit a library call.
3111 TargetLowering::ArgListTy Args;
3112 TargetLowering::ArgListEntry Entry;
3113 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3114 Entry.Node = Dst; Args.push_back(Entry);
3115 Entry.Node = Src; Args.push_back(Entry);
3116 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003117 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003118 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003119 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003120 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003121 Args, *this);
3122 return CallResult.second;
3123}
3124
Dan Gohman475871a2008-07-27 21:46:04 +00003125SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3126 SDValue Src, SDValue Size,
3127 unsigned Align,
3128 const Value *DstSV, uint64_t DstSVOff,
3129 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003130
Dan Gohman21323f32008-05-29 19:42:22 +00003131 // Check to see if we should lower the memmove to loads and stores first.
3132 // For cases within the target-specified limits, this is the best choice.
3133 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3134 if (ConstantSize) {
3135 // Memmove with size zero? Just return the original chain.
3136 if (ConstantSize->isNullValue())
3137 return Chain;
3138
Dan Gohman475871a2008-07-27 21:46:04 +00003139 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003140 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3141 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003142 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003143 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003144 return Result;
3145 }
Dan Gohman707e0182008-04-12 04:36:06 +00003146
3147 // Then check to see if we should lower the memmove with target-specific
3148 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003149 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003150 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003151 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003152 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003153 return Result;
3154
3155 // Emit a library call.
3156 TargetLowering::ArgListTy Args;
3157 TargetLowering::ArgListEntry Entry;
3158 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3159 Entry.Node = Dst; Args.push_back(Entry);
3160 Entry.Node = Src; Args.push_back(Entry);
3161 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003162 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003163 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003164 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003165 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003166 Args, *this);
3167 return CallResult.second;
3168}
3169
Dan Gohman475871a2008-07-27 21:46:04 +00003170SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3171 SDValue Src, SDValue Size,
3172 unsigned Align,
3173 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003174
3175 // Check to see if we should lower the memset to stores first.
3176 // For cases within the target-specified limits, this is the best choice.
3177 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3178 if (ConstantSize) {
3179 // Memset with size zero? Just return the original chain.
3180 if (ConstantSize->isNullValue())
3181 return Chain;
3182
Dan Gohman475871a2008-07-27 21:46:04 +00003183 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003184 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3185 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003186 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003187 return Result;
3188 }
3189
3190 // Then check to see if we should lower the memset with target-specific
3191 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003192 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003193 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003194 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003195 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003196 return Result;
3197
3198 // Emit a library call.
3199 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3200 TargetLowering::ArgListTy Args;
3201 TargetLowering::ArgListEntry Entry;
3202 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3203 Args.push_back(Entry);
3204 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003205 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003206 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3207 else
3208 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3209 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3210 Args.push_back(Entry);
3211 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3212 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003213 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003214 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003215 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003216 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003217 Args, *this);
3218 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003219}
3220
Dan Gohman475871a2008-07-27 21:46:04 +00003221SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3222 SDValue Ptr, SDValue Cmp,
3223 SDValue Swp, const Value* PtrVal,
3224 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003225 assert((Opcode == ISD::ATOMIC_CMP_SWAP_8 ||
3226 Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3227 Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3228 Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003229 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003230
3231 MVT VT = Cmp.getValueType();
3232
3233 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3234 Alignment = getMVTAlignment(VT);
3235
3236 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003237 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003238 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003239 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003240 void* IP = 0;
3241 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003242 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003243 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003244 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003245 CSEMap.InsertNode(N, IP);
3246 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003247 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003248}
3249
Dan Gohman475871a2008-07-27 21:46:04 +00003250SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3251 SDValue Ptr, SDValue Val,
3252 const Value* PtrVal,
3253 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003254 assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3255 Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3256 Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3257 Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3258 Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3259 Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3260 Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3261 Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3262 Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3263 Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3264 Opcode == ISD::ATOMIC_SWAP_8 ||
3265 Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3266 Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3267 Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3268 Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3269 Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3270 Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3271 Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3272 Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3273 Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3274 Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3275 Opcode == ISD::ATOMIC_SWAP_16 ||
3276 Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3277 Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3278 Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3279 Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3280 Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3281 Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3282 Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3283 Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3284 Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3285 Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3286 Opcode == ISD::ATOMIC_SWAP_32 ||
3287 Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3288 Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3289 Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3290 Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3291 Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3292 Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3293 Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3294 Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3295 Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3296 Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3297 Opcode == ISD::ATOMIC_SWAP_64) && "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003298
3299 MVT VT = Val.getValueType();
3300
3301 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3302 Alignment = getMVTAlignment(VT);
3303
3304 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003305 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003306 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003307 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003308 void* IP = 0;
3309 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003310 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003311 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003312 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003313 CSEMap.InsertNode(N, IP);
3314 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003315 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003316}
3317
Duncan Sands4bdcb612008-07-02 17:40:58 +00003318/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3319/// Allowed to return something different (and simpler) if Simplify is true.
Dan Gohman475871a2008-07-27 21:46:04 +00003320SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3321 bool Simplify) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00003322 if (Simplify && NumOps == 1)
3323 return Ops[0];
3324
3325 SmallVector<MVT, 4> VTs;
3326 VTs.reserve(NumOps);
3327 for (unsigned i = 0; i < NumOps; ++i)
3328 VTs.push_back(Ops[i].getValueType());
3329 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3330}
3331
Dan Gohman475871a2008-07-27 21:46:04 +00003332SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003333SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003334 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003335 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003336 // Do not include isTailCall in the folding set profile.
3337 FoldingSetNodeID ID;
3338 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3339 ID.AddInteger(CallingConv);
3340 ID.AddInteger(IsVarArgs);
3341 void *IP = 0;
3342 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3343 // Instead of including isTailCall in the folding set, we just
3344 // set the flag of the existing node.
3345 if (!IsTailCall)
3346 cast<CallSDNode>(E)->setNotTailCall();
3347 return SDValue(E, 0);
3348 }
Dan Gohman095cc292008-09-13 01:54:27 +00003349 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003350 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003351 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003352 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003353 AllNodes.push_back(N);
3354 return SDValue(N, 0);
3355}
3356
3357SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003358SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003359 MVT VT, SDValue Chain,
3360 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003361 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003362 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003363 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3364 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003365
Duncan Sands14ea39c2008-03-27 20:23:40 +00003366 if (VT == EVT) {
3367 ExtType = ISD::NON_EXTLOAD;
3368 } else if (ExtType == ISD::NON_EXTLOAD) {
3369 assert(VT == EVT && "Non-extending load from different memory type!");
3370 } else {
3371 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003372 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003373 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3374 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003375 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003376 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003377 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003378 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003379 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003380 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003381 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003382 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003383
3384 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003385 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003386 "Unindexed load with an offset!");
3387
3388 SDVTList VTs = Indexed ?
3389 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003390 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003391 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003392 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003393 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003394 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003395 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003396 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003397 void *IP = 0;
3398 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003399 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003400 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003401 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3402 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003403 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003404 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003405 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003406}
3407
Dan Gohman475871a2008-07-27 21:46:04 +00003408SDValue SelectionDAG::getLoad(MVT VT,
3409 SDValue Chain, SDValue Ptr,
3410 const Value *SV, int SVOffset,
3411 bool isVolatile, unsigned Alignment) {
3412 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003413 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3414 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003415}
3416
Dan Gohman475871a2008-07-27 21:46:04 +00003417SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3418 SDValue Chain, SDValue Ptr,
3419 const Value *SV,
3420 int SVOffset, MVT EVT,
3421 bool isVolatile, unsigned Alignment) {
3422 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003423 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3424 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003425}
3426
Dan Gohman475871a2008-07-27 21:46:04 +00003427SDValue
3428SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3429 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003430 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003431 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3432 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003433 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3434 LD->getChain(), Base, Offset, LD->getSrcValue(),
3435 LD->getSrcValueOffset(), LD->getMemoryVT(),
3436 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003437}
3438
Dan Gohman475871a2008-07-27 21:46:04 +00003439SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3440 SDValue Ptr, const Value *SV, int SVOffset,
3441 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003442 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003443
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003444 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3445 Alignment = getMVTAlignment(VT);
3446
Evan Chengad071e12006-10-05 22:57:11 +00003447 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003448 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3449 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003450 FoldingSetNodeID ID;
3451 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003452 ID.AddInteger(ISD::UNINDEXED);
3453 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003454 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003455 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003456 void *IP = 0;
3457 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003458 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003459 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003460 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3461 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003462 CSEMap.InsertNode(N, IP);
3463 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003464 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003465}
3466
Dan Gohman475871a2008-07-27 21:46:04 +00003467SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3468 SDValue Ptr, const Value *SV,
3469 int SVOffset, MVT SVT,
3470 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003471 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003472
3473 if (VT == SVT)
3474 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003475
Duncan Sands8e4eb092008-06-08 20:54:56 +00003476 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003477 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003478 "Can't do FP-INT conversion!");
3479
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003480 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3481 Alignment = getMVTAlignment(VT);
3482
Evan Cheng8b2794a2006-10-13 21:14:26 +00003483 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003484 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3485 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003486 FoldingSetNodeID ID;
3487 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003488 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003489 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003490 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003491 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003492 void *IP = 0;
3493 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003494 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003495 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003496 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3497 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003498 CSEMap.InsertNode(N, IP);
3499 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003500 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003501}
3502
Dan Gohman475871a2008-07-27 21:46:04 +00003503SDValue
3504SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3505 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003506 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3507 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3508 "Store is already a indexed store!");
3509 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003510 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003511 FoldingSetNodeID ID;
3512 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3513 ID.AddInteger(AM);
3514 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003515 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003516 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003517 void *IP = 0;
3518 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003519 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003520 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003521 new (N) StoreSDNode(Ops, VTs, AM,
3522 ST->isTruncatingStore(), ST->getMemoryVT(),
3523 ST->getSrcValue(), ST->getSrcValueOffset(),
3524 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003525 CSEMap.InsertNode(N, IP);
3526 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003527 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003528}
3529
Dan Gohman475871a2008-07-27 21:46:04 +00003530SDValue SelectionDAG::getVAArg(MVT VT,
3531 SDValue Chain, SDValue Ptr,
3532 SDValue SV) {
3533 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003534 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003535}
3536
Dan Gohman475871a2008-07-27 21:46:04 +00003537SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3538 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003539 switch (NumOps) {
3540 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003541 case 1: return getNode(Opcode, VT, Ops[0]);
3542 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3543 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003544 default: break;
3545 }
3546
Dan Gohman475871a2008-07-27 21:46:04 +00003547 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003548 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003549 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3550 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003551}
3552
Dan Gohman475871a2008-07-27 21:46:04 +00003553SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3554 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003555 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003556 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003557 case 1: return getNode(Opcode, VT, Ops[0]);
3558 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3559 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003560 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003561 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003562
Chris Lattneref847df2005-04-09 03:27:28 +00003563 switch (Opcode) {
3564 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003565 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003566 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003567 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3568 "LHS and RHS of condition must have same type!");
3569 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3570 "True and False arms of SelectCC must have same type!");
3571 assert(Ops[2].getValueType() == VT &&
3572 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003573 break;
3574 }
3575 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003576 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003577 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3578 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003579 break;
3580 }
Chris Lattneref847df2005-04-09 03:27:28 +00003581 }
3582
Chris Lattner385328c2005-05-14 07:42:29 +00003583 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003584 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003585 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003586 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003587 FoldingSetNodeID ID;
3588 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003589 void *IP = 0;
3590 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003591 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003592 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003593 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003594 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003595 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003596 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003597 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003598 }
Chris Lattneref847df2005-04-09 03:27:28 +00003599 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003600#ifndef NDEBUG
3601 VerifyNode(N);
3602#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003603 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003604}
3605
Dan Gohman475871a2008-07-27 21:46:04 +00003606SDValue SelectionDAG::getNode(unsigned Opcode,
3607 const std::vector<MVT> &ResultTys,
3608 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003609 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3610 Ops, NumOps);
3611}
3612
Dan Gohman475871a2008-07-27 21:46:04 +00003613SDValue SelectionDAG::getNode(unsigned Opcode,
3614 const MVT *VTs, unsigned NumVTs,
3615 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003616 if (NumVTs == 1)
3617 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003618 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3619}
3620
Dan Gohman475871a2008-07-27 21:46:04 +00003621SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3622 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003623 if (VTList.NumVTs == 1)
3624 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003625
Chris Lattner5f056bf2005-07-10 01:55:33 +00003626 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003627 // FIXME: figure out how to safely handle things like
3628 // int foo(int x) { return 1 << (x & 255); }
3629 // int bar() { return foo(256); }
3630#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003631 case ISD::SRA_PARTS:
3632 case ISD::SRL_PARTS:
3633 case ISD::SHL_PARTS:
3634 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003635 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003636 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3637 else if (N3.getOpcode() == ISD::AND)
3638 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3639 // If the and is only masking out bits that cannot effect the shift,
3640 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003641 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003642 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3643 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3644 }
3645 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003646#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003647 }
Chris Lattner89c34632005-05-14 06:20:26 +00003648
Chris Lattner43247a12005-08-25 19:12:10 +00003649 // Memoize the node unless it returns a flag.
3650 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003651 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003652 FoldingSetNodeID ID;
3653 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003654 void *IP = 0;
3655 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003656 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003657 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003658 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003659 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3660 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003661 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003662 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3663 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003664 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003665 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3666 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003667 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003668 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3669 }
Chris Lattnera5682852006-08-07 23:03:03 +00003670 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003671 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003672 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003673 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003674 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3675 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003676 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003677 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3678 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003679 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003680 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3681 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003682 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003683 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3684 }
Chris Lattner43247a12005-08-25 19:12:10 +00003685 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003686 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003687#ifndef NDEBUG
3688 VerifyNode(N);
3689#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003690 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003691}
3692
Dan Gohman475871a2008-07-27 21:46:04 +00003693SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003694 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003695}
3696
Dan Gohman475871a2008-07-27 21:46:04 +00003697SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3698 SDValue N1) {
3699 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003700 return getNode(Opcode, VTList, Ops, 1);
3701}
3702
Dan Gohman475871a2008-07-27 21:46:04 +00003703SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3704 SDValue N1, SDValue N2) {
3705 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003706 return getNode(Opcode, VTList, Ops, 2);
3707}
3708
Dan Gohman475871a2008-07-27 21:46:04 +00003709SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3710 SDValue N1, SDValue N2, SDValue N3) {
3711 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003712 return getNode(Opcode, VTList, Ops, 3);
3713}
3714
Dan Gohman475871a2008-07-27 21:46:04 +00003715SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3716 SDValue N1, SDValue N2, SDValue N3,
3717 SDValue N4) {
3718 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003719 return getNode(Opcode, VTList, Ops, 4);
3720}
3721
Dan Gohman475871a2008-07-27 21:46:04 +00003722SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3723 SDValue N1, SDValue N2, SDValue N3,
3724 SDValue N4, SDValue N5) {
3725 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003726 return getNode(Opcode, VTList, Ops, 5);
3727}
3728
Duncan Sands83ec4b62008-06-06 12:08:01 +00003729SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003730 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003731}
3732
Duncan Sands83ec4b62008-06-06 12:08:01 +00003733SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003734 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3735 E = VTList.rend(); I != E; ++I)
3736 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3737 return *I;
3738
3739 MVT *Array = Allocator.Allocate<MVT>(2);
3740 Array[0] = VT1;
3741 Array[1] = VT2;
3742 SDVTList Result = makeVTList(Array, 2);
3743 VTList.push_back(Result);
3744 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003745}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003746
3747SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3748 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3749 E = VTList.rend(); I != E; ++I)
3750 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3751 I->VTs[2] == VT3)
3752 return *I;
3753
3754 MVT *Array = Allocator.Allocate<MVT>(3);
3755 Array[0] = VT1;
3756 Array[1] = VT2;
3757 Array[2] = VT3;
3758 SDVTList Result = makeVTList(Array, 3);
3759 VTList.push_back(Result);
3760 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003761}
3762
Duncan Sands83ec4b62008-06-06 12:08:01 +00003763SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003764 switch (NumVTs) {
3765 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003766 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003767 case 2: return getVTList(VTs[0], VTs[1]);
3768 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3769 default: break;
3770 }
3771
Dan Gohmane8be6c62008-07-17 19:10:17 +00003772 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3773 E = VTList.rend(); I != E; ++I) {
3774 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3775 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003776
3777 bool NoMatch = false;
3778 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003779 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003780 NoMatch = true;
3781 break;
3782 }
3783 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003784 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003785 }
3786
Dan Gohmane8be6c62008-07-17 19:10:17 +00003787 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3788 std::copy(VTs, VTs+NumVTs, Array);
3789 SDVTList Result = makeVTList(Array, NumVTs);
3790 VTList.push_back(Result);
3791 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003792}
3793
3794
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003795/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3796/// specified operands. If the resultant node already exists in the DAG,
3797/// this does not modify the specified node, instead it returns the node that
3798/// already exists. If the resultant node does not exist in the DAG, the
3799/// input node is returned. As a degenerate case, if you specify the same
3800/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003801SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003802 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003803 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3804
3805 // Check to see if there is no change.
3806 if (Op == N->getOperand(0)) return InN;
3807
3808 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003809 void *InsertPos = 0;
3810 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003811 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003812
Dan Gohman79acd2b2008-07-21 22:38:59 +00003813 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003814 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003815 if (!RemoveNodeFromCSEMaps(N))
3816 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003817
3818 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003819 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003820 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003821 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003822 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003823
3824 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003825 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003826 return InN;
3827}
3828
Dan Gohman475871a2008-07-27 21:46:04 +00003829SDValue SelectionDAG::
3830UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003831 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003832 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3833
3834 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003835 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3836 return InN; // No operands changed, just return the input node.
3837
3838 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003839 void *InsertPos = 0;
3840 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003841 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003842
Dan Gohman79acd2b2008-07-21 22:38:59 +00003843 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003844 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003845 if (!RemoveNodeFromCSEMaps(N))
3846 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003847
3848 // Now we update the operands.
3849 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003850 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003851 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003852 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003853 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003854 }
3855 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003856 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003857 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003858 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003859 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003860 }
3861
3862 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003863 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003864 return InN;
3865}
3866
Dan Gohman475871a2008-07-27 21:46:04 +00003867SDValue SelectionDAG::
3868UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3869 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003870 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003871}
3872
Dan Gohman475871a2008-07-27 21:46:04 +00003873SDValue SelectionDAG::
3874UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3875 SDValue Op3, SDValue Op4) {
3876 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003877 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003878}
3879
Dan Gohman475871a2008-07-27 21:46:04 +00003880SDValue SelectionDAG::
3881UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3882 SDValue Op3, SDValue Op4, SDValue Op5) {
3883 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003884 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003885}
3886
Dan Gohman475871a2008-07-27 21:46:04 +00003887SDValue SelectionDAG::
3888UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003889 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003890 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003891 "Update with wrong number of operands");
3892
3893 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003894 bool AnyChange = false;
3895 for (unsigned i = 0; i != NumOps; ++i) {
3896 if (Ops[i] != N->getOperand(i)) {
3897 AnyChange = true;
3898 break;
3899 }
3900 }
3901
3902 // No operands changed, just return the input node.
3903 if (!AnyChange) return InN;
3904
3905 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003906 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003907 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003908 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003909
Dan Gohman7ceda162008-05-02 00:05:03 +00003910 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003911 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003912 if (!RemoveNodeFromCSEMaps(N))
3913 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003914
3915 // Now we update the operands.
3916 for (unsigned i = 0; i != NumOps; ++i) {
3917 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003918 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003919 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003920 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003921 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003922 }
3923 }
3924
3925 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003926 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003927 return InN;
3928}
3929
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003930/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00003931/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003932void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003933 // Unlike the code in MorphNodeTo that does this, we don't need to
3934 // watch for dead nodes here.
3935 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3936 I->getVal()->removeUser(std::distance(op_begin(), I), this);
3937
3938 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003939}
Chris Lattner149c58c2005-08-16 18:17:10 +00003940
Dan Gohmane8be6c62008-07-17 19:10:17 +00003941/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
3942/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003943///
Dan Gohmane8be6c62008-07-17 19:10:17 +00003944SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003945 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003946 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003947 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00003948}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003949
Dan Gohmane8be6c62008-07-17 19:10:17 +00003950SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003951 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003952 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003953 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003954 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00003955}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003956
Dan Gohmane8be6c62008-07-17 19:10:17 +00003957SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003958 MVT VT, SDValue Op1,
3959 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003960 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003961 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003962 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00003963}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003964
Dan Gohmane8be6c62008-07-17 19:10:17 +00003965SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003966 MVT VT, SDValue Op1,
3967 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003968 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003969 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00003970 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00003971}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003972
Dan Gohmane8be6c62008-07-17 19:10:17 +00003973SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003974 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00003975 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003976 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003977 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00003978}
3979
Dan Gohmane8be6c62008-07-17 19:10:17 +00003980SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00003981 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00003982 unsigned NumOps) {
3983 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003984 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00003985}
3986
Dan Gohmane8be6c62008-07-17 19:10:17 +00003987SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00003988 MVT VT1, MVT VT2) {
3989 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00003990 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00003991}
3992
Dan Gohmane8be6c62008-07-17 19:10:17 +00003993SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003994 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00003995 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00003996 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00003997 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00003998}
3999
Dan Gohmane8be6c62008-07-17 19:10:17 +00004000SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004001 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004002 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004003 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004004 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004005 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004006}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004007
Dan Gohmane8be6c62008-07-17 19:10:17 +00004008SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004009 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004010 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004011 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004012 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004013 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004014}
4015
Dan Gohmane8be6c62008-07-17 19:10:17 +00004016SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004017 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004018 SDValue Op1, SDValue Op2,
4019 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004020 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004021 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004022 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004023}
4024
Dan Gohmane8be6c62008-07-17 19:10:17 +00004025SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004026 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004027 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004028 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4029}
4030
4031SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4032 MVT VT) {
4033 SDVTList VTs = getVTList(VT);
4034 return MorphNodeTo(N, Opc, VTs, 0, 0);
4035}
4036
4037SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004038 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004039 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004040 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004041 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4042}
4043
4044SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004045 MVT VT, SDValue Op1,
4046 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004047 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004048 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004049 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4050}
4051
4052SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004053 MVT VT, SDValue Op1,
4054 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004055 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004056 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004057 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4058}
4059
4060SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004061 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004062 unsigned NumOps) {
4063 SDVTList VTs = getVTList(VT);
4064 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4065}
4066
4067SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004068 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004069 unsigned NumOps) {
4070 SDVTList VTs = getVTList(VT1, VT2);
4071 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4072}
4073
4074SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4075 MVT VT1, MVT VT2) {
4076 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004077 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004078}
4079
4080SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4081 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004082 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004083 SDVTList VTs = getVTList(VT1, VT2, VT3);
4084 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4085}
4086
4087SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4088 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004089 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004090 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004091 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004092 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4093}
4094
4095SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4096 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004097 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004098 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004099 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004100 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4101}
4102
4103SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4104 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004105 SDValue Op1, SDValue Op2,
4106 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004107 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004108 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004109 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4110}
4111
4112/// MorphNodeTo - These *mutate* the specified node to have the specified
4113/// return type, opcode, and operands.
4114///
4115/// Note that MorphNodeTo returns the resultant node. If there is already a
4116/// node of the specified opcode and operands, it returns that node instead of
4117/// the current one.
4118///
4119/// Using MorphNodeTo is faster than creating a new node and swapping it in
4120/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004121/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004122/// the node's users.
4123///
4124SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004125 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004126 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004127 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004128 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004129 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4130 FoldingSetNodeID ID;
4131 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4132 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4133 return ON;
4134 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004135
Dan Gohman095cc292008-09-13 01:54:27 +00004136 if (!RemoveNodeFromCSEMaps(N))
4137 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004138
Dan Gohmane8be6c62008-07-17 19:10:17 +00004139 // Start the morphing.
4140 N->NodeType = Opc;
4141 N->ValueList = VTs.VTs;
4142 N->NumValues = VTs.NumVTs;
4143
4144 // Clear the operands list, updating used nodes to remove this from their
4145 // use list. Keep track of any operands that become dead as a result.
4146 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4147 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4148 I != E; ++I) {
4149 SDNode *Used = I->getVal();
4150 Used->removeUser(std::distance(B, I), N);
4151 if (Used->use_empty())
4152 DeadNodeSet.insert(Used);
4153 }
4154
4155 // If NumOps is larger than the # of operands we currently have, reallocate
4156 // the operand list.
4157 if (NumOps > N->NumOperands) {
4158 if (N->OperandsNeedDelete)
4159 delete[] N->OperandList;
4160 if (N->isMachineOpcode()) {
4161 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004162 // remainder of the current SelectionDAG iteration, so we can allocate
4163 // the operands directly out of a pool with no recycling metadata.
4164 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004165 N->OperandsNeedDelete = false;
4166 } else {
4167 N->OperandList = new SDUse[NumOps];
4168 N->OperandsNeedDelete = true;
4169 }
4170 }
4171
4172 // Assign the new operands.
4173 N->NumOperands = NumOps;
4174 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4175 N->OperandList[i] = Ops[i];
4176 N->OperandList[i].setUser(N);
4177 SDNode *ToUse = N->OperandList[i].getVal();
4178 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004179 }
4180
4181 // Delete any nodes that are still dead after adding the uses for the
4182 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004183 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004184 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4185 E = DeadNodeSet.end(); I != E; ++I)
4186 if ((*I)->use_empty())
4187 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004188 RemoveDeadNodes(DeadNodes);
4189
Dan Gohmane8be6c62008-07-17 19:10:17 +00004190 if (IP)
4191 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004192 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004193}
4194
Chris Lattner0fb094f2005-11-19 01:44:53 +00004195
Evan Cheng6ae46c42006-02-09 07:15:23 +00004196/// getTargetNode - These are used for target selectors to create a new node
4197/// with specified return type(s), target opcode, and operands.
4198///
4199/// Note that getTargetNode returns the resultant node. If there is already a
4200/// node of the specified opcode and operands, it returns that node instead of
4201/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004202SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004203 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004204}
Dan Gohman475871a2008-07-27 21:46:04 +00004205SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004206 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004207}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004208SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004209 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004210 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004211}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004212SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004213 SDValue Op1, SDValue Op2,
4214 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004215 return getNode(~Opcode, VT, Op1, Op2, Op3).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 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004219 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004220}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004221SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4222 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004223 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004224 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004225}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004226SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004227 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004228 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004229 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +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,
4233 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004234 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004235 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004236 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004237}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004238SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004239 MVT VT2, SDValue Op1,
4240 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004241 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004242 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004243 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004244}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004245SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004246 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004247 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004248 return getNode(~Opcode, VTs, 2, Ops, NumOps).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, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004251 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004252 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004253 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004254 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004255}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004256SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004257 SDValue Op1, SDValue Op2,
4258 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004259 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004260 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004261 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004262}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004263SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004264 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004265 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004266 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004267}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004268SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4269 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004270 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004271 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004272 VTList.push_back(VT1);
4273 VTList.push_back(VT2);
4274 VTList.push_back(VT3);
4275 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004276 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004277 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004278}
Evan Cheng39305cf2007-10-05 01:10:49 +00004279SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004280 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004281 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004282 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004283 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004284 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004285}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004286
Evan Cheng08b11732008-03-22 01:55:50 +00004287/// getNodeIfExists - Get the specified node if it's already available, or
4288/// else return NULL.
4289SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004290 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004291 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4292 FoldingSetNodeID ID;
4293 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4294 void *IP = 0;
4295 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4296 return E;
4297 }
4298 return NULL;
4299}
4300
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004301
Evan Cheng99157a02006-08-07 22:13:29 +00004302/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004303/// This can cause recursive merging of nodes in the DAG.
4304///
Chris Lattner11d049c2008-02-03 03:35:22 +00004305/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004306///
Dan Gohman475871a2008-07-27 21:46:04 +00004307void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004308 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004310 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004311 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004312 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004313
Chris Lattner8b8749f2005-08-17 19:00:20 +00004314 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004315 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004316 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004317
Chris Lattner8b8749f2005-08-17 19:00:20 +00004318 // This node is about to morph, remove its old self from the CSE maps.
4319 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004320 int operandNum = 0;
4321 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4322 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004323 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004324 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004325 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004326 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004327 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004328 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004329
4330 // Now that we have modified U, add it back to the CSE maps. If it already
4331 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004332 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004333 ReplaceAllUsesWith(U, Existing, UpdateListener);
4334 // U is now dead. Inform the listener if it exists and delete it.
4335 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004336 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004337 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004338 } else {
4339 // If the node doesn't already exist, we updated it. Inform a listener if
4340 // it exists.
4341 if (UpdateListener)
4342 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004343 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004344 }
4345}
4346
4347/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4348/// This can cause recursive merging of nodes in the DAG.
4349///
4350/// This version assumes From/To have matching types and numbers of result
4351/// values.
4352///
Chris Lattner1e111c72005-09-07 05:37:01 +00004353void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004354 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004355 assert(From->getVTList().VTs == To->getVTList().VTs &&
4356 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004357 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004358
4359 // Handle the trivial case.
4360 if (From == To)
4361 return;
4362
Chris Lattner8b52f212005-08-26 18:36:28 +00004363 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004364 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004365 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004366
Chris Lattner8b52f212005-08-26 18:36:28 +00004367 // This node is about to morph, remove its old self from the CSE maps.
4368 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004369 int operandNum = 0;
4370 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4371 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004372 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004373 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004374 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004375 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004376 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004377
Chris Lattner8b8749f2005-08-17 19:00:20 +00004378 // Now that we have modified U, add it back to the CSE maps. If it already
4379 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004380 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004381 ReplaceAllUsesWith(U, Existing, UpdateListener);
4382 // U is now dead. Inform the listener if it exists and delete it.
4383 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004384 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004385 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004386 } else {
4387 // If the node doesn't already exist, we updated it. Inform a listener if
4388 // it exists.
4389 if (UpdateListener)
4390 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004391 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004392 }
4393}
4394
Chris Lattner8b52f212005-08-26 18:36:28 +00004395/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4396/// This can cause recursive merging of nodes in the DAG.
4397///
4398/// This version can replace From with any result values. To must match the
4399/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004400void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004401 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004402 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004403 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004404 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004405
4406 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004407 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004408 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004409
Chris Lattner7b2880c2005-08-24 22:44:39 +00004410 // This node is about to morph, remove its old self from the CSE maps.
4411 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004412 int operandNum = 0;
4413 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4414 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004415 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004416 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004417 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004418 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004419 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004420 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004421 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004422
Chris Lattner7b2880c2005-08-24 22:44:39 +00004423 // Now that we have modified U, add it back to the CSE maps. If it already
4424 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004425 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004426 ReplaceAllUsesWith(U, Existing, UpdateListener);
4427 // U is now dead. Inform the listener if it exists and delete it.
4428 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004429 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004430 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004431 } else {
4432 // If the node doesn't already exist, we updated it. Inform a listener if
4433 // it exists.
4434 if (UpdateListener)
4435 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004436 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004437 }
4438}
4439
Chris Lattner012f2412006-02-17 21:58:01 +00004440/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004441/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004442/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004443void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004444 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004445 // Handle the really simple, really trivial case efficiently.
4446 if (From == To) return;
4447
Chris Lattner012f2412006-02-17 21:58:01 +00004448 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004449 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004450 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004451 return;
4452 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004453
Gabor Greifba36cb52008-08-28 21:40:38 +00004454 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004455 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004456 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004457
4458 while (!Users.empty()) {
4459 // We know that this user uses some value of From. If it is the right
4460 // value, update it.
4461 SDNode *User = Users.back();
4462 Users.pop_back();
4463
Chris Lattner01d029b2007-10-15 06:10:22 +00004464 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004465 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004466 for (; Op != E; ++Op)
4467 if (*Op == From) break;
4468
4469 // If there are no matches, the user must use some other result of From.
4470 if (Op == E) continue;
4471
4472 // Okay, we know this user needs to be updated. Remove its old self
4473 // from the CSE maps.
4474 RemoveNodeFromCSEMaps(User);
4475
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004476 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004477 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004478 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004479 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004480 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004481 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004482 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004483 }
4484 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004485
4486 // Now that we have modified User, add it back to the CSE maps. If it
4487 // already exists there, recursively merge the results together.
4488 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004489 if (!Existing) {
4490 if (UpdateListener) UpdateListener->NodeUpdated(User);
4491 continue; // Continue on to next user.
4492 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004493
4494 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004495 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004496 // recursive merging of other unrelated nodes down the line.
4497 ReplaceAllUsesWith(User, Existing, UpdateListener);
4498
4499 // User is now dead. Notify a listener if present.
4500 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4501 DeleteNodeNotInCSEMaps(User);
4502 }
4503}
4504
4505/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004506/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004507/// appear in both the From and To list. The Deleted vector is
4508/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004509void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4510 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004511 unsigned Num,
4512 DAGUpdateListener *UpdateListener){
4513 // Handle the simple, trivial case efficiently.
4514 if (Num == 1)
4515 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4516
4517 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4518 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004519 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4520 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004521 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004522
4523 while (!Users.empty()) {
4524 // We know that this user uses some value of From. If it is the right
4525 // value, update it.
4526 SDNode *User = Users.back().first;
4527 unsigned i = Users.back().second;
4528 Users.pop_back();
4529
4530 // Scan for an operand that matches From.
4531 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4532 for (; Op != E; ++Op)
4533 if (*Op == From[i]) break;
4534
4535 // If there are no matches, the user must use some other result of From.
4536 if (Op == E) continue;
4537
4538 // Okay, we know this user needs to be updated. Remove its old self
4539 // from the CSE maps.
4540 RemoveNodeFromCSEMaps(User);
4541
4542 // Update all operands that match "From" in case there are multiple uses.
4543 for (; Op != E; ++Op) {
4544 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004545 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004546 *Op = To[i];
4547 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004548 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004549 }
4550 }
4551
4552 // Now that we have modified User, add it back to the CSE maps. If it
4553 // already exists there, recursively merge the results together.
4554 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4555 if (!Existing) {
4556 if (UpdateListener) UpdateListener->NodeUpdated(User);
4557 continue; // Continue on to next user.
4558 }
4559
4560 // If there was already an existing matching node, use ReplaceAllUsesWith
4561 // to replace the dead one with the existing one. This can cause
4562 // recursive merging of other unrelated nodes down the line.
4563 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004564
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004565 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004566 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004567 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004568 }
4569}
4570
Evan Chenge6f35d82006-08-01 08:20:41 +00004571/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004572/// based on their topological order. It returns the maximum id and a vector
4573/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004574unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004575
Dan Gohmanf06c8352008-09-30 18:30:35 +00004576 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004577
Dan Gohmanf06c8352008-09-30 18:30:35 +00004578 // SortedPos tracks the progress of the algorithm. Nodes before it are
4579 // sorted, nodes after it are unsorted. When the algorithm completes
4580 // it is at the end of the list.
4581 allnodes_iterator SortedPos = allnodes_begin();
4582
4583 // Visit all the nodes. Add nodes with no operands to the TopOrder result
4584 // array immediately. Annotate nodes that do have operands with their
4585 // operand count. Before we do this, the Node Id fields of the nodes
4586 // may contain arbitrary values. After, the Node Id fields for nodes
4587 // before SortedPos will contain the topological sort index, and the
4588 // Node Id fields for nodes At SortedPos and after will contain the
4589 // count of outstanding operands.
4590 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4591 SDNode *N = I++;
4592 unsigned Degree = N->getNumOperands();
4593 if (Degree == 0) {
4594 // A node with no uses, add it to the result array immediately.
4595 N->setNodeId(DAGSize++);
4596 allnodes_iterator Q = N;
4597 if (Q != SortedPos)
4598 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4599 ++SortedPos;
4600 } else {
4601 // Temporarily use the Node Id as scratch space for the degree count.
4602 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004603 }
4604 }
4605
Dan Gohmanf06c8352008-09-30 18:30:35 +00004606 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4607 // such that by the time the end is reached all nodes will be sorted.
4608 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4609 SDNode *N = I;
4610 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4611 UI != UE; ++UI) {
4612 SDNode *P = *UI;
4613 unsigned Degree = P->getNodeId();
4614 --Degree;
4615 if (Degree == 0) {
4616 // All of P's operands are sorted, so P may sorted now.
4617 P->setNodeId(DAGSize++);
4618 if (P != SortedPos)
4619 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4620 ++SortedPos;
4621 } else {
4622 // Update P's outstanding operand count.
4623 P->setNodeId(Degree);
4624 }
4625 }
4626 }
4627
4628 assert(SortedPos == AllNodes.end() &&
4629 "Topological sort incomplete!");
4630 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4631 "First node in topological sort is not the entry token!");
4632 assert(AllNodes.front().getNodeId() == 0 &&
4633 "First node in topological sort has non-zero id!");
4634 assert(AllNodes.front().getNumOperands() == 0 &&
4635 "First node in topological sort has operands!");
4636 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4637 "Last node in topologic sort has unexpected id!");
4638 assert(AllNodes.back().use_empty() &&
4639 "Last node in topologic sort has users!");
4640 assert(DAGSize == allnodes_size() && "TopOrder result count mismatch!");
4641 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004642}
4643
4644
Evan Cheng091cba12006-07-27 06:39:06 +00004645
Jim Laskey58b968b2005-08-17 20:08:02 +00004646//===----------------------------------------------------------------------===//
4647// SDNode Class
4648//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004649
Chris Lattner917d2c92006-07-19 00:00:37 +00004650// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004651void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004652void UnarySDNode::ANCHOR() {}
4653void BinarySDNode::ANCHOR() {}
4654void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004655void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004656void ConstantSDNode::ANCHOR() {}
4657void ConstantFPSDNode::ANCHOR() {}
4658void GlobalAddressSDNode::ANCHOR() {}
4659void FrameIndexSDNode::ANCHOR() {}
4660void JumpTableSDNode::ANCHOR() {}
4661void ConstantPoolSDNode::ANCHOR() {}
4662void BasicBlockSDNode::ANCHOR() {}
4663void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004664void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004665void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004666void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004667void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004668void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004669void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004670void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004671void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004672void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004673void LoadSDNode::ANCHOR() {}
4674void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004675void AtomicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004676void CallSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004677
Chris Lattner48b85922007-02-04 02:41:42 +00004678HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004679 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004680}
4681
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004682GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004683 MVT VT, int o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004684 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004685 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004686 // Thread Local
4687 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4688 // Non Thread Local
4689 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4690 getSDVTList(VT)), Offset(o) {
4691 TheGlobal = const_cast<GlobalValue*>(GA);
4692}
Chris Lattner48b85922007-02-04 02:41:42 +00004693
Dan Gohman1ea58a52008-07-09 22:08:04 +00004694MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004695 const Value *srcValue, int SVO,
4696 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004697 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004698 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004699
4700 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4701 assert(getAlignment() == alignment && "Alignment representation error!");
4702 assert(isVolatile() == vol && "Volatile representation error!");
4703}
4704
Dan Gohman36b5c132008-04-07 19:35:22 +00004705/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004706/// reference performed by this memory reference.
4707MachineMemOperand MemSDNode::getMemOperand() const {
4708 int Flags;
4709 if (isa<LoadSDNode>(this))
4710 Flags = MachineMemOperand::MOLoad;
4711 else if (isa<StoreSDNode>(this))
4712 Flags = MachineMemOperand::MOStore;
4713 else {
4714 assert(isa<AtomicSDNode>(this) && "Unknown MemSDNode opcode!");
4715 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4716 }
4717
4718 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004719 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4720
Dan Gohman1ea58a52008-07-09 22:08:04 +00004721 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004722 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004723 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004724 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004725 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4726 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004727 else
4728 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4729 Size, getAlignment());
4730}
4731
Jim Laskey583bd472006-10-27 23:46:08 +00004732/// Profile - Gather unique data for the node.
4733///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004734void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004735 AddNodeIDNode(ID, this);
4736}
4737
Chris Lattnera3255112005-11-08 23:30:28 +00004738/// getValueTypeList - Return a pointer to the specified value type.
4739///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004740const MVT *SDNode::getValueTypeList(MVT VT) {
4741 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004742 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004743 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004744 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004745 static MVT VTs[MVT::LAST_VALUETYPE];
4746 VTs[VT.getSimpleVT()] = VT;
4747 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004748 }
Chris Lattnera3255112005-11-08 23:30:28 +00004749}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004750
Chris Lattner5c884562005-01-12 18:37:47 +00004751/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4752/// indicated value. This method ignores uses of other values defined by this
4753/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004754bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004755 assert(Value < getNumValues() && "Bad value!");
4756
Roman Levensteindc1adac2008-04-07 10:06:32 +00004757 // TODO: Only iterate over uses of a given value of the node
4758 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004759 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004760 if (NUses == 0)
4761 return false;
4762 --NUses;
4763 }
Chris Lattner5c884562005-01-12 18:37:47 +00004764 }
4765
4766 // Found exactly the right number of uses?
4767 return NUses == 0;
4768}
4769
4770
Evan Cheng33d55952007-08-02 05:29:38 +00004771/// hasAnyUseOfValue - Return true if there are any use of the indicated
4772/// value. This method ignores uses of other values defined by this operation.
4773bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4774 assert(Value < getNumValues() && "Bad value!");
4775
Dan Gohman1373c1c2008-07-09 22:39:01 +00004776 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004777 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004778 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004779
4780 return false;
4781}
4782
4783
Dan Gohman2a629952008-07-27 18:06:42 +00004784/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004785///
Dan Gohman2a629952008-07-27 18:06:42 +00004786bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004787 bool Seen = false;
4788 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004789 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004790 if (User == this)
4791 Seen = true;
4792 else
4793 return false;
4794 }
4795
4796 return Seen;
4797}
4798
Evan Chenge6e97e62006-11-03 07:31:32 +00004799/// isOperand - Return true if this node is an operand of N.
4800///
Dan Gohman475871a2008-07-27 21:46:04 +00004801bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004802 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4803 if (*this == N->getOperand(i))
4804 return true;
4805 return false;
4806}
4807
Evan Cheng917be682008-03-04 00:41:45 +00004808bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004809 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004810 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004811 return true;
4812 return false;
4813}
Evan Cheng4ee62112006-02-05 06:29:23 +00004814
Chris Lattner572dee72008-01-16 05:49:24 +00004815/// reachesChainWithoutSideEffects - Return true if this operand (which must
4816/// be a chain) reaches the specified operand without crossing any
4817/// side-effecting instructions. In practice, this looks through token
4818/// factors and non-volatile loads. In order to remain efficient, this only
4819/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004820bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004821 unsigned Depth) const {
4822 if (*this == Dest) return true;
4823
4824 // Don't search too deeply, we just want to be able to see through
4825 // TokenFactor's etc.
4826 if (Depth == 0) return false;
4827
4828 // If this is a token factor, all inputs to the TF happen in parallel. If any
4829 // of the operands of the TF reach dest, then we can do the xform.
4830 if (getOpcode() == ISD::TokenFactor) {
4831 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4832 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4833 return true;
4834 return false;
4835 }
4836
4837 // Loads don't have side effects, look through them.
4838 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4839 if (!Ld->isVolatile())
4840 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4841 }
4842 return false;
4843}
4844
4845
Evan Chengc5fc57d2006-11-03 03:05:24 +00004846static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004847 SmallPtrSet<SDNode *, 32> &Visited) {
4848 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004849 return;
4850
4851 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004852 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004853 if (Op == P) {
4854 found = true;
4855 return;
4856 }
4857 findPredecessor(Op, P, found, Visited);
4858 }
4859}
4860
Evan Cheng917be682008-03-04 00:41:45 +00004861/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004862/// is either an operand of N or it can be reached by recursively traversing
4863/// up the operands.
4864/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004865bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004866 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004867 bool found = false;
4868 findPredecessor(N, this, found, Visited);
4869 return found;
4870}
4871
Evan Chengc5484282006-10-04 00:56:09 +00004872uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4873 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004874 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004875}
4876
Reid Spencer577cc322007-04-01 07:32:19 +00004877std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004878 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004879 default:
4880 if (getOpcode() < ISD::BUILTIN_OP_END)
4881 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004882 if (isMachineOpcode()) {
4883 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004884 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004885 if (getMachineOpcode() < TII->getNumOpcodes())
4886 return TII->get(getMachineOpcode()).getName();
4887 return "<<Unknown Machine Node>>";
4888 }
4889 if (G) {
4890 TargetLowering &TLI = G->getTargetLoweringInfo();
4891 const char *Name = TLI.getTargetNodeName(getOpcode());
4892 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004893 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004894 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004895 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004896
Dan Gohmane8be6c62008-07-17 19:10:17 +00004897#ifndef NDEBUG
4898 case ISD::DELETED_NODE:
4899 return "<<Deleted Node!>>";
4900#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00004901 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004902 case ISD::MEMBARRIER: return "MemBarrier";
Dale Johannesene00a8a22008-08-28 02:44:49 +00004903 case ISD::ATOMIC_CMP_SWAP_8: return "AtomicCmpSwap8";
4904 case ISD::ATOMIC_SWAP_8: return "AtomicSwap8";
4905 case ISD::ATOMIC_LOAD_ADD_8: return "AtomicLoadAdd8";
4906 case ISD::ATOMIC_LOAD_SUB_8: return "AtomicLoadSub8";
4907 case ISD::ATOMIC_LOAD_AND_8: return "AtomicLoadAnd8";
4908 case ISD::ATOMIC_LOAD_OR_8: return "AtomicLoadOr8";
4909 case ISD::ATOMIC_LOAD_XOR_8: return "AtomicLoadXor8";
4910 case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
4911 case ISD::ATOMIC_LOAD_MIN_8: return "AtomicLoadMin8";
4912 case ISD::ATOMIC_LOAD_MAX_8: return "AtomicLoadMax8";
4913 case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
4914 case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
4915 case ISD::ATOMIC_CMP_SWAP_16: return "AtomicCmpSwap16";
4916 case ISD::ATOMIC_SWAP_16: return "AtomicSwap16";
4917 case ISD::ATOMIC_LOAD_ADD_16: return "AtomicLoadAdd16";
4918 case ISD::ATOMIC_LOAD_SUB_16: return "AtomicLoadSub16";
4919 case ISD::ATOMIC_LOAD_AND_16: return "AtomicLoadAnd16";
4920 case ISD::ATOMIC_LOAD_OR_16: return "AtomicLoadOr16";
4921 case ISD::ATOMIC_LOAD_XOR_16: return "AtomicLoadXor16";
4922 case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
4923 case ISD::ATOMIC_LOAD_MIN_16: return "AtomicLoadMin16";
4924 case ISD::ATOMIC_LOAD_MAX_16: return "AtomicLoadMax16";
4925 case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
4926 case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
4927 case ISD::ATOMIC_CMP_SWAP_32: return "AtomicCmpSwap32";
4928 case ISD::ATOMIC_SWAP_32: return "AtomicSwap32";
4929 case ISD::ATOMIC_LOAD_ADD_32: return "AtomicLoadAdd32";
4930 case ISD::ATOMIC_LOAD_SUB_32: return "AtomicLoadSub32";
4931 case ISD::ATOMIC_LOAD_AND_32: return "AtomicLoadAnd32";
4932 case ISD::ATOMIC_LOAD_OR_32: return "AtomicLoadOr32";
4933 case ISD::ATOMIC_LOAD_XOR_32: return "AtomicLoadXor32";
4934 case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
4935 case ISD::ATOMIC_LOAD_MIN_32: return "AtomicLoadMin32";
4936 case ISD::ATOMIC_LOAD_MAX_32: return "AtomicLoadMax32";
4937 case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
4938 case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
4939 case ISD::ATOMIC_CMP_SWAP_64: return "AtomicCmpSwap64";
4940 case ISD::ATOMIC_SWAP_64: return "AtomicSwap64";
4941 case ISD::ATOMIC_LOAD_ADD_64: return "AtomicLoadAdd64";
4942 case ISD::ATOMIC_LOAD_SUB_64: return "AtomicLoadSub64";
4943 case ISD::ATOMIC_LOAD_AND_64: return "AtomicLoadAnd64";
4944 case ISD::ATOMIC_LOAD_OR_64: return "AtomicLoadOr64";
4945 case ISD::ATOMIC_LOAD_XOR_64: return "AtomicLoadXor64";
4946 case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
4947 case ISD::ATOMIC_LOAD_MIN_64: return "AtomicLoadMin64";
4948 case ISD::ATOMIC_LOAD_MAX_64: return "AtomicLoadMax64";
4949 case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
4950 case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
Andrew Lenharth95762122005-03-31 21:24:06 +00004951 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00004952 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004953 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00004954 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004955 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00004956 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00004957 case ISD::AssertSext: return "AssertSext";
4958 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004959
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004960 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004961 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004962 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004963 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004964
4965 case ISD::Constant: return "Constant";
4966 case ISD::ConstantFP: return "ConstantFP";
4967 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004968 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004969 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004970 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00004971 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00004972 case ISD::RETURNADDR: return "RETURNADDR";
4973 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004974 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00004975 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00004976 case ISD::EHSELECTION: return "EHSELECTION";
4977 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00004978 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00004979 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00004980 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004981 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00004982 return Intrinsic::getName((Intrinsic::ID)IID);
4983 }
4984 case ISD::INTRINSIC_VOID:
4985 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004986 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00004987 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00004988 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00004989
Chris Lattnerb2827b02006-03-19 00:52:58 +00004990 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004991 case ISD::TargetConstant: return "TargetConstant";
4992 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004993 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004994 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004995 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004996 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00004997 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00004998 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004999
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005000 case ISD::CopyToReg: return "CopyToReg";
5001 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005002 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005003 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005004 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005005 case ISD::DBG_LABEL: return "dbg_label";
5006 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005007 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005008 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005009 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005010 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005011
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005012 // Unary operators
5013 case ISD::FABS: return "fabs";
5014 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005015 case ISD::FSQRT: return "fsqrt";
5016 case ISD::FSIN: return "fsin";
5017 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005018 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005019 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005020 case ISD::FTRUNC: return "ftrunc";
5021 case ISD::FFLOOR: return "ffloor";
5022 case ISD::FCEIL: return "fceil";
5023 case ISD::FRINT: return "frint";
5024 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005025
5026 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005027 case ISD::ADD: return "add";
5028 case ISD::SUB: return "sub";
5029 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005030 case ISD::MULHU: return "mulhu";
5031 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005032 case ISD::SDIV: return "sdiv";
5033 case ISD::UDIV: return "udiv";
5034 case ISD::SREM: return "srem";
5035 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005036 case ISD::SMUL_LOHI: return "smul_lohi";
5037 case ISD::UMUL_LOHI: return "umul_lohi";
5038 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005039 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005040 case ISD::AND: return "and";
5041 case ISD::OR: return "or";
5042 case ISD::XOR: return "xor";
5043 case ISD::SHL: return "shl";
5044 case ISD::SRA: return "sra";
5045 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005046 case ISD::ROTL: return "rotl";
5047 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005048 case ISD::FADD: return "fadd";
5049 case ISD::FSUB: return "fsub";
5050 case ISD::FMUL: return "fmul";
5051 case ISD::FDIV: return "fdiv";
5052 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005053 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005054 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005055
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005056 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005057 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005058 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005059 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005060 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005061 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005062 case ISD::CONCAT_VECTORS: return "concat_vectors";
5063 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005064 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005065 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005066 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005067 case ISD::ADDC: return "addc";
5068 case ISD::ADDE: return "adde";
5069 case ISD::SUBC: return "subc";
5070 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005071 case ISD::SHL_PARTS: return "shl_parts";
5072 case ISD::SRA_PARTS: return "sra_parts";
5073 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005074
5075 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5076 case ISD::INSERT_SUBREG: return "insert_subreg";
5077
Chris Lattner7f644642005-04-28 21:44:03 +00005078 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005079 case ISD::SIGN_EXTEND: return "sign_extend";
5080 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005081 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005082 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005083 case ISD::TRUNCATE: return "truncate";
5084 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005085 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005086 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005087 case ISD::FP_EXTEND: return "fp_extend";
5088
5089 case ISD::SINT_TO_FP: return "sint_to_fp";
5090 case ISD::UINT_TO_FP: return "uint_to_fp";
5091 case ISD::FP_TO_SINT: return "fp_to_sint";
5092 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005093 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005094
5095 // Control flow instructions
5096 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005097 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005098 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005099 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005100 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005101 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005102 case ISD::CALLSEQ_START: return "callseq_start";
5103 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005104
5105 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005106 case ISD::LOAD: return "load";
5107 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005108 case ISD::VAARG: return "vaarg";
5109 case ISD::VACOPY: return "vacopy";
5110 case ISD::VAEND: return "vaend";
5111 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005112 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005113 case ISD::EXTRACT_ELEMENT: return "extract_element";
5114 case ISD::BUILD_PAIR: return "build_pair";
5115 case ISD::STACKSAVE: return "stacksave";
5116 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005117 case ISD::TRAP: return "trap";
5118
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005119 // Bit manipulation
5120 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005121 case ISD::CTPOP: return "ctpop";
5122 case ISD::CTTZ: return "cttz";
5123 case ISD::CTLZ: return "ctlz";
5124
Chris Lattner36ce6912005-11-29 06:21:05 +00005125 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005126 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005127 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005128
Duncan Sands36397f52007-07-27 12:58:54 +00005129 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005130 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005131
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005132 case ISD::CONDCODE:
5133 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005134 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005135 case ISD::SETOEQ: return "setoeq";
5136 case ISD::SETOGT: return "setogt";
5137 case ISD::SETOGE: return "setoge";
5138 case ISD::SETOLT: return "setolt";
5139 case ISD::SETOLE: return "setole";
5140 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005141
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005142 case ISD::SETO: return "seto";
5143 case ISD::SETUO: return "setuo";
5144 case ISD::SETUEQ: return "setue";
5145 case ISD::SETUGT: return "setugt";
5146 case ISD::SETUGE: return "setuge";
5147 case ISD::SETULT: return "setult";
5148 case ISD::SETULE: return "setule";
5149 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005150
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005151 case ISD::SETEQ: return "seteq";
5152 case ISD::SETGT: return "setgt";
5153 case ISD::SETGE: return "setge";
5154 case ISD::SETLT: return "setlt";
5155 case ISD::SETLE: return "setle";
5156 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005157 }
5158 }
5159}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005160
Evan Cheng144d8f02006-11-09 17:55:04 +00005161const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005162 switch (AM) {
5163 default:
5164 return "";
5165 case ISD::PRE_INC:
5166 return "<pre-inc>";
5167 case ISD::PRE_DEC:
5168 return "<pre-dec>";
5169 case ISD::POST_INC:
5170 return "<post-inc>";
5171 case ISD::POST_DEC:
5172 return "<post-dec>";
5173 }
5174}
5175
Duncan Sands276dcbd2008-03-21 09:14:45 +00005176std::string ISD::ArgFlagsTy::getArgFlagsString() {
5177 std::string S = "< ";
5178
5179 if (isZExt())
5180 S += "zext ";
5181 if (isSExt())
5182 S += "sext ";
5183 if (isInReg())
5184 S += "inreg ";
5185 if (isSRet())
5186 S += "sret ";
5187 if (isByVal())
5188 S += "byval ";
5189 if (isNest())
5190 S += "nest ";
5191 if (getByValAlign())
5192 S += "byval-align:" + utostr(getByValAlign()) + " ";
5193 if (getOrigAlign())
5194 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5195 if (getByValSize())
5196 S += "byval-size:" + utostr(getByValSize()) + " ";
5197 return S + ">";
5198}
5199
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005200void SDNode::dump() const { dump(0); }
5201void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005202 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005203 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005204}
5205
5206void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5207 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005208
5209 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005210 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005211 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005212 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005213 else
Chris Lattner944fac72008-08-23 22:23:09 +00005214 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005215 }
Chris Lattner944fac72008-08-23 22:23:09 +00005216 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005217
Chris Lattner944fac72008-08-23 22:23:09 +00005218 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005219 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005220 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005221 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005222 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005223 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005224 }
5225
Evan Chengce254432007-12-11 02:08:35 +00005226 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005227 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005228 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005229 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005230 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005231 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005232 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005233 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005234 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005235 }
Chris Lattner944fac72008-08-23 22:23:09 +00005236 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005237 }
5238
Chris Lattnerc3aae252005-01-07 07:46:32 +00005239 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005240 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005241 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005242 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005243 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005244 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005245 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005246 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005247 OS << "<APFloat(";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005248 CSDN->getValueAPF().convertToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005249 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005250 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005251 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005252 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00005253 int offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005254 OS << '<';
5255 WriteAsOperand(OS, GADN->getGlobal());
5256 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005257 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005258 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005259 else
Chris Lattner944fac72008-08-23 22:23:09 +00005260 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005261 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005262 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005263 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005264 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005265 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005266 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005267 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005268 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005269 else
Chris Lattner944fac72008-08-23 22:23:09 +00005270 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005271 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005272 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005273 else
Chris Lattner944fac72008-08-23 22:23:09 +00005274 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005275 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005276 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005277 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5278 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005279 OS << LBB->getName() << " ";
5280 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005281 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005282 if (G && R->getReg() &&
5283 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005284 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005285 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005286 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005287 }
Bill Wendling056292f2008-09-16 21:48:12 +00005288 } else if (const ExternalSymbolSDNode *ES =
5289 dyn_cast<ExternalSymbolSDNode>(this)) {
5290 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005291 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5292 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005293 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005294 else
Chris Lattner944fac72008-08-23 22:23:09 +00005295 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005296 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5297 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005298 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005299 else
Chris Lattner944fac72008-08-23 22:23:09 +00005300 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005301 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005302 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005303 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005304 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005305 }
5306 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005307 const Value *SrcValue = LD->getSrcValue();
5308 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005309 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005310 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005311 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005312 else
Chris Lattner944fac72008-08-23 22:23:09 +00005313 OS << "null";
5314 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005315
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005316 bool doExt = true;
5317 switch (LD->getExtensionType()) {
5318 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005319 case ISD::EXTLOAD: OS << " <anyext "; break;
5320 case ISD::SEXTLOAD: OS << " <sext "; break;
5321 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005322 }
5323 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005324 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005325
Evan Cheng144d8f02006-11-09 17:55:04 +00005326 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005327 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005328 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005329 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005330 OS << " <volatile>";
5331 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005332 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005333 const Value *SrcValue = ST->getSrcValue();
5334 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005335 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005336 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005337 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005338 else
Chris Lattner944fac72008-08-23 22:23:09 +00005339 OS << "null";
5340 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005341
5342 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005343 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005344
5345 const char *AM = getIndexedModeName(ST->getAddressingMode());
5346 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005347 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005348 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005349 OS << " <volatile>";
5350 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005351 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5352 const Value *SrcValue = AT->getSrcValue();
5353 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005354 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005355 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005356 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005357 else
Chris Lattner944fac72008-08-23 22:23:09 +00005358 OS << "null";
5359 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005360 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005361 OS << " <volatile>";
5362 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005363 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005364}
5365
Chris Lattnerde202b32005-11-09 23:47:37 +00005366static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005367 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005368 if (N->getOperand(i).getNode()->hasOneUse())
5369 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005370 else
Bill Wendling832171c2006-12-07 20:04:42 +00005371 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005372 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005373
Chris Lattnerea946cd2005-01-09 20:38:33 +00005374
Bill Wendling832171c2006-12-07 20:04:42 +00005375 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005376 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005377}
5378
Chris Lattnerc3aae252005-01-07 07:46:32 +00005379void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005380 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005381
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005382 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5383 I != E; ++I) {
5384 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005385 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005386 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005387 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005388
Gabor Greifba36cb52008-08-28 21:40:38 +00005389 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005390
Bill Wendling832171c2006-12-07 20:04:42 +00005391 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005392}
5393
Evan Chengd6594ae2006-09-12 21:00:35 +00005394const Type *ConstantPoolSDNode::getType() const {
5395 if (isMachineConstantPoolEntry())
5396 return Val.MachineCPVal->getType();
5397 return Val.ConstVal->getType();
5398}