blob: bb3b42c383f6c220d10e8f3216a602149ca0aafc [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
Duncan Sands0dc40452008-10-27 15:30:53 +0000357/// AddNodeIDCustom - If this is an SDNode with special info, add this info to
358/// the NodeID data.
359static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000360 switch (N->getOpcode()) {
361 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000362 case ISD::ARG_FLAGS:
363 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
364 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000365 case ISD::TargetConstant:
366 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000367 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000368 break;
369 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000370 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000371 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000372 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000373 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000374 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000375 case ISD::GlobalAddress:
376 case ISD::TargetGlobalTLSAddress:
377 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000378 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000379 ID.AddPointer(GA->getGlobal());
380 ID.AddInteger(GA->getOffset());
381 break;
382 }
383 case ISD::BasicBlock:
384 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
385 break;
386 case ISD::Register:
387 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
388 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000389 case ISD::DBG_STOPPOINT: {
390 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
391 ID.AddInteger(DSP->getLine());
392 ID.AddInteger(DSP->getColumn());
393 ID.AddPointer(DSP->getCompileUnit());
394 break;
395 }
Dan Gohman69de1932008-02-06 22:27:42 +0000396 case ISD::SRCVALUE:
397 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
398 break;
399 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000400 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000401 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000402 break;
403 }
404 case ISD::FrameIndex:
405 case ISD::TargetFrameIndex:
406 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
407 break;
408 case ISD::JumpTable:
409 case ISD::TargetJumpTable:
410 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
411 break;
412 case ISD::ConstantPool:
413 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000414 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000415 ID.AddInteger(CP->getAlignment());
416 ID.AddInteger(CP->getOffset());
417 if (CP->isMachineConstantPoolEntry())
418 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
419 else
420 ID.AddPointer(CP->getConstVal());
421 break;
422 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000423 case ISD::CALL: {
424 const CallSDNode *Call = cast<CallSDNode>(N);
425 ID.AddInteger(Call->getCallingConv());
426 ID.AddInteger(Call->isVarArg());
427 break;
428 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000429 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000430 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000431 ID.AddInteger(LD->getAddressingMode());
432 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000433 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000434 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000435 break;
436 }
437 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000438 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000439 ID.AddInteger(ST->getAddressingMode());
440 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000441 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000442 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000443 break;
444 }
Dale Johannesene00a8a22008-08-28 02:44:49 +0000445 case ISD::ATOMIC_CMP_SWAP_8:
446 case ISD::ATOMIC_SWAP_8:
447 case ISD::ATOMIC_LOAD_ADD_8:
448 case ISD::ATOMIC_LOAD_SUB_8:
449 case ISD::ATOMIC_LOAD_AND_8:
450 case ISD::ATOMIC_LOAD_OR_8:
451 case ISD::ATOMIC_LOAD_XOR_8:
452 case ISD::ATOMIC_LOAD_NAND_8:
453 case ISD::ATOMIC_LOAD_MIN_8:
454 case ISD::ATOMIC_LOAD_MAX_8:
455 case ISD::ATOMIC_LOAD_UMIN_8:
456 case ISD::ATOMIC_LOAD_UMAX_8:
457 case ISD::ATOMIC_CMP_SWAP_16:
458 case ISD::ATOMIC_SWAP_16:
459 case ISD::ATOMIC_LOAD_ADD_16:
460 case ISD::ATOMIC_LOAD_SUB_16:
461 case ISD::ATOMIC_LOAD_AND_16:
462 case ISD::ATOMIC_LOAD_OR_16:
463 case ISD::ATOMIC_LOAD_XOR_16:
464 case ISD::ATOMIC_LOAD_NAND_16:
465 case ISD::ATOMIC_LOAD_MIN_16:
466 case ISD::ATOMIC_LOAD_MAX_16:
467 case ISD::ATOMIC_LOAD_UMIN_16:
468 case ISD::ATOMIC_LOAD_UMAX_16:
469 case ISD::ATOMIC_CMP_SWAP_32:
470 case ISD::ATOMIC_SWAP_32:
471 case ISD::ATOMIC_LOAD_ADD_32:
472 case ISD::ATOMIC_LOAD_SUB_32:
473 case ISD::ATOMIC_LOAD_AND_32:
474 case ISD::ATOMIC_LOAD_OR_32:
475 case ISD::ATOMIC_LOAD_XOR_32:
476 case ISD::ATOMIC_LOAD_NAND_32:
477 case ISD::ATOMIC_LOAD_MIN_32:
478 case ISD::ATOMIC_LOAD_MAX_32:
479 case ISD::ATOMIC_LOAD_UMIN_32:
480 case ISD::ATOMIC_LOAD_UMAX_32:
481 case ISD::ATOMIC_CMP_SWAP_64:
482 case ISD::ATOMIC_SWAP_64:
483 case ISD::ATOMIC_LOAD_ADD_64:
484 case ISD::ATOMIC_LOAD_SUB_64:
485 case ISD::ATOMIC_LOAD_AND_64:
486 case ISD::ATOMIC_LOAD_OR_64:
487 case ISD::ATOMIC_LOAD_XOR_64:
488 case ISD::ATOMIC_LOAD_NAND_64:
489 case ISD::ATOMIC_LOAD_MIN_64:
490 case ISD::ATOMIC_LOAD_MAX_64:
491 case ISD::ATOMIC_LOAD_UMIN_64:
492 case ISD::ATOMIC_LOAD_UMAX_64: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000493 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
494 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000495 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000496 }
Mon P Wang28873102008-06-25 08:15:39 +0000497 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000498}
499
Duncan Sands0dc40452008-10-27 15:30:53 +0000500/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
501/// data.
502static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
503 AddNodeIDOpcode(ID, N->getOpcode());
504 // Add the return value info.
505 AddNodeIDValueTypes(ID, N->getVTList());
506 // Add the operand info.
507 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
508
509 // Handle SDNode leafs with special info.
510 AddNodeIDCustom(ID, N);
511}
512
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000513/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
514/// the CSE map that carries both alignment and volatility information.
515///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000516static inline unsigned
517encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000518 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
519}
520
Jim Laskey583bd472006-10-27 23:46:08 +0000521//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000522// SelectionDAG Class
523//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000524
Duncan Sands0dc40452008-10-27 15:30:53 +0000525/// doNotCSE - Return true if CSE should not be performed for this node.
526static bool doNotCSE(SDNode *N) {
527 if (N->getValueType(0) == MVT::Flag)
528 return true; // Never CSE anything that produces a flag.
529
530 switch (N->getOpcode()) {
531 default: break;
532 case ISD::HANDLENODE:
533 case ISD::DBG_LABEL:
534 case ISD::DBG_STOPPOINT:
535 case ISD::EH_LABEL:
536 case ISD::DECLARE:
537 return true; // Never CSE these nodes.
538 }
539
540 // Check that remaining values produced are not flags.
541 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
542 if (N->getValueType(i) == MVT::Flag)
543 return true; // Never CSE anything that produces a flag.
544
545 return false;
546}
547
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000548/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000549/// SelectionDAG.
550void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000551 // Create a dummy node (which is not added to allnodes), that adds a reference
552 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000553 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000554
Chris Lattner190a4182006-08-04 17:45:20 +0000555 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000556
Chris Lattner190a4182006-08-04 17:45:20 +0000557 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000558 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000559 if (I->use_empty())
560 DeadNodes.push_back(I);
561
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000562 RemoveDeadNodes(DeadNodes);
563
564 // If the root changed (e.g. it was a dead load, update the root).
565 setRoot(Dummy.getValue());
566}
567
568/// RemoveDeadNodes - This method deletes the unreachable nodes in the
569/// given list, and any nodes that become unreachable as a result.
570void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
571 DAGUpdateListener *UpdateListener) {
572
Chris Lattner190a4182006-08-04 17:45:20 +0000573 // Process the worklist, deleting the nodes and adding their uses to the
574 // worklist.
575 while (!DeadNodes.empty()) {
576 SDNode *N = DeadNodes.back();
577 DeadNodes.pop_back();
578
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000579 if (UpdateListener)
580 UpdateListener->NodeDeleted(N, 0);
581
Chris Lattner190a4182006-08-04 17:45:20 +0000582 // Take the node out of the appropriate CSE map.
583 RemoveNodeFromCSEMaps(N);
584
585 // Next, brutally remove the operand list. This is safe to do, as there are
586 // no cycles in the graph.
587 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000588 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000589 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000590
591 // Now that we removed this operand, see if there are no uses of it left.
592 if (Operand->use_empty())
593 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000594 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000595
596 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000597 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000598
Chris Lattner190a4182006-08-04 17:45:20 +0000599 N->OperandList = 0;
600 N->NumOperands = 0;
601
602 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000603 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000604 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000605}
606
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000607void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000608 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000609 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000610}
611
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000612void SelectionDAG::DeleteNode(SDNode *N) {
613 assert(N->use_empty() && "Cannot delete a node that is not dead!");
614
615 // First take this out of the appropriate CSE map.
616 RemoveNodeFromCSEMaps(N);
617
Chris Lattner1e111c72005-09-07 05:37:01 +0000618 // Finally, remove uses due to operands of this node, remove from the
619 // AllNodes list, and delete the node.
620 DeleteNodeNotInCSEMaps(N);
621}
622
623void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000624 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000625 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000626 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000627
628 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000629 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000630 N->OperandList = 0;
631 }
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000632
Dan Gohman11467282008-08-26 01:44:34 +0000633 assert(N != AllNodes.begin());
634 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000635}
636
Chris Lattner149c58c2005-08-16 18:17:10 +0000637/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
638/// correspond to it. This is useful when we're about to delete or repurpose
639/// the node. We don't want future request for structurally identical nodes
640/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000641bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000642 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000643 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000644 case ISD::EntryToken:
645 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000646 return false;
647 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000648 case ISD::CONDCODE:
649 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
650 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000651 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000652 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
653 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000654 case ISD::ExternalSymbol:
655 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000656 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000657 case ISD::TargetExternalSymbol:
658 Erased =
659 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000660 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000661 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000662 MVT VT = cast<VTSDNode>(N)->getVT();
663 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000664 Erased = ExtendedValueTypeNodes.erase(VT);
665 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000666 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
667 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000668 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000669 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000670 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000671 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000672 // Remove it from the CSE Map.
673 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000674 break;
675 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000676#ifndef NDEBUG
677 // Verify that the node was actually in one of the CSE maps, unless it has a
678 // flag result (which cannot be CSE'd) or is one of the special cases that are
679 // not subject to CSE.
680 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Duncan Sands0dc40452008-10-27 15:30:53 +0000681 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000682 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000683 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000684 assert(0 && "Node is not in map!");
685 }
686#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000687 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000688}
689
Chris Lattner8b8749f2005-08-17 19:00:20 +0000690/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
691/// has been taken out and modified in some way. If the specified node already
692/// exists in the CSE maps, do not modify the maps, but return the existing node
693/// instead. If it doesn't exist, add it and return null.
694///
695SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
696 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000697
Duncan Sands0dc40452008-10-27 15:30:53 +0000698 if (doNotCSE(N))
699 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000700
Chris Lattnera5682852006-08-07 23:03:03 +0000701 SDNode *New = CSEMap.GetOrInsertNode(N);
702 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000703 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000704}
705
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000706/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
707/// were replaced with those specified. If this node is never memoized,
708/// return null, otherwise return a pointer to the slot it would take. If a
709/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000710SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000711 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000712 if (doNotCSE(N))
713 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000714
Dan Gohman475871a2008-07-27 21:46:04 +0000715 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000716 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000717 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Duncan Sands0dc40452008-10-27 15:30:53 +0000718 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000719 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000720}
721
722/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
723/// were replaced with those specified. If this node is never memoized,
724/// return null, otherwise return a pointer to the slot it would take. If a
725/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000726SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000727 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000728 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000729 if (doNotCSE(N))
730 return 0;
731
Dan Gohman475871a2008-07-27 21:46:04 +0000732 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000733 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000734 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Duncan Sands0dc40452008-10-27 15:30:53 +0000735 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000736 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
737}
738
739
740/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
741/// were replaced with those specified. If this node is never memoized,
742/// return null, otherwise return a pointer to the slot it would take. If a
743/// node already exists with these operands, the slot will be non-null.
744SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000745 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000746 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000747 if (doNotCSE(N))
748 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000749
Jim Laskey583bd472006-10-27 23:46:08 +0000750 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000751 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Duncan Sands0dc40452008-10-27 15:30:53 +0000752 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000753 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000754}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000755
Duncan Sandsd038e042008-07-21 10:20:31 +0000756/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
757void SelectionDAG::VerifyNode(SDNode *N) {
758 switch (N->getOpcode()) {
759 default:
760 break;
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000761 case ISD::BUILD_PAIR: {
762 MVT VT = N->getValueType(0);
763 assert(N->getNumValues() == 1 && "Too many results!");
764 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
765 "Wrong return type!");
766 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
767 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
768 "Mismatched operand types!");
769 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
770 "Wrong operand type!");
771 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
772 "Wrong return type size");
773 break;
774 }
Duncan Sandsd038e042008-07-21 10:20:31 +0000775 case ISD::BUILD_VECTOR: {
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000776 assert(N->getNumValues() == 1 && "Too many results!");
777 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000778 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000779 "Wrong number of operands!");
Duncan Sands0954aef2008-10-22 09:00:33 +0000780 // FIXME: Change vector_shuffle to a variadic node with mask elements being
781 // operands of the node. Currently the mask is a BUILD_VECTOR passed as an
782 // operand, and it is not always possible to legalize it. Turning off the
783 // following checks at least makes it possible to legalize most of the time.
784// MVT EltVT = N->getValueType(0).getVectorElementType();
785// for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
786// assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000787// "Wrong operand type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000788 break;
789 }
790 }
791}
792
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000793/// getMVTAlignment - Compute the default alignment value for the
794/// given type.
795///
796unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
797 const Type *Ty = VT == MVT::iPTR ?
798 PointerType::get(Type::Int8Ty, 0) :
799 VT.getTypeForMVT();
800
801 return TLI.getTargetData()->getABITypeAlignment(Ty);
802}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000803
Dan Gohman7c3234c2008-08-27 23:52:12 +0000804SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
805 : TLI(tli), FLI(fli),
806 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000807 Root(getEntryNode()) {
808 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000809}
810
Dan Gohman7c3234c2008-08-27 23:52:12 +0000811void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
812 MF = &mf;
813 MMI = mmi;
814}
815
Chris Lattner78ec3112003-08-11 14:57:33 +0000816SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000817 allnodes_clear();
818}
819
820void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000821 assert(&*AllNodes.begin() == &EntryNode);
822 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000823 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000824 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000825 N->SetNextInBucket(0);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000826
827 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000828 delete [] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000829 N->OperandList = 0;
830 }
831
Dan Gohman11467282008-08-26 01:44:34 +0000832 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000833 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000834}
835
Dan Gohman7c3234c2008-08-27 23:52:12 +0000836void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000837 allnodes_clear();
838 OperandAllocator.Reset();
839 CSEMap.clear();
840
841 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000842 ExternalSymbols.clear();
843 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000844 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
845 static_cast<CondCodeSDNode*>(0));
846 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
847 static_cast<SDNode*>(0));
848
849 EntryNode.Uses = 0;
850 AllNodes.push_back(&EntryNode);
851 Root = getEntryNode();
852}
853
Dan Gohman475871a2008-07-27 21:46:04 +0000854SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000855 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000856 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000857 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000858 return getNode(ISD::AND, Op.getValueType(), Op,
859 getConstant(Imm, Op.getValueType()));
860}
861
Dan Gohman475871a2008-07-27 21:46:04 +0000862SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000863 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000864 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000865}
866
Dan Gohman475871a2008-07-27 21:46:04 +0000867SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000868 return getConstant(*ConstantInt::get(Val), VT, isT);
869}
870
871SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000872 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000873
Evan Cheng0ff39b32008-06-30 07:31:25 +0000874 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000875 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000876 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000877
878 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000879 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000880 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000881 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000882 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000883 SDNode *N = NULL;
884 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000885 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000886 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000887 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000888 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000889 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000890 CSEMap.InsertNode(N, IP);
891 AllNodes.push_back(N);
892 }
893
Dan Gohman475871a2008-07-27 21:46:04 +0000894 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000895 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000896 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000897 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000898 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
899 }
900 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000901}
902
Dan Gohman475871a2008-07-27 21:46:04 +0000903SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000904 return getConstant(Val, TLI.getPointerTy(), isTarget);
905}
906
907
Dan Gohman475871a2008-07-27 21:46:04 +0000908SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000909 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
910}
911
912SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000914
Duncan Sands83ec4b62008-06-06 12:08:01 +0000915 MVT EltVT =
916 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000917
Chris Lattnerd8658612005-02-17 20:17:32 +0000918 // Do the map lookup using the actual bit pattern for the floating point
919 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
920 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000921 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000922 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000923 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000924 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000925 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000926 SDNode *N = NULL;
927 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000928 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000929 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000930 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000931 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000932 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000933 CSEMap.InsertNode(N, IP);
934 AllNodes.push_back(N);
935 }
936
Dan Gohman475871a2008-07-27 21:46:04 +0000937 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000938 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000939 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000941 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
942 }
943 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000944}
945
Dan Gohman475871a2008-07-27 21:46:04 +0000946SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000947 MVT EltVT =
948 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000949 if (EltVT==MVT::f32)
950 return getConstantFP(APFloat((float)Val), VT, isTarget);
951 else
952 return getConstantFP(APFloat(Val), VT, isTarget);
953}
954
Dan Gohman475871a2008-07-27 21:46:04 +0000955SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +0000956 MVT VT, int64_t Offset,
Dan Gohman475871a2008-07-27 21:46:04 +0000957 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000958 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000959
Dan Gohman6520e202008-10-18 02:06:02 +0000960 // Truncate (with sign-extension) the offset value to the pointer size.
Dan Gohman44013612008-10-21 03:38:42 +0000961 unsigned BitWidth = TLI.getPointerTy().getSizeInBits();
Dan Gohman6520e202008-10-18 02:06:02 +0000962 if (BitWidth < 64)
963 Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
964
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000965 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
966 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000967 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000968 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000969 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000970 }
971
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000972 if (GVar && GVar->isThreadLocal())
973 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
974 else
975 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000976
Jim Laskey583bd472006-10-27 23:46:08 +0000977 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000978 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000979 ID.AddPointer(GV);
980 ID.AddInteger(Offset);
981 void *IP = 0;
982 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000983 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000984 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000985 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +0000986 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000987 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000988 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000989}
990
Dan Gohman475871a2008-07-27 21:46:04 +0000991SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000992 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
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 Lattnerc9f8f412006-08-11 21:55:30 +0000995 ID.AddInteger(FI);
996 void *IP = 0;
997 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000998 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000999 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001000 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001001 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001002 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001003 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001004}
1005
Dan Gohman475871a2008-07-27 21:46:04 +00001006SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001007 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001008 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001009 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001010 ID.AddInteger(JTI);
1011 void *IP = 0;
1012 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001013 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001014 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001015 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001016 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001017 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001018 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001019}
1020
Dan Gohman475871a2008-07-27 21:46:04 +00001021SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1022 unsigned Alignment, int Offset,
1023 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001024 if (Alignment == 0)
1025 Alignment =
1026 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001027 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001028 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001029 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001030 ID.AddInteger(Alignment);
1031 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001032 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001033 void *IP = 0;
1034 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001035 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001036 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001037 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001038 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001039 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001040 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001041}
1042
Chris Lattnerc3aae252005-01-07 07:46:32 +00001043
Dan Gohman475871a2008-07-27 21:46:04 +00001044SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1045 unsigned Alignment, int Offset,
1046 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001047 if (Alignment == 0)
1048 Alignment =
1049 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001050 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001051 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001052 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001053 ID.AddInteger(Alignment);
1054 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001055 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001056 void *IP = 0;
1057 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001058 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001059 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001060 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001061 CSEMap.InsertNode(N, IP);
1062 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001063 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001064}
1065
1066
Dan Gohman475871a2008-07-27 21:46:04 +00001067SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001068 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001069 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001070 ID.AddPointer(MBB);
1071 void *IP = 0;
1072 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001073 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001074 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001075 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001076 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001077 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001078 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001079}
1080
Dan Gohman475871a2008-07-27 21:46:04 +00001081SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001082 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001083 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001084 ID.AddInteger(Flags.getRawBits());
1085 void *IP = 0;
1086 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001087 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001088 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001089 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001090 CSEMap.InsertNode(N, IP);
1091 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001092 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001093}
1094
Dan Gohman475871a2008-07-27 21:46:04 +00001095SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001096 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1097 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001098
Duncan Sands83ec4b62008-06-06 12:08:01 +00001099 SDNode *&N = VT.isExtended() ?
1100 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001101
Dan Gohman475871a2008-07-27 21:46:04 +00001102 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001103 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001104 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001105 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001106 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001107}
1108
Bill Wendling056292f2008-09-16 21:48:12 +00001109SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1110 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001111 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001112 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1113 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001114 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001115 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001116}
1117
Bill Wendling056292f2008-09-16 21:48:12 +00001118SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1119 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001120 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001121 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1122 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001123 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001124 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001125}
1126
Dan Gohman475871a2008-07-27 21:46:04 +00001127SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001128 if ((unsigned)Cond >= CondCodeNodes.size())
1129 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001130
Chris Lattner079a27a2005-08-09 20:40:02 +00001131 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001132 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001133 new (N) CondCodeSDNode(Cond);
1134 CondCodeNodes[Cond] = N;
1135 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001136 }
Dan Gohman475871a2008-07-27 21:46:04 +00001137 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001138}
1139
Mon P Wang77cdf302008-11-10 20:54:11 +00001140SDValue SelectionDAG::getConvertRndSat(MVT VT, SDValue Val, SDValue DTy,
1141 SDValue STy, SDValue Rnd, SDValue Sat,
1142 ISD::CvtCode Code) {
1143 FoldingSetNodeID ID;
1144 void* IP = 0;
1145 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1146 return SDValue(E, 0);
1147 CvtRndSatSDNode *N = NodeAllocator.Allocate<CvtRndSatSDNode>();
1148 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1149 new (N) CvtRndSatSDNode(VT, Ops, 5, Code);
1150 CSEMap.InsertNode(N, IP);
1151 AllNodes.push_back(N);
1152 return SDValue(N, 0);
1153}
1154
Dan Gohman475871a2008-07-27 21:46:04 +00001155SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001156 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001157 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001158 ID.AddInteger(RegNo);
1159 void *IP = 0;
1160 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001161 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001162 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001163 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001164 CSEMap.InsertNode(N, IP);
1165 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001166 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001167}
1168
Dan Gohman475871a2008-07-27 21:46:04 +00001169SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001170 unsigned Line, unsigned Col,
1171 const CompileUnitDesc *CU) {
1172 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001173 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001174 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001175 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001176}
1177
Dan Gohman475871a2008-07-27 21:46:04 +00001178SDValue SelectionDAG::getLabel(unsigned Opcode,
1179 SDValue Root,
1180 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001181 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001182 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001183 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1184 ID.AddInteger(LabelID);
1185 void *IP = 0;
1186 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001187 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001188 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001189 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001190 CSEMap.InsertNode(N, IP);
1191 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001192 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001193}
1194
Dan Gohman475871a2008-07-27 21:46:04 +00001195SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001196 assert((!V || isa<PointerType>(V->getType())) &&
1197 "SrcValue is not a pointer?");
1198
Jim Laskey583bd472006-10-27 23:46:08 +00001199 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001200 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001201 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001202
Chris Lattner61b09412006-08-11 21:01:22 +00001203 void *IP = 0;
1204 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001205 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001206
Dan Gohmanfed90b62008-07-28 21:51:04 +00001207 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001208 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001209 CSEMap.InsertNode(N, IP);
1210 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001211 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001212}
1213
Dan Gohman475871a2008-07-27 21:46:04 +00001214SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Evan Cheng24ac4082008-11-24 07:09:49 +00001215#ifndef NDEBUG
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?");
Evan Cheng24ac4082008-11-24 07:09:49 +00001219#endif
Dan Gohman69de1932008-02-06 22:27:42 +00001220
1221 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001222 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001223 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001224
1225 void *IP = 0;
1226 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001227 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001228
Dan Gohmanfed90b62008-07-28 21:51:04 +00001229 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001230 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001231 CSEMap.InsertNode(N, IP);
1232 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001233 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001234}
1235
Chris Lattner37ce9df2007-10-15 17:47:20 +00001236/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1237/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001238SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001239 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands9304f2c2008-12-04 18:08:40 +00001240 unsigned ByteSize = VT.getStoreSizeInBits()/8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001241 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001242 unsigned StackAlign =
1243 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1244
Chris Lattner37ce9df2007-10-15 17:47:20 +00001245 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1246 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1247}
1248
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001249/// CreateStackTemporary - Create a stack temporary suitable for holding
1250/// either of the specified value types.
1251SDValue SelectionDAG::CreateStackTemporary(MVT VT1, MVT VT2) {
1252 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1253 VT2.getStoreSizeInBits())/8;
1254 const Type *Ty1 = VT1.getTypeForMVT();
1255 const Type *Ty2 = VT2.getTypeForMVT();
1256 const TargetData *TD = TLI.getTargetData();
1257 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1258 TD->getPrefTypeAlignment(Ty2));
1259
1260 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1261 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align);
1262 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1263}
1264
Dan Gohman475871a2008-07-27 21:46:04 +00001265SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1266 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001267 // These setcc operations always fold.
1268 switch (Cond) {
1269 default: break;
1270 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001271 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001272 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001273 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001274
1275 case ISD::SETOEQ:
1276 case ISD::SETOGT:
1277 case ISD::SETOGE:
1278 case ISD::SETOLT:
1279 case ISD::SETOLE:
1280 case ISD::SETONE:
1281 case ISD::SETO:
1282 case ISD::SETUO:
1283 case ISD::SETUEQ:
1284 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001285 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001286 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001287 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001288
Gabor Greifba36cb52008-08-28 21:40:38 +00001289 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001290 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001291 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001292 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001293
Chris Lattnerc3aae252005-01-07 07:46:32 +00001294 switch (Cond) {
1295 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001296 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1297 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001298 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1299 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1300 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1301 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1302 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1303 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1304 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1305 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001306 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001307 }
Chris Lattner67255a12005-04-07 18:14:58 +00001308 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001309 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1310 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001311 // No compile time operations on this type yet.
1312 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001313 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001314
1315 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001316 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001317 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001318 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1319 return getNode(ISD::UNDEF, VT);
1320 // fall through
1321 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1322 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1323 return getNode(ISD::UNDEF, VT);
1324 // fall through
1325 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001326 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001327 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1328 return getNode(ISD::UNDEF, VT);
1329 // fall through
1330 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1331 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1332 return getNode(ISD::UNDEF, VT);
1333 // fall through
1334 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1335 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1336 return getNode(ISD::UNDEF, VT);
1337 // fall through
1338 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001339 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001340 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1341 return getNode(ISD::UNDEF, VT);
1342 // fall through
1343 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001344 R==APFloat::cmpEqual, VT);
1345 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1346 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1347 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1348 R==APFloat::cmpEqual, VT);
1349 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1350 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1351 R==APFloat::cmpLessThan, VT);
1352 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1353 R==APFloat::cmpUnordered, VT);
1354 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1355 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001356 }
1357 } else {
1358 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001359 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001360 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001361 }
1362
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001363 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001364 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001365}
1366
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001367/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1368/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001369bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001370 unsigned BitWidth = Op.getValueSizeInBits();
1371 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1372}
1373
Dan Gohmanea859be2007-06-22 14:59:07 +00001374/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1375/// this predicate to simplify operations downstream. Mask is known to be zero
1376/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001377bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001378 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001379 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001380 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1381 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1382 return (KnownZero & Mask) == Mask;
1383}
1384
1385/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1386/// known to be either zero or one and return them in the KnownZero/KnownOne
1387/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1388/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001389void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001390 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001391 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001392 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001393 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001394 "Mask size mismatches value type size!");
1395
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001396 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001397 if (Depth == 6 || Mask == 0)
1398 return; // Limit search depth.
1399
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001400 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001401
1402 switch (Op.getOpcode()) {
1403 case ISD::Constant:
1404 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001405 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001406 KnownZero = ~KnownOne & Mask;
1407 return;
1408 case ISD::AND:
1409 // If either the LHS or the RHS are Zero, the result is zero.
1410 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001411 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1412 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001413 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1414 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1415
1416 // Output known-1 bits are only known if set in both the LHS & RHS.
1417 KnownOne &= KnownOne2;
1418 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1419 KnownZero |= KnownZero2;
1420 return;
1421 case ISD::OR:
1422 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001423 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1424 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001425 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1426 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1427
1428 // Output known-0 bits are only known if clear in both the LHS & RHS.
1429 KnownZero &= KnownZero2;
1430 // Output known-1 are known to be set if set in either the LHS | RHS.
1431 KnownOne |= KnownOne2;
1432 return;
1433 case ISD::XOR: {
1434 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1435 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1436 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1437 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1438
1439 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001440 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001441 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1442 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1443 KnownZero = KnownZeroOut;
1444 return;
1445 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001446 case ISD::MUL: {
1447 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1448 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1449 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1450 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1451 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1452
1453 // If low bits are zero in either operand, output low known-0 bits.
1454 // Also compute a conserative estimate for high known-0 bits.
1455 // More trickiness is possible, but this is sufficient for the
1456 // interesting case of alignment computation.
1457 KnownOne.clear();
1458 unsigned TrailZ = KnownZero.countTrailingOnes() +
1459 KnownZero2.countTrailingOnes();
1460 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001461 KnownZero2.countLeadingOnes(),
1462 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001463
1464 TrailZ = std::min(TrailZ, BitWidth);
1465 LeadZ = std::min(LeadZ, BitWidth);
1466 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1467 APInt::getHighBitsSet(BitWidth, LeadZ);
1468 KnownZero &= Mask;
1469 return;
1470 }
1471 case ISD::UDIV: {
1472 // For the purposes of computing leading zeros we can conservatively
1473 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001474 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001475 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1476 ComputeMaskedBits(Op.getOperand(0),
1477 AllOnes, KnownZero2, KnownOne2, Depth+1);
1478 unsigned LeadZ = KnownZero2.countLeadingOnes();
1479
1480 KnownOne2.clear();
1481 KnownZero2.clear();
1482 ComputeMaskedBits(Op.getOperand(1),
1483 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001484 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1485 if (RHSUnknownLeadingOnes != BitWidth)
1486 LeadZ = std::min(BitWidth,
1487 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001488
1489 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1490 return;
1491 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001492 case ISD::SELECT:
1493 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1494 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1495 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1496 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1497
1498 // Only known if known in both the LHS and RHS.
1499 KnownOne &= KnownOne2;
1500 KnownZero &= KnownZero2;
1501 return;
1502 case ISD::SELECT_CC:
1503 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1504 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1505 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1506 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1507
1508 // Only known if known in both the LHS and RHS.
1509 KnownOne &= KnownOne2;
1510 KnownZero &= KnownZero2;
1511 return;
Bill Wendling253174b2008-11-22 07:24:01 +00001512 case ISD::SADDO:
1513 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001514 case ISD::SSUBO:
1515 case ISD::USUBO:
1516 case ISD::SMULO:
1517 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001518 if (Op.getResNo() != 1)
1519 return;
Duncan Sands03228082008-11-23 15:47:28 +00001520 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001521 case ISD::SETCC:
1522 // If we know the result of a setcc has the top bits zero, use this info.
Duncan Sands03228082008-11-23 15:47:28 +00001523 if (TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent &&
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001524 BitWidth > 1)
1525 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001526 return;
1527 case ISD::SHL:
1528 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1529 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001530 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001531
1532 // If the shift count is an invalid immediate, don't do anything.
1533 if (ShAmt >= BitWidth)
1534 return;
1535
1536 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001537 KnownZero, KnownOne, Depth+1);
1538 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001539 KnownZero <<= ShAmt;
1540 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001541 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001542 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001543 }
1544 return;
1545 case ISD::SRL:
1546 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1547 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001548 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001549
Dan Gohmand4cf9922008-02-26 18:50:50 +00001550 // If the shift count is an invalid immediate, don't do anything.
1551 if (ShAmt >= BitWidth)
1552 return;
1553
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001554 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001555 KnownZero, KnownOne, Depth+1);
1556 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001557 KnownZero = KnownZero.lshr(ShAmt);
1558 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001559
Dan Gohman72d2fd52008-02-13 22:43:25 +00001560 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001561 KnownZero |= HighBits; // High bits known zero.
1562 }
1563 return;
1564 case ISD::SRA:
1565 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001566 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001567
Dan Gohmand4cf9922008-02-26 18:50:50 +00001568 // If the shift count is an invalid immediate, don't do anything.
1569 if (ShAmt >= BitWidth)
1570 return;
1571
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001572 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001573 // If any of the demanded bits are produced by the sign extension, we also
1574 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001575 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1576 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001577 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001578
1579 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1580 Depth+1);
1581 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001582 KnownZero = KnownZero.lshr(ShAmt);
1583 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001584
1585 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001586 APInt SignBit = APInt::getSignBit(BitWidth);
1587 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001588
Dan Gohmanca93a432008-02-20 16:30:17 +00001589 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001590 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001591 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001592 KnownOne |= HighBits; // New bits are known one.
1593 }
1594 }
1595 return;
1596 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001597 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1598 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001599
1600 // Sign extension. Compute the demanded bits in the result that are not
1601 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001602 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001603
Dan Gohman977a76f2008-02-13 22:28:48 +00001604 APInt InSignBit = APInt::getSignBit(EBits);
1605 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001606
1607 // If the sign extended bits are demanded, we know that the sign
1608 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001609 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001610 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001611 InputDemandedBits |= InSignBit;
1612
1613 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1614 KnownZero, KnownOne, Depth+1);
1615 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1616
1617 // If the sign bit of the input is known set or clear, then we know the
1618 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001619 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001620 KnownZero |= NewBits;
1621 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001622 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001623 KnownOne |= NewBits;
1624 KnownZero &= ~NewBits;
1625 } else { // Input sign bit unknown
1626 KnownZero &= ~NewBits;
1627 KnownOne &= ~NewBits;
1628 }
1629 return;
1630 }
1631 case ISD::CTTZ:
1632 case ISD::CTLZ:
1633 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001634 unsigned LowBits = Log2_32(BitWidth)+1;
1635 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001636 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001637 return;
1638 }
1639 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001640 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001641 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001642 MVT VT = LD->getMemoryVT();
1643 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001644 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001645 }
1646 return;
1647 }
1648 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001649 MVT InVT = Op.getOperand(0).getValueType();
1650 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001651 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1652 APInt InMask = Mask;
1653 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001654 KnownZero.trunc(InBits);
1655 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001656 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001657 KnownZero.zext(BitWidth);
1658 KnownOne.zext(BitWidth);
1659 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001660 return;
1661 }
1662 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001663 MVT InVT = Op.getOperand(0).getValueType();
1664 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001665 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001666 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1667 APInt InMask = Mask;
1668 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001669
1670 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001671 // bit is demanded. Temporarily set this bit in the mask for our callee.
1672 if (NewBits.getBoolValue())
1673 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001674
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001675 KnownZero.trunc(InBits);
1676 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001677 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1678
1679 // Note if the sign bit is known to be zero or one.
1680 bool SignBitKnownZero = KnownZero.isNegative();
1681 bool SignBitKnownOne = KnownOne.isNegative();
1682 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1683 "Sign bit can't be known to be both zero and one!");
1684
1685 // If the sign bit wasn't actually demanded by our caller, we don't
1686 // want it set in the KnownZero and KnownOne result values. Reset the
1687 // mask and reapply it to the result values.
1688 InMask = Mask;
1689 InMask.trunc(InBits);
1690 KnownZero &= InMask;
1691 KnownOne &= InMask;
1692
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001693 KnownZero.zext(BitWidth);
1694 KnownOne.zext(BitWidth);
1695
Dan Gohman977a76f2008-02-13 22:28:48 +00001696 // If the sign bit is known zero or one, the top bits match.
1697 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001698 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001699 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001700 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001701 return;
1702 }
1703 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001704 MVT InVT = Op.getOperand(0).getValueType();
1705 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001706 APInt InMask = Mask;
1707 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001708 KnownZero.trunc(InBits);
1709 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001710 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001711 KnownZero.zext(BitWidth);
1712 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001713 return;
1714 }
1715 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001716 MVT InVT = Op.getOperand(0).getValueType();
1717 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001718 APInt InMask = Mask;
1719 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001720 KnownZero.zext(InBits);
1721 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001722 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001723 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001724 KnownZero.trunc(BitWidth);
1725 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001726 break;
1727 }
1728 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001729 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1730 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001731 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1732 KnownOne, Depth+1);
1733 KnownZero |= (~InMask) & Mask;
1734 return;
1735 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001736 case ISD::FGETSIGN:
1737 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001738 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001739 return;
1740
Dan Gohman23e8b712008-04-28 17:02:21 +00001741 case ISD::SUB: {
1742 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1743 // We know that the top bits of C-X are clear if X contains less bits
1744 // than C (i.e. no wrap-around can happen). For example, 20-X is
1745 // positive if we can prove that X is >= 0 and < 16.
1746 if (CLHS->getAPIntValue().isNonNegative()) {
1747 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1748 // NLZ can't be BitWidth with no sign bit
1749 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1750 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1751 Depth+1);
1752
1753 // If all of the MaskV bits are known to be zero, then we know the
1754 // output top bits are zero, because we now know that the output is
1755 // from [0-C].
1756 if ((KnownZero2 & MaskV) == MaskV) {
1757 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1758 // Top bits known zero.
1759 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1760 }
1761 }
1762 }
1763 }
1764 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001765 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001766 // Output known-0 bits are known if clear or set in both the low clear bits
1767 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1768 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001769 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1770 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1771 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1772 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1773
1774 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1775 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1776 KnownZeroOut = std::min(KnownZeroOut,
1777 KnownZero2.countTrailingOnes());
1778
1779 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001780 return;
1781 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001782 case ISD::SREM:
1783 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001784 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001785 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001786 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001787 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1788 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001789
Dan Gohmana60832b2008-08-13 23:12:35 +00001790 // If the sign bit of the first operand is zero, the sign bit of
1791 // the result is zero. If the first operand has no one bits below
1792 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001793 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1794 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001795
Dan Gohman23e8b712008-04-28 17:02:21 +00001796 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001797
1798 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001799 }
1800 }
1801 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001802 case ISD::UREM: {
1803 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001804 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001805 if (RA.isPowerOf2()) {
1806 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001807 APInt Mask2 = LowBits & Mask;
1808 KnownZero |= ~LowBits & Mask;
1809 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1810 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1811 break;
1812 }
1813 }
1814
1815 // Since the result is less than or equal to either operand, any leading
1816 // zero bits in either operand must also exist in the result.
1817 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1818 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1819 Depth+1);
1820 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1821 Depth+1);
1822
1823 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1824 KnownZero2.countLeadingOnes());
1825 KnownOne.clear();
1826 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1827 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001828 }
1829 default:
1830 // Allow the target to implement this method for its nodes.
1831 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1832 case ISD::INTRINSIC_WO_CHAIN:
1833 case ISD::INTRINSIC_W_CHAIN:
1834 case ISD::INTRINSIC_VOID:
1835 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1836 }
1837 return;
1838 }
1839}
1840
1841/// ComputeNumSignBits - Return the number of times the sign bit of the
1842/// register is replicated into the other bits. We know that at least 1 bit
1843/// is always equal to the sign bit (itself), but other cases can give us
1844/// information. For example, immediately after an "SRA X, 2", we know that
1845/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001846unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001847 MVT VT = Op.getValueType();
1848 assert(VT.isInteger() && "Invalid VT!");
1849 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001850 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001851 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001852
1853 if (Depth == 6)
1854 return 1; // Limit search depth.
1855
1856 switch (Op.getOpcode()) {
1857 default: break;
1858 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001859 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001860 return VTBits-Tmp+1;
1861 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001862 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001863 return VTBits-Tmp;
1864
1865 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001866 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1867 // If negative, return # leading ones.
1868 if (Val.isNegative())
1869 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001870
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001871 // Return # leading zeros.
1872 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001873 }
1874
1875 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001876 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001877 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1878
1879 case ISD::SIGN_EXTEND_INREG:
1880 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001881 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001882 Tmp = VTBits-Tmp+1;
1883
1884 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1885 return std::max(Tmp, Tmp2);
1886
1887 case ISD::SRA:
1888 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1889 // SRA X, C -> adds C sign bits.
1890 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001891 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001892 if (Tmp > VTBits) Tmp = VTBits;
1893 }
1894 return Tmp;
1895 case ISD::SHL:
1896 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1897 // shl destroys sign bits.
1898 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001899 if (C->getZExtValue() >= VTBits || // Bad shift.
1900 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1901 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001902 }
1903 break;
1904 case ISD::AND:
1905 case ISD::OR:
1906 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001907 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001908 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001909 if (Tmp != 1) {
1910 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1911 FirstAnswer = std::min(Tmp, Tmp2);
1912 // We computed what we know about the sign bits as our first
1913 // answer. Now proceed to the generic code that uses
1914 // ComputeMaskedBits, and pick whichever answer is better.
1915 }
1916 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001917
1918 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001919 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001920 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001921 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001922 return std::min(Tmp, Tmp2);
Bill Wendling253174b2008-11-22 07:24:01 +00001923
1924 case ISD::SADDO:
1925 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001926 case ISD::SSUBO:
1927 case ISD::USUBO:
1928 case ISD::SMULO:
1929 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001930 if (Op.getResNo() != 1)
1931 break;
Duncan Sands03228082008-11-23 15:47:28 +00001932 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001933 case ISD::SETCC:
1934 // If setcc returns 0/-1, all bits are sign bits.
Duncan Sands03228082008-11-23 15:47:28 +00001935 if (TLI.getBooleanContents() ==
1936 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohmanea859be2007-06-22 14:59:07 +00001937 return VTBits;
1938 break;
1939 case ISD::ROTL:
1940 case ISD::ROTR:
1941 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001942 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001943
1944 // Handle rotate right by N like a rotate left by 32-N.
1945 if (Op.getOpcode() == ISD::ROTR)
1946 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1947
1948 // If we aren't rotating out all of the known-in sign bits, return the
1949 // number that are left. This handles rotl(sext(x), 1) for example.
1950 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1951 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1952 }
1953 break;
1954 case ISD::ADD:
1955 // Add can have at most one carry bit. Thus we know that the output
1956 // is, at worst, one more bit than the inputs.
1957 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1958 if (Tmp == 1) return 1; // Early out.
1959
1960 // Special case decrementing a value (ADD X, -1):
1961 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1962 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001963 APInt KnownZero, KnownOne;
1964 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001965 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1966
1967 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1968 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001969 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001970 return VTBits;
1971
1972 // If we are subtracting one from a positive number, there is no carry
1973 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001974 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001975 return Tmp;
1976 }
1977
1978 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1979 if (Tmp2 == 1) return 1;
1980 return std::min(Tmp, Tmp2)-1;
1981 break;
1982
1983 case ISD::SUB:
1984 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1985 if (Tmp2 == 1) return 1;
1986
1987 // Handle NEG.
1988 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001989 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001990 APInt KnownZero, KnownOne;
1991 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001992 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1993 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1994 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001995 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001996 return VTBits;
1997
1998 // If the input is known to be positive (the sign bit is known clear),
1999 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002000 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00002001 return Tmp2;
2002
2003 // Otherwise, we treat this like a SUB.
2004 }
2005
2006 // Sub can have at most one carry bit. Thus we know that the output
2007 // is, at worst, one more bit than the inputs.
2008 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2009 if (Tmp == 1) return 1; // Early out.
2010 return std::min(Tmp, Tmp2)-1;
2011 break;
2012 case ISD::TRUNCATE:
2013 // FIXME: it's tricky to do anything useful for this, but it is an important
2014 // case for targets like X86.
2015 break;
2016 }
2017
2018 // Handle LOADX separately here. EXTLOAD case will fallthrough.
2019 if (Op.getOpcode() == ISD::LOAD) {
2020 LoadSDNode *LD = cast<LoadSDNode>(Op);
2021 unsigned ExtType = LD->getExtensionType();
2022 switch (ExtType) {
2023 default: break;
2024 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00002025 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002026 return VTBits-Tmp+1;
2027 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00002028 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002029 return VTBits-Tmp;
2030 }
2031 }
2032
2033 // Allow the target to implement this method for its nodes.
2034 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2035 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2036 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2037 Op.getOpcode() == ISD::INTRINSIC_VOID) {
2038 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002039 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002040 }
2041
2042 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2043 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002044 APInt KnownZero, KnownOne;
2045 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002046 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2047
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002048 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002049 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002050 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002051 Mask = KnownOne;
2052 } else {
2053 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002054 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002055 }
2056
2057 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2058 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002059 Mask = ~Mask;
2060 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002061 // Return # leading zeros. We use 'min' here in case Val was zero before
2062 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002063 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002064}
2065
Chris Lattner51dabfb2006-10-14 00:41:01 +00002066
Dan Gohman475871a2008-07-27 21:46:04 +00002067bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002068 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2069 if (!GA) return false;
Dan Gohman6520e202008-10-18 02:06:02 +00002070 if (GA->getOffset() != 0) return false;
Evan Chenga844bde2008-02-02 04:07:54 +00002071 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2072 if (!GV) return false;
2073 MachineModuleInfo *MMI = getMachineModuleInfo();
2074 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2075}
2076
2077
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002078/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2079/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002080SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002081 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002082 SDValue PermMask = N->getOperand(2);
2083 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002084 if (Idx.getOpcode() == ISD::UNDEF)
2085 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002086 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002087 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002088 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002089 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002090
2091 if (V.getOpcode() == ISD::BIT_CONVERT) {
2092 V = V.getOperand(0);
Mon P Wange9f10152008-12-09 05:46:39 +00002093 MVT VVT = V.getValueType();
2094 if (!VVT.isVector() || VVT.getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002095 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002096 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002097 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002098 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002099 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002100 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002101 return V.getOperand(Index);
2102 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002103 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002104 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002105}
2106
2107
Chris Lattnerc3aae252005-01-07 07:46:32 +00002108/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002109///
Dan Gohman475871a2008-07-27 21:46:04 +00002110SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002111 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002112 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002113 void *IP = 0;
2114 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002115 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002116 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002117 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002118 CSEMap.InsertNode(N, IP);
2119
2120 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002121#ifndef NDEBUG
2122 VerifyNode(N);
2123#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002124 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002125}
2126
Dan Gohman475871a2008-07-27 21:46:04 +00002127SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002128 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002129 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002130 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002131 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002132 switch (Opcode) {
2133 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002134 case ISD::SIGN_EXTEND:
2135 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002136 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002137 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002138 case ISD::TRUNCATE:
2139 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002140 case ISD::UINT_TO_FP:
2141 case ISD::SINT_TO_FP: {
2142 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002143 // No compile time operations on this type.
2144 if (VT==MVT::ppcf128)
2145 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002146 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2147 (void)apf.convertFromAPInt(Val,
2148 Opcode==ISD::SINT_TO_FP,
2149 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002150 return getConstantFP(apf, VT);
2151 }
Chris Lattner94683772005-12-23 05:30:37 +00002152 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002153 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002154 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002155 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002156 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002157 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002158 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002159 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002160 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002161 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002162 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002163 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002164 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002165 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002166 }
2167 }
2168
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002169 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002170 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002171 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002172 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002173 switch (Opcode) {
2174 case ISD::FNEG:
2175 V.changeSign();
2176 return getConstantFP(V, VT);
2177 case ISD::FABS:
2178 V.clearSign();
2179 return getConstantFP(V, VT);
2180 case ISD::FP_ROUND:
Dale Johannesen23a98552008-10-09 23:00:39 +00002181 case ISD::FP_EXTEND: {
2182 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002183 // This can return overflow, underflow, or inexact; we don't care.
2184 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002185 (void)V.convert(*MVTToAPFloatSemantics(VT),
Dale Johannesen23a98552008-10-09 23:00:39 +00002186 APFloat::rmNearestTiesToEven, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002187 return getConstantFP(V, VT);
Dale Johannesen23a98552008-10-09 23:00:39 +00002188 }
Dale Johannesendb44bf82007-10-16 23:38:29 +00002189 case ISD::FP_TO_SINT:
2190 case ISD::FP_TO_UINT: {
2191 integerPart x;
Dale Johannesen23a98552008-10-09 23:00:39 +00002192 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002193 assert(integerPartWidth >= 64);
2194 // FIXME need to be more flexible about rounding mode.
2195 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2196 Opcode==ISD::FP_TO_SINT,
Dale Johannesen23a98552008-10-09 23:00:39 +00002197 APFloat::rmTowardZero, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002198 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2199 break;
2200 return getConstant(x, VT);
2201 }
2202 case ISD::BIT_CONVERT:
2203 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Dale Johannesen23a98552008-10-09 23:00:39 +00002204 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002205 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Dale Johannesen23a98552008-10-09 23:00:39 +00002206 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002207 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002208 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002209 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002210 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002211
Gabor Greifba36cb52008-08-28 21:40:38 +00002212 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002213 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002214 case ISD::TokenFactor:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002215 case ISD::MERGE_VALUES:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002216 case ISD::CONCAT_VECTORS:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002217 return Operand; // Factor, merge or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002218 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002219 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002220 assert(VT.isFloatingPoint() &&
2221 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002222 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002223 if (Operand.getOpcode() == ISD::UNDEF)
2224 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002225 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002226 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002227 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002228 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002229 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002230 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002231 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002232 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002233 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002234 break;
2235 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002236 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002237 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002238 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002239 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002240 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002241 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002242 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002243 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002244 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002245 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002246 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002247 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002248 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002249 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002250 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2251 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002252 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002253 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002254 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002255 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002256 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002257 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002258 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002259 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002260 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002261 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002262 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2263 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002264 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002265 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2266 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2267 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2268 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002269 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002270 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002271 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002272 break;
Chris Lattner35481892005-12-23 00:16:34 +00002273 case ISD::BIT_CONVERT:
2274 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002275 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002276 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002277 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002278 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2279 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002280 if (OpOpcode == ISD::UNDEF)
2281 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002282 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002283 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002284 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2285 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002286 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002287 if (OpOpcode == ISD::UNDEF)
2288 return getNode(ISD::UNDEF, VT);
2289 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2290 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2291 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2292 Operand.getConstantOperandVal(1) == 0 &&
2293 Operand.getOperand(0).getValueType() == VT)
2294 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002295 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002296 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002297 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002298 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2299 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002300 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002301 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002302 break;
2303 case ISD::FABS:
2304 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002305 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002306 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002307 }
2308
Chris Lattner43247a12005-08-25 19:12:10 +00002309 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002310 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002311 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002312 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002313 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002314 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002315 void *IP = 0;
2316 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002317 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002318 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002319 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002320 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002321 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002322 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002323 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002324 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002325
Chris Lattnerc3aae252005-01-07 07:46:32 +00002326 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002327#ifndef NDEBUG
2328 VerifyNode(N);
2329#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002330 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002331}
2332
Bill Wendling688d1c42008-09-24 10:16:24 +00002333SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2334 MVT VT,
2335 ConstantSDNode *Cst1,
2336 ConstantSDNode *Cst2) {
2337 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2338
2339 switch (Opcode) {
2340 case ISD::ADD: return getConstant(C1 + C2, VT);
2341 case ISD::SUB: return getConstant(C1 - C2, VT);
2342 case ISD::MUL: return getConstant(C1 * C2, VT);
2343 case ISD::UDIV:
2344 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2345 break;
2346 case ISD::UREM:
2347 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2348 break;
2349 case ISD::SDIV:
2350 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2351 break;
2352 case ISD::SREM:
2353 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2354 break;
2355 case ISD::AND: return getConstant(C1 & C2, VT);
2356 case ISD::OR: return getConstant(C1 | C2, VT);
2357 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2358 case ISD::SHL: return getConstant(C1 << C2, VT);
2359 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2360 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2361 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2362 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2363 default: break;
2364 }
2365
2366 return SDValue();
2367}
2368
Dan Gohman475871a2008-07-27 21:46:04 +00002369SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2370 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002371 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2372 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002373 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002374 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002375 case ISD::TokenFactor:
2376 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2377 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002378 // Fold trivial token factors.
2379 if (N1.getOpcode() == ISD::EntryToken) return N2;
2380 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002381 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002382 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002383 case ISD::CONCAT_VECTORS:
2384 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2385 // one big BUILD_VECTOR.
2386 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2387 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002388 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2389 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002390 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2391 }
2392 break;
Chris Lattner76365122005-01-16 02:23:22 +00002393 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002394 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002395 N1.getValueType() == VT && "Binary operator types must match!");
2396 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2397 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002398 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002399 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002400 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2401 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002402 break;
Chris Lattner76365122005-01-16 02:23:22 +00002403 case ISD::OR:
2404 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002405 case ISD::ADD:
2406 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002407 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002408 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002409 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2410 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002411 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002412 return N1;
2413 break;
Chris Lattner76365122005-01-16 02:23:22 +00002414 case ISD::UDIV:
2415 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002416 case ISD::MULHU:
2417 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002418 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002419 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002420 case ISD::MUL:
2421 case ISD::SDIV:
2422 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002423 case ISD::FADD:
2424 case ISD::FSUB:
2425 case ISD::FMUL:
2426 case ISD::FDIV:
2427 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002428 assert(N1.getValueType() == N2.getValueType() &&
2429 N1.getValueType() == VT && "Binary operator types must match!");
2430 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002431 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2432 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002433 N1.getValueType().isFloatingPoint() &&
2434 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002435 "Invalid FCOPYSIGN!");
2436 break;
Chris Lattner76365122005-01-16 02:23:22 +00002437 case ISD::SHL:
2438 case ISD::SRA:
2439 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002440 case ISD::ROTL:
2441 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002442 assert(VT == N1.getValueType() &&
2443 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002444 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002445 "Shifts only work on integers");
Mon P Wange9f10152008-12-09 05:46:39 +00002446 assert((N2.getValueType() == TLI.getShiftAmountTy() ||
2447 (N2.getValueType().isVector() && N2.getValueType().isInteger())) &&
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002448 "Wrong type for shift amount");
Chris Lattner349db172008-07-02 17:01:57 +00002449
2450 // Always fold shifts of i1 values so the code generator doesn't need to
2451 // handle them. Since we know the size of the shift has to be less than the
2452 // size of the value, the shift/rotate count is guaranteed to be zero.
2453 if (VT == MVT::i1)
2454 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002455 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002456 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002458 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002459 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002460 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002461 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002462 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002463 break;
2464 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002465 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002466 assert(VT.isFloatingPoint() &&
2467 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002468 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002469 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002470 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002471 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002472 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002473 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002474 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002475 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002476 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002477 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002478 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002479 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002480 break;
2481 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002482 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002483 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002484 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002485 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002486 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002487 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002488 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002489
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002490 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002491 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002492 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002493 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002494 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002495 return getConstant(Val, VT);
2496 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002497 break;
2498 }
2499 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002500 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2501 if (N1.getOpcode() == ISD::UNDEF)
2502 return getNode(ISD::UNDEF, VT);
2503
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002504 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2505 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002506 if (N2C &&
2507 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002508 N1.getNumOperands() > 0) {
2509 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002510 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002511 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002512 N1.getOperand(N2C->getZExtValue() / Factor),
2513 getConstant(N2C->getZExtValue() % Factor,
2514 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002515 }
2516
2517 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2518 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002519 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002520 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002521
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002522 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2523 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002524 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2525 if (N1.getOperand(2) == N2)
2526 return N1.getOperand(1);
2527 else
2528 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2529 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002530 break;
2531 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002532 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002533 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2534 (N1.getValueType().isInteger() == VT.isInteger()) &&
2535 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002536
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002537 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2538 // 64-bit integers into 32-bit parts. Instead of building the extract of
2539 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2540 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002541 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002542
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002543 // EXTRACT_ELEMENT of a constant int is also very common.
2544 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002545 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002546 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002547 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2548 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002549 }
2550 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002551 case ISD::EXTRACT_SUBVECTOR:
2552 if (N1.getValueType() == VT) // Trivial extraction.
2553 return N1;
2554 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002555 }
2556
2557 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002558 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002559 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2560 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002561 } else { // Cannonicalize constant to RHS if commutative
2562 if (isCommutativeBinOp(Opcode)) {
2563 std::swap(N1C, N2C);
2564 std::swap(N1, N2);
2565 }
2566 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002567 }
2568
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002569 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002570 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2571 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002572 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002573 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2574 // Cannonicalize constant to RHS if commutative
2575 std::swap(N1CFP, N2CFP);
2576 std::swap(N1, N2);
2577 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002578 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2579 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002580 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002581 case ISD::FADD:
2582 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002583 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002584 return getConstantFP(V1, VT);
2585 break;
2586 case ISD::FSUB:
2587 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2588 if (s!=APFloat::opInvalidOp)
2589 return getConstantFP(V1, VT);
2590 break;
2591 case ISD::FMUL:
2592 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2593 if (s!=APFloat::opInvalidOp)
2594 return getConstantFP(V1, VT);
2595 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002596 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002597 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2598 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2599 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002600 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002601 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002602 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2603 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2604 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002605 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002606 case ISD::FCOPYSIGN:
2607 V1.copySign(V2);
2608 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002609 default: break;
2610 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002611 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002612 }
Chris Lattner62b57722006-04-20 05:39:12 +00002613
2614 // Canonicalize an UNDEF to the RHS, even over a constant.
2615 if (N1.getOpcode() == ISD::UNDEF) {
2616 if (isCommutativeBinOp(Opcode)) {
2617 std::swap(N1, N2);
2618 } else {
2619 switch (Opcode) {
2620 case ISD::FP_ROUND_INREG:
2621 case ISD::SIGN_EXTEND_INREG:
2622 case ISD::SUB:
2623 case ISD::FSUB:
2624 case ISD::FDIV:
2625 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002626 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002627 return N1; // fold op(undef, arg2) -> undef
2628 case ISD::UDIV:
2629 case ISD::SDIV:
2630 case ISD::UREM:
2631 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002632 case ISD::SRL:
2633 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002634 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002635 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2636 // For vectors, we can't easily build an all zero vector, just return
2637 // the LHS.
2638 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002639 }
2640 }
2641 }
2642
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002643 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002644 if (N2.getOpcode() == ISD::UNDEF) {
2645 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002646 case ISD::XOR:
2647 if (N1.getOpcode() == ISD::UNDEF)
2648 // Handle undef ^ undef -> 0 special case. This is a common
2649 // idiom (misuse).
2650 return getConstant(0, VT);
2651 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002652 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002653 case ISD::ADDC:
2654 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002655 case ISD::SUB:
2656 case ISD::FADD:
2657 case ISD::FSUB:
2658 case ISD::FMUL:
2659 case ISD::FDIV:
2660 case ISD::FREM:
2661 case ISD::UDIV:
2662 case ISD::SDIV:
2663 case ISD::UREM:
2664 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002665 return N2; // fold op(arg1, undef) -> undef
2666 case ISD::MUL:
2667 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002668 case ISD::SRL:
2669 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002670 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002671 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2672 // For vectors, we can't easily build an all zero vector, just return
2673 // the LHS.
2674 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002675 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002676 if (!VT.isVector())
2677 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002678 // For vectors, we can't easily build an all one vector, just return
2679 // the LHS.
2680 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002681 case ISD::SRA:
2682 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002683 }
2684 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002685
Chris Lattner27e9b412005-05-11 18:57:39 +00002686 // Memoize this node if possible.
2687 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002688 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002689 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002690 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002691 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002692 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002693 void *IP = 0;
2694 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002695 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002696 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002697 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002698 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002699 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002700 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002701 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002702 }
2703
Chris Lattnerc3aae252005-01-07 07:46:32 +00002704 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002705#ifndef NDEBUG
2706 VerifyNode(N);
2707#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002708 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002709}
2710
Dan Gohman475871a2008-07-27 21:46:04 +00002711SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2712 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002713 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002714 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2715 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002716 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002717 case ISD::CONCAT_VECTORS:
2718 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2719 // one big BUILD_VECTOR.
2720 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2721 N2.getOpcode() == ISD::BUILD_VECTOR &&
2722 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002723 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2724 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2725 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002726 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2727 }
2728 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002729 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002730 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002731 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002732 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002733 break;
2734 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002735 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002736 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002737 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002738 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002739 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002740 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002741 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002742
2743 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002744 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002745 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002746 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002747 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002748 return getNode(ISD::BR, MVT::Other, N1, N3);
2749 else
2750 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002751 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002752 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002753 case ISD::VECTOR_SHUFFLE:
Mon P Wangaeb06d22008-11-10 04:46:22 +00002754 assert(N1.getValueType() == N2.getValueType() &&
2755 N1.getValueType().isVector() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002756 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002757 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002758 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002759 "Illegal VECTOR_SHUFFLE node!");
2760 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002761 case ISD::BIT_CONVERT:
2762 // Fold bit_convert nodes from a type to themselves.
2763 if (N1.getValueType() == VT)
2764 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002765 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002766 }
2767
Chris Lattner43247a12005-08-25 19:12:10 +00002768 // Memoize node if it doesn't produce a flag.
2769 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002770 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002771 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002772 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002773 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002774 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002775 void *IP = 0;
2776 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002777 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002778 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002779 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002780 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002781 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002782 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002783 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002784 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002785 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002786#ifndef NDEBUG
2787 VerifyNode(N);
2788#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002789 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002790}
2791
Dan Gohman475871a2008-07-27 21:46:04 +00002792SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2793 SDValue N1, SDValue N2, SDValue N3,
2794 SDValue N4) {
2795 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002796 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002797}
2798
Dan Gohman475871a2008-07-27 21:46:04 +00002799SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2800 SDValue N1, SDValue N2, SDValue N3,
2801 SDValue N4, SDValue N5) {
2802 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002803 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002804}
2805
Dan Gohman707e0182008-04-12 04:36:06 +00002806/// getMemsetValue - Vectorized representation of the memset value
2807/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002808static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002809 unsigned NumBits = VT.isVector() ?
2810 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002811 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002812 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002813 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002814 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002815 Val = (Val << Shift) | Val;
2816 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002817 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002818 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002819 return DAG.getConstant(Val, VT);
2820 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002821 }
Evan Chengf0df0312008-05-15 08:39:06 +00002822
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002823 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Evan Chengf0df0312008-05-15 08:39:06 +00002824 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2825 unsigned Shift = 8;
2826 for (unsigned i = NumBits; i > 8; i >>= 1) {
2827 Value = DAG.getNode(ISD::OR, VT,
2828 DAG.getNode(ISD::SHL, VT, Value,
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002829 DAG.getConstant(Shift,
2830 TLI.getShiftAmountTy())),
2831 Value);
Evan Chengf0df0312008-05-15 08:39:06 +00002832 Shift <<= 1;
2833 }
2834
2835 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002836}
2837
Dan Gohman707e0182008-04-12 04:36:06 +00002838/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2839/// used when a memcpy is turned into a memset when the source is a constant
2840/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002841static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002842 const TargetLowering &TLI,
2843 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002844 // Handle vector with all elements zero.
2845 if (Str.empty()) {
2846 if (VT.isInteger())
2847 return DAG.getConstant(0, VT);
2848 unsigned NumElts = VT.getVectorNumElements();
2849 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2850 return DAG.getNode(ISD::BIT_CONVERT, VT,
2851 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2852 }
2853
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 assert(!VT.isVector() && "Can't handle vector type here!");
2855 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002856 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002857 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002858 if (TLI.isLittleEndian())
2859 Offset = Offset + MSB - 1;
2860 for (unsigned i = 0; i != MSB; ++i) {
2861 Val = (Val << 8) | (unsigned char)Str[Offset];
2862 Offset += TLI.isLittleEndian() ? -1 : 1;
2863 }
2864 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002865}
2866
Dan Gohman707e0182008-04-12 04:36:06 +00002867/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002868///
Dan Gohman475871a2008-07-27 21:46:04 +00002869static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002870 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002871 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002872 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2873}
2874
Evan Chengf0df0312008-05-15 08:39:06 +00002875/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2876///
Dan Gohman475871a2008-07-27 21:46:04 +00002877static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002878 unsigned SrcDelta = 0;
2879 GlobalAddressSDNode *G = NULL;
2880 if (Src.getOpcode() == ISD::GlobalAddress)
2881 G = cast<GlobalAddressSDNode>(Src);
2882 else if (Src.getOpcode() == ISD::ADD &&
2883 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2884 Src.getOperand(1).getOpcode() == ISD::Constant) {
2885 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002886 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002887 }
2888 if (!G)
2889 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002890
Evan Chengf0df0312008-05-15 08:39:06 +00002891 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002892 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2893 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002894
Evan Chengf0df0312008-05-15 08:39:06 +00002895 return false;
2896}
Dan Gohman707e0182008-04-12 04:36:06 +00002897
Evan Chengf0df0312008-05-15 08:39:06 +00002898/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2899/// to replace the memset / memcpy is below the threshold. It also returns the
2900/// types of the sequence of memory ops to perform memset / memcpy.
2901static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002902bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002903 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002904 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002905 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002906 SelectionDAG &DAG,
2907 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002908 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002909 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002910 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Chris Lattner7fe5e182008-10-28 07:10:51 +00002911 MVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002912 if (VT != MVT::iAny) {
2913 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002914 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002915 // If source is a string constant, this will require an unaligned load.
2916 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2917 if (Dst.getOpcode() != ISD::FrameIndex) {
2918 // Can't change destination alignment. It requires a unaligned store.
2919 if (AllowUnalign)
2920 VT = MVT::iAny;
2921 } else {
2922 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2923 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2924 if (MFI->isFixedObjectIndex(FI)) {
2925 // Can't change destination alignment. It requires a unaligned store.
2926 if (AllowUnalign)
2927 VT = MVT::iAny;
2928 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002929 // Give the stack frame object a larger alignment if needed.
2930 if (MFI->getObjectAlignment(FI) < NewAlign)
2931 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002932 Align = NewAlign;
2933 }
2934 }
2935 }
2936 }
2937
2938 if (VT == MVT::iAny) {
2939 if (AllowUnalign) {
2940 VT = MVT::i64;
2941 } else {
2942 switch (Align & 7) {
2943 case 0: VT = MVT::i64; break;
2944 case 4: VT = MVT::i32; break;
2945 case 2: VT = MVT::i16; break;
2946 default: VT = MVT::i8; break;
2947 }
2948 }
2949
Duncan Sands83ec4b62008-06-06 12:08:01 +00002950 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002951 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002952 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2953 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002954
Duncan Sands8e4eb092008-06-08 20:54:56 +00002955 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002956 VT = LVT;
2957 }
Dan Gohman707e0182008-04-12 04:36:06 +00002958
2959 unsigned NumMemOps = 0;
2960 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002961 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002962 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002963 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002964 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002965 VT = MVT::i64;
2966 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2968 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002969 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002970 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002971 VTSize >>= 1;
2972 }
Dan Gohman707e0182008-04-12 04:36:06 +00002973 }
Dan Gohman707e0182008-04-12 04:36:06 +00002974
2975 if (++NumMemOps > Limit)
2976 return false;
2977 MemOps.push_back(VT);
2978 Size -= VTSize;
2979 }
2980
2981 return true;
2982}
2983
Dan Gohman475871a2008-07-27 21:46:04 +00002984static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2985 SDValue Chain, SDValue Dst,
2986 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002987 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002988 const Value *DstSV, uint64_t DstSVOff,
2989 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002990 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2991
Dan Gohman21323f32008-05-29 19:42:22 +00002992 // Expand memcpy to a series of load and store ops if the size operand falls
2993 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002994 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002995 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002996 if (!AlwaysInline)
2997 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002998 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002999 std::string Str;
3000 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003001 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003002 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003003 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003004
Dan Gohman707e0182008-04-12 04:36:06 +00003005
Evan Cheng0ff39b32008-06-30 07:31:25 +00003006 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00003007 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00003008 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00003009 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003010 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003011 MVT VT = MemOps[i];
3012 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003013 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00003014
Evan Cheng0ff39b32008-06-30 07:31:25 +00003015 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00003016 // It's unlikely a store of a vector immediate can be done in a single
3017 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003018 // We also handle store a vector with all zero's.
3019 // FIXME: Handle other cases where store of vector immediate is done in
3020 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00003021 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00003022 Store = DAG.getStore(Chain, Value,
3023 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00003024 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00003025 } else {
3026 Value = DAG.getLoad(VT, Chain,
3027 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003028 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00003029 Store = DAG.getStore(Chain, Value,
3030 getMemBasePlusOffset(Dst, DstOff, DAG),
3031 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00003032 }
3033 OutChains.push_back(Store);
3034 SrcOff += VTSize;
3035 DstOff += VTSize;
3036 }
3037
3038 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3039 &OutChains[0], OutChains.size());
3040}
3041
Dan Gohman475871a2008-07-27 21:46:04 +00003042static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
3043 SDValue Chain, SDValue Dst,
3044 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00003045 unsigned Align, bool AlwaysInline,
3046 const Value *DstSV, uint64_t DstSVOff,
3047 const Value *SrcSV, uint64_t SrcSVOff){
3048 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3049
3050 // Expand memmove to a series of load and store ops if the size operand falls
3051 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003052 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00003053 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00003054 if (!AlwaysInline)
3055 Limit = TLI.getMaxStoresPerMemmove();
3056 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003057 std::string Str;
3058 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00003059 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003060 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003061 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003062
Dan Gohman21323f32008-05-29 19:42:22 +00003063 uint64_t SrcOff = 0, DstOff = 0;
3064
Dan Gohman475871a2008-07-27 21:46:04 +00003065 SmallVector<SDValue, 8> LoadValues;
3066 SmallVector<SDValue, 8> LoadChains;
3067 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003068 unsigned NumMemOps = MemOps.size();
3069 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003070 MVT VT = MemOps[i];
3071 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003072 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003073
3074 Value = DAG.getLoad(VT, Chain,
3075 getMemBasePlusOffset(Src, SrcOff, DAG),
3076 SrcSV, SrcSVOff + SrcOff, false, Align);
3077 LoadValues.push_back(Value);
3078 LoadChains.push_back(Value.getValue(1));
3079 SrcOff += VTSize;
3080 }
3081 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3082 &LoadChains[0], LoadChains.size());
3083 OutChains.clear();
3084 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003085 MVT VT = MemOps[i];
3086 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003087 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003088
3089 Store = DAG.getStore(Chain, LoadValues[i],
3090 getMemBasePlusOffset(Dst, DstOff, DAG),
3091 DstSV, DstSVOff + DstOff, false, DstAlign);
3092 OutChains.push_back(Store);
3093 DstOff += VTSize;
3094 }
3095
3096 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3097 &OutChains[0], OutChains.size());
3098}
3099
Dan Gohman475871a2008-07-27 21:46:04 +00003100static SDValue getMemsetStores(SelectionDAG &DAG,
3101 SDValue Chain, SDValue Dst,
3102 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003103 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003104 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003105 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3106
3107 // Expand memset to a series of load/store ops if the size operand
3108 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003109 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003110 std::string Str;
3111 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003112 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003113 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003114 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003115
Dan Gohman475871a2008-07-27 21:46:04 +00003116 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003117 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003118
3119 unsigned NumMemOps = MemOps.size();
3120 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003121 MVT VT = MemOps[i];
3122 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003123 SDValue Value = getMemsetValue(Src, VT, DAG);
3124 SDValue Store = DAG.getStore(Chain, Value,
Chris Lattner7fe5e182008-10-28 07:10:51 +00003125 getMemBasePlusOffset(Dst, DstOff, DAG),
3126 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003127 OutChains.push_back(Store);
3128 DstOff += VTSize;
3129 }
3130
3131 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3132 &OutChains[0], OutChains.size());
3133}
3134
Dan Gohman475871a2008-07-27 21:46:04 +00003135SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3136 SDValue Src, SDValue Size,
3137 unsigned Align, bool AlwaysInline,
3138 const Value *DstSV, uint64_t DstSVOff,
3139 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003140
3141 // Check to see if we should lower the memcpy to loads and stores first.
3142 // For cases within the target-specified limits, this is the best choice.
3143 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3144 if (ConstantSize) {
3145 // Memcpy with size zero? Just return the original chain.
3146 if (ConstantSize->isNullValue())
3147 return Chain;
3148
Dan Gohman475871a2008-07-27 21:46:04 +00003149 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003150 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3151 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003152 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003153 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003154 return Result;
3155 }
3156
3157 // Then check to see if we should lower the memcpy with target-specific
3158 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003159 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003160 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3161 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003162 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003163 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003164 return Result;
3165
3166 // If we really need inline code and the target declined to provide it,
3167 // use a (potentially long) sequence of loads and stores.
3168 if (AlwaysInline) {
3169 assert(ConstantSize && "AlwaysInline requires a constant size!");
3170 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003171 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003172 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003173 }
3174
3175 // Emit a library call.
3176 TargetLowering::ArgListTy Args;
3177 TargetLowering::ArgListEntry Entry;
3178 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3179 Entry.Node = Dst; Args.push_back(Entry);
3180 Entry.Node = Src; Args.push_back(Entry);
3181 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003182 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003183 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003184 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003185 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003186 Args, *this);
3187 return CallResult.second;
3188}
3189
Dan Gohman475871a2008-07-27 21:46:04 +00003190SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3191 SDValue Src, SDValue Size,
3192 unsigned Align,
3193 const Value *DstSV, uint64_t DstSVOff,
3194 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003195
Dan Gohman21323f32008-05-29 19:42:22 +00003196 // Check to see if we should lower the memmove to loads and 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 // Memmove 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 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3206 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003207 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003208 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003209 return Result;
3210 }
Dan Gohman707e0182008-04-12 04:36:06 +00003211
3212 // Then check to see if we should lower the memmove with target-specific
3213 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003214 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003215 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003216 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003217 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003218 return Result;
3219
3220 // Emit a library call.
3221 TargetLowering::ArgListTy Args;
3222 TargetLowering::ArgListEntry Entry;
3223 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3224 Entry.Node = Dst; Args.push_back(Entry);
3225 Entry.Node = Src; Args.push_back(Entry);
3226 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003227 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003228 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003229 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003230 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003231 Args, *this);
3232 return CallResult.second;
3233}
3234
Dan Gohman475871a2008-07-27 21:46:04 +00003235SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3236 SDValue Src, SDValue Size,
3237 unsigned Align,
3238 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003239
3240 // Check to see if we should lower the memset to stores first.
3241 // For cases within the target-specified limits, this is the best choice.
3242 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3243 if (ConstantSize) {
3244 // Memset with size zero? Just return the original chain.
3245 if (ConstantSize->isNullValue())
3246 return Chain;
3247
Dan Gohman475871a2008-07-27 21:46:04 +00003248 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003249 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3250 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003251 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003252 return Result;
3253 }
3254
3255 // Then check to see if we should lower the memset with target-specific
3256 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003257 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003258 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003259 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003260 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003261 return Result;
3262
3263 // Emit a library call.
3264 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3265 TargetLowering::ArgListTy Args;
3266 TargetLowering::ArgListEntry Entry;
3267 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3268 Args.push_back(Entry);
3269 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003270 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003271 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3272 else
3273 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3274 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3275 Args.push_back(Entry);
3276 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3277 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003278 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003279 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003280 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003281 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003282 Args, *this);
3283 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003284}
3285
Dan Gohman475871a2008-07-27 21:46:04 +00003286SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3287 SDValue Ptr, SDValue Cmp,
3288 SDValue Swp, const Value* PtrVal,
3289 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003290 assert((Opcode == ISD::ATOMIC_CMP_SWAP_8 ||
3291 Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3292 Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3293 Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003294 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003295
3296 MVT VT = Cmp.getValueType();
3297
3298 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3299 Alignment = getMVTAlignment(VT);
3300
3301 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003302 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003303 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003304 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003305 void* IP = 0;
3306 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003307 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003308 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003309 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003310 CSEMap.InsertNode(N, IP);
3311 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003312 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003313}
3314
Dan Gohman475871a2008-07-27 21:46:04 +00003315SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3316 SDValue Ptr, SDValue Val,
3317 const Value* PtrVal,
3318 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003319 assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3320 Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3321 Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3322 Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3323 Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3324 Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3325 Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3326 Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3327 Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3328 Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3329 Opcode == ISD::ATOMIC_SWAP_8 ||
3330 Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3331 Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3332 Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3333 Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3334 Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3335 Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3336 Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3337 Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3338 Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3339 Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3340 Opcode == ISD::ATOMIC_SWAP_16 ||
3341 Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3342 Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3343 Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3344 Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3345 Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3346 Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3347 Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3348 Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3349 Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3350 Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3351 Opcode == ISD::ATOMIC_SWAP_32 ||
3352 Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3353 Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3354 Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3355 Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3356 Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3357 Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3358 Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3359 Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3360 Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3361 Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3362 Opcode == ISD::ATOMIC_SWAP_64) && "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003363
3364 MVT VT = Val.getValueType();
3365
3366 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3367 Alignment = getMVTAlignment(VT);
3368
3369 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003370 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003371 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003372 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003373 void* IP = 0;
3374 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003375 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003376 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003377 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003378 CSEMap.InsertNode(N, IP);
3379 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003380 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003381}
3382
Duncan Sands4bdcb612008-07-02 17:40:58 +00003383/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3384/// Allowed to return something different (and simpler) if Simplify is true.
Duncan Sandsaaffa052008-12-01 11:41:29 +00003385SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps) {
3386 if (NumOps == 1)
Duncan Sands4bdcb612008-07-02 17:40:58 +00003387 return Ops[0];
3388
3389 SmallVector<MVT, 4> VTs;
3390 VTs.reserve(NumOps);
3391 for (unsigned i = 0; i < NumOps; ++i)
3392 VTs.push_back(Ops[i].getValueType());
3393 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3394}
3395
Dan Gohman475871a2008-07-27 21:46:04 +00003396SDValue
Mon P Wangc4d10212008-10-17 18:22:58 +00003397SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3398 const MVT *VTs, unsigned NumVTs,
3399 const SDValue *Ops, unsigned NumOps,
3400 MVT MemVT, const Value *srcValue, int SVOff,
3401 unsigned Align, bool Vol,
3402 bool ReadMem, bool WriteMem) {
3403 return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3404 MemVT, srcValue, SVOff, Align, Vol,
3405 ReadMem, WriteMem);
3406}
3407
3408SDValue
3409SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3410 const SDValue *Ops, unsigned NumOps,
3411 MVT MemVT, const Value *srcValue, int SVOff,
3412 unsigned Align, bool Vol,
3413 bool ReadMem, bool WriteMem) {
3414 // Memoize the node unless it returns a flag.
3415 MemIntrinsicSDNode *N;
3416 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3417 FoldingSetNodeID ID;
3418 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3419 void *IP = 0;
3420 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3421 return SDValue(E, 0);
3422
3423 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3424 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3425 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3426 CSEMap.InsertNode(N, IP);
3427 } else {
3428 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3429 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3430 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3431 }
3432 AllNodes.push_back(N);
3433 return SDValue(N, 0);
3434}
3435
3436SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003437SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003438 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003439 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003440 // Do not include isTailCall in the folding set profile.
3441 FoldingSetNodeID ID;
3442 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3443 ID.AddInteger(CallingConv);
3444 ID.AddInteger(IsVarArgs);
3445 void *IP = 0;
3446 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3447 // Instead of including isTailCall in the folding set, we just
3448 // set the flag of the existing node.
3449 if (!IsTailCall)
3450 cast<CallSDNode>(E)->setNotTailCall();
3451 return SDValue(E, 0);
3452 }
Dan Gohman095cc292008-09-13 01:54:27 +00003453 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003454 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003455 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003456 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003457 AllNodes.push_back(N);
3458 return SDValue(N, 0);
3459}
3460
3461SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003462SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003463 MVT VT, SDValue Chain,
3464 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003465 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003466 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003467 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3468 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003469
Duncan Sands14ea39c2008-03-27 20:23:40 +00003470 if (VT == EVT) {
3471 ExtType = ISD::NON_EXTLOAD;
3472 } else if (ExtType == ISD::NON_EXTLOAD) {
3473 assert(VT == EVT && "Non-extending load from different memory type!");
3474 } else {
3475 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003476 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003477 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3478 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003479 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003480 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003481 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003482 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003483 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003484 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003485 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003486 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003487
3488 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003489 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003490 "Unindexed load with an offset!");
3491
3492 SDVTList VTs = Indexed ?
3493 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003494 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003495 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003496 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003497 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003498 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003499 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003500 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003501 void *IP = 0;
3502 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003503 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003504 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003505 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3506 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003507 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003508 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003509 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003510}
3511
Dan Gohman475871a2008-07-27 21:46:04 +00003512SDValue SelectionDAG::getLoad(MVT VT,
3513 SDValue Chain, SDValue Ptr,
3514 const Value *SV, int SVOffset,
3515 bool isVolatile, unsigned Alignment) {
3516 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003517 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3518 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003519}
3520
Dan Gohman475871a2008-07-27 21:46:04 +00003521SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3522 SDValue Chain, SDValue Ptr,
3523 const Value *SV,
3524 int SVOffset, MVT EVT,
3525 bool isVolatile, unsigned Alignment) {
3526 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003527 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3528 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003529}
3530
Dan Gohman475871a2008-07-27 21:46:04 +00003531SDValue
3532SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3533 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003534 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003535 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3536 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003537 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3538 LD->getChain(), Base, Offset, LD->getSrcValue(),
3539 LD->getSrcValueOffset(), LD->getMemoryVT(),
3540 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003541}
3542
Dan Gohman475871a2008-07-27 21:46:04 +00003543SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3544 SDValue Ptr, const Value *SV, int SVOffset,
3545 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003546 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003547
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003548 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3549 Alignment = getMVTAlignment(VT);
3550
Evan Chengad071e12006-10-05 22:57:11 +00003551 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003552 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3553 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003554 FoldingSetNodeID ID;
3555 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003556 ID.AddInteger(ISD::UNINDEXED);
3557 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003558 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003559 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003560 void *IP = 0;
3561 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003562 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003563 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003564 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3565 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003566 CSEMap.InsertNode(N, IP);
3567 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003568 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003569}
3570
Dan Gohman475871a2008-07-27 21:46:04 +00003571SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3572 SDValue Ptr, const Value *SV,
3573 int SVOffset, MVT SVT,
3574 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003575 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003576
3577 if (VT == SVT)
3578 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003579
Duncan Sands8e4eb092008-06-08 20:54:56 +00003580 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003581 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003582 "Can't do FP-INT conversion!");
3583
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003584 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3585 Alignment = getMVTAlignment(VT);
3586
Evan Cheng8b2794a2006-10-13 21:14:26 +00003587 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003588 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3589 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003590 FoldingSetNodeID ID;
3591 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003592 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003593 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003594 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003595 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003596 void *IP = 0;
3597 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003598 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003599 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003600 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3601 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003602 CSEMap.InsertNode(N, IP);
3603 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003604 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003605}
3606
Dan Gohman475871a2008-07-27 21:46:04 +00003607SDValue
3608SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3609 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003610 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3611 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3612 "Store is already a indexed store!");
3613 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003614 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003615 FoldingSetNodeID ID;
3616 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3617 ID.AddInteger(AM);
3618 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003619 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003620 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003621 void *IP = 0;
3622 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003623 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003624 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003625 new (N) StoreSDNode(Ops, VTs, AM,
3626 ST->isTruncatingStore(), ST->getMemoryVT(),
3627 ST->getSrcValue(), ST->getSrcValueOffset(),
3628 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003629 CSEMap.InsertNode(N, IP);
3630 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003631 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003632}
3633
Dan Gohman475871a2008-07-27 21:46:04 +00003634SDValue SelectionDAG::getVAArg(MVT VT,
3635 SDValue Chain, SDValue Ptr,
3636 SDValue SV) {
3637 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003638 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003639}
3640
Dan Gohman475871a2008-07-27 21:46:04 +00003641SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3642 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003643 switch (NumOps) {
3644 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003645 case 1: return getNode(Opcode, VT, Ops[0]);
3646 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3647 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003648 default: break;
3649 }
3650
Dan Gohman475871a2008-07-27 21:46:04 +00003651 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003652 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003653 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3654 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003655}
3656
Dan Gohman475871a2008-07-27 21:46:04 +00003657SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3658 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003659 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003660 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003661 case 1: return getNode(Opcode, VT, Ops[0]);
3662 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3663 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003664 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003665 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003666
Chris Lattneref847df2005-04-09 03:27:28 +00003667 switch (Opcode) {
3668 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003669 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003670 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003671 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3672 "LHS and RHS of condition must have same type!");
3673 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3674 "True and False arms of SelectCC must have same type!");
3675 assert(Ops[2].getValueType() == VT &&
3676 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003677 break;
3678 }
3679 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003680 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003681 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3682 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003683 break;
3684 }
Chris Lattneref847df2005-04-09 03:27:28 +00003685 }
3686
Chris Lattner385328c2005-05-14 07:42:29 +00003687 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003688 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003689 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003690 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003691 FoldingSetNodeID ID;
3692 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003693 void *IP = 0;
3694 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003695 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003696 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003697 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003698 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003699 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003700 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003701 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003702 }
Chris Lattneref847df2005-04-09 03:27:28 +00003703 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003704#ifndef NDEBUG
3705 VerifyNode(N);
3706#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003707 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003708}
3709
Dan Gohman475871a2008-07-27 21:46:04 +00003710SDValue SelectionDAG::getNode(unsigned Opcode,
3711 const std::vector<MVT> &ResultTys,
3712 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003713 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3714 Ops, NumOps);
3715}
3716
Dan Gohman475871a2008-07-27 21:46:04 +00003717SDValue SelectionDAG::getNode(unsigned Opcode,
3718 const MVT *VTs, unsigned NumVTs,
3719 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003720 if (NumVTs == 1)
3721 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003722 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3723}
3724
Dan Gohman475871a2008-07-27 21:46:04 +00003725SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3726 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003727 if (VTList.NumVTs == 1)
3728 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003729
Chris Lattner5f056bf2005-07-10 01:55:33 +00003730 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003731 // FIXME: figure out how to safely handle things like
3732 // int foo(int x) { return 1 << (x & 255); }
3733 // int bar() { return foo(256); }
3734#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003735 case ISD::SRA_PARTS:
3736 case ISD::SRL_PARTS:
3737 case ISD::SHL_PARTS:
3738 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003739 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003740 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3741 else if (N3.getOpcode() == ISD::AND)
3742 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3743 // If the and is only masking out bits that cannot effect the shift,
3744 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003745 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003746 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3747 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3748 }
3749 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003750#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003751 }
Chris Lattner89c34632005-05-14 06:20:26 +00003752
Chris Lattner43247a12005-08-25 19:12:10 +00003753 // Memoize the node unless it returns a flag.
3754 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003755 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003756 FoldingSetNodeID ID;
3757 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003758 void *IP = 0;
3759 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003760 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003761 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003762 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003763 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3764 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003765 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003766 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3767 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003768 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003769 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3770 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003771 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003772 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3773 }
Chris Lattnera5682852006-08-07 23:03:03 +00003774 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003775 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003776 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003777 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003778 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3779 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003780 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003781 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3782 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003783 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003784 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3785 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003786 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003787 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3788 }
Chris Lattner43247a12005-08-25 19:12:10 +00003789 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003790 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003791#ifndef NDEBUG
3792 VerifyNode(N);
3793#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003794 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003795}
3796
Dan Gohman475871a2008-07-27 21:46:04 +00003797SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003798 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003799}
3800
Dan Gohman475871a2008-07-27 21:46:04 +00003801SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3802 SDValue N1) {
3803 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003804 return getNode(Opcode, VTList, Ops, 1);
3805}
3806
Dan Gohman475871a2008-07-27 21:46:04 +00003807SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3808 SDValue N1, SDValue N2) {
3809 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003810 return getNode(Opcode, VTList, Ops, 2);
3811}
3812
Dan Gohman475871a2008-07-27 21:46:04 +00003813SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3814 SDValue N1, SDValue N2, SDValue N3) {
3815 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003816 return getNode(Opcode, VTList, Ops, 3);
3817}
3818
Dan Gohman475871a2008-07-27 21:46:04 +00003819SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3820 SDValue N1, SDValue N2, SDValue N3,
3821 SDValue N4) {
3822 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003823 return getNode(Opcode, VTList, Ops, 4);
3824}
3825
Dan Gohman475871a2008-07-27 21:46:04 +00003826SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3827 SDValue N1, SDValue N2, SDValue N3,
3828 SDValue N4, SDValue N5) {
3829 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003830 return getNode(Opcode, VTList, Ops, 5);
3831}
3832
Duncan Sands83ec4b62008-06-06 12:08:01 +00003833SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003834 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003835}
3836
Duncan Sands83ec4b62008-06-06 12:08:01 +00003837SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003838 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3839 E = VTList.rend(); I != E; ++I)
3840 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3841 return *I;
3842
3843 MVT *Array = Allocator.Allocate<MVT>(2);
3844 Array[0] = VT1;
3845 Array[1] = VT2;
3846 SDVTList Result = makeVTList(Array, 2);
3847 VTList.push_back(Result);
3848 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003849}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003850
3851SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3852 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3853 E = VTList.rend(); I != E; ++I)
3854 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3855 I->VTs[2] == VT3)
3856 return *I;
3857
3858 MVT *Array = Allocator.Allocate<MVT>(3);
3859 Array[0] = VT1;
3860 Array[1] = VT2;
3861 Array[2] = VT3;
3862 SDVTList Result = makeVTList(Array, 3);
3863 VTList.push_back(Result);
3864 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003865}
3866
Bill Wendling13d6d442008-12-01 23:28:22 +00003867SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3, MVT VT4) {
3868 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3869 E = VTList.rend(); I != E; ++I)
3870 if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3871 I->VTs[2] == VT3 && I->VTs[3] == VT4)
3872 return *I;
3873
3874 MVT *Array = Allocator.Allocate<MVT>(3);
3875 Array[0] = VT1;
3876 Array[1] = VT2;
3877 Array[2] = VT3;
3878 Array[3] = VT4;
3879 SDVTList Result = makeVTList(Array, 4);
3880 VTList.push_back(Result);
3881 return Result;
3882}
3883
Duncan Sands83ec4b62008-06-06 12:08:01 +00003884SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003885 switch (NumVTs) {
3886 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003887 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003888 case 2: return getVTList(VTs[0], VTs[1]);
3889 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3890 default: break;
3891 }
3892
Dan Gohmane8be6c62008-07-17 19:10:17 +00003893 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3894 E = VTList.rend(); I != E; ++I) {
3895 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3896 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003897
3898 bool NoMatch = false;
3899 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003900 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003901 NoMatch = true;
3902 break;
3903 }
3904 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003905 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003906 }
3907
Dan Gohmane8be6c62008-07-17 19:10:17 +00003908 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3909 std::copy(VTs, VTs+NumVTs, Array);
3910 SDVTList Result = makeVTList(Array, NumVTs);
3911 VTList.push_back(Result);
3912 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003913}
3914
3915
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003916/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3917/// specified operands. If the resultant node already exists in the DAG,
3918/// this does not modify the specified node, instead it returns the node that
3919/// already exists. If the resultant node does not exist in the DAG, the
3920/// input node is returned. As a degenerate case, if you specify the same
3921/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003922SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003923 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003924 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3925
3926 // Check to see if there is no change.
3927 if (Op == N->getOperand(0)) return InN;
3928
3929 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003930 void *InsertPos = 0;
3931 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003932 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003933
Dan Gohman79acd2b2008-07-21 22:38:59 +00003934 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003935 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003936 if (!RemoveNodeFromCSEMaps(N))
3937 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003938
3939 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003940 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003941 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003942 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003943 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003944
3945 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003946 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003947 return InN;
3948}
3949
Dan Gohman475871a2008-07-27 21:46:04 +00003950SDValue SelectionDAG::
3951UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003952 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003953 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3954
3955 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003956 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3957 return InN; // No operands changed, just return the input node.
3958
3959 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003960 void *InsertPos = 0;
3961 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003962 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003963
Dan Gohman79acd2b2008-07-21 22:38:59 +00003964 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003965 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003966 if (!RemoveNodeFromCSEMaps(N))
3967 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003968
3969 // Now we update the operands.
3970 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003971 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003972 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003973 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003974 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003975 }
3976 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003977 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003978 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003979 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003980 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003981 }
3982
3983 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003984 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003985 return InN;
3986}
3987
Dan Gohman475871a2008-07-27 21:46:04 +00003988SDValue SelectionDAG::
3989UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3990 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003991 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003992}
3993
Dan Gohman475871a2008-07-27 21:46:04 +00003994SDValue SelectionDAG::
3995UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3996 SDValue Op3, SDValue Op4) {
3997 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003998 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003999}
4000
Dan Gohman475871a2008-07-27 21:46:04 +00004001SDValue SelectionDAG::
4002UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
4003 SDValue Op3, SDValue Op4, SDValue Op5) {
4004 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004005 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00004006}
4007
Dan Gohman475871a2008-07-27 21:46:04 +00004008SDValue SelectionDAG::
4009UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004010 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004011 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004012 "Update with wrong number of operands");
4013
4014 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004015 bool AnyChange = false;
4016 for (unsigned i = 0; i != NumOps; ++i) {
4017 if (Ops[i] != N->getOperand(i)) {
4018 AnyChange = true;
4019 break;
4020 }
4021 }
4022
4023 // No operands changed, just return the input node.
4024 if (!AnyChange) return InN;
4025
4026 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00004027 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004028 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00004029 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004030
Dan Gohman7ceda162008-05-02 00:05:03 +00004031 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00004032 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00004033 if (!RemoveNodeFromCSEMaps(N))
4034 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004035
4036 // Now we update the operands.
4037 for (unsigned i = 0; i != NumOps; ++i) {
4038 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00004039 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004040 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004041 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00004042 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004043 }
4044 }
4045
4046 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00004047 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004048 return InN;
4049}
4050
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004051/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00004052/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004053void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004054 // Unlike the code in MorphNodeTo that does this, we don't need to
4055 // watch for dead nodes here.
4056 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
4057 I->getVal()->removeUser(std::distance(op_begin(), I), this);
4058
4059 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00004060}
Chris Lattner149c58c2005-08-16 18:17:10 +00004061
Dan Gohmane8be6c62008-07-17 19:10:17 +00004062/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4063/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004064///
Dan Gohmane8be6c62008-07-17 19:10:17 +00004065SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004066 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004067 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004068 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00004069}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004070
Dan Gohmane8be6c62008-07-17 19:10:17 +00004071SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004072 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004073 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004074 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004075 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00004076}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004077
Dan Gohmane8be6c62008-07-17 19:10:17 +00004078SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004079 MVT VT, SDValue Op1,
4080 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004081 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004082 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004083 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00004084}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004085
Dan Gohmane8be6c62008-07-17 19:10:17 +00004086SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004087 MVT VT, SDValue Op1,
4088 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004089 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004090 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004091 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00004092}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00004093
Dan Gohmane8be6c62008-07-17 19:10:17 +00004094SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004095 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00004096 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004097 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004098 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004099}
4100
Dan Gohmane8be6c62008-07-17 19:10:17 +00004101SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004102 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004103 unsigned NumOps) {
4104 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004105 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004106}
4107
Dan Gohmane8be6c62008-07-17 19:10:17 +00004108SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004109 MVT VT1, MVT VT2) {
4110 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004111 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00004112}
4113
Dan Gohmane8be6c62008-07-17 19:10:17 +00004114SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004115 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004116 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004117 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004118 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004119}
4120
Bill Wendling13d6d442008-12-01 23:28:22 +00004121SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4122 MVT VT1, MVT VT2, MVT VT3, MVT VT4,
4123 const SDValue *Ops, unsigned NumOps) {
4124 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
4125 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4126}
4127
Dan Gohmane8be6c62008-07-17 19:10:17 +00004128SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004129 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004131 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004132 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004133 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004134}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004135
Dan Gohmane8be6c62008-07-17 19:10:17 +00004136SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004137 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004138 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004139 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004140 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004141 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004142}
4143
Dan Gohmane8be6c62008-07-17 19:10:17 +00004144SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004145 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004146 SDValue Op1, SDValue Op2,
4147 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004148 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004149 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004150 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004151}
4152
Dan Gohmane8be6c62008-07-17 19:10:17 +00004153SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Bill Wendling13d6d442008-12-01 23:28:22 +00004154 MVT VT1, MVT VT2, MVT VT3,
4155 SDValue Op1, SDValue Op2,
4156 SDValue Op3) {
4157 SDVTList VTs = getVTList(VT1, VT2, VT3);
4158 SDValue Ops[] = { Op1, Op2, Op3 };
4159 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4160}
4161
4162SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004163 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004164 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004165 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4166}
4167
4168SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4169 MVT VT) {
4170 SDVTList VTs = getVTList(VT);
4171 return MorphNodeTo(N, Opc, VTs, 0, 0);
4172}
4173
4174SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004175 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004176 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004177 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004178 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4179}
4180
4181SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004182 MVT VT, SDValue Op1,
4183 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004184 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004185 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004186 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4187}
4188
4189SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004190 MVT VT, SDValue Op1,
4191 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004192 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004193 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004194 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4195}
4196
4197SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004198 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004199 unsigned NumOps) {
4200 SDVTList VTs = getVTList(VT);
4201 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4202}
4203
4204SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004205 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004206 unsigned NumOps) {
4207 SDVTList VTs = getVTList(VT1, VT2);
4208 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4209}
4210
4211SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4212 MVT VT1, MVT VT2) {
4213 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004214 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004215}
4216
4217SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4218 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004219 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004220 SDVTList VTs = getVTList(VT1, VT2, VT3);
4221 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4222}
4223
4224SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4225 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004226 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004227 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004228 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004229 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4230}
4231
4232SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4233 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004234 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004235 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004236 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004237 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4238}
4239
4240SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4241 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004242 SDValue Op1, SDValue Op2,
4243 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004244 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004245 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004246 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4247}
4248
4249/// MorphNodeTo - These *mutate* the specified node to have the specified
4250/// return type, opcode, and operands.
4251///
4252/// Note that MorphNodeTo returns the resultant node. If there is already a
4253/// node of the specified opcode and operands, it returns that node instead of
4254/// the current one.
4255///
4256/// Using MorphNodeTo is faster than creating a new node and swapping it in
4257/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004258/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004259/// the node's users.
4260///
4261SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004262 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004263 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004264 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004265 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004266 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4267 FoldingSetNodeID ID;
4268 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4269 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4270 return ON;
4271 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004272
Dan Gohman095cc292008-09-13 01:54:27 +00004273 if (!RemoveNodeFromCSEMaps(N))
4274 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004275
Dan Gohmane8be6c62008-07-17 19:10:17 +00004276 // Start the morphing.
4277 N->NodeType = Opc;
4278 N->ValueList = VTs.VTs;
4279 N->NumValues = VTs.NumVTs;
4280
4281 // Clear the operands list, updating used nodes to remove this from their
4282 // use list. Keep track of any operands that become dead as a result.
4283 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4284 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4285 I != E; ++I) {
4286 SDNode *Used = I->getVal();
4287 Used->removeUser(std::distance(B, I), N);
4288 if (Used->use_empty())
4289 DeadNodeSet.insert(Used);
4290 }
4291
4292 // If NumOps is larger than the # of operands we currently have, reallocate
4293 // the operand list.
4294 if (NumOps > N->NumOperands) {
4295 if (N->OperandsNeedDelete)
4296 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +00004297
Dan Gohmane8be6c62008-07-17 19:10:17 +00004298 if (N->isMachineOpcode()) {
4299 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004300 // remainder of the current SelectionDAG iteration, so we can allocate
4301 // the operands directly out of a pool with no recycling metadata.
4302 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004303 N->OperandsNeedDelete = false;
4304 } else {
4305 N->OperandList = new SDUse[NumOps];
4306 N->OperandsNeedDelete = true;
4307 }
4308 }
4309
4310 // Assign the new operands.
4311 N->NumOperands = NumOps;
4312 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4313 N->OperandList[i] = Ops[i];
4314 N->OperandList[i].setUser(N);
4315 SDNode *ToUse = N->OperandList[i].getVal();
4316 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004317 }
4318
4319 // Delete any nodes that are still dead after adding the uses for the
4320 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004321 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004322 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4323 E = DeadNodeSet.end(); I != E; ++I)
4324 if ((*I)->use_empty())
4325 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004326 RemoveDeadNodes(DeadNodes);
4327
Dan Gohmane8be6c62008-07-17 19:10:17 +00004328 if (IP)
4329 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004330 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004331}
4332
Chris Lattner0fb094f2005-11-19 01:44:53 +00004333
Evan Cheng6ae46c42006-02-09 07:15:23 +00004334/// getTargetNode - These are used for target selectors to create a new node
4335/// with specified return type(s), target opcode, and operands.
4336///
4337/// Note that getTargetNode returns the resultant node. If there is already a
4338/// node of the specified opcode and operands, it returns that node instead of
4339/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004340SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004341 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004342}
Dan Gohman475871a2008-07-27 21:46:04 +00004343SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004344 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004345}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004346SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004347 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004348 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004349}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004350SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004351 SDValue Op1, SDValue Op2,
4352 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004353 return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004354}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004355SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004356 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004357 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004358}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004359SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4360 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004361 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004362 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004363}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004364SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004365 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004366 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004367 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004368}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004369SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004370 MVT VT2, SDValue Op1,
4371 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004372 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004373 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004374 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004375}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004376SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004377 MVT VT2, SDValue Op1,
4378 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004379 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004380 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004381 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004382}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004383SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004384 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004385 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004386 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004387}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004388SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004389 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004390 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004391 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004392 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004393}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004394SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004395 SDValue Op1, SDValue Op2,
4396 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004397 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004398 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004399 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004400}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004401SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004402 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004403 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004404 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004405}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004406SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4407 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004408 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004409 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004410 VTList.push_back(VT1);
4411 VTList.push_back(VT2);
4412 VTList.push_back(VT3);
4413 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004414 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004415 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004416}
Evan Cheng39305cf2007-10-05 01:10:49 +00004417SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004418 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004419 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004420 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004421 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004422 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004423}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004424
Evan Cheng08b11732008-03-22 01:55:50 +00004425/// getNodeIfExists - Get the specified node if it's already available, or
4426/// else return NULL.
4427SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004428 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004429 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4430 FoldingSetNodeID ID;
4431 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4432 void *IP = 0;
4433 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4434 return E;
4435 }
4436 return NULL;
4437}
4438
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004439
Evan Cheng99157a02006-08-07 22:13:29 +00004440/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004441/// This can cause recursive merging of nodes in the DAG.
4442///
Chris Lattner11d049c2008-02-03 03:35:22 +00004443/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004444///
Dan Gohman475871a2008-07-27 21:46:04 +00004445void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004446 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004447 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004448 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004449 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004450 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004451
Chris Lattner8b8749f2005-08-17 19:00:20 +00004452 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004453 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004454 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004455
Chris Lattner8b8749f2005-08-17 19:00:20 +00004456 // This node is about to morph, remove its old self from the CSE maps.
4457 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004458 int operandNum = 0;
4459 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4460 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004461 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004462 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004463 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004464 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004465 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004466 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004467
4468 // Now that we have modified U, add it back to the CSE maps. If it already
4469 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004470 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004471 ReplaceAllUsesWith(U, Existing, UpdateListener);
4472 // U is now dead. Inform the listener if it exists and delete it.
4473 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004474 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004475 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004476 } else {
4477 // If the node doesn't already exist, we updated it. Inform a listener if
4478 // it exists.
4479 if (UpdateListener)
4480 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004481 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004482 }
4483}
4484
4485/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4486/// This can cause recursive merging of nodes in the DAG.
4487///
4488/// This version assumes From/To have matching types and numbers of result
4489/// values.
4490///
Chris Lattner1e111c72005-09-07 05:37:01 +00004491void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004492 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004493 assert(From->getVTList().VTs == To->getVTList().VTs &&
4494 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004495 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004496
4497 // Handle the trivial case.
4498 if (From == To)
4499 return;
4500
Chris Lattner8b52f212005-08-26 18:36:28 +00004501 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004502 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004503 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004504
Chris Lattner8b52f212005-08-26 18:36:28 +00004505 // This node is about to morph, remove its old self from the CSE maps.
4506 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004507 int operandNum = 0;
4508 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4509 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004510 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004511 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004512 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004513 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004514 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004515
Chris Lattner8b8749f2005-08-17 19:00:20 +00004516 // Now that we have modified U, add it back to the CSE maps. If it already
4517 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004518 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004519 ReplaceAllUsesWith(U, Existing, UpdateListener);
4520 // U is now dead. Inform the listener if it exists and delete it.
4521 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004522 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004523 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004524 } else {
4525 // If the node doesn't already exist, we updated it. Inform a listener if
4526 // it exists.
4527 if (UpdateListener)
4528 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004529 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004530 }
4531}
4532
Chris Lattner8b52f212005-08-26 18:36:28 +00004533/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4534/// This can cause recursive merging of nodes in the DAG.
4535///
4536/// This version can replace From with any result values. To must match the
4537/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004538void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004539 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004540 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004541 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004542 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004543
4544 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004545 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004546 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004547
Chris Lattner7b2880c2005-08-24 22:44:39 +00004548 // This node is about to morph, remove its old self from the CSE maps.
4549 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004550 int operandNum = 0;
4551 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4552 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004553 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004554 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004555 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004556 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004557 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004558 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004559 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004560
Chris Lattner7b2880c2005-08-24 22:44:39 +00004561 // Now that we have modified U, add it back to the CSE maps. If it already
4562 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004563 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004564 ReplaceAllUsesWith(U, Existing, UpdateListener);
4565 // U is now dead. Inform the listener if it exists and delete it.
4566 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004567 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004568 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004569 } else {
4570 // If the node doesn't already exist, we updated it. Inform a listener if
4571 // it exists.
4572 if (UpdateListener)
4573 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004574 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004575 }
4576}
4577
Chris Lattner012f2412006-02-17 21:58:01 +00004578/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004579/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004580/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004581void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004582 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004583 // Handle the really simple, really trivial case efficiently.
4584 if (From == To) return;
4585
Chris Lattner012f2412006-02-17 21:58:01 +00004586 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004587 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004588 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004589 return;
4590 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004591
Gabor Greifba36cb52008-08-28 21:40:38 +00004592 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004593 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004594 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004595
4596 while (!Users.empty()) {
4597 // We know that this user uses some value of From. If it is the right
4598 // value, update it.
4599 SDNode *User = Users.back();
4600 Users.pop_back();
4601
Chris Lattner01d029b2007-10-15 06:10:22 +00004602 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004603 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004604 for (; Op != E; ++Op)
4605 if (*Op == From) break;
4606
4607 // If there are no matches, the user must use some other result of From.
4608 if (Op == E) continue;
4609
4610 // Okay, we know this user needs to be updated. Remove its old self
4611 // from the CSE maps.
4612 RemoveNodeFromCSEMaps(User);
4613
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004614 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004615 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004616 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004617 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004618 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004619 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004620 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004621 }
4622 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004623
4624 // Now that we have modified User, add it back to the CSE maps. If it
4625 // already exists there, recursively merge the results together.
4626 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004627 if (!Existing) {
4628 if (UpdateListener) UpdateListener->NodeUpdated(User);
4629 continue; // Continue on to next user.
4630 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004631
4632 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004633 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004634 // recursive merging of other unrelated nodes down the line.
4635 ReplaceAllUsesWith(User, Existing, UpdateListener);
4636
4637 // User is now dead. Notify a listener if present.
4638 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4639 DeleteNodeNotInCSEMaps(User);
4640 }
4641}
4642
4643/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004644/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004645/// appear in both the From and To list. The Deleted vector is
4646/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004647void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4648 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004649 unsigned Num,
4650 DAGUpdateListener *UpdateListener){
4651 // Handle the simple, trivial case efficiently.
4652 if (Num == 1)
4653 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4654
4655 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4656 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004657 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4658 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004659 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004660
4661 while (!Users.empty()) {
4662 // We know that this user uses some value of From. If it is the right
4663 // value, update it.
4664 SDNode *User = Users.back().first;
4665 unsigned i = Users.back().second;
4666 Users.pop_back();
4667
4668 // Scan for an operand that matches From.
4669 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4670 for (; Op != E; ++Op)
4671 if (*Op == From[i]) break;
4672
4673 // If there are no matches, the user must use some other result of From.
4674 if (Op == E) continue;
4675
4676 // Okay, we know this user needs to be updated. Remove its old self
4677 // from the CSE maps.
4678 RemoveNodeFromCSEMaps(User);
4679
4680 // Update all operands that match "From" in case there are multiple uses.
4681 for (; Op != E; ++Op) {
4682 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004683 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004684 *Op = To[i];
4685 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004686 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004687 }
4688 }
4689
4690 // Now that we have modified User, add it back to the CSE maps. If it
4691 // already exists there, recursively merge the results together.
4692 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4693 if (!Existing) {
4694 if (UpdateListener) UpdateListener->NodeUpdated(User);
4695 continue; // Continue on to next user.
4696 }
4697
4698 // If there was already an existing matching node, use ReplaceAllUsesWith
4699 // to replace the dead one with the existing one. This can cause
4700 // recursive merging of other unrelated nodes down the line.
4701 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004702
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004703 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004704 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004705 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004706 }
4707}
4708
Evan Chenge6f35d82006-08-01 08:20:41 +00004709/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004710/// based on their topological order. It returns the maximum id and a vector
4711/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004712unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004713
Dan Gohmanf06c8352008-09-30 18:30:35 +00004714 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004715
Dan Gohmanf06c8352008-09-30 18:30:35 +00004716 // SortedPos tracks the progress of the algorithm. Nodes before it are
4717 // sorted, nodes after it are unsorted. When the algorithm completes
4718 // it is at the end of the list.
4719 allnodes_iterator SortedPos = allnodes_begin();
4720
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004721 // Visit all the nodes. Move nodes with no operands to the front of
4722 // the list immediately. Annotate nodes that do have operands with their
Dan Gohmanf06c8352008-09-30 18:30:35 +00004723 // operand count. Before we do this, the Node Id fields of the nodes
4724 // may contain arbitrary values. After, the Node Id fields for nodes
4725 // before SortedPos will contain the topological sort index, and the
4726 // Node Id fields for nodes At SortedPos and after will contain the
4727 // count of outstanding operands.
4728 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4729 SDNode *N = I++;
4730 unsigned Degree = N->getNumOperands();
4731 if (Degree == 0) {
4732 // A node with no uses, add it to the result array immediately.
4733 N->setNodeId(DAGSize++);
4734 allnodes_iterator Q = N;
4735 if (Q != SortedPos)
4736 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4737 ++SortedPos;
4738 } else {
4739 // Temporarily use the Node Id as scratch space for the degree count.
4740 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004741 }
4742 }
4743
Dan Gohmanf06c8352008-09-30 18:30:35 +00004744 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4745 // such that by the time the end is reached all nodes will be sorted.
4746 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4747 SDNode *N = I;
4748 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4749 UI != UE; ++UI) {
4750 SDNode *P = *UI;
4751 unsigned Degree = P->getNodeId();
4752 --Degree;
4753 if (Degree == 0) {
4754 // All of P's operands are sorted, so P may sorted now.
4755 P->setNodeId(DAGSize++);
4756 if (P != SortedPos)
4757 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4758 ++SortedPos;
4759 } else {
4760 // Update P's outstanding operand count.
4761 P->setNodeId(Degree);
4762 }
4763 }
4764 }
4765
4766 assert(SortedPos == AllNodes.end() &&
4767 "Topological sort incomplete!");
4768 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4769 "First node in topological sort is not the entry token!");
4770 assert(AllNodes.front().getNodeId() == 0 &&
4771 "First node in topological sort has non-zero id!");
4772 assert(AllNodes.front().getNumOperands() == 0 &&
4773 "First node in topological sort has operands!");
4774 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4775 "Last node in topologic sort has unexpected id!");
4776 assert(AllNodes.back().use_empty() &&
4777 "Last node in topologic sort has users!");
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004778 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohmanf06c8352008-09-30 18:30:35 +00004779 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004780}
4781
4782
Evan Cheng091cba12006-07-27 06:39:06 +00004783
Jim Laskey58b968b2005-08-17 20:08:02 +00004784//===----------------------------------------------------------------------===//
4785// SDNode Class
4786//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004787
Chris Lattner917d2c92006-07-19 00:00:37 +00004788// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004789void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004790void UnarySDNode::ANCHOR() {}
4791void BinarySDNode::ANCHOR() {}
4792void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004793void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004794void ConstantSDNode::ANCHOR() {}
4795void ConstantFPSDNode::ANCHOR() {}
4796void GlobalAddressSDNode::ANCHOR() {}
4797void FrameIndexSDNode::ANCHOR() {}
4798void JumpTableSDNode::ANCHOR() {}
4799void ConstantPoolSDNode::ANCHOR() {}
4800void BasicBlockSDNode::ANCHOR() {}
4801void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004802void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004803void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004804void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004805void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004806void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004807void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004808void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004809void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004810void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004811void LoadSDNode::ANCHOR() {}
4812void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004813void AtomicSDNode::ANCHOR() {}
Mon P Wangc4d10212008-10-17 18:22:58 +00004814void MemIntrinsicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004815void CallSDNode::ANCHOR() {}
Mon P Wang77cdf302008-11-10 20:54:11 +00004816void CvtRndSatSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004817
Chris Lattner48b85922007-02-04 02:41:42 +00004818HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004819 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004820}
4821
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004822GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Dan Gohman6520e202008-10-18 02:06:02 +00004823 MVT VT, int64_t o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004824 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004825 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004826 // Thread Local
4827 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4828 // Non Thread Local
4829 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4830 getSDVTList(VT)), Offset(o) {
4831 TheGlobal = const_cast<GlobalValue*>(GA);
4832}
Chris Lattner48b85922007-02-04 02:41:42 +00004833
Dan Gohman1ea58a52008-07-09 22:08:04 +00004834MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004835 const Value *srcValue, int SVO,
4836 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004837 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004838 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004839
4840 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4841 assert(getAlignment() == alignment && "Alignment representation error!");
4842 assert(isVolatile() == vol && "Volatile representation error!");
4843}
4844
Mon P Wangc4d10212008-10-17 18:22:58 +00004845MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4846 unsigned NumOps, MVT memvt, const Value *srcValue,
4847 int SVO, unsigned alignment, bool vol)
4848 : SDNode(Opc, VTs, Ops, NumOps),
4849 MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4850 Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4851 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4852 assert(getAlignment() == alignment && "Alignment representation error!");
4853 assert(isVolatile() == vol && "Volatile representation error!");
4854}
4855
Dan Gohman36b5c132008-04-07 19:35:22 +00004856/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004857/// reference performed by this memory reference.
4858MachineMemOperand MemSDNode::getMemOperand() const {
Dale Johannesenfea90882008-10-24 01:06:58 +00004859 int Flags = 0;
Dan Gohman1ea58a52008-07-09 22:08:04 +00004860 if (isa<LoadSDNode>(this))
4861 Flags = MachineMemOperand::MOLoad;
4862 else if (isa<StoreSDNode>(this))
4863 Flags = MachineMemOperand::MOStore;
Mon P Wangc4d10212008-10-17 18:22:58 +00004864 else if (isa<AtomicSDNode>(this)) {
Dan Gohman1ea58a52008-07-09 22:08:04 +00004865 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4866 }
Mon P Wangc4d10212008-10-17 18:22:58 +00004867 else {
4868 const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4869 assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4870 if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4871 if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4872 }
Dan Gohman1ea58a52008-07-09 22:08:04 +00004873
4874 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004875 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4876
Dan Gohman1ea58a52008-07-09 22:08:04 +00004877 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004878 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004879 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004880 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004881 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4882 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004883 else
4884 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4885 Size, getAlignment());
4886}
4887
Jim Laskey583bd472006-10-27 23:46:08 +00004888/// Profile - Gather unique data for the node.
4889///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004890void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004891 AddNodeIDNode(ID, this);
4892}
4893
Chris Lattnera3255112005-11-08 23:30:28 +00004894/// getValueTypeList - Return a pointer to the specified value type.
4895///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004896const MVT *SDNode::getValueTypeList(MVT VT) {
4897 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004898 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004899 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004900 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004901 static MVT VTs[MVT::LAST_VALUETYPE];
4902 VTs[VT.getSimpleVT()] = VT;
4903 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004904 }
Chris Lattnera3255112005-11-08 23:30:28 +00004905}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004906
Chris Lattner5c884562005-01-12 18:37:47 +00004907/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4908/// indicated value. This method ignores uses of other values defined by this
4909/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004910bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004911 assert(Value < getNumValues() && "Bad value!");
4912
Roman Levensteindc1adac2008-04-07 10:06:32 +00004913 // TODO: Only iterate over uses of a given value of the node
4914 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004915 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004916 if (NUses == 0)
4917 return false;
4918 --NUses;
4919 }
Chris Lattner5c884562005-01-12 18:37:47 +00004920 }
4921
4922 // Found exactly the right number of uses?
4923 return NUses == 0;
4924}
4925
4926
Evan Cheng33d55952007-08-02 05:29:38 +00004927/// hasAnyUseOfValue - Return true if there are any use of the indicated
4928/// value. This method ignores uses of other values defined by this operation.
4929bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4930 assert(Value < getNumValues() && "Bad value!");
4931
Dan Gohman1373c1c2008-07-09 22:39:01 +00004932 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004933 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004934 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004935
4936 return false;
4937}
4938
4939
Dan Gohman2a629952008-07-27 18:06:42 +00004940/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004941///
Dan Gohman2a629952008-07-27 18:06:42 +00004942bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004943 bool Seen = false;
4944 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004945 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004946 if (User == this)
4947 Seen = true;
4948 else
4949 return false;
4950 }
4951
4952 return Seen;
4953}
4954
Evan Chenge6e97e62006-11-03 07:31:32 +00004955/// isOperand - Return true if this node is an operand of N.
4956///
Dan Gohman475871a2008-07-27 21:46:04 +00004957bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004958 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4959 if (*this == N->getOperand(i))
4960 return true;
4961 return false;
4962}
4963
Evan Cheng917be682008-03-04 00:41:45 +00004964bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004965 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004966 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004967 return true;
4968 return false;
4969}
Evan Cheng4ee62112006-02-05 06:29:23 +00004970
Chris Lattner572dee72008-01-16 05:49:24 +00004971/// reachesChainWithoutSideEffects - Return true if this operand (which must
4972/// be a chain) reaches the specified operand without crossing any
4973/// side-effecting instructions. In practice, this looks through token
4974/// factors and non-volatile loads. In order to remain efficient, this only
4975/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004976bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004977 unsigned Depth) const {
4978 if (*this == Dest) return true;
4979
4980 // Don't search too deeply, we just want to be able to see through
4981 // TokenFactor's etc.
4982 if (Depth == 0) return false;
4983
4984 // If this is a token factor, all inputs to the TF happen in parallel. If any
4985 // of the operands of the TF reach dest, then we can do the xform.
4986 if (getOpcode() == ISD::TokenFactor) {
4987 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4988 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4989 return true;
4990 return false;
4991 }
4992
4993 // Loads don't have side effects, look through them.
4994 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4995 if (!Ld->isVolatile())
4996 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4997 }
4998 return false;
4999}
5000
5001
Evan Chengc5fc57d2006-11-03 03:05:24 +00005002static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00005003 SmallPtrSet<SDNode *, 32> &Visited) {
5004 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00005005 return;
5006
5007 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005008 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00005009 if (Op == P) {
5010 found = true;
5011 return;
5012 }
5013 findPredecessor(Op, P, found, Visited);
5014 }
5015}
5016
Evan Cheng917be682008-03-04 00:41:45 +00005017/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00005018/// is either an operand of N or it can be reached by recursively traversing
5019/// up the operands.
5020/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00005021bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00005022 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00005023 bool found = false;
5024 findPredecessor(N, this, found, Visited);
5025 return found;
5026}
5027
Evan Chengc5484282006-10-04 00:56:09 +00005028uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
5029 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005030 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00005031}
5032
Reid Spencer577cc322007-04-01 07:32:19 +00005033std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005034 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005035 default:
5036 if (getOpcode() < ISD::BUILTIN_OP_END)
5037 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00005038 if (isMachineOpcode()) {
5039 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005040 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00005041 if (getMachineOpcode() < TII->getNumOpcodes())
5042 return TII->get(getMachineOpcode()).getName();
5043 return "<<Unknown Machine Node>>";
5044 }
5045 if (G) {
5046 TargetLowering &TLI = G->getTargetLoweringInfo();
5047 const char *Name = TLI.getTargetNodeName(getOpcode());
5048 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00005049 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005050 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00005051 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005052
Dan Gohmane8be6c62008-07-17 19:10:17 +00005053#ifndef NDEBUG
5054 case ISD::DELETED_NODE:
5055 return "<<Deleted Node!>>";
5056#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00005057 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00005058 case ISD::MEMBARRIER: return "MemBarrier";
Dale Johannesene00a8a22008-08-28 02:44:49 +00005059 case ISD::ATOMIC_CMP_SWAP_8: return "AtomicCmpSwap8";
5060 case ISD::ATOMIC_SWAP_8: return "AtomicSwap8";
5061 case ISD::ATOMIC_LOAD_ADD_8: return "AtomicLoadAdd8";
5062 case ISD::ATOMIC_LOAD_SUB_8: return "AtomicLoadSub8";
5063 case ISD::ATOMIC_LOAD_AND_8: return "AtomicLoadAnd8";
5064 case ISD::ATOMIC_LOAD_OR_8: return "AtomicLoadOr8";
5065 case ISD::ATOMIC_LOAD_XOR_8: return "AtomicLoadXor8";
5066 case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
5067 case ISD::ATOMIC_LOAD_MIN_8: return "AtomicLoadMin8";
5068 case ISD::ATOMIC_LOAD_MAX_8: return "AtomicLoadMax8";
5069 case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
5070 case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
5071 case ISD::ATOMIC_CMP_SWAP_16: return "AtomicCmpSwap16";
5072 case ISD::ATOMIC_SWAP_16: return "AtomicSwap16";
5073 case ISD::ATOMIC_LOAD_ADD_16: return "AtomicLoadAdd16";
5074 case ISD::ATOMIC_LOAD_SUB_16: return "AtomicLoadSub16";
5075 case ISD::ATOMIC_LOAD_AND_16: return "AtomicLoadAnd16";
5076 case ISD::ATOMIC_LOAD_OR_16: return "AtomicLoadOr16";
5077 case ISD::ATOMIC_LOAD_XOR_16: return "AtomicLoadXor16";
5078 case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
5079 case ISD::ATOMIC_LOAD_MIN_16: return "AtomicLoadMin16";
5080 case ISD::ATOMIC_LOAD_MAX_16: return "AtomicLoadMax16";
5081 case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
5082 case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
5083 case ISD::ATOMIC_CMP_SWAP_32: return "AtomicCmpSwap32";
5084 case ISD::ATOMIC_SWAP_32: return "AtomicSwap32";
5085 case ISD::ATOMIC_LOAD_ADD_32: return "AtomicLoadAdd32";
5086 case ISD::ATOMIC_LOAD_SUB_32: return "AtomicLoadSub32";
5087 case ISD::ATOMIC_LOAD_AND_32: return "AtomicLoadAnd32";
5088 case ISD::ATOMIC_LOAD_OR_32: return "AtomicLoadOr32";
5089 case ISD::ATOMIC_LOAD_XOR_32: return "AtomicLoadXor32";
5090 case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
5091 case ISD::ATOMIC_LOAD_MIN_32: return "AtomicLoadMin32";
5092 case ISD::ATOMIC_LOAD_MAX_32: return "AtomicLoadMax32";
5093 case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
5094 case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
5095 case ISD::ATOMIC_CMP_SWAP_64: return "AtomicCmpSwap64";
5096 case ISD::ATOMIC_SWAP_64: return "AtomicSwap64";
5097 case ISD::ATOMIC_LOAD_ADD_64: return "AtomicLoadAdd64";
5098 case ISD::ATOMIC_LOAD_SUB_64: return "AtomicLoadSub64";
5099 case ISD::ATOMIC_LOAD_AND_64: return "AtomicLoadAnd64";
5100 case ISD::ATOMIC_LOAD_OR_64: return "AtomicLoadOr64";
5101 case ISD::ATOMIC_LOAD_XOR_64: return "AtomicLoadXor64";
5102 case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
5103 case ISD::ATOMIC_LOAD_MIN_64: return "AtomicLoadMin64";
5104 case ISD::ATOMIC_LOAD_MAX_64: return "AtomicLoadMax64";
5105 case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
5106 case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
Andrew Lenharth95762122005-03-31 21:24:06 +00005107 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00005108 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005109 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00005110 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005111 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00005112 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00005113 case ISD::AssertSext: return "AssertSext";
5114 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005115
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005116 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005117 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005118 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00005119 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005120
5121 case ISD::Constant: return "Constant";
5122 case ISD::ConstantFP: return "ConstantFP";
5123 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005124 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005125 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005126 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00005127 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00005128 case ISD::RETURNADDR: return "RETURNADDR";
5129 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005130 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00005131 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00005132 case ISD::EHSELECTION: return "EHSELECTION";
5133 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00005134 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005135 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00005136 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005137 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00005138 return Intrinsic::getName((Intrinsic::ID)IID);
5139 }
5140 case ISD::INTRINSIC_VOID:
5141 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005142 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00005143 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00005144 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00005145
Chris Lattnerb2827b02006-03-19 00:52:58 +00005146 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005147 case ISD::TargetConstant: return "TargetConstant";
5148 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005149 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005150 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005151 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005152 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005153 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005154 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005155
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005156 case ISD::CopyToReg: return "CopyToReg";
5157 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005158 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005159 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005160 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005161 case ISD::DBG_LABEL: return "dbg_label";
5162 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005163 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005164 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005165 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005166 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005167
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005168 // Unary operators
5169 case ISD::FABS: return "fabs";
5170 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005171 case ISD::FSQRT: return "fsqrt";
5172 case ISD::FSIN: return "fsin";
5173 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005174 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005175 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005176 case ISD::FTRUNC: return "ftrunc";
5177 case ISD::FFLOOR: return "ffloor";
5178 case ISD::FCEIL: return "fceil";
5179 case ISD::FRINT: return "frint";
5180 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005181
5182 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005183 case ISD::ADD: return "add";
5184 case ISD::SUB: return "sub";
5185 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005186 case ISD::MULHU: return "mulhu";
5187 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005188 case ISD::SDIV: return "sdiv";
5189 case ISD::UDIV: return "udiv";
5190 case ISD::SREM: return "srem";
5191 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005192 case ISD::SMUL_LOHI: return "smul_lohi";
5193 case ISD::UMUL_LOHI: return "umul_lohi";
5194 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005195 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005196 case ISD::AND: return "and";
5197 case ISD::OR: return "or";
5198 case ISD::XOR: return "xor";
5199 case ISD::SHL: return "shl";
5200 case ISD::SRA: return "sra";
5201 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005202 case ISD::ROTL: return "rotl";
5203 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005204 case ISD::FADD: return "fadd";
5205 case ISD::FSUB: return "fsub";
5206 case ISD::FMUL: return "fmul";
5207 case ISD::FDIV: return "fdiv";
5208 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005209 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005210 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005211
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005212 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005213 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005214 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005215 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005216 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005217 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005218 case ISD::CONCAT_VECTORS: return "concat_vectors";
5219 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005220 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005221 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005222 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005223 case ISD::ADDC: return "addc";
5224 case ISD::ADDE: return "adde";
Bill Wendling1c55a9c2008-11-21 02:12:42 +00005225 case ISD::SADDO: return "saddo";
5226 case ISD::UADDO: return "uaddo";
Bill Wendling74c37652008-12-09 22:08:41 +00005227 case ISD::SSUBO: return "ssubo";
5228 case ISD::USUBO: return "usubo";
5229 case ISD::SMULO: return "smulo";
5230 case ISD::UMULO: return "umulo";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005231 case ISD::SUBC: return "subc";
5232 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005233 case ISD::SHL_PARTS: return "shl_parts";
5234 case ISD::SRA_PARTS: return "sra_parts";
5235 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005236
5237 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5238 case ISD::INSERT_SUBREG: return "insert_subreg";
5239
Chris Lattner7f644642005-04-28 21:44:03 +00005240 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005241 case ISD::SIGN_EXTEND: return "sign_extend";
5242 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005243 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005244 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005245 case ISD::TRUNCATE: return "truncate";
5246 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005247 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005248 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005249 case ISD::FP_EXTEND: return "fp_extend";
5250
5251 case ISD::SINT_TO_FP: return "sint_to_fp";
5252 case ISD::UINT_TO_FP: return "uint_to_fp";
5253 case ISD::FP_TO_SINT: return "fp_to_sint";
5254 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005255 case ISD::BIT_CONVERT: return "bit_convert";
Mon P Wang77cdf302008-11-10 20:54:11 +00005256
5257 case ISD::CONVERT_RNDSAT: {
5258 switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
5259 default: assert(0 && "Unknown cvt code!");
5260 case ISD::CVT_FF: return "cvt_ff";
5261 case ISD::CVT_FS: return "cvt_fs";
5262 case ISD::CVT_FU: return "cvt_fu";
5263 case ISD::CVT_SF: return "cvt_sf";
5264 case ISD::CVT_UF: return "cvt_uf";
5265 case ISD::CVT_SS: return "cvt_ss";
5266 case ISD::CVT_SU: return "cvt_su";
5267 case ISD::CVT_US: return "cvt_us";
5268 case ISD::CVT_UU: return "cvt_uu";
5269 }
5270 }
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005271
5272 // Control flow instructions
5273 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005274 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005275 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005276 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005277 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005278 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005279 case ISD::CALLSEQ_START: return "callseq_start";
5280 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005281
5282 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005283 case ISD::LOAD: return "load";
5284 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005285 case ISD::VAARG: return "vaarg";
5286 case ISD::VACOPY: return "vacopy";
5287 case ISD::VAEND: return "vaend";
5288 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005289 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005290 case ISD::EXTRACT_ELEMENT: return "extract_element";
5291 case ISD::BUILD_PAIR: return "build_pair";
5292 case ISD::STACKSAVE: return "stacksave";
5293 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005294 case ISD::TRAP: return "trap";
5295
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005296 // Bit manipulation
5297 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005298 case ISD::CTPOP: return "ctpop";
5299 case ISD::CTTZ: return "cttz";
5300 case ISD::CTLZ: return "ctlz";
5301
Chris Lattner36ce6912005-11-29 06:21:05 +00005302 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005303 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005304 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005305
Duncan Sands36397f52007-07-27 12:58:54 +00005306 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005307 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005308
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005309 case ISD::CONDCODE:
5310 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005311 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005312 case ISD::SETOEQ: return "setoeq";
5313 case ISD::SETOGT: return "setogt";
5314 case ISD::SETOGE: return "setoge";
5315 case ISD::SETOLT: return "setolt";
5316 case ISD::SETOLE: return "setole";
5317 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005318
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005319 case ISD::SETO: return "seto";
5320 case ISD::SETUO: return "setuo";
5321 case ISD::SETUEQ: return "setue";
5322 case ISD::SETUGT: return "setugt";
5323 case ISD::SETUGE: return "setuge";
5324 case ISD::SETULT: return "setult";
5325 case ISD::SETULE: return "setule";
5326 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005327
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005328 case ISD::SETEQ: return "seteq";
5329 case ISD::SETGT: return "setgt";
5330 case ISD::SETGE: return "setge";
5331 case ISD::SETLT: return "setlt";
5332 case ISD::SETLE: return "setle";
5333 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005334 }
5335 }
5336}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005337
Evan Cheng144d8f02006-11-09 17:55:04 +00005338const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005339 switch (AM) {
5340 default:
5341 return "";
5342 case ISD::PRE_INC:
5343 return "<pre-inc>";
5344 case ISD::PRE_DEC:
5345 return "<pre-dec>";
5346 case ISD::POST_INC:
5347 return "<post-inc>";
5348 case ISD::POST_DEC:
5349 return "<post-dec>";
5350 }
5351}
5352
Duncan Sands276dcbd2008-03-21 09:14:45 +00005353std::string ISD::ArgFlagsTy::getArgFlagsString() {
5354 std::string S = "< ";
5355
5356 if (isZExt())
5357 S += "zext ";
5358 if (isSExt())
5359 S += "sext ";
5360 if (isInReg())
5361 S += "inreg ";
5362 if (isSRet())
5363 S += "sret ";
5364 if (isByVal())
5365 S += "byval ";
5366 if (isNest())
5367 S += "nest ";
5368 if (getByValAlign())
5369 S += "byval-align:" + utostr(getByValAlign()) + " ";
5370 if (getOrigAlign())
5371 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5372 if (getByValSize())
5373 S += "byval-size:" + utostr(getByValSize()) + " ";
5374 return S + ">";
5375}
5376
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005377void SDNode::dump() const { dump(0); }
5378void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005379 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005380 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005381}
5382
5383void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5384 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005385
5386 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005387 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005388 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005389 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005390 else
Chris Lattner944fac72008-08-23 22:23:09 +00005391 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005392 }
Chris Lattner944fac72008-08-23 22:23:09 +00005393 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005394
Chris Lattner944fac72008-08-23 22:23:09 +00005395 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005396 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005397 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005398 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005399 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005400 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005401 }
5402
Evan Chengce254432007-12-11 02:08:35 +00005403 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005404 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005405 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005406 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005407 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005408 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005409 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005410 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005411 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005412 }
Chris Lattner944fac72008-08-23 22:23:09 +00005413 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005414 }
5415
Chris Lattnerc3aae252005-01-07 07:46:32 +00005416 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005417 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005418 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005419 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005420 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005421 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005422 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005423 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005424 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005425 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005426 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005427 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005428 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005429 dyn_cast<GlobalAddressSDNode>(this)) {
Dan Gohman668aff62008-10-18 18:22:42 +00005430 int64_t offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005431 OS << '<';
5432 WriteAsOperand(OS, GADN->getGlobal());
5433 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005434 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005435 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005436 else
Chris Lattner944fac72008-08-23 22:23:09 +00005437 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005438 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005439 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005440 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005441 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005442 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005443 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005444 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005445 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005446 else
Chris Lattner944fac72008-08-23 22:23:09 +00005447 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005448 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005449 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005450 else
Chris Lattner944fac72008-08-23 22:23:09 +00005451 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005452 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005453 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005454 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5455 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005456 OS << LBB->getName() << " ";
5457 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005458 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005459 if (G && R->getReg() &&
5460 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005461 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005462 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005463 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005464 }
Bill Wendling056292f2008-09-16 21:48:12 +00005465 } else if (const ExternalSymbolSDNode *ES =
5466 dyn_cast<ExternalSymbolSDNode>(this)) {
5467 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005468 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5469 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005470 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005471 else
Chris Lattner944fac72008-08-23 22:23:09 +00005472 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005473 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5474 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005475 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005476 else
Chris Lattner944fac72008-08-23 22:23:09 +00005477 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005478 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005479 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005480 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005481 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005482 }
5483 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005484 const Value *SrcValue = LD->getSrcValue();
5485 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005486 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005487 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005488 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005489 else
Chris Lattner944fac72008-08-23 22:23:09 +00005490 OS << "null";
5491 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005492
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005493 bool doExt = true;
5494 switch (LD->getExtensionType()) {
5495 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005496 case ISD::EXTLOAD: OS << " <anyext "; break;
5497 case ISD::SEXTLOAD: OS << " <sext "; break;
5498 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005499 }
5500 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005501 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005502
Evan Cheng144d8f02006-11-09 17:55:04 +00005503 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005504 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005505 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005506 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005507 OS << " <volatile>";
5508 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005509 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005510 const Value *SrcValue = ST->getSrcValue();
5511 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005512 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005513 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005514 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005515 else
Chris Lattner944fac72008-08-23 22:23:09 +00005516 OS << "null";
5517 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005518
5519 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005520 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005521
5522 const char *AM = getIndexedModeName(ST->getAddressingMode());
5523 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005524 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005525 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005526 OS << " <volatile>";
5527 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005528 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5529 const Value *SrcValue = AT->getSrcValue();
5530 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005531 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005532 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005533 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005534 else
Chris Lattner944fac72008-08-23 22:23:09 +00005535 OS << "null";
5536 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005537 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005538 OS << " <volatile>";
5539 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005540 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005541}
5542
Chris Lattnerde202b32005-11-09 23:47:37 +00005543static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005544 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005545 if (N->getOperand(i).getNode()->hasOneUse())
5546 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005547 else
Bill Wendling832171c2006-12-07 20:04:42 +00005548 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005549 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005550
Chris Lattnerea946cd2005-01-09 20:38:33 +00005551
Bill Wendling832171c2006-12-07 20:04:42 +00005552 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005553 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005554}
5555
Chris Lattnerc3aae252005-01-07 07:46:32 +00005556void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005557 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005558
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005559 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5560 I != E; ++I) {
5561 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005562 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005563 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005564 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005565
Gabor Greifba36cb52008-08-28 21:40:38 +00005566 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005567
Bill Wendling832171c2006-12-07 20:04:42 +00005568 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005569}
5570
Evan Chengd6594ae2006-09-12 21:00:35 +00005571const Type *ConstantPoolSDNode::getType() const {
5572 if (isMachineConstantPoolEntry())
5573 return Val.MachineCPVal->getType();
5574 return Val.ConstVal->getType();
5575}