blob: 2ad3da038771ccf1951ac4a41bf1d5235370e061 [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +000013#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000014#include "llvm/Constants.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000015#include "llvm/Analysis/ValueTracking.h"
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +000016#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000017#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000018#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000020#include "llvm/Assembly/Writer.h"
Dan Gohman707e0182008-04-12 04:36:06 +000021#include "llvm/CallingConv.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000028#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000029#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000030#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetMachine.h"
Bill Wendling6f287b22008-09-30 21:22:07 +000032#include "llvm/Support/CommandLine.h"
Chris Lattner944fac72008-08-23 22:23:09 +000033#include "llvm/Support/MathExtras.h"
34#include "llvm/Support/raw_ostream.h"
Chris Lattner012f2412006-02-17 21:58:01 +000035#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000036#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000037#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000038#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000039#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000040#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000041#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000042using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000043
Chris Lattner0b3e5252006-08-15 19:11:05 +000044/// makeVTList - Return an instance of the SDVTList struct initialized with the
45/// specified members.
Duncan Sands83ec4b62008-06-06 12:08:01 +000046static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000047 SDVTList Res = {VTs, NumVTs};
48 return Res;
49}
50
Duncan Sands83ec4b62008-06-06 12:08:01 +000051static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
52 switch (VT.getSimpleVT()) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000053 default: assert(0 && "Unknown FP format");
54 case MVT::f32: return &APFloat::IEEEsingle;
55 case MVT::f64: return &APFloat::IEEEdouble;
56 case MVT::f80: return &APFloat::x87DoubleExtended;
57 case MVT::f128: return &APFloat::IEEEquad;
58 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
59 }
60}
61
Chris Lattnerf8dc0612008-02-03 06:49:24 +000062SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
63
Jim Laskey58b968b2005-08-17 20:08:02 +000064//===----------------------------------------------------------------------===//
65// ConstantFPSDNode Class
66//===----------------------------------------------------------------------===//
67
68/// isExactlyValue - We don't rely on operator== working on double values, as
69/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
70/// As such, this method can be used to do an exact bit-for-bit comparison of
71/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000072bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohman4fbd7962008-09-12 18:08:03 +000073 return getValueAPF().bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000074}
75
Duncan Sands83ec4b62008-06-06 12:08:01 +000076bool ConstantFPSDNode::isValueValidForType(MVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000077 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000078 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Chris Lattnerec4a5672008-03-05 06:48:13 +000079
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000080 // PPC long double cannot be converted to any other type.
81 if (VT == MVT::ppcf128 ||
82 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000083 return false;
84
Dale Johannesenf04afdb2007-08-30 00:23:21 +000085 // convert modifies in place, so make a copy.
86 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +000087 bool losesInfo;
88 (void) Val2.convert(*MVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
89 &losesInfo);
90 return !losesInfo;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000091}
92
Jim Laskey58b968b2005-08-17 20:08:02 +000093//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000094// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000095//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000096
Evan Chenga8df1662006-03-27 06:58:47 +000097/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000098/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000099bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000100 // Look through a bit convert.
101 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000102 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000103
Evan Chenga8df1662006-03-27 06:58:47 +0000104 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000105
106 unsigned i = 0, e = N->getNumOperands();
107
108 // Skip over all of the undef values.
109 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
110 ++i;
111
112 // Do not accept an all-undef vector.
113 if (i == e) return false;
114
115 // Do not accept build_vectors that aren't all constants or which have non-~0
116 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000117 SDValue NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000118 if (isa<ConstantSDNode>(NotZero)) {
119 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
120 return false;
121 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000122 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
Dale Johannesen23a98552008-10-09 23:00:39 +0000123 bitcastToAPInt().isAllOnesValue())
Dan Gohman6c231502008-02-29 01:47:35 +0000124 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000125 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000126 return false;
127
128 // Okay, we have at least one ~0 value, check to see if the rest match or are
129 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000130 for (++i; i != e; ++i)
131 if (N->getOperand(i) != NotZero &&
132 N->getOperand(i).getOpcode() != ISD::UNDEF)
133 return false;
134 return true;
135}
136
137
Evan Cheng4a147842006-03-26 09:50:58 +0000138/// isBuildVectorAllZeros - Return true if the specified node is a
139/// BUILD_VECTOR where all of the elements are 0 or undef.
140bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000141 // Look through a bit convert.
142 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000143 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000144
Evan Cheng4a147842006-03-26 09:50:58 +0000145 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000146
147 unsigned i = 0, e = N->getNumOperands();
148
149 // Skip over all of the undef values.
150 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
151 ++i;
152
153 // Do not accept an all-undef vector.
154 if (i == e) return false;
155
156 // Do not accept build_vectors that aren't all constants or which have non-~0
157 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000158 SDValue Zero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000159 if (isa<ConstantSDNode>(Zero)) {
160 if (!cast<ConstantSDNode>(Zero)->isNullValue())
161 return false;
162 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000163 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000164 return false;
165 } else
166 return false;
167
168 // Okay, we have at least one ~0 value, check to see if the rest match or are
169 // undefs.
170 for (++i; i != e; ++i)
171 if (N->getOperand(i) != Zero &&
172 N->getOperand(i).getOpcode() != ISD::UNDEF)
173 return false;
174 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000175}
176
Evan Chengefec7512008-02-18 23:04:32 +0000177/// isScalarToVector - Return true if the specified node is a
178/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
179/// element is not an undef.
180bool ISD::isScalarToVector(const SDNode *N) {
181 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
182 return true;
183
184 if (N->getOpcode() != ISD::BUILD_VECTOR)
185 return false;
186 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
187 return false;
188 unsigned NumElems = N->getNumOperands();
189 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000190 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000191 if (V.getOpcode() != ISD::UNDEF)
192 return false;
193 }
194 return true;
195}
196
197
Evan Chengbb81d972008-01-31 09:59:15 +0000198/// isDebugLabel - Return true if the specified node represents a debug
Dan Gohman44066042008-07-01 00:05:16 +0000199/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
Evan Chengbb81d972008-01-31 09:59:15 +0000200bool ISD::isDebugLabel(const SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000201 SDValue Zero;
Dan Gohman44066042008-07-01 00:05:16 +0000202 if (N->getOpcode() == ISD::DBG_LABEL)
203 return true;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000204 if (N->isMachineOpcode() &&
205 N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
Dan Gohman44066042008-07-01 00:05:16 +0000206 return true;
207 return false;
Evan Chengbb81d972008-01-31 09:59:15 +0000208}
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211/// when given the operation for (X op Y).
212ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213 // To perform this operation, we just need to swap the L and G bits of the
214 // operation.
215 unsigned OldL = (Operation >> 2) & 1;
216 unsigned OldG = (Operation >> 1) & 1;
217 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
218 (OldL << 1) | // New G bit
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000219 (OldG << 2)); // New L bit.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000220}
221
222/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223/// 'op' is a valid SetCC operation.
224ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225 unsigned Operation = Op;
226 if (isInteger)
227 Operation ^= 7; // Flip L, G, E bits, but not U.
228 else
229 Operation ^= 15; // Flip all of the condition bits.
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000230
Chris Lattnerc3aae252005-01-07 07:46:32 +0000231 if (Operation > ISD::SETTRUE2)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000232 Operation &= ~8; // Don't let N and U bits get set.
233
Chris Lattnerc3aae252005-01-07 07:46:32 +0000234 return ISD::CondCode(Operation);
235}
236
237
238/// isSignedOp - For an integer comparison, return 1 if the comparison is a
239/// signed operation and 2 if the result is an unsigned comparison. Return zero
240/// if the operation does not depend on the sign of the input (setne and seteq).
241static int isSignedOp(ISD::CondCode Opcode) {
242 switch (Opcode) {
243 default: assert(0 && "Illegal integer setcc operation!");
244 case ISD::SETEQ:
245 case ISD::SETNE: return 0;
246 case ISD::SETLT:
247 case ISD::SETLE:
248 case ISD::SETGT:
249 case ISD::SETGE: return 1;
250 case ISD::SETULT:
251 case ISD::SETULE:
252 case ISD::SETUGT:
253 case ISD::SETUGE: return 2;
254 }
255}
256
257/// getSetCCOrOperation - Return the result of a logical OR between different
258/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
259/// returns SETCC_INVALID if it is not possible to represent the resultant
260/// comparison.
261ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
262 bool isInteger) {
263 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
264 // Cannot fold a signed integer setcc with an unsigned integer setcc.
265 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000266
Chris Lattnerc3aae252005-01-07 07:46:32 +0000267 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000268
Chris Lattnerc3aae252005-01-07 07:46:32 +0000269 // If the N and U bits get set then the resultant comparison DOES suddenly
270 // care about orderedness, and is true when ordered.
271 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000272 Op &= ~16; // Clear the U bit if the N bit is set.
273
274 // Canonicalize illegal integer setcc's.
275 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
276 Op = ISD::SETNE;
277
Chris Lattnerc3aae252005-01-07 07:46:32 +0000278 return ISD::CondCode(Op);
279}
280
281/// getSetCCAndOperation - Return the result of a logical AND between different
282/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
283/// function returns zero if it is not possible to represent the resultant
284/// comparison.
285ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
286 bool isInteger) {
287 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
288 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000289 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000290
291 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000292 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
293
294 // Canonicalize illegal integer setcc's.
295 if (isInteger) {
296 switch (Result) {
297 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000298 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000299 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000300 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
301 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
302 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000303 }
304 }
305
306 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000307}
308
Chris Lattnerb48da392005-01-23 04:39:44 +0000309const TargetMachine &SelectionDAG::getTarget() const {
Dan Gohman6448d912008-09-04 15:39:15 +0000310 return MF->getTarget();
Chris Lattnerb48da392005-01-23 04:39:44 +0000311}
312
Jim Laskey58b968b2005-08-17 20:08:02 +0000313//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000314// SDNode Profile Support
315//===----------------------------------------------------------------------===//
316
Jim Laskeydef69b92006-10-27 23:52:51 +0000317/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
318///
Jim Laskey583bd472006-10-27 23:46:08 +0000319static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
320 ID.AddInteger(OpC);
321}
322
323/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
324/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000325static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000326 ID.AddPointer(VTList.VTs);
327}
328
Jim Laskeydef69b92006-10-27 23:52:51 +0000329/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
330///
Jim Laskey583bd472006-10-27 23:46:08 +0000331static void AddNodeIDOperands(FoldingSetNodeID &ID,
Dan Gohman475871a2008-07-27 21:46:04 +0000332 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000333 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000334 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000335 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000336 }
Jim Laskey583bd472006-10-27 23:46:08 +0000337}
338
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000339/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
340///
341static void AddNodeIDOperands(FoldingSetNodeID &ID,
342 const SDUse *Ops, unsigned NumOps) {
343 for (; NumOps; --NumOps, ++Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +0000344 ID.AddPointer(Ops->getVal());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000345 ID.AddInteger(Ops->getSDValue().getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000346 }
347}
348
Jim Laskey583bd472006-10-27 23:46:08 +0000349static void AddNodeIDNode(FoldingSetNodeID &ID,
350 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000351 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000352 AddNodeIDOpcode(ID, OpC);
353 AddNodeIDValueTypes(ID, VTList);
354 AddNodeIDOperands(ID, OpList, N);
355}
356
Roman Levenstein9cac5252008-04-16 16:15:27 +0000357
Jim Laskeydef69b92006-10-27 23:52:51 +0000358/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
359/// data.
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000360static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000361 AddNodeIDOpcode(ID, N->getOpcode());
362 // Add the return value info.
363 AddNodeIDValueTypes(ID, N->getVTList());
364 // Add the operand info.
365 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
366
367 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000368 switch (N->getOpcode()) {
369 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000370 case ISD::ARG_FLAGS:
371 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
372 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000373 case ISD::TargetConstant:
374 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000375 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000376 break;
377 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000378 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000379 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000380 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000381 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000382 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000383 case ISD::GlobalAddress:
384 case ISD::TargetGlobalTLSAddress:
385 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000386 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000387 ID.AddPointer(GA->getGlobal());
388 ID.AddInteger(GA->getOffset());
389 break;
390 }
391 case ISD::BasicBlock:
392 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
393 break;
394 case ISD::Register:
395 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
396 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000397 case ISD::DBG_STOPPOINT: {
398 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
399 ID.AddInteger(DSP->getLine());
400 ID.AddInteger(DSP->getColumn());
401 ID.AddPointer(DSP->getCompileUnit());
402 break;
403 }
Dan Gohman69de1932008-02-06 22:27:42 +0000404 case ISD::SRCVALUE:
405 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
406 break;
407 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000408 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000409 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000410 break;
411 }
412 case ISD::FrameIndex:
413 case ISD::TargetFrameIndex:
414 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
415 break;
416 case ISD::JumpTable:
417 case ISD::TargetJumpTable:
418 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
419 break;
420 case ISD::ConstantPool:
421 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000422 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000423 ID.AddInteger(CP->getAlignment());
424 ID.AddInteger(CP->getOffset());
425 if (CP->isMachineConstantPoolEntry())
426 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
427 else
428 ID.AddPointer(CP->getConstVal());
429 break;
430 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000431 case ISD::CALL: {
432 const CallSDNode *Call = cast<CallSDNode>(N);
433 ID.AddInteger(Call->getCallingConv());
434 ID.AddInteger(Call->isVarArg());
435 break;
436 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000437 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000438 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000439 ID.AddInteger(LD->getAddressingMode());
440 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000441 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000442 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000443 break;
444 }
445 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000446 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000447 ID.AddInteger(ST->getAddressingMode());
448 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000449 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000450 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000451 break;
452 }
Dale Johannesene00a8a22008-08-28 02:44:49 +0000453 case ISD::ATOMIC_CMP_SWAP_8:
454 case ISD::ATOMIC_SWAP_8:
455 case ISD::ATOMIC_LOAD_ADD_8:
456 case ISD::ATOMIC_LOAD_SUB_8:
457 case ISD::ATOMIC_LOAD_AND_8:
458 case ISD::ATOMIC_LOAD_OR_8:
459 case ISD::ATOMIC_LOAD_XOR_8:
460 case ISD::ATOMIC_LOAD_NAND_8:
461 case ISD::ATOMIC_LOAD_MIN_8:
462 case ISD::ATOMIC_LOAD_MAX_8:
463 case ISD::ATOMIC_LOAD_UMIN_8:
464 case ISD::ATOMIC_LOAD_UMAX_8:
465 case ISD::ATOMIC_CMP_SWAP_16:
466 case ISD::ATOMIC_SWAP_16:
467 case ISD::ATOMIC_LOAD_ADD_16:
468 case ISD::ATOMIC_LOAD_SUB_16:
469 case ISD::ATOMIC_LOAD_AND_16:
470 case ISD::ATOMIC_LOAD_OR_16:
471 case ISD::ATOMIC_LOAD_XOR_16:
472 case ISD::ATOMIC_LOAD_NAND_16:
473 case ISD::ATOMIC_LOAD_MIN_16:
474 case ISD::ATOMIC_LOAD_MAX_16:
475 case ISD::ATOMIC_LOAD_UMIN_16:
476 case ISD::ATOMIC_LOAD_UMAX_16:
477 case ISD::ATOMIC_CMP_SWAP_32:
478 case ISD::ATOMIC_SWAP_32:
479 case ISD::ATOMIC_LOAD_ADD_32:
480 case ISD::ATOMIC_LOAD_SUB_32:
481 case ISD::ATOMIC_LOAD_AND_32:
482 case ISD::ATOMIC_LOAD_OR_32:
483 case ISD::ATOMIC_LOAD_XOR_32:
484 case ISD::ATOMIC_LOAD_NAND_32:
485 case ISD::ATOMIC_LOAD_MIN_32:
486 case ISD::ATOMIC_LOAD_MAX_32:
487 case ISD::ATOMIC_LOAD_UMIN_32:
488 case ISD::ATOMIC_LOAD_UMAX_32:
489 case ISD::ATOMIC_CMP_SWAP_64:
490 case ISD::ATOMIC_SWAP_64:
491 case ISD::ATOMIC_LOAD_ADD_64:
492 case ISD::ATOMIC_LOAD_SUB_64:
493 case ISD::ATOMIC_LOAD_AND_64:
494 case ISD::ATOMIC_LOAD_OR_64:
495 case ISD::ATOMIC_LOAD_XOR_64:
496 case ISD::ATOMIC_LOAD_NAND_64:
497 case ISD::ATOMIC_LOAD_MIN_64:
498 case ISD::ATOMIC_LOAD_MAX_64:
499 case ISD::ATOMIC_LOAD_UMIN_64:
500 case ISD::ATOMIC_LOAD_UMAX_64: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000501 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
502 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000503 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000504 }
Mon P Wang28873102008-06-25 08:15:39 +0000505 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000506}
507
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000508/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
509/// the CSE map that carries both alignment and volatility information.
510///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000511static inline unsigned
512encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000513 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
514}
515
Jim Laskey583bd472006-10-27 23:46:08 +0000516//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000517// SelectionDAG Class
518//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000519
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000520/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000521/// SelectionDAG.
522void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000523 // Create a dummy node (which is not added to allnodes), that adds a reference
524 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000525 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000526
Chris Lattner190a4182006-08-04 17:45:20 +0000527 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000528
Chris Lattner190a4182006-08-04 17:45:20 +0000529 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000530 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000531 if (I->use_empty())
532 DeadNodes.push_back(I);
533
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000534 RemoveDeadNodes(DeadNodes);
535
536 // If the root changed (e.g. it was a dead load, update the root).
537 setRoot(Dummy.getValue());
538}
539
540/// RemoveDeadNodes - This method deletes the unreachable nodes in the
541/// given list, and any nodes that become unreachable as a result.
542void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
543 DAGUpdateListener *UpdateListener) {
544
Chris Lattner190a4182006-08-04 17:45:20 +0000545 // Process the worklist, deleting the nodes and adding their uses to the
546 // worklist.
547 while (!DeadNodes.empty()) {
548 SDNode *N = DeadNodes.back();
549 DeadNodes.pop_back();
550
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000551 if (UpdateListener)
552 UpdateListener->NodeDeleted(N, 0);
553
Chris Lattner190a4182006-08-04 17:45:20 +0000554 // Take the node out of the appropriate CSE map.
555 RemoveNodeFromCSEMaps(N);
556
557 // Next, brutally remove the operand list. This is safe to do, as there are
558 // no cycles in the graph.
559 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000560 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000561 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000562
563 // Now that we removed this operand, see if there are no uses of it left.
564 if (Operand->use_empty())
565 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000566 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000567
568 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000569 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000570
Chris Lattner190a4182006-08-04 17:45:20 +0000571 N->OperandList = 0;
572 N->NumOperands = 0;
573
574 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000575 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000576 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000577}
578
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000579void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000580 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000581 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000582}
583
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000584void SelectionDAG::DeleteNode(SDNode *N) {
585 assert(N->use_empty() && "Cannot delete a node that is not dead!");
586
587 // First take this out of the appropriate CSE map.
588 RemoveNodeFromCSEMaps(N);
589
Chris Lattner1e111c72005-09-07 05:37:01 +0000590 // Finally, remove uses due to operands of this node, remove from the
591 // AllNodes list, and delete the node.
592 DeleteNodeNotInCSEMaps(N);
593}
594
595void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000596 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000597 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000598 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000599
600 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000601 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000602 N->OperandList = 0;
603 }
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000604
Dan Gohman11467282008-08-26 01:44:34 +0000605 assert(N != AllNodes.begin());
606 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000607}
608
Chris Lattner149c58c2005-08-16 18:17:10 +0000609/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
610/// correspond to it. This is useful when we're about to delete or repurpose
611/// the node. We don't want future request for structurally identical nodes
612/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000613bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000614 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000615 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000616 case ISD::EntryToken:
617 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000618 return false;
619 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000620 case ISD::CONDCODE:
621 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
622 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000623 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000624 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
625 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000626 case ISD::ExternalSymbol:
627 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000628 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000629 case ISD::TargetExternalSymbol:
630 Erased =
631 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000632 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000633 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000634 MVT VT = cast<VTSDNode>(N)->getVT();
635 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000636 Erased = ExtendedValueTypeNodes.erase(VT);
637 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000638 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
639 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000640 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000641 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000642 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000643 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000644 // Remove it from the CSE Map.
645 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000646 break;
647 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000648#ifndef NDEBUG
649 // Verify that the node was actually in one of the CSE maps, unless it has a
650 // flag result (which cannot be CSE'd) or is one of the special cases that are
651 // not subject to CSE.
652 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Dan Gohman095cc292008-09-13 01:54:27 +0000653 !N->isMachineOpcode() &&
Evan Cheng71e86852008-07-08 20:06:39 +0000654 N->getOpcode() != ISD::DBG_LABEL &&
655 N->getOpcode() != ISD::DBG_STOPPOINT &&
656 N->getOpcode() != ISD::EH_LABEL &&
657 N->getOpcode() != ISD::DECLARE) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000658 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000659 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000660 assert(0 && "Node is not in map!");
661 }
662#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000663 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000664}
665
Chris Lattner8b8749f2005-08-17 19:00:20 +0000666/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
667/// has been taken out and modified in some way. If the specified node already
668/// exists in the CSE maps, do not modify the maps, but return the existing node
669/// instead. If it doesn't exist, add it and return null.
670///
671SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
672 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000673
674 if (N->getValueType(0) == MVT::Flag)
675 return 0; // Never CSE anything that produces a flag.
676
677 switch (N->getOpcode()) {
678 default: break;
679 case ISD::HANDLENODE:
680 case ISD::DBG_LABEL:
681 case ISD::DBG_STOPPOINT:
682 case ISD::EH_LABEL:
683 case ISD::DECLARE:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000684 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000685 }
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000686
Chris Lattner9f8cc692005-12-19 22:21:21 +0000687 // Check that remaining values produced are not flags.
688 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
689 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000690 return 0; // Never CSE anything that produces a flag.
Chris Lattner9f8cc692005-12-19 22:21:21 +0000691
Chris Lattnera5682852006-08-07 23:03:03 +0000692 SDNode *New = CSEMap.GetOrInsertNode(N);
693 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000694 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000695}
696
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000697/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
698/// were replaced with those specified. If this node is never memoized,
699/// return null, otherwise return a pointer to the slot it would take. If a
700/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000701SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000702 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000703 if (N->getValueType(0) == MVT::Flag)
704 return 0; // Never CSE anything that produces a flag.
705
706 switch (N->getOpcode()) {
707 default: break;
708 case ISD::HANDLENODE:
709 case ISD::DBG_LABEL:
710 case ISD::DBG_STOPPOINT:
711 case ISD::EH_LABEL:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000712 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000713 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000714
715 // Check that remaining values produced are not flags.
716 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
717 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000718 return 0; // Never CSE anything that produces a flag.
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000719
Dan Gohman475871a2008-07-27 21:46:04 +0000720 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000721 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000722 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000723 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000724}
725
726/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
727/// were replaced with those specified. If this node is never memoized,
728/// return null, otherwise return a pointer to the slot it would take. If a
729/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000730SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000731 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000732 void *&InsertPos) {
733 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnera5682852006-08-07 23:03:03 +0000734
735 // Check that remaining values produced are not flags.
736 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
737 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000738 return 0; // Never CSE anything that produces a flag.
Chris Lattnera5682852006-08-07 23:03:03 +0000739
Dan Gohman475871a2008-07-27 21:46:04 +0000740 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000741 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000742 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000743 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
744}
745
746
747/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
748/// were replaced with those specified. If this node is never memoized,
749/// return null, otherwise return a pointer to the slot it would take. If a
750/// node already exists with these operands, the slot will be non-null.
751SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000752 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000753 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000754 if (N->getValueType(0) == MVT::Flag)
755 return 0; // Never CSE anything that produces a flag.
756
757 switch (N->getOpcode()) {
758 default: break;
759 case ISD::HANDLENODE:
760 case ISD::DBG_LABEL:
761 case ISD::DBG_STOPPOINT:
762 case ISD::EH_LABEL:
763 case ISD::DECLARE:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000764 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000765 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000766
767 // Check that remaining values produced are not flags.
768 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
769 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000770 return 0; // Never CSE anything that produces a flag.
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000771
Jim Laskey583bd472006-10-27 23:46:08 +0000772 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000773 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000774
Evan Cheng9629aba2006-10-11 01:47:58 +0000775 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
776 ID.AddInteger(LD->getAddressingMode());
777 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000778 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000779 ID.AddInteger(LD->getRawFlags());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000780 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
781 ID.AddInteger(ST->getAddressingMode());
782 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000783 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000784 ID.AddInteger(ST->getRawFlags());
Evan Cheng9629aba2006-10-11 01:47:58 +0000785 }
Jim Laskey583bd472006-10-27 23:46:08 +0000786
Chris Lattnera5682852006-08-07 23:03:03 +0000787 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000788}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000789
Duncan Sandsd038e042008-07-21 10:20:31 +0000790/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
791void SelectionDAG::VerifyNode(SDNode *N) {
792 switch (N->getOpcode()) {
793 default:
794 break;
795 case ISD::BUILD_VECTOR: {
796 assert(N->getNumValues() == 1 && "Too many results for BUILD_VECTOR!");
797 assert(N->getValueType(0).isVector() && "Wrong BUILD_VECTOR return type!");
798 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
799 "Wrong number of BUILD_VECTOR operands!");
800 MVT EltVT = N->getValueType(0).getVectorElementType();
801 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Dan Gohman475871a2008-07-27 21:46:04 +0000802 assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd038e042008-07-21 10:20:31 +0000803 "Wrong BUILD_VECTOR operand type!");
804 break;
805 }
806 }
807}
808
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000809/// getMVTAlignment - Compute the default alignment value for the
810/// given type.
811///
812unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
813 const Type *Ty = VT == MVT::iPTR ?
814 PointerType::get(Type::Int8Ty, 0) :
815 VT.getTypeForMVT();
816
817 return TLI.getTargetData()->getABITypeAlignment(Ty);
818}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000819
Dan Gohman7c3234c2008-08-27 23:52:12 +0000820SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
821 : TLI(tli), FLI(fli),
822 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000823 Root(getEntryNode()) {
824 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000825}
826
Dan Gohman7c3234c2008-08-27 23:52:12 +0000827void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
828 MF = &mf;
829 MMI = mmi;
830}
831
Chris Lattner78ec3112003-08-11 14:57:33 +0000832SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000833 allnodes_clear();
834}
835
836void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000837 assert(&*AllNodes.begin() == &EntryNode);
838 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000839 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000840 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000841 N->SetNextInBucket(0);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000842
843 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000844 delete [] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000845 N->OperandList = 0;
846 }
847
Dan Gohman11467282008-08-26 01:44:34 +0000848 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000849 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000850}
851
Dan Gohman7c3234c2008-08-27 23:52:12 +0000852void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000853 allnodes_clear();
854 OperandAllocator.Reset();
855 CSEMap.clear();
856
857 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000858 ExternalSymbols.clear();
859 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000860 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
861 static_cast<CondCodeSDNode*>(0));
862 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
863 static_cast<SDNode*>(0));
864
865 EntryNode.Uses = 0;
866 AllNodes.push_back(&EntryNode);
867 Root = getEntryNode();
868}
869
Dan Gohman475871a2008-07-27 21:46:04 +0000870SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000871 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000872 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000873 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000874 return getNode(ISD::AND, Op.getValueType(), Op,
875 getConstant(Imm, Op.getValueType()));
876}
877
Dan Gohman475871a2008-07-27 21:46:04 +0000878SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000879 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000880 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000881}
882
Dan Gohman475871a2008-07-27 21:46:04 +0000883SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000884 return getConstant(*ConstantInt::get(Val), VT, isT);
885}
886
887SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000888 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000889
Evan Cheng0ff39b32008-06-30 07:31:25 +0000890 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000891 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000892 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000893
894 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000895 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000896 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000897 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000898 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000899 SDNode *N = NULL;
900 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000901 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000902 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000903 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000904 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000905 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000906 CSEMap.InsertNode(N, IP);
907 AllNodes.push_back(N);
908 }
909
Dan Gohman475871a2008-07-27 21:46:04 +0000910 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000911 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000912 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000914 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
915 }
916 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000917}
918
Dan Gohman475871a2008-07-27 21:46:04 +0000919SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000920 return getConstant(Val, TLI.getPointerTy(), isTarget);
921}
922
923
Dan Gohman475871a2008-07-27 21:46:04 +0000924SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000925 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
926}
927
928SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000929 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000930
Duncan Sands83ec4b62008-06-06 12:08:01 +0000931 MVT EltVT =
932 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000933
Chris Lattnerd8658612005-02-17 20:17:32 +0000934 // Do the map lookup using the actual bit pattern for the floating point
935 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
936 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000937 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000938 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000939 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000940 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000941 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000942 SDNode *N = NULL;
943 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000944 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000945 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000946 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000947 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000948 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000949 CSEMap.InsertNode(N, IP);
950 AllNodes.push_back(N);
951 }
952
Dan Gohman475871a2008-07-27 21:46:04 +0000953 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000954 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000955 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000956 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000957 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
958 }
959 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000960}
961
Dan Gohman475871a2008-07-27 21:46:04 +0000962SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000963 MVT EltVT =
964 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000965 if (EltVT==MVT::f32)
966 return getConstantFP(APFloat((float)Val), VT, isTarget);
967 else
968 return getConstantFP(APFloat(Val), VT, isTarget);
969}
970
Dan Gohman475871a2008-07-27 21:46:04 +0000971SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +0000972 MVT VT, int64_t Offset,
Dan Gohman475871a2008-07-27 21:46:04 +0000973 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000974 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000975
Dan Gohman6520e202008-10-18 02:06:02 +0000976 // Truncate (with sign-extension) the offset value to the pointer size.
977 unsigned BitWidth = VT.getSizeInBits();
978 if (BitWidth < 64)
979 Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
980
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000981 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
982 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000983 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000984 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000985 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000986 }
987
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000988 if (GVar && GVar->isThreadLocal())
989 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
990 else
991 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000992
Jim Laskey583bd472006-10-27 23:46:08 +0000993 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000994 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000995 ID.AddPointer(GV);
996 ID.AddInteger(Offset);
997 void *IP = 0;
998 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000999 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001000 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001001 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +00001002 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001003 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001004 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001005}
1006
Dan Gohman475871a2008-07-27 21:46:04 +00001007SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001008 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +00001009 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001010 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001011 ID.AddInteger(FI);
1012 void *IP = 0;
1013 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001014 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001015 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001016 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001017 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001018 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001019 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001020}
1021
Dan Gohman475871a2008-07-27 21:46:04 +00001022SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001023 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001024 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001025 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001026 ID.AddInteger(JTI);
1027 void *IP = 0;
1028 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001029 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001030 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001031 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001032 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001033 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001034 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001035}
1036
Dan Gohman475871a2008-07-27 21:46:04 +00001037SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1038 unsigned Alignment, int Offset,
1039 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001040 if (Alignment == 0)
1041 Alignment =
1042 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001043 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001044 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001045 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001046 ID.AddInteger(Alignment);
1047 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001048 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001049 void *IP = 0;
1050 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001051 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001052 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001053 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001054 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001055 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001056 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001057}
1058
Chris Lattnerc3aae252005-01-07 07:46:32 +00001059
Dan Gohman475871a2008-07-27 21:46:04 +00001060SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1061 unsigned Alignment, int Offset,
1062 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001063 if (Alignment == 0)
1064 Alignment =
1065 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001066 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001067 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001068 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001069 ID.AddInteger(Alignment);
1070 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001071 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001072 void *IP = 0;
1073 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001074 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001075 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001076 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001077 CSEMap.InsertNode(N, IP);
1078 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001079 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001080}
1081
1082
Dan Gohman475871a2008-07-27 21:46:04 +00001083SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001084 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001085 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001086 ID.AddPointer(MBB);
1087 void *IP = 0;
1088 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001089 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001090 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001091 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001092 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001093 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001094 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001095}
1096
Dan Gohman475871a2008-07-27 21:46:04 +00001097SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001098 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001099 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001100 ID.AddInteger(Flags.getRawBits());
1101 void *IP = 0;
1102 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001103 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001104 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001105 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001106 CSEMap.InsertNode(N, IP);
1107 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001108 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001109}
1110
Dan Gohman475871a2008-07-27 21:46:04 +00001111SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001112 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1113 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001114
Duncan Sands83ec4b62008-06-06 12:08:01 +00001115 SDNode *&N = VT.isExtended() ?
1116 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001117
Dan Gohman475871a2008-07-27 21:46:04 +00001118 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001119 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001120 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001121 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001122 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001123}
1124
Bill Wendling056292f2008-09-16 21:48:12 +00001125SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1126 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001127 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001128 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1129 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001130 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001131 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001132}
1133
Bill Wendling056292f2008-09-16 21:48:12 +00001134SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1135 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001136 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001137 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1138 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001139 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001140 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001141}
1142
Dan Gohman475871a2008-07-27 21:46:04 +00001143SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001144 if ((unsigned)Cond >= CondCodeNodes.size())
1145 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001146
Chris Lattner079a27a2005-08-09 20:40:02 +00001147 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001148 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001149 new (N) CondCodeSDNode(Cond);
1150 CondCodeNodes[Cond] = N;
1151 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001152 }
Dan Gohman475871a2008-07-27 21:46:04 +00001153 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001154}
1155
Dan Gohman475871a2008-07-27 21:46:04 +00001156SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001157 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001158 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001159 ID.AddInteger(RegNo);
1160 void *IP = 0;
1161 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001162 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001163 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001164 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001165 CSEMap.InsertNode(N, IP);
1166 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001167 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001168}
1169
Dan Gohman475871a2008-07-27 21:46:04 +00001170SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001171 unsigned Line, unsigned Col,
1172 const CompileUnitDesc *CU) {
1173 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001174 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001175 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001176 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001177}
1178
Dan Gohman475871a2008-07-27 21:46:04 +00001179SDValue SelectionDAG::getLabel(unsigned Opcode,
1180 SDValue Root,
1181 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001182 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001183 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001184 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1185 ID.AddInteger(LabelID);
1186 void *IP = 0;
1187 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001188 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001189 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001190 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001191 CSEMap.InsertNode(N, IP);
1192 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001193 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001194}
1195
Dan Gohman475871a2008-07-27 21:46:04 +00001196SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001197 assert((!V || isa<PointerType>(V->getType())) &&
1198 "SrcValue is not a pointer?");
1199
Jim Laskey583bd472006-10-27 23:46:08 +00001200 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001201 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001202 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001203
Chris Lattner61b09412006-08-11 21:01:22 +00001204 void *IP = 0;
1205 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001206 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001207
Dan Gohmanfed90b62008-07-28 21:51:04 +00001208 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001209 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001210 CSEMap.InsertNode(N, IP);
1211 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001212 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001213}
1214
Dan Gohman475871a2008-07-27 21:46:04 +00001215SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001216 const Value *v = MO.getValue();
1217 assert((!v || isa<PointerType>(v->getType())) &&
1218 "SrcValue is not a pointer?");
1219
1220 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001221 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001222 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001223
1224 void *IP = 0;
1225 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001226 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001227
Dan Gohmanfed90b62008-07-28 21:51:04 +00001228 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001229 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001230 CSEMap.InsertNode(N, IP);
1231 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001232 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001233}
1234
Chris Lattner37ce9df2007-10-15 17:47:20 +00001235/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1236/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001237SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001238 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001239 unsigned ByteSize = VT.getSizeInBits()/8;
1240 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001241 unsigned StackAlign =
1242 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1243
Chris Lattner37ce9df2007-10-15 17:47:20 +00001244 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1245 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1246}
1247
Dan Gohman475871a2008-07-27 21:46:04 +00001248SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1249 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001250 // These setcc operations always fold.
1251 switch (Cond) {
1252 default: break;
1253 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001254 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001255 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001256 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001257
1258 case ISD::SETOEQ:
1259 case ISD::SETOGT:
1260 case ISD::SETOGE:
1261 case ISD::SETOLT:
1262 case ISD::SETOLE:
1263 case ISD::SETONE:
1264 case ISD::SETO:
1265 case ISD::SETUO:
1266 case ISD::SETUEQ:
1267 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001268 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001269 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001270 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001271
Gabor Greifba36cb52008-08-28 21:40:38 +00001272 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001273 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001274 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001275 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001276
Chris Lattnerc3aae252005-01-07 07:46:32 +00001277 switch (Cond) {
1278 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001279 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1280 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001281 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1282 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1283 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1284 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1285 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1286 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1287 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1288 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001289 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001290 }
Chris Lattner67255a12005-04-07 18:14:58 +00001291 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1293 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001294 // No compile time operations on this type yet.
1295 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001296 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001297
1298 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001299 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001300 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001301 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1302 return getNode(ISD::UNDEF, VT);
1303 // fall through
1304 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1305 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1306 return getNode(ISD::UNDEF, VT);
1307 // fall through
1308 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001309 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001310 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1311 return getNode(ISD::UNDEF, VT);
1312 // fall through
1313 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1314 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1315 return getNode(ISD::UNDEF, VT);
1316 // fall through
1317 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1318 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1319 return getNode(ISD::UNDEF, VT);
1320 // fall through
1321 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001322 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001323 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1324 return getNode(ISD::UNDEF, VT);
1325 // fall through
1326 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001327 R==APFloat::cmpEqual, VT);
1328 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1329 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1330 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1331 R==APFloat::cmpEqual, VT);
1332 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1333 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1334 R==APFloat::cmpLessThan, VT);
1335 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1336 R==APFloat::cmpUnordered, VT);
1337 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1338 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001339 }
1340 } else {
1341 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001342 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001343 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001344 }
1345
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001346 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001347 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001348}
1349
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001350/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1351/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001352bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001353 unsigned BitWidth = Op.getValueSizeInBits();
1354 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1355}
1356
Dan Gohmanea859be2007-06-22 14:59:07 +00001357/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1358/// this predicate to simplify operations downstream. Mask is known to be zero
1359/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001360bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001361 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001362 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001363 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1364 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1365 return (KnownZero & Mask) == Mask;
1366}
1367
1368/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1369/// known to be either zero or one and return them in the KnownZero/KnownOne
1370/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1371/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001372void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001373 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001374 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001375 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001376 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001377 "Mask size mismatches value type size!");
1378
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001379 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001380 if (Depth == 6 || Mask == 0)
1381 return; // Limit search depth.
1382
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001383 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001384
1385 switch (Op.getOpcode()) {
1386 case ISD::Constant:
1387 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001388 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001389 KnownZero = ~KnownOne & Mask;
1390 return;
1391 case ISD::AND:
1392 // If either the LHS or the RHS are Zero, the result is zero.
1393 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001394 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1395 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001396 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1397 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1398
1399 // Output known-1 bits are only known if set in both the LHS & RHS.
1400 KnownOne &= KnownOne2;
1401 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1402 KnownZero |= KnownZero2;
1403 return;
1404 case ISD::OR:
1405 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001406 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1407 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001408 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1409 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1410
1411 // Output known-0 bits are only known if clear in both the LHS & RHS.
1412 KnownZero &= KnownZero2;
1413 // Output known-1 are known to be set if set in either the LHS | RHS.
1414 KnownOne |= KnownOne2;
1415 return;
1416 case ISD::XOR: {
1417 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1418 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1419 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1420 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1421
1422 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001423 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001424 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1425 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1426 KnownZero = KnownZeroOut;
1427 return;
1428 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001429 case ISD::MUL: {
1430 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1431 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1432 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1433 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1434 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1435
1436 // If low bits are zero in either operand, output low known-0 bits.
1437 // Also compute a conserative estimate for high known-0 bits.
1438 // More trickiness is possible, but this is sufficient for the
1439 // interesting case of alignment computation.
1440 KnownOne.clear();
1441 unsigned TrailZ = KnownZero.countTrailingOnes() +
1442 KnownZero2.countTrailingOnes();
1443 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001444 KnownZero2.countLeadingOnes(),
1445 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001446
1447 TrailZ = std::min(TrailZ, BitWidth);
1448 LeadZ = std::min(LeadZ, BitWidth);
1449 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1450 APInt::getHighBitsSet(BitWidth, LeadZ);
1451 KnownZero &= Mask;
1452 return;
1453 }
1454 case ISD::UDIV: {
1455 // For the purposes of computing leading zeros we can conservatively
1456 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001457 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001458 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1459 ComputeMaskedBits(Op.getOperand(0),
1460 AllOnes, KnownZero2, KnownOne2, Depth+1);
1461 unsigned LeadZ = KnownZero2.countLeadingOnes();
1462
1463 KnownOne2.clear();
1464 KnownZero2.clear();
1465 ComputeMaskedBits(Op.getOperand(1),
1466 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001467 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1468 if (RHSUnknownLeadingOnes != BitWidth)
1469 LeadZ = std::min(BitWidth,
1470 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001471
1472 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1473 return;
1474 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001475 case ISD::SELECT:
1476 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1477 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1478 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1479 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1480
1481 // Only known if known in both the LHS and RHS.
1482 KnownOne &= KnownOne2;
1483 KnownZero &= KnownZero2;
1484 return;
1485 case ISD::SELECT_CC:
1486 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1487 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1488 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1489 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1490
1491 // Only known if known in both the LHS and RHS.
1492 KnownOne &= KnownOne2;
1493 KnownZero &= KnownZero2;
1494 return;
1495 case ISD::SETCC:
1496 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001497 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1498 BitWidth > 1)
1499 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001500 return;
1501 case ISD::SHL:
1502 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1503 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001504 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001505
1506 // If the shift count is an invalid immediate, don't do anything.
1507 if (ShAmt >= BitWidth)
1508 return;
1509
1510 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001511 KnownZero, KnownOne, Depth+1);
1512 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001513 KnownZero <<= ShAmt;
1514 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001515 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001516 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001517 }
1518 return;
1519 case ISD::SRL:
1520 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1521 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001522 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001523
Dan Gohmand4cf9922008-02-26 18:50:50 +00001524 // If the shift count is an invalid immediate, don't do anything.
1525 if (ShAmt >= BitWidth)
1526 return;
1527
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001528 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001529 KnownZero, KnownOne, Depth+1);
1530 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001531 KnownZero = KnownZero.lshr(ShAmt);
1532 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001533
Dan Gohman72d2fd52008-02-13 22:43:25 +00001534 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001535 KnownZero |= HighBits; // High bits known zero.
1536 }
1537 return;
1538 case ISD::SRA:
1539 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001540 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001541
Dan Gohmand4cf9922008-02-26 18:50:50 +00001542 // If the shift count is an invalid immediate, don't do anything.
1543 if (ShAmt >= BitWidth)
1544 return;
1545
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001546 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001547 // If any of the demanded bits are produced by the sign extension, we also
1548 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001549 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1550 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001551 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001552
1553 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1554 Depth+1);
1555 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001556 KnownZero = KnownZero.lshr(ShAmt);
1557 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001558
1559 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001560 APInt SignBit = APInt::getSignBit(BitWidth);
1561 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001562
Dan Gohmanca93a432008-02-20 16:30:17 +00001563 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001564 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001565 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001566 KnownOne |= HighBits; // New bits are known one.
1567 }
1568 }
1569 return;
1570 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001571 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1572 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001573
1574 // Sign extension. Compute the demanded bits in the result that are not
1575 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001576 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001577
Dan Gohman977a76f2008-02-13 22:28:48 +00001578 APInt InSignBit = APInt::getSignBit(EBits);
1579 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001580
1581 // If the sign extended bits are demanded, we know that the sign
1582 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001583 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001584 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001585 InputDemandedBits |= InSignBit;
1586
1587 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1588 KnownZero, KnownOne, Depth+1);
1589 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1590
1591 // If the sign bit of the input is known set or clear, then we know the
1592 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001593 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001594 KnownZero |= NewBits;
1595 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001596 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001597 KnownOne |= NewBits;
1598 KnownZero &= ~NewBits;
1599 } else { // Input sign bit unknown
1600 KnownZero &= ~NewBits;
1601 KnownOne &= ~NewBits;
1602 }
1603 return;
1604 }
1605 case ISD::CTTZ:
1606 case ISD::CTLZ:
1607 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001608 unsigned LowBits = Log2_32(BitWidth)+1;
1609 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001610 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001611 return;
1612 }
1613 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001614 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001615 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001616 MVT VT = LD->getMemoryVT();
1617 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001618 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001619 }
1620 return;
1621 }
1622 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001623 MVT InVT = Op.getOperand(0).getValueType();
1624 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001625 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1626 APInt InMask = Mask;
1627 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001628 KnownZero.trunc(InBits);
1629 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001630 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001631 KnownZero.zext(BitWidth);
1632 KnownOne.zext(BitWidth);
1633 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001634 return;
1635 }
1636 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001637 MVT InVT = Op.getOperand(0).getValueType();
1638 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001639 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001640 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1641 APInt InMask = Mask;
1642 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001643
1644 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001645 // bit is demanded. Temporarily set this bit in the mask for our callee.
1646 if (NewBits.getBoolValue())
1647 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001648
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001649 KnownZero.trunc(InBits);
1650 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001651 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1652
1653 // Note if the sign bit is known to be zero or one.
1654 bool SignBitKnownZero = KnownZero.isNegative();
1655 bool SignBitKnownOne = KnownOne.isNegative();
1656 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1657 "Sign bit can't be known to be both zero and one!");
1658
1659 // If the sign bit wasn't actually demanded by our caller, we don't
1660 // want it set in the KnownZero and KnownOne result values. Reset the
1661 // mask and reapply it to the result values.
1662 InMask = Mask;
1663 InMask.trunc(InBits);
1664 KnownZero &= InMask;
1665 KnownOne &= InMask;
1666
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001667 KnownZero.zext(BitWidth);
1668 KnownOne.zext(BitWidth);
1669
Dan Gohman977a76f2008-02-13 22:28:48 +00001670 // If the sign bit is known zero or one, the top bits match.
1671 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001672 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001673 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001674 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001675 return;
1676 }
1677 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001678 MVT InVT = Op.getOperand(0).getValueType();
1679 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001680 APInt InMask = Mask;
1681 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001682 KnownZero.trunc(InBits);
1683 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001684 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001685 KnownZero.zext(BitWidth);
1686 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001687 return;
1688 }
1689 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001690 MVT InVT = Op.getOperand(0).getValueType();
1691 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001692 APInt InMask = Mask;
1693 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001694 KnownZero.zext(InBits);
1695 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001696 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001697 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001698 KnownZero.trunc(BitWidth);
1699 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001700 break;
1701 }
1702 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001703 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1704 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001705 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1706 KnownOne, Depth+1);
1707 KnownZero |= (~InMask) & Mask;
1708 return;
1709 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001710 case ISD::FGETSIGN:
1711 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001712 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001713 return;
1714
Dan Gohman23e8b712008-04-28 17:02:21 +00001715 case ISD::SUB: {
1716 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1717 // We know that the top bits of C-X are clear if X contains less bits
1718 // than C (i.e. no wrap-around can happen). For example, 20-X is
1719 // positive if we can prove that X is >= 0 and < 16.
1720 if (CLHS->getAPIntValue().isNonNegative()) {
1721 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1722 // NLZ can't be BitWidth with no sign bit
1723 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1724 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1725 Depth+1);
1726
1727 // If all of the MaskV bits are known to be zero, then we know the
1728 // output top bits are zero, because we now know that the output is
1729 // from [0-C].
1730 if ((KnownZero2 & MaskV) == MaskV) {
1731 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1732 // Top bits known zero.
1733 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1734 }
1735 }
1736 }
1737 }
1738 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001739 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001740 // Output known-0 bits are known if clear or set in both the low clear bits
1741 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1742 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001743 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1744 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1745 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1746 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1747
1748 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1749 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1750 KnownZeroOut = std::min(KnownZeroOut,
1751 KnownZero2.countTrailingOnes());
1752
1753 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001754 return;
1755 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001756 case ISD::SREM:
1757 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001758 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001759 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001760 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001761 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1762 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001763
Dan Gohmana60832b2008-08-13 23:12:35 +00001764 // If the sign bit of the first operand is zero, the sign bit of
1765 // the result is zero. If the first operand has no one bits below
1766 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001767 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1768 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001769
Dan Gohman23e8b712008-04-28 17:02:21 +00001770 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001771
1772 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001773 }
1774 }
1775 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001776 case ISD::UREM: {
1777 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001778 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001779 if (RA.isPowerOf2()) {
1780 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001781 APInt Mask2 = LowBits & Mask;
1782 KnownZero |= ~LowBits & Mask;
1783 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1784 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1785 break;
1786 }
1787 }
1788
1789 // Since the result is less than or equal to either operand, any leading
1790 // zero bits in either operand must also exist in the result.
1791 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1792 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1793 Depth+1);
1794 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1795 Depth+1);
1796
1797 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1798 KnownZero2.countLeadingOnes());
1799 KnownOne.clear();
1800 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1801 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001802 }
1803 default:
1804 // Allow the target to implement this method for its nodes.
1805 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1806 case ISD::INTRINSIC_WO_CHAIN:
1807 case ISD::INTRINSIC_W_CHAIN:
1808 case ISD::INTRINSIC_VOID:
1809 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1810 }
1811 return;
1812 }
1813}
1814
1815/// ComputeNumSignBits - Return the number of times the sign bit of the
1816/// register is replicated into the other bits. We know that at least 1 bit
1817/// is always equal to the sign bit (itself), but other cases can give us
1818/// information. For example, immediately after an "SRA X, 2", we know that
1819/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001820unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001821 MVT VT = Op.getValueType();
1822 assert(VT.isInteger() && "Invalid VT!");
1823 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001824 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001825 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001826
1827 if (Depth == 6)
1828 return 1; // Limit search depth.
1829
1830 switch (Op.getOpcode()) {
1831 default: break;
1832 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001833 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001834 return VTBits-Tmp+1;
1835 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001836 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001837 return VTBits-Tmp;
1838
1839 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001840 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1841 // If negative, return # leading ones.
1842 if (Val.isNegative())
1843 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001844
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001845 // Return # leading zeros.
1846 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001847 }
1848
1849 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001850 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001851 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1852
1853 case ISD::SIGN_EXTEND_INREG:
1854 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001855 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001856 Tmp = VTBits-Tmp+1;
1857
1858 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1859 return std::max(Tmp, Tmp2);
1860
1861 case ISD::SRA:
1862 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1863 // SRA X, C -> adds C sign bits.
1864 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001865 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001866 if (Tmp > VTBits) Tmp = VTBits;
1867 }
1868 return Tmp;
1869 case ISD::SHL:
1870 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1871 // shl destroys sign bits.
1872 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001873 if (C->getZExtValue() >= VTBits || // Bad shift.
1874 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1875 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001876 }
1877 break;
1878 case ISD::AND:
1879 case ISD::OR:
1880 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001881 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001882 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001883 if (Tmp != 1) {
1884 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1885 FirstAnswer = std::min(Tmp, Tmp2);
1886 // We computed what we know about the sign bits as our first
1887 // answer. Now proceed to the generic code that uses
1888 // ComputeMaskedBits, and pick whichever answer is better.
1889 }
1890 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001891
1892 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001893 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001894 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001895 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001896 return std::min(Tmp, Tmp2);
1897
1898 case ISD::SETCC:
1899 // If setcc returns 0/-1, all bits are sign bits.
1900 if (TLI.getSetCCResultContents() ==
1901 TargetLowering::ZeroOrNegativeOneSetCCResult)
1902 return VTBits;
1903 break;
1904 case ISD::ROTL:
1905 case ISD::ROTR:
1906 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001907 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001908
1909 // Handle rotate right by N like a rotate left by 32-N.
1910 if (Op.getOpcode() == ISD::ROTR)
1911 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1912
1913 // If we aren't rotating out all of the known-in sign bits, return the
1914 // number that are left. This handles rotl(sext(x), 1) for example.
1915 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1916 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1917 }
1918 break;
1919 case ISD::ADD:
1920 // Add can have at most one carry bit. Thus we know that the output
1921 // is, at worst, one more bit than the inputs.
1922 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1923 if (Tmp == 1) return 1; // Early out.
1924
1925 // Special case decrementing a value (ADD X, -1):
1926 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1927 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001928 APInt KnownZero, KnownOne;
1929 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001930 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1931
1932 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1933 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001934 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001935 return VTBits;
1936
1937 // If we are subtracting one from a positive number, there is no carry
1938 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001939 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001940 return Tmp;
1941 }
1942
1943 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1944 if (Tmp2 == 1) return 1;
1945 return std::min(Tmp, Tmp2)-1;
1946 break;
1947
1948 case ISD::SUB:
1949 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1950 if (Tmp2 == 1) return 1;
1951
1952 // Handle NEG.
1953 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001954 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001955 APInt KnownZero, KnownOne;
1956 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001957 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1958 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1959 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001960 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001961 return VTBits;
1962
1963 // If the input is known to be positive (the sign bit is known clear),
1964 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001965 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001966 return Tmp2;
1967
1968 // Otherwise, we treat this like a SUB.
1969 }
1970
1971 // Sub can have at most one carry bit. Thus we know that the output
1972 // is, at worst, one more bit than the inputs.
1973 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1974 if (Tmp == 1) return 1; // Early out.
1975 return std::min(Tmp, Tmp2)-1;
1976 break;
1977 case ISD::TRUNCATE:
1978 // FIXME: it's tricky to do anything useful for this, but it is an important
1979 // case for targets like X86.
1980 break;
1981 }
1982
1983 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1984 if (Op.getOpcode() == ISD::LOAD) {
1985 LoadSDNode *LD = cast<LoadSDNode>(Op);
1986 unsigned ExtType = LD->getExtensionType();
1987 switch (ExtType) {
1988 default: break;
1989 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001990 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001991 return VTBits-Tmp+1;
1992 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001993 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001994 return VTBits-Tmp;
1995 }
1996 }
1997
1998 // Allow the target to implement this method for its nodes.
1999 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2000 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2001 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2002 Op.getOpcode() == ISD::INTRINSIC_VOID) {
2003 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002004 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002005 }
2006
2007 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2008 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002009 APInt KnownZero, KnownOne;
2010 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002011 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2012
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002013 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002014 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002015 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002016 Mask = KnownOne;
2017 } else {
2018 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002019 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002020 }
2021
2022 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2023 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002024 Mask = ~Mask;
2025 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002026 // Return # leading zeros. We use 'min' here in case Val was zero before
2027 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002028 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002029}
2030
Chris Lattner51dabfb2006-10-14 00:41:01 +00002031
Dan Gohman475871a2008-07-27 21:46:04 +00002032bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002033 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2034 if (!GA) return false;
Dan Gohman6520e202008-10-18 02:06:02 +00002035 if (GA->getOffset() != 0) return false;
Evan Chenga844bde2008-02-02 04:07:54 +00002036 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2037 if (!GV) return false;
2038 MachineModuleInfo *MMI = getMachineModuleInfo();
2039 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2040}
2041
2042
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002043/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2044/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002045SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002046 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002047 SDValue PermMask = N->getOperand(2);
2048 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002049 if (Idx.getOpcode() == ISD::UNDEF)
2050 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002051 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002052 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002053 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002054 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002055
2056 if (V.getOpcode() == ISD::BIT_CONVERT) {
2057 V = V.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002058 if (V.getValueType().getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002059 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002060 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002061 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002062 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002063 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002064 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002065 return V.getOperand(Index);
2066 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002067 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002068 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002069}
2070
2071
Chris Lattnerc3aae252005-01-07 07:46:32 +00002072/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002073///
Dan Gohman475871a2008-07-27 21:46:04 +00002074SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002075 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002076 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002077 void *IP = 0;
2078 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002079 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002080 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002081 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002082 CSEMap.InsertNode(N, IP);
2083
2084 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002085#ifndef NDEBUG
2086 VerifyNode(N);
2087#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002088 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002089}
2090
Dan Gohman475871a2008-07-27 21:46:04 +00002091SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002092 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002093 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002094 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002095 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002096 switch (Opcode) {
2097 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002098 case ISD::SIGN_EXTEND:
2099 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002100 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002101 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002102 case ISD::TRUNCATE:
2103 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002104 case ISD::UINT_TO_FP:
2105 case ISD::SINT_TO_FP: {
2106 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002107 // No compile time operations on this type.
2108 if (VT==MVT::ppcf128)
2109 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002110 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2111 (void)apf.convertFromAPInt(Val,
2112 Opcode==ISD::SINT_TO_FP,
2113 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002114 return getConstantFP(apf, VT);
2115 }
Chris Lattner94683772005-12-23 05:30:37 +00002116 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002117 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002118 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002119 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002120 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002121 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002122 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002123 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002124 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002125 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002126 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002127 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002128 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002129 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002130 }
2131 }
2132
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002133 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002134 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002135 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002136 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002137 switch (Opcode) {
2138 case ISD::FNEG:
2139 V.changeSign();
2140 return getConstantFP(V, VT);
2141 case ISD::FABS:
2142 V.clearSign();
2143 return getConstantFP(V, VT);
2144 case ISD::FP_ROUND:
Dale Johannesen23a98552008-10-09 23:00:39 +00002145 case ISD::FP_EXTEND: {
2146 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002147 // This can return overflow, underflow, or inexact; we don't care.
2148 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002149 (void)V.convert(*MVTToAPFloatSemantics(VT),
Dale Johannesen23a98552008-10-09 23:00:39 +00002150 APFloat::rmNearestTiesToEven, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002151 return getConstantFP(V, VT);
Dale Johannesen23a98552008-10-09 23:00:39 +00002152 }
Dale Johannesendb44bf82007-10-16 23:38:29 +00002153 case ISD::FP_TO_SINT:
2154 case ISD::FP_TO_UINT: {
2155 integerPart x;
Dale Johannesen23a98552008-10-09 23:00:39 +00002156 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002157 assert(integerPartWidth >= 64);
2158 // FIXME need to be more flexible about rounding mode.
2159 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2160 Opcode==ISD::FP_TO_SINT,
Dale Johannesen23a98552008-10-09 23:00:39 +00002161 APFloat::rmTowardZero, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002162 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2163 break;
2164 return getConstant(x, VT);
2165 }
2166 case ISD::BIT_CONVERT:
2167 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Dale Johannesen23a98552008-10-09 23:00:39 +00002168 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002169 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Dale Johannesen23a98552008-10-09 23:00:39 +00002170 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002171 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002172 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002173 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002174 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002175
Gabor Greifba36cb52008-08-28 21:40:38 +00002176 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002177 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002178 case ISD::TokenFactor:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002179 case ISD::CONCAT_VECTORS:
2180 return Operand; // Factor or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002181 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002182 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002183 assert(VT.isFloatingPoint() &&
2184 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002185 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002186 if (Operand.getOpcode() == ISD::UNDEF)
2187 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002188 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002189 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002190 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002191 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002192 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002193 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002194 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002195 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002196 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002197 break;
2198 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002199 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002200 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002201 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002202 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002203 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002204 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002205 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002206 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002207 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002209 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002210 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002211 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002212 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002213 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2214 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002215 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002216 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002217 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002218 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002219 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002220 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002221 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002222 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002223 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002224 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002225 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2226 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002227 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002228 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2229 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2230 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2231 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002232 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002233 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002234 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002235 break;
Chris Lattner35481892005-12-23 00:16:34 +00002236 case ISD::BIT_CONVERT:
2237 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002238 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002239 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002240 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002241 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2242 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002243 if (OpOpcode == ISD::UNDEF)
2244 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002245 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002246 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002247 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2248 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002249 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002250 if (OpOpcode == ISD::UNDEF)
2251 return getNode(ISD::UNDEF, VT);
2252 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2253 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2254 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2255 Operand.getConstantOperandVal(1) == 0 &&
2256 Operand.getOperand(0).getValueType() == VT)
2257 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002258 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002259 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002260 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002261 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2262 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002263 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002264 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002265 break;
2266 case ISD::FABS:
2267 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002268 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002269 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002270 }
2271
Chris Lattner43247a12005-08-25 19:12:10 +00002272 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002273 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002274 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002275 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002276 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002277 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002278 void *IP = 0;
2279 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002280 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002281 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002282 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002283 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002284 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002285 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002286 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002287 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002288
Chris Lattnerc3aae252005-01-07 07:46:32 +00002289 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002290#ifndef NDEBUG
2291 VerifyNode(N);
2292#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002293 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002294}
2295
Bill Wendling688d1c42008-09-24 10:16:24 +00002296SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2297 MVT VT,
2298 ConstantSDNode *Cst1,
2299 ConstantSDNode *Cst2) {
2300 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2301
2302 switch (Opcode) {
2303 case ISD::ADD: return getConstant(C1 + C2, VT);
2304 case ISD::SUB: return getConstant(C1 - C2, VT);
2305 case ISD::MUL: return getConstant(C1 * C2, VT);
2306 case ISD::UDIV:
2307 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2308 break;
2309 case ISD::UREM:
2310 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2311 break;
2312 case ISD::SDIV:
2313 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2314 break;
2315 case ISD::SREM:
2316 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2317 break;
2318 case ISD::AND: return getConstant(C1 & C2, VT);
2319 case ISD::OR: return getConstant(C1 | C2, VT);
2320 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2321 case ISD::SHL: return getConstant(C1 << C2, VT);
2322 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2323 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2324 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2325 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2326 default: break;
2327 }
2328
2329 return SDValue();
2330}
2331
Dan Gohman475871a2008-07-27 21:46:04 +00002332SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2333 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002334 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2335 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002336 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002337 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002338 case ISD::TokenFactor:
2339 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2340 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002341 // Fold trivial token factors.
2342 if (N1.getOpcode() == ISD::EntryToken) return N2;
2343 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002344 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002345 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002346 case ISD::CONCAT_VECTORS:
2347 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2348 // one big BUILD_VECTOR.
2349 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2350 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002351 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2352 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002353 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2354 }
2355 break;
Chris Lattner76365122005-01-16 02:23:22 +00002356 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002357 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002358 N1.getValueType() == VT && "Binary operator types must match!");
2359 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2360 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002361 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002362 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002363 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2364 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002365 break;
Chris Lattner76365122005-01-16 02:23:22 +00002366 case ISD::OR:
2367 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002368 case ISD::ADD:
2369 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002370 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002371 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002372 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2373 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002374 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002375 return N1;
2376 break;
Chris Lattner76365122005-01-16 02:23:22 +00002377 case ISD::UDIV:
2378 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002379 case ISD::MULHU:
2380 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002381 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002382 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002383 case ISD::MUL:
2384 case ISD::SDIV:
2385 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002386 case ISD::FADD:
2387 case ISD::FSUB:
2388 case ISD::FMUL:
2389 case ISD::FDIV:
2390 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002391 assert(N1.getValueType() == N2.getValueType() &&
2392 N1.getValueType() == VT && "Binary operator types must match!");
2393 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002394 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2395 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002396 N1.getValueType().isFloatingPoint() &&
2397 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002398 "Invalid FCOPYSIGN!");
2399 break;
Chris Lattner76365122005-01-16 02:23:22 +00002400 case ISD::SHL:
2401 case ISD::SRA:
2402 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002403 case ISD::ROTL:
2404 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002405 assert(VT == N1.getValueType() &&
2406 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002407 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002408 "Shifts only work on integers");
2409
2410 // Always fold shifts of i1 values so the code generator doesn't need to
2411 // handle them. Since we know the size of the shift has to be less than the
2412 // size of the value, the shift/rotate count is guaranteed to be zero.
2413 if (VT == MVT::i1)
2414 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002415 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002416 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002417 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002418 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002419 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002420 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002421 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002422 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002423 break;
2424 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002425 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002426 assert(VT.isFloatingPoint() &&
2427 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002428 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002429 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002430 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002431 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002432 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002433 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002434 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002435 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002436 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002437 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002438 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002439 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002440 break;
2441 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002442 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002443 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002444 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002445 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002446 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002447 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002448 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002449
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002450 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002451 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002452 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002453 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002454 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002455 return getConstant(Val, VT);
2456 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002457 break;
2458 }
2459 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002460 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2461 if (N1.getOpcode() == ISD::UNDEF)
2462 return getNode(ISD::UNDEF, VT);
2463
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002464 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2465 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002466 if (N2C &&
2467 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002468 N1.getNumOperands() > 0) {
2469 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002470 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002471 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002472 N1.getOperand(N2C->getZExtValue() / Factor),
2473 getConstant(N2C->getZExtValue() % Factor,
2474 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002475 }
2476
2477 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2478 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002479 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002480 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002481
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002482 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2483 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002484 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2485 if (N1.getOperand(2) == N2)
2486 return N1.getOperand(1);
2487 else
2488 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2489 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002490 break;
2491 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002492 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002493 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2494 (N1.getValueType().isInteger() == VT.isInteger()) &&
2495 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002496
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002497 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2498 // 64-bit integers into 32-bit parts. Instead of building the extract of
2499 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2500 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002501 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002502
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002503 // EXTRACT_ELEMENT of a constant int is also very common.
2504 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002505 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002506 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002507 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2508 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002509 }
2510 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002511 case ISD::EXTRACT_SUBVECTOR:
2512 if (N1.getValueType() == VT) // Trivial extraction.
2513 return N1;
2514 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002515 }
2516
2517 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002518 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002519 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2520 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002521 } else { // Cannonicalize constant to RHS if commutative
2522 if (isCommutativeBinOp(Opcode)) {
2523 std::swap(N1C, N2C);
2524 std::swap(N1, N2);
2525 }
2526 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002527 }
2528
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002529 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002530 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2531 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002532 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002533 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2534 // Cannonicalize constant to RHS if commutative
2535 std::swap(N1CFP, N2CFP);
2536 std::swap(N1, N2);
2537 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002538 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2539 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002540 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002541 case ISD::FADD:
2542 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002543 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002544 return getConstantFP(V1, VT);
2545 break;
2546 case ISD::FSUB:
2547 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2548 if (s!=APFloat::opInvalidOp)
2549 return getConstantFP(V1, VT);
2550 break;
2551 case ISD::FMUL:
2552 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2553 if (s!=APFloat::opInvalidOp)
2554 return getConstantFP(V1, VT);
2555 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002556 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002557 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2558 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2559 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002560 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002561 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002562 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2563 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2564 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002565 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002566 case ISD::FCOPYSIGN:
2567 V1.copySign(V2);
2568 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002569 default: break;
2570 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002571 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002572 }
Chris Lattner62b57722006-04-20 05:39:12 +00002573
2574 // Canonicalize an UNDEF to the RHS, even over a constant.
2575 if (N1.getOpcode() == ISD::UNDEF) {
2576 if (isCommutativeBinOp(Opcode)) {
2577 std::swap(N1, N2);
2578 } else {
2579 switch (Opcode) {
2580 case ISD::FP_ROUND_INREG:
2581 case ISD::SIGN_EXTEND_INREG:
2582 case ISD::SUB:
2583 case ISD::FSUB:
2584 case ISD::FDIV:
2585 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002586 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002587 return N1; // fold op(undef, arg2) -> undef
2588 case ISD::UDIV:
2589 case ISD::SDIV:
2590 case ISD::UREM:
2591 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002592 case ISD::SRL:
2593 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002594 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002595 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2596 // For vectors, we can't easily build an all zero vector, just return
2597 // the LHS.
2598 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002599 }
2600 }
2601 }
2602
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002603 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002604 if (N2.getOpcode() == ISD::UNDEF) {
2605 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002606 case ISD::XOR:
2607 if (N1.getOpcode() == ISD::UNDEF)
2608 // Handle undef ^ undef -> 0 special case. This is a common
2609 // idiom (misuse).
2610 return getConstant(0, VT);
2611 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002612 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002613 case ISD::ADDC:
2614 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002615 case ISD::SUB:
2616 case ISD::FADD:
2617 case ISD::FSUB:
2618 case ISD::FMUL:
2619 case ISD::FDIV:
2620 case ISD::FREM:
2621 case ISD::UDIV:
2622 case ISD::SDIV:
2623 case ISD::UREM:
2624 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002625 return N2; // fold op(arg1, undef) -> undef
2626 case ISD::MUL:
2627 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002628 case ISD::SRL:
2629 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002630 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002631 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2632 // For vectors, we can't easily build an all zero vector, just return
2633 // the LHS.
2634 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002635 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002636 if (!VT.isVector())
2637 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002638 // For vectors, we can't easily build an all one vector, just return
2639 // the LHS.
2640 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002641 case ISD::SRA:
2642 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002643 }
2644 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002645
Chris Lattner27e9b412005-05-11 18:57:39 +00002646 // Memoize this node if possible.
2647 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002648 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002649 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002650 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002651 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002652 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002653 void *IP = 0;
2654 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002655 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002656 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002657 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002658 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002659 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002660 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002661 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002662 }
2663
Chris Lattnerc3aae252005-01-07 07:46:32 +00002664 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002665#ifndef NDEBUG
2666 VerifyNode(N);
2667#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002668 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002669}
2670
Dan Gohman475871a2008-07-27 21:46:04 +00002671SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2672 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002673 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002674 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2675 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002676 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002677 case ISD::CONCAT_VECTORS:
2678 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2679 // one big BUILD_VECTOR.
2680 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2681 N2.getOpcode() == ISD::BUILD_VECTOR &&
2682 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002683 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2684 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2685 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002686 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2687 }
2688 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002689 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002690 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002691 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002692 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002693 break;
2694 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002695 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002696 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002697 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002698 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002699 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002700 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002701 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002702
2703 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002704 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002705 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002706 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002707 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002708 return getNode(ISD::BR, MVT::Other, N1, N3);
2709 else
2710 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002711 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002712 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002713 case ISD::VECTOR_SHUFFLE:
2714 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002715 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002716 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002717 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002718 "Illegal VECTOR_SHUFFLE node!");
2719 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002720 case ISD::BIT_CONVERT:
2721 // Fold bit_convert nodes from a type to themselves.
2722 if (N1.getValueType() == VT)
2723 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002724 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002725 }
2726
Chris Lattner43247a12005-08-25 19:12:10 +00002727 // Memoize node if it doesn't produce a flag.
2728 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002729 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002730 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002731 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002732 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002733 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002734 void *IP = 0;
2735 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002736 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002737 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002738 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002739 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002740 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002741 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002742 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002743 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002744 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002745#ifndef NDEBUG
2746 VerifyNode(N);
2747#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002748 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002749}
2750
Dan Gohman475871a2008-07-27 21:46:04 +00002751SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2752 SDValue N1, SDValue N2, SDValue N3,
2753 SDValue N4) {
2754 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002755 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002756}
2757
Dan Gohman475871a2008-07-27 21:46:04 +00002758SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2759 SDValue N1, SDValue N2, SDValue N3,
2760 SDValue N4, SDValue N5) {
2761 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002762 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002763}
2764
Dan Gohman707e0182008-04-12 04:36:06 +00002765/// getMemsetValue - Vectorized representation of the memset value
2766/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002767static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002768 unsigned NumBits = VT.isVector() ?
2769 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002770 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002771 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002772 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002773 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002774 Val = (Val << Shift) | Val;
2775 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002776 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002777 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002778 return DAG.getConstant(Val, VT);
2779 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002780 }
Evan Chengf0df0312008-05-15 08:39:06 +00002781
2782 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2783 unsigned Shift = 8;
2784 for (unsigned i = NumBits; i > 8; i >>= 1) {
2785 Value = DAG.getNode(ISD::OR, VT,
2786 DAG.getNode(ISD::SHL, VT, Value,
2787 DAG.getConstant(Shift, MVT::i8)), Value);
2788 Shift <<= 1;
2789 }
2790
2791 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002792}
2793
Dan Gohman707e0182008-04-12 04:36:06 +00002794/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2795/// used when a memcpy is turned into a memset when the source is a constant
2796/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002797static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002798 const TargetLowering &TLI,
2799 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002800 // Handle vector with all elements zero.
2801 if (Str.empty()) {
2802 if (VT.isInteger())
2803 return DAG.getConstant(0, VT);
2804 unsigned NumElts = VT.getVectorNumElements();
2805 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2806 return DAG.getNode(ISD::BIT_CONVERT, VT,
2807 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2808 }
2809
Duncan Sands83ec4b62008-06-06 12:08:01 +00002810 assert(!VT.isVector() && "Can't handle vector type here!");
2811 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002812 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002813 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002814 if (TLI.isLittleEndian())
2815 Offset = Offset + MSB - 1;
2816 for (unsigned i = 0; i != MSB; ++i) {
2817 Val = (Val << 8) | (unsigned char)Str[Offset];
2818 Offset += TLI.isLittleEndian() ? -1 : 1;
2819 }
2820 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002821}
2822
Dan Gohman707e0182008-04-12 04:36:06 +00002823/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002824///
Dan Gohman475871a2008-07-27 21:46:04 +00002825static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002826 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002827 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002828 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2829}
2830
Evan Chengf0df0312008-05-15 08:39:06 +00002831/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2832///
Dan Gohman475871a2008-07-27 21:46:04 +00002833static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002834 unsigned SrcDelta = 0;
2835 GlobalAddressSDNode *G = NULL;
2836 if (Src.getOpcode() == ISD::GlobalAddress)
2837 G = cast<GlobalAddressSDNode>(Src);
2838 else if (Src.getOpcode() == ISD::ADD &&
2839 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2840 Src.getOperand(1).getOpcode() == ISD::Constant) {
2841 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002842 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002843 }
2844 if (!G)
2845 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002846
Evan Chengf0df0312008-05-15 08:39:06 +00002847 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002848 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2849 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002850
Evan Chengf0df0312008-05-15 08:39:06 +00002851 return false;
2852}
Dan Gohman707e0182008-04-12 04:36:06 +00002853
Evan Chengf0df0312008-05-15 08:39:06 +00002854/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2855/// to replace the memset / memcpy is below the threshold. It also returns the
2856/// types of the sequence of memory ops to perform memset / memcpy.
2857static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002858bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002859 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002860 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002861 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002862 SelectionDAG &DAG,
2863 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002864 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002865 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002866 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002867 MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002868 if (VT != MVT::iAny) {
2869 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002870 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002871 // If source is a string constant, this will require an unaligned load.
2872 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2873 if (Dst.getOpcode() != ISD::FrameIndex) {
2874 // Can't change destination alignment. It requires a unaligned store.
2875 if (AllowUnalign)
2876 VT = MVT::iAny;
2877 } else {
2878 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2879 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2880 if (MFI->isFixedObjectIndex(FI)) {
2881 // Can't change destination alignment. It requires a unaligned store.
2882 if (AllowUnalign)
2883 VT = MVT::iAny;
2884 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002885 // Give the stack frame object a larger alignment if needed.
2886 if (MFI->getObjectAlignment(FI) < NewAlign)
2887 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002888 Align = NewAlign;
2889 }
2890 }
2891 }
2892 }
2893
2894 if (VT == MVT::iAny) {
2895 if (AllowUnalign) {
2896 VT = MVT::i64;
2897 } else {
2898 switch (Align & 7) {
2899 case 0: VT = MVT::i64; break;
2900 case 4: VT = MVT::i32; break;
2901 case 2: VT = MVT::i16; break;
2902 default: VT = MVT::i8; break;
2903 }
2904 }
2905
Duncan Sands83ec4b62008-06-06 12:08:01 +00002906 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002907 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002908 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2909 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002910
Duncan Sands8e4eb092008-06-08 20:54:56 +00002911 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002912 VT = LVT;
2913 }
Dan Gohman707e0182008-04-12 04:36:06 +00002914
2915 unsigned NumMemOps = 0;
2916 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002917 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002918 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002919 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002920 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002921 VT = MVT::i64;
2922 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002923 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2924 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002925 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002926 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002927 VTSize >>= 1;
2928 }
Dan Gohman707e0182008-04-12 04:36:06 +00002929 }
Dan Gohman707e0182008-04-12 04:36:06 +00002930
2931 if (++NumMemOps > Limit)
2932 return false;
2933 MemOps.push_back(VT);
2934 Size -= VTSize;
2935 }
2936
2937 return true;
2938}
2939
Dan Gohman475871a2008-07-27 21:46:04 +00002940static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2941 SDValue Chain, SDValue Dst,
2942 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002943 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002944 const Value *DstSV, uint64_t DstSVOff,
2945 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002946 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2947
Dan Gohman21323f32008-05-29 19:42:22 +00002948 // Expand memcpy to a series of load and store ops if the size operand falls
2949 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002950 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002951 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002952 if (!AlwaysInline)
2953 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002954 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002955 std::string Str;
2956 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002957 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002958 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002959 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002960
Dan Gohman707e0182008-04-12 04:36:06 +00002961
Evan Cheng0ff39b32008-06-30 07:31:25 +00002962 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00002963 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00002964 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00002965 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002966 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 MVT VT = MemOps[i];
2968 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00002969 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00002970
Evan Cheng0ff39b32008-06-30 07:31:25 +00002971 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00002972 // It's unlikely a store of a vector immediate can be done in a single
2973 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002974 // We also handle store a vector with all zero's.
2975 // FIXME: Handle other cases where store of vector immediate is done in
2976 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002977 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002978 Store = DAG.getStore(Chain, Value,
2979 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00002980 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002981 } else {
2982 Value = DAG.getLoad(VT, Chain,
2983 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002984 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002985 Store = DAG.getStore(Chain, Value,
2986 getMemBasePlusOffset(Dst, DstOff, DAG),
2987 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002988 }
2989 OutChains.push_back(Store);
2990 SrcOff += VTSize;
2991 DstOff += VTSize;
2992 }
2993
2994 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2995 &OutChains[0], OutChains.size());
2996}
2997
Dan Gohman475871a2008-07-27 21:46:04 +00002998static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
2999 SDValue Chain, SDValue Dst,
3000 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00003001 unsigned Align, bool AlwaysInline,
3002 const Value *DstSV, uint64_t DstSVOff,
3003 const Value *SrcSV, uint64_t SrcSVOff){
3004 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3005
3006 // Expand memmove to a series of load and store ops if the size operand falls
3007 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003008 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00003009 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00003010 if (!AlwaysInline)
3011 Limit = TLI.getMaxStoresPerMemmove();
3012 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003013 std::string Str;
3014 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00003015 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003016 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003017 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003018
Dan Gohman21323f32008-05-29 19:42:22 +00003019 uint64_t SrcOff = 0, DstOff = 0;
3020
Dan Gohman475871a2008-07-27 21:46:04 +00003021 SmallVector<SDValue, 8> LoadValues;
3022 SmallVector<SDValue, 8> LoadChains;
3023 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003024 unsigned NumMemOps = MemOps.size();
3025 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003026 MVT VT = MemOps[i];
3027 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003028 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003029
3030 Value = DAG.getLoad(VT, Chain,
3031 getMemBasePlusOffset(Src, SrcOff, DAG),
3032 SrcSV, SrcSVOff + SrcOff, false, Align);
3033 LoadValues.push_back(Value);
3034 LoadChains.push_back(Value.getValue(1));
3035 SrcOff += VTSize;
3036 }
3037 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3038 &LoadChains[0], LoadChains.size());
3039 OutChains.clear();
3040 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003041 MVT VT = MemOps[i];
3042 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003043 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003044
3045 Store = DAG.getStore(Chain, LoadValues[i],
3046 getMemBasePlusOffset(Dst, DstOff, DAG),
3047 DstSV, DstSVOff + DstOff, false, DstAlign);
3048 OutChains.push_back(Store);
3049 DstOff += VTSize;
3050 }
3051
3052 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3053 &OutChains[0], OutChains.size());
3054}
3055
Dan Gohman475871a2008-07-27 21:46:04 +00003056static SDValue getMemsetStores(SelectionDAG &DAG,
3057 SDValue Chain, SDValue Dst,
3058 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003059 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003060 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003061 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3062
3063 // Expand memset to a series of load/store ops if the size operand
3064 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003065 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003066 std::string Str;
3067 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003068 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003069 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003070 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003071
Dan Gohman475871a2008-07-27 21:46:04 +00003072 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003073 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003074
3075 unsigned NumMemOps = MemOps.size();
3076 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003077 MVT VT = MemOps[i];
3078 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003079 SDValue Value = getMemsetValue(Src, VT, DAG);
3080 SDValue Store = DAG.getStore(Chain, Value,
Dan Gohman707e0182008-04-12 04:36:06 +00003081 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003082 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003083 OutChains.push_back(Store);
3084 DstOff += VTSize;
3085 }
3086
3087 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3088 &OutChains[0], OutChains.size());
3089}
3090
Dan Gohman475871a2008-07-27 21:46:04 +00003091SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3092 SDValue Src, SDValue Size,
3093 unsigned Align, bool AlwaysInline,
3094 const Value *DstSV, uint64_t DstSVOff,
3095 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003096
3097 // Check to see if we should lower the memcpy to loads and stores first.
3098 // For cases within the target-specified limits, this is the best choice.
3099 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3100 if (ConstantSize) {
3101 // Memcpy with size zero? Just return the original chain.
3102 if (ConstantSize->isNullValue())
3103 return Chain;
3104
Dan Gohman475871a2008-07-27 21:46:04 +00003105 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003106 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3107 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003108 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003109 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003110 return Result;
3111 }
3112
3113 // Then check to see if we should lower the memcpy with target-specific
3114 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003115 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003116 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3117 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003118 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003119 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003120 return Result;
3121
3122 // If we really need inline code and the target declined to provide it,
3123 // use a (potentially long) sequence of loads and stores.
3124 if (AlwaysInline) {
3125 assert(ConstantSize && "AlwaysInline requires a constant size!");
3126 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003127 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003128 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003129 }
3130
3131 // Emit a library call.
3132 TargetLowering::ArgListTy Args;
3133 TargetLowering::ArgListEntry Entry;
3134 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3135 Entry.Node = Dst; Args.push_back(Entry);
3136 Entry.Node = Src; Args.push_back(Entry);
3137 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003138 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003139 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003140 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003141 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003142 Args, *this);
3143 return CallResult.second;
3144}
3145
Dan Gohman475871a2008-07-27 21:46:04 +00003146SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3147 SDValue Src, SDValue Size,
3148 unsigned Align,
3149 const Value *DstSV, uint64_t DstSVOff,
3150 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003151
Dan Gohman21323f32008-05-29 19:42:22 +00003152 // Check to see if we should lower the memmove to loads and stores first.
3153 // For cases within the target-specified limits, this is the best choice.
3154 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3155 if (ConstantSize) {
3156 // Memmove with size zero? Just return the original chain.
3157 if (ConstantSize->isNullValue())
3158 return Chain;
3159
Dan Gohman475871a2008-07-27 21:46:04 +00003160 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003161 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3162 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003163 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003164 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003165 return Result;
3166 }
Dan Gohman707e0182008-04-12 04:36:06 +00003167
3168 // Then check to see if we should lower the memmove with target-specific
3169 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003170 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003171 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003172 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003173 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003174 return Result;
3175
3176 // Emit a library call.
3177 TargetLowering::ArgListTy Args;
3178 TargetLowering::ArgListEntry Entry;
3179 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3180 Entry.Node = Dst; Args.push_back(Entry);
3181 Entry.Node = Src; Args.push_back(Entry);
3182 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003183 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003184 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003185 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003186 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003187 Args, *this);
3188 return CallResult.second;
3189}
3190
Dan Gohman475871a2008-07-27 21:46:04 +00003191SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3192 SDValue Src, SDValue Size,
3193 unsigned Align,
3194 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003195
3196 // Check to see if we should lower the memset to stores first.
3197 // For cases within the target-specified limits, this is the best choice.
3198 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3199 if (ConstantSize) {
3200 // Memset with size zero? Just return the original chain.
3201 if (ConstantSize->isNullValue())
3202 return Chain;
3203
Dan Gohman475871a2008-07-27 21:46:04 +00003204 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003205 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3206 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003207 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003208 return Result;
3209 }
3210
3211 // Then check to see if we should lower the memset with target-specific
3212 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003213 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003214 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003215 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003216 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003217 return Result;
3218
3219 // Emit a library call.
3220 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3221 TargetLowering::ArgListTy Args;
3222 TargetLowering::ArgListEntry Entry;
3223 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3224 Args.push_back(Entry);
3225 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003226 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003227 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3228 else
3229 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3230 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3231 Args.push_back(Entry);
3232 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3233 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003234 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003235 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003236 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003237 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003238 Args, *this);
3239 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003240}
3241
Dan Gohman475871a2008-07-27 21:46:04 +00003242SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3243 SDValue Ptr, SDValue Cmp,
3244 SDValue Swp, const Value* PtrVal,
3245 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003246 assert((Opcode == ISD::ATOMIC_CMP_SWAP_8 ||
3247 Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3248 Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3249 Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003250 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003251
3252 MVT VT = Cmp.getValueType();
3253
3254 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3255 Alignment = getMVTAlignment(VT);
3256
3257 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003258 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003259 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003260 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003261 void* IP = 0;
3262 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003263 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003264 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003265 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003266 CSEMap.InsertNode(N, IP);
3267 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003268 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003269}
3270
Dan Gohman475871a2008-07-27 21:46:04 +00003271SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3272 SDValue Ptr, SDValue Val,
3273 const Value* PtrVal,
3274 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003275 assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3276 Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3277 Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3278 Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3279 Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3280 Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3281 Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3282 Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3283 Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3284 Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3285 Opcode == ISD::ATOMIC_SWAP_8 ||
3286 Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3287 Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3288 Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3289 Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3290 Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3291 Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3292 Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3293 Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3294 Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3295 Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3296 Opcode == ISD::ATOMIC_SWAP_16 ||
3297 Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3298 Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3299 Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3300 Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3301 Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3302 Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3303 Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3304 Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3305 Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3306 Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3307 Opcode == ISD::ATOMIC_SWAP_32 ||
3308 Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3309 Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3310 Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3311 Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3312 Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3313 Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3314 Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3315 Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3316 Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3317 Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3318 Opcode == ISD::ATOMIC_SWAP_64) && "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003319
3320 MVT VT = Val.getValueType();
3321
3322 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3323 Alignment = getMVTAlignment(VT);
3324
3325 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003326 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003327 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003328 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003329 void* IP = 0;
3330 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003331 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003332 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003333 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003334 CSEMap.InsertNode(N, IP);
3335 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003336 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003337}
3338
Duncan Sands4bdcb612008-07-02 17:40:58 +00003339/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3340/// Allowed to return something different (and simpler) if Simplify is true.
Dan Gohman475871a2008-07-27 21:46:04 +00003341SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3342 bool Simplify) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00003343 if (Simplify && NumOps == 1)
3344 return Ops[0];
3345
3346 SmallVector<MVT, 4> VTs;
3347 VTs.reserve(NumOps);
3348 for (unsigned i = 0; i < NumOps; ++i)
3349 VTs.push_back(Ops[i].getValueType());
3350 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3351}
3352
Dan Gohman475871a2008-07-27 21:46:04 +00003353SDValue
Mon P Wangc4d10212008-10-17 18:22:58 +00003354SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3355 const MVT *VTs, unsigned NumVTs,
3356 const SDValue *Ops, unsigned NumOps,
3357 MVT MemVT, const Value *srcValue, int SVOff,
3358 unsigned Align, bool Vol,
3359 bool ReadMem, bool WriteMem) {
3360 return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3361 MemVT, srcValue, SVOff, Align, Vol,
3362 ReadMem, WriteMem);
3363}
3364
3365SDValue
3366SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3367 const SDValue *Ops, unsigned NumOps,
3368 MVT MemVT, const Value *srcValue, int SVOff,
3369 unsigned Align, bool Vol,
3370 bool ReadMem, bool WriteMem) {
3371 // Memoize the node unless it returns a flag.
3372 MemIntrinsicSDNode *N;
3373 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3374 FoldingSetNodeID ID;
3375 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3376 void *IP = 0;
3377 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3378 return SDValue(E, 0);
3379
3380 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3381 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3382 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3383 CSEMap.InsertNode(N, IP);
3384 } else {
3385 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3386 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3387 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3388 }
3389 AllNodes.push_back(N);
3390 return SDValue(N, 0);
3391}
3392
3393SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003394SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003395 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003396 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003397 // Do not include isTailCall in the folding set profile.
3398 FoldingSetNodeID ID;
3399 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3400 ID.AddInteger(CallingConv);
3401 ID.AddInteger(IsVarArgs);
3402 void *IP = 0;
3403 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3404 // Instead of including isTailCall in the folding set, we just
3405 // set the flag of the existing node.
3406 if (!IsTailCall)
3407 cast<CallSDNode>(E)->setNotTailCall();
3408 return SDValue(E, 0);
3409 }
Dan Gohman095cc292008-09-13 01:54:27 +00003410 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003411 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003412 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003413 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003414 AllNodes.push_back(N);
3415 return SDValue(N, 0);
3416}
3417
3418SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003419SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003420 MVT VT, SDValue Chain,
3421 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003422 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003423 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003424 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3425 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003426
Duncan Sands14ea39c2008-03-27 20:23:40 +00003427 if (VT == EVT) {
3428 ExtType = ISD::NON_EXTLOAD;
3429 } else if (ExtType == ISD::NON_EXTLOAD) {
3430 assert(VT == EVT && "Non-extending load from different memory type!");
3431 } else {
3432 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003433 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003434 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3435 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003436 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003437 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003438 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003439 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003440 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003441 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003442 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003443 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003444
3445 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003446 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003447 "Unindexed load with an offset!");
3448
3449 SDVTList VTs = Indexed ?
3450 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003451 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003452 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003453 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003454 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003455 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003456 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003457 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003458 void *IP = 0;
3459 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003460 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003461 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003462 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3463 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003464 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003465 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003466 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003467}
3468
Dan Gohman475871a2008-07-27 21:46:04 +00003469SDValue SelectionDAG::getLoad(MVT VT,
3470 SDValue Chain, SDValue Ptr,
3471 const Value *SV, int SVOffset,
3472 bool isVolatile, unsigned Alignment) {
3473 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003474 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3475 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003476}
3477
Dan Gohman475871a2008-07-27 21:46:04 +00003478SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3479 SDValue Chain, SDValue Ptr,
3480 const Value *SV,
3481 int SVOffset, MVT EVT,
3482 bool isVolatile, unsigned Alignment) {
3483 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003484 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3485 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003486}
3487
Dan Gohman475871a2008-07-27 21:46:04 +00003488SDValue
3489SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3490 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003491 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003492 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3493 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003494 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3495 LD->getChain(), Base, Offset, LD->getSrcValue(),
3496 LD->getSrcValueOffset(), LD->getMemoryVT(),
3497 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003498}
3499
Dan Gohman475871a2008-07-27 21:46:04 +00003500SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3501 SDValue Ptr, const Value *SV, int SVOffset,
3502 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003503 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003504
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003505 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3506 Alignment = getMVTAlignment(VT);
3507
Evan Chengad071e12006-10-05 22:57:11 +00003508 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003509 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3510 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003511 FoldingSetNodeID ID;
3512 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003513 ID.AddInteger(ISD::UNINDEXED);
3514 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003515 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003516 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +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, ISD::UNINDEXED, false,
3522 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003523 CSEMap.InsertNode(N, IP);
3524 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003525 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003526}
3527
Dan Gohman475871a2008-07-27 21:46:04 +00003528SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3529 SDValue Ptr, const Value *SV,
3530 int SVOffset, MVT SVT,
3531 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003532 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003533
3534 if (VT == SVT)
3535 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003536
Duncan Sands8e4eb092008-06-08 20:54:56 +00003537 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003538 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003539 "Can't do FP-INT conversion!");
3540
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003541 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3542 Alignment = getMVTAlignment(VT);
3543
Evan Cheng8b2794a2006-10-13 21:14:26 +00003544 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003545 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3546 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003547 FoldingSetNodeID ID;
3548 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003549 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003550 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003551 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003552 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003553 void *IP = 0;
3554 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003555 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003556 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003557 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3558 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003559 CSEMap.InsertNode(N, IP);
3560 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003561 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003562}
3563
Dan Gohman475871a2008-07-27 21:46:04 +00003564SDValue
3565SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3566 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003567 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3568 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3569 "Store is already a indexed store!");
3570 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003571 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003572 FoldingSetNodeID ID;
3573 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3574 ID.AddInteger(AM);
3575 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003576 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003577 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003578 void *IP = 0;
3579 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003580 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003581 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003582 new (N) StoreSDNode(Ops, VTs, AM,
3583 ST->isTruncatingStore(), ST->getMemoryVT(),
3584 ST->getSrcValue(), ST->getSrcValueOffset(),
3585 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003586 CSEMap.InsertNode(N, IP);
3587 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003588 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003589}
3590
Dan Gohman475871a2008-07-27 21:46:04 +00003591SDValue SelectionDAG::getVAArg(MVT VT,
3592 SDValue Chain, SDValue Ptr,
3593 SDValue SV) {
3594 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003595 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003596}
3597
Dan Gohman475871a2008-07-27 21:46:04 +00003598SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3599 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003600 switch (NumOps) {
3601 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003602 case 1: return getNode(Opcode, VT, Ops[0]);
3603 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3604 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003605 default: break;
3606 }
3607
Dan Gohman475871a2008-07-27 21:46:04 +00003608 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003609 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003610 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3611 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003612}
3613
Dan Gohman475871a2008-07-27 21:46:04 +00003614SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3615 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003616 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003617 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003618 case 1: return getNode(Opcode, VT, Ops[0]);
3619 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3620 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003621 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003622 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003623
Chris Lattneref847df2005-04-09 03:27:28 +00003624 switch (Opcode) {
3625 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003626 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003627 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003628 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3629 "LHS and RHS of condition must have same type!");
3630 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3631 "True and False arms of SelectCC must have same type!");
3632 assert(Ops[2].getValueType() == VT &&
3633 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003634 break;
3635 }
3636 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003637 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003638 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3639 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003640 break;
3641 }
Chris Lattneref847df2005-04-09 03:27:28 +00003642 }
3643
Chris Lattner385328c2005-05-14 07:42:29 +00003644 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003645 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003646 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003647 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003648 FoldingSetNodeID ID;
3649 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003650 void *IP = 0;
3651 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003652 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003653 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003654 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003655 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003656 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003657 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003658 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003659 }
Chris Lattneref847df2005-04-09 03:27:28 +00003660 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003661#ifndef NDEBUG
3662 VerifyNode(N);
3663#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003664 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003665}
3666
Dan Gohman475871a2008-07-27 21:46:04 +00003667SDValue SelectionDAG::getNode(unsigned Opcode,
3668 const std::vector<MVT> &ResultTys,
3669 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003670 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3671 Ops, NumOps);
3672}
3673
Dan Gohman475871a2008-07-27 21:46:04 +00003674SDValue SelectionDAG::getNode(unsigned Opcode,
3675 const MVT *VTs, unsigned NumVTs,
3676 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003677 if (NumVTs == 1)
3678 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003679 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3680}
3681
Dan Gohman475871a2008-07-27 21:46:04 +00003682SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3683 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003684 if (VTList.NumVTs == 1)
3685 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003686
Chris Lattner5f056bf2005-07-10 01:55:33 +00003687 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003688 // FIXME: figure out how to safely handle things like
3689 // int foo(int x) { return 1 << (x & 255); }
3690 // int bar() { return foo(256); }
3691#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003692 case ISD::SRA_PARTS:
3693 case ISD::SRL_PARTS:
3694 case ISD::SHL_PARTS:
3695 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003696 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003697 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3698 else if (N3.getOpcode() == ISD::AND)
3699 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3700 // If the and is only masking out bits that cannot effect the shift,
3701 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003702 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003703 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3704 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3705 }
3706 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003707#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003708 }
Chris Lattner89c34632005-05-14 06:20:26 +00003709
Chris Lattner43247a12005-08-25 19:12:10 +00003710 // Memoize the node unless it returns a flag.
3711 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003712 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003713 FoldingSetNodeID ID;
3714 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003715 void *IP = 0;
3716 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003717 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003718 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003719 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003720 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3721 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003722 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003723 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3724 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003725 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003726 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3727 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003728 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003729 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3730 }
Chris Lattnera5682852006-08-07 23:03:03 +00003731 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003732 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003733 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003734 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003735 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3736 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003737 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003738 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3739 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003740 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003741 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3742 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003743 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003744 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3745 }
Chris Lattner43247a12005-08-25 19:12:10 +00003746 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003747 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003748#ifndef NDEBUG
3749 VerifyNode(N);
3750#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003751 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003752}
3753
Dan Gohman475871a2008-07-27 21:46:04 +00003754SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003755 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003756}
3757
Dan Gohman475871a2008-07-27 21:46:04 +00003758SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3759 SDValue N1) {
3760 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003761 return getNode(Opcode, VTList, Ops, 1);
3762}
3763
Dan Gohman475871a2008-07-27 21:46:04 +00003764SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3765 SDValue N1, SDValue N2) {
3766 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003767 return getNode(Opcode, VTList, Ops, 2);
3768}
3769
Dan Gohman475871a2008-07-27 21:46:04 +00003770SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3771 SDValue N1, SDValue N2, SDValue N3) {
3772 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003773 return getNode(Opcode, VTList, Ops, 3);
3774}
3775
Dan Gohman475871a2008-07-27 21:46:04 +00003776SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3777 SDValue N1, SDValue N2, SDValue N3,
3778 SDValue N4) {
3779 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003780 return getNode(Opcode, VTList, Ops, 4);
3781}
3782
Dan Gohman475871a2008-07-27 21:46:04 +00003783SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3784 SDValue N1, SDValue N2, SDValue N3,
3785 SDValue N4, SDValue N5) {
3786 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003787 return getNode(Opcode, VTList, Ops, 5);
3788}
3789
Duncan Sands83ec4b62008-06-06 12:08:01 +00003790SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003791 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003792}
3793
Duncan Sands83ec4b62008-06-06 12:08:01 +00003794SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003795 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3796 E = VTList.rend(); I != E; ++I)
3797 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3798 return *I;
3799
3800 MVT *Array = Allocator.Allocate<MVT>(2);
3801 Array[0] = VT1;
3802 Array[1] = VT2;
3803 SDVTList Result = makeVTList(Array, 2);
3804 VTList.push_back(Result);
3805 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003806}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003807
3808SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3809 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3810 E = VTList.rend(); I != E; ++I)
3811 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3812 I->VTs[2] == VT3)
3813 return *I;
3814
3815 MVT *Array = Allocator.Allocate<MVT>(3);
3816 Array[0] = VT1;
3817 Array[1] = VT2;
3818 Array[2] = VT3;
3819 SDVTList Result = makeVTList(Array, 3);
3820 VTList.push_back(Result);
3821 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003822}
3823
Duncan Sands83ec4b62008-06-06 12:08:01 +00003824SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003825 switch (NumVTs) {
3826 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003827 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003828 case 2: return getVTList(VTs[0], VTs[1]);
3829 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3830 default: break;
3831 }
3832
Dan Gohmane8be6c62008-07-17 19:10:17 +00003833 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3834 E = VTList.rend(); I != E; ++I) {
3835 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3836 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003837
3838 bool NoMatch = false;
3839 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003840 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003841 NoMatch = true;
3842 break;
3843 }
3844 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003845 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003846 }
3847
Dan Gohmane8be6c62008-07-17 19:10:17 +00003848 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3849 std::copy(VTs, VTs+NumVTs, Array);
3850 SDVTList Result = makeVTList(Array, NumVTs);
3851 VTList.push_back(Result);
3852 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003853}
3854
3855
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003856/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3857/// specified operands. If the resultant node already exists in the DAG,
3858/// this does not modify the specified node, instead it returns the node that
3859/// already exists. If the resultant node does not exist in the DAG, the
3860/// input node is returned. As a degenerate case, if you specify the same
3861/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003862SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003863 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003864 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3865
3866 // Check to see if there is no change.
3867 if (Op == N->getOperand(0)) return InN;
3868
3869 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003870 void *InsertPos = 0;
3871 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003872 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003873
Dan Gohman79acd2b2008-07-21 22:38:59 +00003874 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003875 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003876 if (!RemoveNodeFromCSEMaps(N))
3877 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003878
3879 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003880 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003881 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003882 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003883 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003884
3885 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003886 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003887 return InN;
3888}
3889
Dan Gohman475871a2008-07-27 21:46:04 +00003890SDValue SelectionDAG::
3891UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003892 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003893 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3894
3895 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003896 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3897 return InN; // No operands changed, just return the input node.
3898
3899 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003900 void *InsertPos = 0;
3901 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003902 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003903
Dan Gohman79acd2b2008-07-21 22:38:59 +00003904 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003905 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003906 if (!RemoveNodeFromCSEMaps(N))
3907 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003908
3909 // Now we update the operands.
3910 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003911 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003912 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003913 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003914 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003915 }
3916 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003917 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003918 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003919 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003920 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003921 }
3922
3923 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003924 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003925 return InN;
3926}
3927
Dan Gohman475871a2008-07-27 21:46:04 +00003928SDValue SelectionDAG::
3929UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3930 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003931 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003932}
3933
Dan Gohman475871a2008-07-27 21:46:04 +00003934SDValue SelectionDAG::
3935UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3936 SDValue Op3, SDValue Op4) {
3937 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003938 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003939}
3940
Dan Gohman475871a2008-07-27 21:46:04 +00003941SDValue SelectionDAG::
3942UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3943 SDValue Op3, SDValue Op4, SDValue Op5) {
3944 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003945 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003946}
3947
Dan Gohman475871a2008-07-27 21:46:04 +00003948SDValue SelectionDAG::
3949UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003950 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003951 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003952 "Update with wrong number of operands");
3953
3954 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003955 bool AnyChange = false;
3956 for (unsigned i = 0; i != NumOps; ++i) {
3957 if (Ops[i] != N->getOperand(i)) {
3958 AnyChange = true;
3959 break;
3960 }
3961 }
3962
3963 // No operands changed, just return the input node.
3964 if (!AnyChange) return InN;
3965
3966 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003967 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003968 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003969 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003970
Dan Gohman7ceda162008-05-02 00:05:03 +00003971 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003972 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003973 if (!RemoveNodeFromCSEMaps(N))
3974 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003975
3976 // Now we update the operands.
3977 for (unsigned i = 0; i != NumOps; ++i) {
3978 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003979 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003980 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003981 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003982 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003983 }
3984 }
3985
3986 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003987 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003988 return InN;
3989}
3990
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003991/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00003992/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003993void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003994 // Unlike the code in MorphNodeTo that does this, we don't need to
3995 // watch for dead nodes here.
3996 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3997 I->getVal()->removeUser(std::distance(op_begin(), I), this);
3998
3999 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00004000}
Chris Lattner149c58c2005-08-16 18:17:10 +00004001
Dan Gohmane8be6c62008-07-17 19:10:17 +00004002/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4003/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004004///
Dan Gohmane8be6c62008-07-17 19:10:17 +00004005SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004006 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004007 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004008 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00004009}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004010
Dan Gohmane8be6c62008-07-17 19:10:17 +00004011SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004012 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004013 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004014 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004015 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00004016}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004017
Dan Gohmane8be6c62008-07-17 19:10:17 +00004018SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004019 MVT VT, SDValue Op1,
4020 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004021 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004022 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004023 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00004024}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004025
Dan Gohmane8be6c62008-07-17 19:10:17 +00004026SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004027 MVT VT, SDValue Op1,
4028 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004029 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004030 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004031 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00004032}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00004033
Dan Gohmane8be6c62008-07-17 19:10:17 +00004034SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004035 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00004036 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004037 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004038 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004039}
4040
Dan Gohmane8be6c62008-07-17 19:10:17 +00004041SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004042 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004043 unsigned NumOps) {
4044 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004045 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004046}
4047
Dan Gohmane8be6c62008-07-17 19:10:17 +00004048SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004049 MVT VT1, MVT VT2) {
4050 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004051 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00004052}
4053
Dan Gohmane8be6c62008-07-17 19:10:17 +00004054SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004055 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004056 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004057 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004058 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004059}
4060
Dan Gohmane8be6c62008-07-17 19:10:17 +00004061SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004062 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004063 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004064 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004065 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004066 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004067}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004068
Dan Gohmane8be6c62008-07-17 19:10:17 +00004069SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004070 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004071 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004072 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004073 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004074 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004075}
4076
Dan Gohmane8be6c62008-07-17 19:10:17 +00004077SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004078 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004079 SDValue Op1, SDValue Op2,
4080 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004081 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004082 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004083 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004084}
4085
Dan Gohmane8be6c62008-07-17 19:10:17 +00004086SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004087 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004088 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004089 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4090}
4091
4092SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4093 MVT VT) {
4094 SDVTList VTs = getVTList(VT);
4095 return MorphNodeTo(N, Opc, VTs, 0, 0);
4096}
4097
4098SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004099 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004100 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004101 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004102 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4103}
4104
4105SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004106 MVT VT, SDValue Op1,
4107 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004108 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004109 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004110 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4111}
4112
4113SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004114 MVT VT, SDValue Op1,
4115 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004116 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004117 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004118 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4119}
4120
4121SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004122 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004123 unsigned NumOps) {
4124 SDVTList VTs = getVTList(VT);
4125 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4126}
4127
4128SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004129 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004130 unsigned NumOps) {
4131 SDVTList VTs = getVTList(VT1, VT2);
4132 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4133}
4134
4135SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4136 MVT VT1, MVT VT2) {
4137 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004138 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004139}
4140
4141SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4142 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004143 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004144 SDVTList VTs = getVTList(VT1, VT2, VT3);
4145 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4146}
4147
4148SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4149 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004150 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004151 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004152 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004153 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4154}
4155
4156SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4157 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004158 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004159 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004160 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004161 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4162}
4163
4164SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4165 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004166 SDValue Op1, SDValue Op2,
4167 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004168 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004169 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004170 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4171}
4172
4173/// MorphNodeTo - These *mutate* the specified node to have the specified
4174/// return type, opcode, and operands.
4175///
4176/// Note that MorphNodeTo returns the resultant node. If there is already a
4177/// node of the specified opcode and operands, it returns that node instead of
4178/// the current one.
4179///
4180/// Using MorphNodeTo is faster than creating a new node and swapping it in
4181/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004182/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004183/// the node's users.
4184///
4185SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004186 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004187 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004188 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004189 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004190 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4191 FoldingSetNodeID ID;
4192 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4193 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4194 return ON;
4195 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004196
Dan Gohman095cc292008-09-13 01:54:27 +00004197 if (!RemoveNodeFromCSEMaps(N))
4198 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004199
Dan Gohmane8be6c62008-07-17 19:10:17 +00004200 // Start the morphing.
4201 N->NodeType = Opc;
4202 N->ValueList = VTs.VTs;
4203 N->NumValues = VTs.NumVTs;
4204
4205 // Clear the operands list, updating used nodes to remove this from their
4206 // use list. Keep track of any operands that become dead as a result.
4207 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4208 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4209 I != E; ++I) {
4210 SDNode *Used = I->getVal();
4211 Used->removeUser(std::distance(B, I), N);
4212 if (Used->use_empty())
4213 DeadNodeSet.insert(Used);
4214 }
4215
4216 // If NumOps is larger than the # of operands we currently have, reallocate
4217 // the operand list.
4218 if (NumOps > N->NumOperands) {
4219 if (N->OperandsNeedDelete)
4220 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +00004221
Dan Gohmane8be6c62008-07-17 19:10:17 +00004222 if (N->isMachineOpcode()) {
4223 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004224 // remainder of the current SelectionDAG iteration, so we can allocate
4225 // the operands directly out of a pool with no recycling metadata.
4226 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004227 N->OperandsNeedDelete = false;
4228 } else {
4229 N->OperandList = new SDUse[NumOps];
4230 N->OperandsNeedDelete = true;
4231 }
4232 }
4233
4234 // Assign the new operands.
4235 N->NumOperands = NumOps;
4236 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4237 N->OperandList[i] = Ops[i];
4238 N->OperandList[i].setUser(N);
4239 SDNode *ToUse = N->OperandList[i].getVal();
4240 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004241 }
4242
4243 // Delete any nodes that are still dead after adding the uses for the
4244 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004245 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004246 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4247 E = DeadNodeSet.end(); I != E; ++I)
4248 if ((*I)->use_empty())
4249 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004250 RemoveDeadNodes(DeadNodes);
4251
Dan Gohmane8be6c62008-07-17 19:10:17 +00004252 if (IP)
4253 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004254 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004255}
4256
Chris Lattner0fb094f2005-11-19 01:44:53 +00004257
Evan Cheng6ae46c42006-02-09 07:15:23 +00004258/// getTargetNode - These are used for target selectors to create a new node
4259/// with specified return type(s), target opcode, and operands.
4260///
4261/// Note that getTargetNode returns the resultant node. If there is already a
4262/// node of the specified opcode and operands, it returns that node instead of
4263/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004264SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004265 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004266}
Dan Gohman475871a2008-07-27 21:46:04 +00004267SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004268 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004269}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004270SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004271 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004272 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004273}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004274SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004275 SDValue Op1, SDValue Op2,
4276 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004277 return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004278}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004279SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004280 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004281 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004282}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004283SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4284 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004285 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004286 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004287}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004288SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004289 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004290 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004291 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004292}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004293SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004294 MVT VT2, SDValue Op1,
4295 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004296 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004297 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004298 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004299}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004300SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004301 MVT VT2, SDValue Op1,
4302 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004303 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004304 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004305 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004306}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004307SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004308 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004309 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004310 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004311}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004312SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004314 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004315 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004316 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004317}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004318SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004319 SDValue Op1, SDValue Op2,
4320 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004321 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004322 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004323 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004324}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004325SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004326 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004327 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004328 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004329}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004330SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4331 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004332 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004333 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004334 VTList.push_back(VT1);
4335 VTList.push_back(VT2);
4336 VTList.push_back(VT3);
4337 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004338 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004339 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004340}
Evan Cheng39305cf2007-10-05 01:10:49 +00004341SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004342 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004343 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004344 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004345 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004346 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004347}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004348
Evan Cheng08b11732008-03-22 01:55:50 +00004349/// getNodeIfExists - Get the specified node if it's already available, or
4350/// else return NULL.
4351SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004352 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004353 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4354 FoldingSetNodeID ID;
4355 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4356 void *IP = 0;
4357 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4358 return E;
4359 }
4360 return NULL;
4361}
4362
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004363
Evan Cheng99157a02006-08-07 22:13:29 +00004364/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004365/// This can cause recursive merging of nodes in the DAG.
4366///
Chris Lattner11d049c2008-02-03 03:35:22 +00004367/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004368///
Dan Gohman475871a2008-07-27 21:46:04 +00004369void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004370 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004371 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004372 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004373 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004374 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004375
Chris Lattner8b8749f2005-08-17 19:00:20 +00004376 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004377 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004378 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004379
Chris Lattner8b8749f2005-08-17 19:00:20 +00004380 // This node is about to morph, remove its old self from the CSE maps.
4381 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004382 int operandNum = 0;
4383 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4384 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004385 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004386 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004387 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004388 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004389 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004390 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004391
4392 // Now that we have modified U, add it back to the CSE maps. If it already
4393 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004394 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004395 ReplaceAllUsesWith(U, Existing, UpdateListener);
4396 // U is now dead. Inform the listener if it exists and delete it.
4397 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004398 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004399 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004400 } else {
4401 // If the node doesn't already exist, we updated it. Inform a listener if
4402 // it exists.
4403 if (UpdateListener)
4404 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004405 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004406 }
4407}
4408
4409/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4410/// This can cause recursive merging of nodes in the DAG.
4411///
4412/// This version assumes From/To have matching types and numbers of result
4413/// values.
4414///
Chris Lattner1e111c72005-09-07 05:37:01 +00004415void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004416 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004417 assert(From->getVTList().VTs == To->getVTList().VTs &&
4418 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004419 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004420
4421 // Handle the trivial case.
4422 if (From == To)
4423 return;
4424
Chris Lattner8b52f212005-08-26 18:36:28 +00004425 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004426 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004427 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004428
Chris Lattner8b52f212005-08-26 18:36:28 +00004429 // This node is about to morph, remove its old self from the CSE maps.
4430 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004431 int operandNum = 0;
4432 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4433 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004434 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004435 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004436 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004437 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004438 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004439
Chris Lattner8b8749f2005-08-17 19:00:20 +00004440 // Now that we have modified U, add it back to the CSE maps. If it already
4441 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004442 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004443 ReplaceAllUsesWith(U, Existing, UpdateListener);
4444 // U is now dead. Inform the listener if it exists and delete it.
4445 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004446 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004447 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004448 } else {
4449 // If the node doesn't already exist, we updated it. Inform a listener if
4450 // it exists.
4451 if (UpdateListener)
4452 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004453 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004454 }
4455}
4456
Chris Lattner8b52f212005-08-26 18:36:28 +00004457/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4458/// This can cause recursive merging of nodes in the DAG.
4459///
4460/// This version can replace From with any result values. To must match the
4461/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004462void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004463 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004464 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004465 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004466 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004467
4468 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004469 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004470 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004471
Chris Lattner7b2880c2005-08-24 22:44:39 +00004472 // This node is about to morph, remove its old self from the CSE maps.
4473 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004474 int operandNum = 0;
4475 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4476 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004477 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004478 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004479 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004480 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004481 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004482 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004483 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004484
Chris Lattner7b2880c2005-08-24 22:44:39 +00004485 // Now that we have modified U, add it back to the CSE maps. If it already
4486 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004487 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004488 ReplaceAllUsesWith(U, Existing, UpdateListener);
4489 // U is now dead. Inform the listener if it exists and delete it.
4490 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004491 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004492 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004493 } else {
4494 // If the node doesn't already exist, we updated it. Inform a listener if
4495 // it exists.
4496 if (UpdateListener)
4497 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004498 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004499 }
4500}
4501
Chris Lattner012f2412006-02-17 21:58:01 +00004502/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004503/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004504/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004505void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004506 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004507 // Handle the really simple, really trivial case efficiently.
4508 if (From == To) return;
4509
Chris Lattner012f2412006-02-17 21:58:01 +00004510 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004511 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004512 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004513 return;
4514 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004515
Gabor Greifba36cb52008-08-28 21:40:38 +00004516 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004517 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004518 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004519
4520 while (!Users.empty()) {
4521 // We know that this user uses some value of From. If it is the right
4522 // value, update it.
4523 SDNode *User = Users.back();
4524 Users.pop_back();
4525
Chris Lattner01d029b2007-10-15 06:10:22 +00004526 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004527 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004528 for (; Op != E; ++Op)
4529 if (*Op == From) break;
4530
4531 // If there are no matches, the user must use some other result of From.
4532 if (Op == E) continue;
4533
4534 // Okay, we know this user needs to be updated. Remove its old self
4535 // from the CSE maps.
4536 RemoveNodeFromCSEMaps(User);
4537
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004538 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004539 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004540 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004541 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004542 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004543 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004544 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004545 }
4546 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004547
4548 // Now that we have modified User, add it back to the CSE maps. If it
4549 // already exists there, recursively merge the results together.
4550 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004551 if (!Existing) {
4552 if (UpdateListener) UpdateListener->NodeUpdated(User);
4553 continue; // Continue on to next user.
4554 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004555
4556 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004557 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004558 // recursive merging of other unrelated nodes down the line.
4559 ReplaceAllUsesWith(User, Existing, UpdateListener);
4560
4561 // User is now dead. Notify a listener if present.
4562 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4563 DeleteNodeNotInCSEMaps(User);
4564 }
4565}
4566
4567/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004568/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004569/// appear in both the From and To list. The Deleted vector is
4570/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004571void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4572 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004573 unsigned Num,
4574 DAGUpdateListener *UpdateListener){
4575 // Handle the simple, trivial case efficiently.
4576 if (Num == 1)
4577 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4578
4579 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4580 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004581 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4582 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004583 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004584
4585 while (!Users.empty()) {
4586 // We know that this user uses some value of From. If it is the right
4587 // value, update it.
4588 SDNode *User = Users.back().first;
4589 unsigned i = Users.back().second;
4590 Users.pop_back();
4591
4592 // Scan for an operand that matches From.
4593 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4594 for (; Op != E; ++Op)
4595 if (*Op == From[i]) break;
4596
4597 // If there are no matches, the user must use some other result of From.
4598 if (Op == E) continue;
4599
4600 // Okay, we know this user needs to be updated. Remove its old self
4601 // from the CSE maps.
4602 RemoveNodeFromCSEMaps(User);
4603
4604 // Update all operands that match "From" in case there are multiple uses.
4605 for (; Op != E; ++Op) {
4606 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004607 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004608 *Op = To[i];
4609 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004610 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004611 }
4612 }
4613
4614 // Now that we have modified User, add it back to the CSE maps. If it
4615 // already exists there, recursively merge the results together.
4616 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4617 if (!Existing) {
4618 if (UpdateListener) UpdateListener->NodeUpdated(User);
4619 continue; // Continue on to next user.
4620 }
4621
4622 // If there was already an existing matching node, use ReplaceAllUsesWith
4623 // to replace the dead one with the existing one. This can cause
4624 // recursive merging of other unrelated nodes down the line.
4625 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004626
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004627 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004628 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004629 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004630 }
4631}
4632
Evan Chenge6f35d82006-08-01 08:20:41 +00004633/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004634/// based on their topological order. It returns the maximum id and a vector
4635/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004636unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004637
Dan Gohmanf06c8352008-09-30 18:30:35 +00004638 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004639
Dan Gohmanf06c8352008-09-30 18:30:35 +00004640 // SortedPos tracks the progress of the algorithm. Nodes before it are
4641 // sorted, nodes after it are unsorted. When the algorithm completes
4642 // it is at the end of the list.
4643 allnodes_iterator SortedPos = allnodes_begin();
4644
4645 // Visit all the nodes. Add nodes with no operands to the TopOrder result
4646 // array immediately. Annotate nodes that do have operands with their
4647 // operand count. Before we do this, the Node Id fields of the nodes
4648 // may contain arbitrary values. After, the Node Id fields for nodes
4649 // before SortedPos will contain the topological sort index, and the
4650 // Node Id fields for nodes At SortedPos and after will contain the
4651 // count of outstanding operands.
4652 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4653 SDNode *N = I++;
4654 unsigned Degree = N->getNumOperands();
4655 if (Degree == 0) {
4656 // A node with no uses, add it to the result array immediately.
4657 N->setNodeId(DAGSize++);
4658 allnodes_iterator Q = N;
4659 if (Q != SortedPos)
4660 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4661 ++SortedPos;
4662 } else {
4663 // Temporarily use the Node Id as scratch space for the degree count.
4664 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004665 }
4666 }
4667
Dan Gohmanf06c8352008-09-30 18:30:35 +00004668 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4669 // such that by the time the end is reached all nodes will be sorted.
4670 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4671 SDNode *N = I;
4672 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4673 UI != UE; ++UI) {
4674 SDNode *P = *UI;
4675 unsigned Degree = P->getNodeId();
4676 --Degree;
4677 if (Degree == 0) {
4678 // All of P's operands are sorted, so P may sorted now.
4679 P->setNodeId(DAGSize++);
4680 if (P != SortedPos)
4681 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4682 ++SortedPos;
4683 } else {
4684 // Update P's outstanding operand count.
4685 P->setNodeId(Degree);
4686 }
4687 }
4688 }
4689
4690 assert(SortedPos == AllNodes.end() &&
4691 "Topological sort incomplete!");
4692 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4693 "First node in topological sort is not the entry token!");
4694 assert(AllNodes.front().getNodeId() == 0 &&
4695 "First node in topological sort has non-zero id!");
4696 assert(AllNodes.front().getNumOperands() == 0 &&
4697 "First node in topological sort has operands!");
4698 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4699 "Last node in topologic sort has unexpected id!");
4700 assert(AllNodes.back().use_empty() &&
4701 "Last node in topologic sort has users!");
4702 assert(DAGSize == allnodes_size() && "TopOrder result count mismatch!");
4703 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004704}
4705
4706
Evan Cheng091cba12006-07-27 06:39:06 +00004707
Jim Laskey58b968b2005-08-17 20:08:02 +00004708//===----------------------------------------------------------------------===//
4709// SDNode Class
4710//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004711
Chris Lattner917d2c92006-07-19 00:00:37 +00004712// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004713void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004714void UnarySDNode::ANCHOR() {}
4715void BinarySDNode::ANCHOR() {}
4716void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004717void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004718void ConstantSDNode::ANCHOR() {}
4719void ConstantFPSDNode::ANCHOR() {}
4720void GlobalAddressSDNode::ANCHOR() {}
4721void FrameIndexSDNode::ANCHOR() {}
4722void JumpTableSDNode::ANCHOR() {}
4723void ConstantPoolSDNode::ANCHOR() {}
4724void BasicBlockSDNode::ANCHOR() {}
4725void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004726void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004727void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004728void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004729void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004730void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004731void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004732void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004733void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004734void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004735void LoadSDNode::ANCHOR() {}
4736void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004737void AtomicSDNode::ANCHOR() {}
Mon P Wangc4d10212008-10-17 18:22:58 +00004738void MemIntrinsicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004739void CallSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004740
Chris Lattner48b85922007-02-04 02:41:42 +00004741HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004742 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004743}
4744
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004745GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Dan Gohman6520e202008-10-18 02:06:02 +00004746 MVT VT, int64_t o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004747 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004748 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004749 // Thread Local
4750 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4751 // Non Thread Local
4752 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4753 getSDVTList(VT)), Offset(o) {
4754 TheGlobal = const_cast<GlobalValue*>(GA);
4755}
Chris Lattner48b85922007-02-04 02:41:42 +00004756
Dan Gohman1ea58a52008-07-09 22:08:04 +00004757MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004758 const Value *srcValue, int SVO,
4759 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004760 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004761 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004762
4763 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4764 assert(getAlignment() == alignment && "Alignment representation error!");
4765 assert(isVolatile() == vol && "Volatile representation error!");
4766}
4767
Mon P Wangc4d10212008-10-17 18:22:58 +00004768MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4769 unsigned NumOps, MVT memvt, const Value *srcValue,
4770 int SVO, unsigned alignment, bool vol)
4771 : SDNode(Opc, VTs, Ops, NumOps),
4772 MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4773 Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4774 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4775 assert(getAlignment() == alignment && "Alignment representation error!");
4776 assert(isVolatile() == vol && "Volatile representation error!");
4777}
4778
Dan Gohman36b5c132008-04-07 19:35:22 +00004779/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004780/// reference performed by this memory reference.
4781MachineMemOperand MemSDNode::getMemOperand() const {
4782 int Flags;
4783 if (isa<LoadSDNode>(this))
4784 Flags = MachineMemOperand::MOLoad;
4785 else if (isa<StoreSDNode>(this))
4786 Flags = MachineMemOperand::MOStore;
Mon P Wangc4d10212008-10-17 18:22:58 +00004787 else if (isa<AtomicSDNode>(this)) {
Dan Gohman1ea58a52008-07-09 22:08:04 +00004788 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4789 }
Mon P Wangc4d10212008-10-17 18:22:58 +00004790 else {
4791 const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4792 assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4793 if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4794 if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4795 }
Dan Gohman1ea58a52008-07-09 22:08:04 +00004796
4797 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004798 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4799
Dan Gohman1ea58a52008-07-09 22:08:04 +00004800 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004801 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004802 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004803 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004804 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4805 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004806 else
4807 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4808 Size, getAlignment());
4809}
4810
Jim Laskey583bd472006-10-27 23:46:08 +00004811/// Profile - Gather unique data for the node.
4812///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004813void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004814 AddNodeIDNode(ID, this);
4815}
4816
Chris Lattnera3255112005-11-08 23:30:28 +00004817/// getValueTypeList - Return a pointer to the specified value type.
4818///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004819const MVT *SDNode::getValueTypeList(MVT VT) {
4820 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004821 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004822 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004823 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004824 static MVT VTs[MVT::LAST_VALUETYPE];
4825 VTs[VT.getSimpleVT()] = VT;
4826 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004827 }
Chris Lattnera3255112005-11-08 23:30:28 +00004828}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004829
Chris Lattner5c884562005-01-12 18:37:47 +00004830/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4831/// indicated value. This method ignores uses of other values defined by this
4832/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004833bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004834 assert(Value < getNumValues() && "Bad value!");
4835
Roman Levensteindc1adac2008-04-07 10:06:32 +00004836 // TODO: Only iterate over uses of a given value of the node
4837 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004838 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004839 if (NUses == 0)
4840 return false;
4841 --NUses;
4842 }
Chris Lattner5c884562005-01-12 18:37:47 +00004843 }
4844
4845 // Found exactly the right number of uses?
4846 return NUses == 0;
4847}
4848
4849
Evan Cheng33d55952007-08-02 05:29:38 +00004850/// hasAnyUseOfValue - Return true if there are any use of the indicated
4851/// value. This method ignores uses of other values defined by this operation.
4852bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4853 assert(Value < getNumValues() && "Bad value!");
4854
Dan Gohman1373c1c2008-07-09 22:39:01 +00004855 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004856 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004857 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004858
4859 return false;
4860}
4861
4862
Dan Gohman2a629952008-07-27 18:06:42 +00004863/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004864///
Dan Gohman2a629952008-07-27 18:06:42 +00004865bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004866 bool Seen = false;
4867 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004868 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004869 if (User == this)
4870 Seen = true;
4871 else
4872 return false;
4873 }
4874
4875 return Seen;
4876}
4877
Evan Chenge6e97e62006-11-03 07:31:32 +00004878/// isOperand - Return true if this node is an operand of N.
4879///
Dan Gohman475871a2008-07-27 21:46:04 +00004880bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004881 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4882 if (*this == N->getOperand(i))
4883 return true;
4884 return false;
4885}
4886
Evan Cheng917be682008-03-04 00:41:45 +00004887bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004888 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004889 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004890 return true;
4891 return false;
4892}
Evan Cheng4ee62112006-02-05 06:29:23 +00004893
Chris Lattner572dee72008-01-16 05:49:24 +00004894/// reachesChainWithoutSideEffects - Return true if this operand (which must
4895/// be a chain) reaches the specified operand without crossing any
4896/// side-effecting instructions. In practice, this looks through token
4897/// factors and non-volatile loads. In order to remain efficient, this only
4898/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004899bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004900 unsigned Depth) const {
4901 if (*this == Dest) return true;
4902
4903 // Don't search too deeply, we just want to be able to see through
4904 // TokenFactor's etc.
4905 if (Depth == 0) return false;
4906
4907 // If this is a token factor, all inputs to the TF happen in parallel. If any
4908 // of the operands of the TF reach dest, then we can do the xform.
4909 if (getOpcode() == ISD::TokenFactor) {
4910 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4911 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4912 return true;
4913 return false;
4914 }
4915
4916 // Loads don't have side effects, look through them.
4917 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4918 if (!Ld->isVolatile())
4919 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4920 }
4921 return false;
4922}
4923
4924
Evan Chengc5fc57d2006-11-03 03:05:24 +00004925static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004926 SmallPtrSet<SDNode *, 32> &Visited) {
4927 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004928 return;
4929
4930 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004931 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004932 if (Op == P) {
4933 found = true;
4934 return;
4935 }
4936 findPredecessor(Op, P, found, Visited);
4937 }
4938}
4939
Evan Cheng917be682008-03-04 00:41:45 +00004940/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004941/// is either an operand of N or it can be reached by recursively traversing
4942/// up the operands.
4943/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004944bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004945 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004946 bool found = false;
4947 findPredecessor(N, this, found, Visited);
4948 return found;
4949}
4950
Evan Chengc5484282006-10-04 00:56:09 +00004951uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4952 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004953 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004954}
4955
Reid Spencer577cc322007-04-01 07:32:19 +00004956std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004957 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004958 default:
4959 if (getOpcode() < ISD::BUILTIN_OP_END)
4960 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004961 if (isMachineOpcode()) {
4962 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004963 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004964 if (getMachineOpcode() < TII->getNumOpcodes())
4965 return TII->get(getMachineOpcode()).getName();
4966 return "<<Unknown Machine Node>>";
4967 }
4968 if (G) {
4969 TargetLowering &TLI = G->getTargetLoweringInfo();
4970 const char *Name = TLI.getTargetNodeName(getOpcode());
4971 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004972 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004973 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004974 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004975
Dan Gohmane8be6c62008-07-17 19:10:17 +00004976#ifndef NDEBUG
4977 case ISD::DELETED_NODE:
4978 return "<<Deleted Node!>>";
4979#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00004980 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004981 case ISD::MEMBARRIER: return "MemBarrier";
Dale Johannesene00a8a22008-08-28 02:44:49 +00004982 case ISD::ATOMIC_CMP_SWAP_8: return "AtomicCmpSwap8";
4983 case ISD::ATOMIC_SWAP_8: return "AtomicSwap8";
4984 case ISD::ATOMIC_LOAD_ADD_8: return "AtomicLoadAdd8";
4985 case ISD::ATOMIC_LOAD_SUB_8: return "AtomicLoadSub8";
4986 case ISD::ATOMIC_LOAD_AND_8: return "AtomicLoadAnd8";
4987 case ISD::ATOMIC_LOAD_OR_8: return "AtomicLoadOr8";
4988 case ISD::ATOMIC_LOAD_XOR_8: return "AtomicLoadXor8";
4989 case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
4990 case ISD::ATOMIC_LOAD_MIN_8: return "AtomicLoadMin8";
4991 case ISD::ATOMIC_LOAD_MAX_8: return "AtomicLoadMax8";
4992 case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
4993 case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
4994 case ISD::ATOMIC_CMP_SWAP_16: return "AtomicCmpSwap16";
4995 case ISD::ATOMIC_SWAP_16: return "AtomicSwap16";
4996 case ISD::ATOMIC_LOAD_ADD_16: return "AtomicLoadAdd16";
4997 case ISD::ATOMIC_LOAD_SUB_16: return "AtomicLoadSub16";
4998 case ISD::ATOMIC_LOAD_AND_16: return "AtomicLoadAnd16";
4999 case ISD::ATOMIC_LOAD_OR_16: return "AtomicLoadOr16";
5000 case ISD::ATOMIC_LOAD_XOR_16: return "AtomicLoadXor16";
5001 case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
5002 case ISD::ATOMIC_LOAD_MIN_16: return "AtomicLoadMin16";
5003 case ISD::ATOMIC_LOAD_MAX_16: return "AtomicLoadMax16";
5004 case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
5005 case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
5006 case ISD::ATOMIC_CMP_SWAP_32: return "AtomicCmpSwap32";
5007 case ISD::ATOMIC_SWAP_32: return "AtomicSwap32";
5008 case ISD::ATOMIC_LOAD_ADD_32: return "AtomicLoadAdd32";
5009 case ISD::ATOMIC_LOAD_SUB_32: return "AtomicLoadSub32";
5010 case ISD::ATOMIC_LOAD_AND_32: return "AtomicLoadAnd32";
5011 case ISD::ATOMIC_LOAD_OR_32: return "AtomicLoadOr32";
5012 case ISD::ATOMIC_LOAD_XOR_32: return "AtomicLoadXor32";
5013 case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
5014 case ISD::ATOMIC_LOAD_MIN_32: return "AtomicLoadMin32";
5015 case ISD::ATOMIC_LOAD_MAX_32: return "AtomicLoadMax32";
5016 case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
5017 case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
5018 case ISD::ATOMIC_CMP_SWAP_64: return "AtomicCmpSwap64";
5019 case ISD::ATOMIC_SWAP_64: return "AtomicSwap64";
5020 case ISD::ATOMIC_LOAD_ADD_64: return "AtomicLoadAdd64";
5021 case ISD::ATOMIC_LOAD_SUB_64: return "AtomicLoadSub64";
5022 case ISD::ATOMIC_LOAD_AND_64: return "AtomicLoadAnd64";
5023 case ISD::ATOMIC_LOAD_OR_64: return "AtomicLoadOr64";
5024 case ISD::ATOMIC_LOAD_XOR_64: return "AtomicLoadXor64";
5025 case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
5026 case ISD::ATOMIC_LOAD_MIN_64: return "AtomicLoadMin64";
5027 case ISD::ATOMIC_LOAD_MAX_64: return "AtomicLoadMax64";
5028 case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
5029 case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
Andrew Lenharth95762122005-03-31 21:24:06 +00005030 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00005031 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005032 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00005033 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005034 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00005035 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00005036 case ISD::AssertSext: return "AssertSext";
5037 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005038
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005039 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005040 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005041 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00005042 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005043
5044 case ISD::Constant: return "Constant";
5045 case ISD::ConstantFP: return "ConstantFP";
5046 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005047 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005048 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005049 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00005050 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00005051 case ISD::RETURNADDR: return "RETURNADDR";
5052 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005053 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00005054 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00005055 case ISD::EHSELECTION: return "EHSELECTION";
5056 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00005057 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005058 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00005059 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005060 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00005061 return Intrinsic::getName((Intrinsic::ID)IID);
5062 }
5063 case ISD::INTRINSIC_VOID:
5064 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005065 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00005066 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00005067 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00005068
Chris Lattnerb2827b02006-03-19 00:52:58 +00005069 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005070 case ISD::TargetConstant: return "TargetConstant";
5071 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005072 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005073 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005074 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005075 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005076 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005077 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005078
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005079 case ISD::CopyToReg: return "CopyToReg";
5080 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005081 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005082 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005083 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005084 case ISD::DBG_LABEL: return "dbg_label";
5085 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005086 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005087 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005088 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005089 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005090
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005091 // Unary operators
5092 case ISD::FABS: return "fabs";
5093 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005094 case ISD::FSQRT: return "fsqrt";
5095 case ISD::FSIN: return "fsin";
5096 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005097 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005098 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005099 case ISD::FTRUNC: return "ftrunc";
5100 case ISD::FFLOOR: return "ffloor";
5101 case ISD::FCEIL: return "fceil";
5102 case ISD::FRINT: return "frint";
5103 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005104
5105 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005106 case ISD::ADD: return "add";
5107 case ISD::SUB: return "sub";
5108 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005109 case ISD::MULHU: return "mulhu";
5110 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005111 case ISD::SDIV: return "sdiv";
5112 case ISD::UDIV: return "udiv";
5113 case ISD::SREM: return "srem";
5114 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005115 case ISD::SMUL_LOHI: return "smul_lohi";
5116 case ISD::UMUL_LOHI: return "umul_lohi";
5117 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005118 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005119 case ISD::AND: return "and";
5120 case ISD::OR: return "or";
5121 case ISD::XOR: return "xor";
5122 case ISD::SHL: return "shl";
5123 case ISD::SRA: return "sra";
5124 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005125 case ISD::ROTL: return "rotl";
5126 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005127 case ISD::FADD: return "fadd";
5128 case ISD::FSUB: return "fsub";
5129 case ISD::FMUL: return "fmul";
5130 case ISD::FDIV: return "fdiv";
5131 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005132 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005133 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005134
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005135 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005136 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005137 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005138 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005139 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005140 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005141 case ISD::CONCAT_VECTORS: return "concat_vectors";
5142 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005143 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005144 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005145 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005146 case ISD::ADDC: return "addc";
5147 case ISD::ADDE: return "adde";
5148 case ISD::SUBC: return "subc";
5149 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005150 case ISD::SHL_PARTS: return "shl_parts";
5151 case ISD::SRA_PARTS: return "sra_parts";
5152 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005153
5154 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5155 case ISD::INSERT_SUBREG: return "insert_subreg";
5156
Chris Lattner7f644642005-04-28 21:44:03 +00005157 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005158 case ISD::SIGN_EXTEND: return "sign_extend";
5159 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005160 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005161 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005162 case ISD::TRUNCATE: return "truncate";
5163 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005164 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005165 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005166 case ISD::FP_EXTEND: return "fp_extend";
5167
5168 case ISD::SINT_TO_FP: return "sint_to_fp";
5169 case ISD::UINT_TO_FP: return "uint_to_fp";
5170 case ISD::FP_TO_SINT: return "fp_to_sint";
5171 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005172 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005173
5174 // Control flow instructions
5175 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005176 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005177 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005178 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005179 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005180 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005181 case ISD::CALLSEQ_START: return "callseq_start";
5182 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005183
5184 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005185 case ISD::LOAD: return "load";
5186 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005187 case ISD::VAARG: return "vaarg";
5188 case ISD::VACOPY: return "vacopy";
5189 case ISD::VAEND: return "vaend";
5190 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005191 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005192 case ISD::EXTRACT_ELEMENT: return "extract_element";
5193 case ISD::BUILD_PAIR: return "build_pair";
5194 case ISD::STACKSAVE: return "stacksave";
5195 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005196 case ISD::TRAP: return "trap";
5197
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005198 // Bit manipulation
5199 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005200 case ISD::CTPOP: return "ctpop";
5201 case ISD::CTTZ: return "cttz";
5202 case ISD::CTLZ: return "ctlz";
5203
Chris Lattner36ce6912005-11-29 06:21:05 +00005204 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005205 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005206 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005207
Duncan Sands36397f52007-07-27 12:58:54 +00005208 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005209 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005210
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005211 case ISD::CONDCODE:
5212 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005213 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005214 case ISD::SETOEQ: return "setoeq";
5215 case ISD::SETOGT: return "setogt";
5216 case ISD::SETOGE: return "setoge";
5217 case ISD::SETOLT: return "setolt";
5218 case ISD::SETOLE: return "setole";
5219 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005220
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005221 case ISD::SETO: return "seto";
5222 case ISD::SETUO: return "setuo";
5223 case ISD::SETUEQ: return "setue";
5224 case ISD::SETUGT: return "setugt";
5225 case ISD::SETUGE: return "setuge";
5226 case ISD::SETULT: return "setult";
5227 case ISD::SETULE: return "setule";
5228 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005229
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005230 case ISD::SETEQ: return "seteq";
5231 case ISD::SETGT: return "setgt";
5232 case ISD::SETGE: return "setge";
5233 case ISD::SETLT: return "setlt";
5234 case ISD::SETLE: return "setle";
5235 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005236 }
5237 }
5238}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005239
Evan Cheng144d8f02006-11-09 17:55:04 +00005240const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005241 switch (AM) {
5242 default:
5243 return "";
5244 case ISD::PRE_INC:
5245 return "<pre-inc>";
5246 case ISD::PRE_DEC:
5247 return "<pre-dec>";
5248 case ISD::POST_INC:
5249 return "<post-inc>";
5250 case ISD::POST_DEC:
5251 return "<post-dec>";
5252 }
5253}
5254
Duncan Sands276dcbd2008-03-21 09:14:45 +00005255std::string ISD::ArgFlagsTy::getArgFlagsString() {
5256 std::string S = "< ";
5257
5258 if (isZExt())
5259 S += "zext ";
5260 if (isSExt())
5261 S += "sext ";
5262 if (isInReg())
5263 S += "inreg ";
5264 if (isSRet())
5265 S += "sret ";
5266 if (isByVal())
5267 S += "byval ";
5268 if (isNest())
5269 S += "nest ";
5270 if (getByValAlign())
5271 S += "byval-align:" + utostr(getByValAlign()) + " ";
5272 if (getOrigAlign())
5273 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5274 if (getByValSize())
5275 S += "byval-size:" + utostr(getByValSize()) + " ";
5276 return S + ">";
5277}
5278
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005279void SDNode::dump() const { dump(0); }
5280void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005281 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005282 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005283}
5284
5285void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5286 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005287
5288 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005289 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005290 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005291 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005292 else
Chris Lattner944fac72008-08-23 22:23:09 +00005293 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005294 }
Chris Lattner944fac72008-08-23 22:23:09 +00005295 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005296
Chris Lattner944fac72008-08-23 22:23:09 +00005297 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005298 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005299 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005300 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005301 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005302 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005303 }
5304
Evan Chengce254432007-12-11 02:08:35 +00005305 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005306 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005307 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005308 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005309 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005310 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005311 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005312 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005313 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005314 }
Chris Lattner944fac72008-08-23 22:23:09 +00005315 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005316 }
5317
Chris Lattnerc3aae252005-01-07 07:46:32 +00005318 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005319 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005320 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005321 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005322 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005323 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005324 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005325 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005326 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005327 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005328 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005329 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005330 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005331 dyn_cast<GlobalAddressSDNode>(this)) {
Dan Gohman668aff62008-10-18 18:22:42 +00005332 int64_t offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005333 OS << '<';
5334 WriteAsOperand(OS, GADN->getGlobal());
5335 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005336 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005337 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005338 else
Chris Lattner944fac72008-08-23 22:23:09 +00005339 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005340 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005341 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005342 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005343 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005344 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005345 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005346 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005347 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005348 else
Chris Lattner944fac72008-08-23 22:23:09 +00005349 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005350 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005351 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005352 else
Chris Lattner944fac72008-08-23 22:23:09 +00005353 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005354 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005355 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005356 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5357 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005358 OS << LBB->getName() << " ";
5359 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005360 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005361 if (G && R->getReg() &&
5362 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005363 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005364 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005365 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005366 }
Bill Wendling056292f2008-09-16 21:48:12 +00005367 } else if (const ExternalSymbolSDNode *ES =
5368 dyn_cast<ExternalSymbolSDNode>(this)) {
5369 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005370 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5371 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005372 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005373 else
Chris Lattner944fac72008-08-23 22:23:09 +00005374 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005375 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5376 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005377 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005378 else
Chris Lattner944fac72008-08-23 22:23:09 +00005379 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005380 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005381 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005382 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005383 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005384 }
5385 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005386 const Value *SrcValue = LD->getSrcValue();
5387 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005388 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005389 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005390 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005391 else
Chris Lattner944fac72008-08-23 22:23:09 +00005392 OS << "null";
5393 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005394
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005395 bool doExt = true;
5396 switch (LD->getExtensionType()) {
5397 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005398 case ISD::EXTLOAD: OS << " <anyext "; break;
5399 case ISD::SEXTLOAD: OS << " <sext "; break;
5400 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005401 }
5402 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005403 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005404
Evan Cheng144d8f02006-11-09 17:55:04 +00005405 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005406 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005407 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005408 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005409 OS << " <volatile>";
5410 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005411 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005412 const Value *SrcValue = ST->getSrcValue();
5413 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005414 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005415 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005416 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005417 else
Chris Lattner944fac72008-08-23 22:23:09 +00005418 OS << "null";
5419 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005420
5421 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005422 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005423
5424 const char *AM = getIndexedModeName(ST->getAddressingMode());
5425 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005426 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005427 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005428 OS << " <volatile>";
5429 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005430 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5431 const Value *SrcValue = AT->getSrcValue();
5432 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005433 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005434 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005435 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005436 else
Chris Lattner944fac72008-08-23 22:23:09 +00005437 OS << "null";
5438 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005439 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005440 OS << " <volatile>";
5441 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005442 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005443}
5444
Chris Lattnerde202b32005-11-09 23:47:37 +00005445static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005446 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005447 if (N->getOperand(i).getNode()->hasOneUse())
5448 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005449 else
Bill Wendling832171c2006-12-07 20:04:42 +00005450 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005451 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005452
Chris Lattnerea946cd2005-01-09 20:38:33 +00005453
Bill Wendling832171c2006-12-07 20:04:42 +00005454 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005455 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005456}
5457
Chris Lattnerc3aae252005-01-07 07:46:32 +00005458void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005459 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005460
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005461 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5462 I != E; ++I) {
5463 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005464 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005465 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005466 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005467
Gabor Greifba36cb52008-08-28 21:40:38 +00005468 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005469
Bill Wendling832171c2006-12-07 20:04:42 +00005470 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005471}
5472
Evan Chengd6594ae2006-09-12 21:00:35 +00005473const Type *ConstantPoolSDNode::getType() const {
5474 if (isMachineConstantPoolEntry())
5475 return Val.MachineCPVal->getType();
5476 return Val.ConstVal->getType();
5477}