blob: 5da693cae88d73b7313cffe5320eec89e694902f [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 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000445 case ISD::ATOMIC_CMP_SWAP:
446 case ISD::ATOMIC_SWAP:
447 case ISD::ATOMIC_LOAD_ADD:
448 case ISD::ATOMIC_LOAD_SUB:
449 case ISD::ATOMIC_LOAD_AND:
450 case ISD::ATOMIC_LOAD_OR:
451 case ISD::ATOMIC_LOAD_XOR:
452 case ISD::ATOMIC_LOAD_NAND:
453 case ISD::ATOMIC_LOAD_MIN:
454 case ISD::ATOMIC_LOAD_MAX:
455 case ISD::ATOMIC_LOAD_UMIN:
456 case ISD::ATOMIC_LOAD_UMAX: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000457 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
458 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000459 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000460 }
Mon P Wang28873102008-06-25 08:15:39 +0000461 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000462}
463
Duncan Sands0dc40452008-10-27 15:30:53 +0000464/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
465/// data.
466static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
467 AddNodeIDOpcode(ID, N->getOpcode());
468 // Add the return value info.
469 AddNodeIDValueTypes(ID, N->getVTList());
470 // Add the operand info.
471 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
472
473 // Handle SDNode leafs with special info.
474 AddNodeIDCustom(ID, N);
475}
476
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000477/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
478/// the CSE map that carries both alignment and volatility information.
479///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000480static inline unsigned
481encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000482 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
483}
484
Jim Laskey583bd472006-10-27 23:46:08 +0000485//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000486// SelectionDAG Class
487//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000488
Duncan Sands0dc40452008-10-27 15:30:53 +0000489/// doNotCSE - Return true if CSE should not be performed for this node.
490static bool doNotCSE(SDNode *N) {
491 if (N->getValueType(0) == MVT::Flag)
492 return true; // Never CSE anything that produces a flag.
493
494 switch (N->getOpcode()) {
495 default: break;
496 case ISD::HANDLENODE:
497 case ISD::DBG_LABEL:
498 case ISD::DBG_STOPPOINT:
499 case ISD::EH_LABEL:
500 case ISD::DECLARE:
501 return true; // Never CSE these nodes.
502 }
503
504 // Check that remaining values produced are not flags.
505 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
506 if (N->getValueType(i) == MVT::Flag)
507 return true; // Never CSE anything that produces a flag.
508
509 return false;
510}
511
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000512/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000513/// SelectionDAG.
514void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000515 // Create a dummy node (which is not added to allnodes), that adds a reference
516 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000517 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000518
Chris Lattner190a4182006-08-04 17:45:20 +0000519 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000520
Chris Lattner190a4182006-08-04 17:45:20 +0000521 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000522 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000523 if (I->use_empty())
524 DeadNodes.push_back(I);
525
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000526 RemoveDeadNodes(DeadNodes);
527
528 // If the root changed (e.g. it was a dead load, update the root).
529 setRoot(Dummy.getValue());
530}
531
532/// RemoveDeadNodes - This method deletes the unreachable nodes in the
533/// given list, and any nodes that become unreachable as a result.
534void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
535 DAGUpdateListener *UpdateListener) {
536
Chris Lattner190a4182006-08-04 17:45:20 +0000537 // Process the worklist, deleting the nodes and adding their uses to the
538 // worklist.
539 while (!DeadNodes.empty()) {
540 SDNode *N = DeadNodes.back();
541 DeadNodes.pop_back();
542
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000543 if (UpdateListener)
544 UpdateListener->NodeDeleted(N, 0);
545
Chris Lattner190a4182006-08-04 17:45:20 +0000546 // Take the node out of the appropriate CSE map.
547 RemoveNodeFromCSEMaps(N);
548
549 // Next, brutally remove the operand list. This is safe to do, as there are
550 // no cycles in the graph.
551 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000552 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000553 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000554
555 // Now that we removed this operand, see if there are no uses of it left.
556 if (Operand->use_empty())
557 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000558 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000559
560 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000561 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000562
Chris Lattner190a4182006-08-04 17:45:20 +0000563 N->OperandList = 0;
564 N->NumOperands = 0;
565
566 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000567 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000568 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000569}
570
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000571void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000572 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000573 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000574}
575
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000576void SelectionDAG::DeleteNode(SDNode *N) {
577 assert(N->use_empty() && "Cannot delete a node that is not dead!");
578
579 // First take this out of the appropriate CSE map.
580 RemoveNodeFromCSEMaps(N);
581
Chris Lattner1e111c72005-09-07 05:37:01 +0000582 // Finally, remove uses due to operands of this node, remove from the
583 // AllNodes list, and delete the node.
584 DeleteNodeNotInCSEMaps(N);
585}
586
587void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000588 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000589 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000590 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000591
592 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000593 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000594 N->OperandList = 0;
595 }
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000596
Dan Gohman11467282008-08-26 01:44:34 +0000597 assert(N != AllNodes.begin());
598 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000599}
600
Chris Lattner149c58c2005-08-16 18:17:10 +0000601/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
602/// correspond to it. This is useful when we're about to delete or repurpose
603/// the node. We don't want future request for structurally identical nodes
604/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000605bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000606 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000607 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000608 case ISD::EntryToken:
609 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000610 return false;
611 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000612 case ISD::CONDCODE:
613 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
614 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000615 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000616 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
617 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000618 case ISD::ExternalSymbol:
619 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000620 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000621 case ISD::TargetExternalSymbol:
622 Erased =
623 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000624 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000625 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000626 MVT VT = cast<VTSDNode>(N)->getVT();
627 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000628 Erased = ExtendedValueTypeNodes.erase(VT);
629 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000630 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
631 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000632 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000633 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000634 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000635 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000636 // Remove it from the CSE Map.
637 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000638 break;
639 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000640#ifndef NDEBUG
641 // Verify that the node was actually in one of the CSE maps, unless it has a
642 // flag result (which cannot be CSE'd) or is one of the special cases that are
643 // not subject to CSE.
644 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Duncan Sands0dc40452008-10-27 15:30:53 +0000645 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000646 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000647 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000648 assert(0 && "Node is not in map!");
649 }
650#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000651 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000652}
653
Chris Lattner8b8749f2005-08-17 19:00:20 +0000654/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
655/// has been taken out and modified in some way. If the specified node already
656/// exists in the CSE maps, do not modify the maps, but return the existing node
657/// instead. If it doesn't exist, add it and return null.
658///
659SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
660 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000661
Duncan Sands0dc40452008-10-27 15:30:53 +0000662 if (doNotCSE(N))
663 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000664
Chris Lattnera5682852006-08-07 23:03:03 +0000665 SDNode *New = CSEMap.GetOrInsertNode(N);
666 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000667 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000668}
669
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000670/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
671/// were replaced with those specified. If this node is never memoized,
672/// return null, otherwise return a pointer to the slot it would take. If a
673/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000674SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000675 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000676 if (doNotCSE(N))
677 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000678
Dan Gohman475871a2008-07-27 21:46:04 +0000679 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000680 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000681 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Duncan Sands0dc40452008-10-27 15:30:53 +0000682 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000683 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000684}
685
686/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
687/// were replaced with those specified. If this node is never memoized,
688/// return null, otherwise return a pointer to the slot it would take. If a
689/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000690SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000691 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000692 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000693 if (doNotCSE(N))
694 return 0;
695
Dan Gohman475871a2008-07-27 21:46:04 +0000696 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000697 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000698 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Duncan Sands0dc40452008-10-27 15:30:53 +0000699 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000700 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
701}
702
703
704/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
705/// were replaced with those specified. If this node is never memoized,
706/// return null, otherwise return a pointer to the slot it would take. If a
707/// node already exists with these operands, the slot will be non-null.
708SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000709 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000710 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000711 if (doNotCSE(N))
712 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000713
Jim Laskey583bd472006-10-27 23:46:08 +0000714 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000715 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Duncan Sands0dc40452008-10-27 15:30:53 +0000716 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000717 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000718}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000719
Duncan Sandsd038e042008-07-21 10:20:31 +0000720/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
721void SelectionDAG::VerifyNode(SDNode *N) {
722 switch (N->getOpcode()) {
723 default:
724 break;
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000725 case ISD::BUILD_PAIR: {
726 MVT VT = N->getValueType(0);
727 assert(N->getNumValues() == 1 && "Too many results!");
728 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
729 "Wrong return type!");
730 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
731 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
732 "Mismatched operand types!");
733 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
734 "Wrong operand type!");
735 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
736 "Wrong return type size");
737 break;
738 }
Duncan Sandsd038e042008-07-21 10:20:31 +0000739 case ISD::BUILD_VECTOR: {
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000740 assert(N->getNumValues() == 1 && "Too many results!");
741 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000742 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000743 "Wrong number of operands!");
Duncan Sands0954aef2008-10-22 09:00:33 +0000744 // FIXME: Change vector_shuffle to a variadic node with mask elements being
745 // operands of the node. Currently the mask is a BUILD_VECTOR passed as an
746 // operand, and it is not always possible to legalize it. Turning off the
747 // following checks at least makes it possible to legalize most of the time.
748// MVT EltVT = N->getValueType(0).getVectorElementType();
749// for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
750// assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000751// "Wrong operand type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000752 break;
753 }
754 }
755}
756
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000757/// getMVTAlignment - Compute the default alignment value for the
758/// given type.
759///
760unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
761 const Type *Ty = VT == MVT::iPTR ?
762 PointerType::get(Type::Int8Ty, 0) :
763 VT.getTypeForMVT();
764
765 return TLI.getTargetData()->getABITypeAlignment(Ty);
766}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000767
Dan Gohman7c3234c2008-08-27 23:52:12 +0000768SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
769 : TLI(tli), FLI(fli),
770 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000771 Root(getEntryNode()) {
772 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000773}
774
Dan Gohman7c3234c2008-08-27 23:52:12 +0000775void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
776 MF = &mf;
777 MMI = mmi;
778}
779
Chris Lattner78ec3112003-08-11 14:57:33 +0000780SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000781 allnodes_clear();
782}
783
784void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000785 assert(&*AllNodes.begin() == &EntryNode);
786 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000787 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000788 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000789 N->SetNextInBucket(0);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000790
791 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000792 delete [] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000793 N->OperandList = 0;
794 }
795
Dan Gohman11467282008-08-26 01:44:34 +0000796 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000797 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000798}
799
Dan Gohman7c3234c2008-08-27 23:52:12 +0000800void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000801 allnodes_clear();
802 OperandAllocator.Reset();
803 CSEMap.clear();
804
805 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000806 ExternalSymbols.clear();
807 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000808 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
809 static_cast<CondCodeSDNode*>(0));
810 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
811 static_cast<SDNode*>(0));
812
813 EntryNode.Uses = 0;
814 AllNodes.push_back(&EntryNode);
815 Root = getEntryNode();
816}
817
Dan Gohman475871a2008-07-27 21:46:04 +0000818SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000819 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000820 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000821 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000822 return getNode(ISD::AND, Op.getValueType(), Op,
823 getConstant(Imm, Op.getValueType()));
824}
825
Dan Gohman475871a2008-07-27 21:46:04 +0000826SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000827 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000829}
830
Dan Gohman475871a2008-07-27 21:46:04 +0000831SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000832 return getConstant(*ConstantInt::get(Val), VT, isT);
833}
834
835SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000836 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000837
Evan Cheng0ff39b32008-06-30 07:31:25 +0000838 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000839 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000840 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000841
842 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000843 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000844 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000845 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000846 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000847 SDNode *N = NULL;
848 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000849 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000850 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000851 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000852 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000853 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000854 CSEMap.InsertNode(N, IP);
855 AllNodes.push_back(N);
856 }
857
Dan Gohman475871a2008-07-27 21:46:04 +0000858 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000860 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000861 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000862 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
863 }
864 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000865}
866
Dan Gohman475871a2008-07-27 21:46:04 +0000867SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000868 return getConstant(Val, TLI.getPointerTy(), isTarget);
869}
870
871
Dan Gohman475871a2008-07-27 21:46:04 +0000872SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000873 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
874}
875
876SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000877 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000878
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879 MVT EltVT =
880 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000881
Chris Lattnerd8658612005-02-17 20:17:32 +0000882 // Do the map lookup using the actual bit pattern for the floating point
883 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
884 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000885 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000886 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000887 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000888 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000889 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000890 SDNode *N = NULL;
891 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000892 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000893 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000894 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000895 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000896 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000897 CSEMap.InsertNode(N, IP);
898 AllNodes.push_back(N);
899 }
900
Dan Gohman475871a2008-07-27 21:46:04 +0000901 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000902 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000903 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000904 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000905 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
906 }
907 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000908}
909
Dan Gohman475871a2008-07-27 21:46:04 +0000910SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000911 MVT EltVT =
912 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000913 if (EltVT==MVT::f32)
914 return getConstantFP(APFloat((float)Val), VT, isTarget);
915 else
916 return getConstantFP(APFloat(Val), VT, isTarget);
917}
918
Dan Gohman475871a2008-07-27 21:46:04 +0000919SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +0000920 MVT VT, int64_t Offset,
Dan Gohman475871a2008-07-27 21:46:04 +0000921 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000922 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000923
Dan Gohman6520e202008-10-18 02:06:02 +0000924 // Truncate (with sign-extension) the offset value to the pointer size.
Dan Gohman44013612008-10-21 03:38:42 +0000925 unsigned BitWidth = TLI.getPointerTy().getSizeInBits();
Dan Gohman6520e202008-10-18 02:06:02 +0000926 if (BitWidth < 64)
927 Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
928
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000929 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
930 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000931 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000932 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000933 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000934 }
935
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000936 if (GVar && GVar->isThreadLocal())
937 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
938 else
939 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000940
Jim Laskey583bd472006-10-27 23:46:08 +0000941 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000942 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000943 ID.AddPointer(GV);
944 ID.AddInteger(Offset);
945 void *IP = 0;
946 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000947 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000948 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000949 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +0000950 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000951 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000952 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000953}
954
Dan Gohman475871a2008-07-27 21:46:04 +0000955SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000956 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000957 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000958 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000959 ID.AddInteger(FI);
960 void *IP = 0;
961 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000962 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000963 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000964 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000965 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000966 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000967 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000968}
969
Dan Gohman475871a2008-07-27 21:46:04 +0000970SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000971 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000972 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000973 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000974 ID.AddInteger(JTI);
975 void *IP = 0;
976 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000977 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000978 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000979 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000980 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000981 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000982 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +0000983}
984
Dan Gohman475871a2008-07-27 21:46:04 +0000985SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
986 unsigned Alignment, int Offset,
987 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +0000988 if (Alignment == 0)
989 Alignment =
990 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000991 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000992 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000993 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000994 ID.AddInteger(Alignment);
995 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000996 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000997 void *IP = 0;
998 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000999 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001000 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001001 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001002 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001003 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001004 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001005}
1006
Chris Lattnerc3aae252005-01-07 07:46:32 +00001007
Dan Gohman475871a2008-07-27 21:46:04 +00001008SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1009 unsigned Alignment, int Offset,
1010 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001011 if (Alignment == 0)
1012 Alignment =
1013 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001014 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001015 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001016 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001017 ID.AddInteger(Alignment);
1018 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001019 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001020 void *IP = 0;
1021 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001022 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001023 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001024 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001025 CSEMap.InsertNode(N, IP);
1026 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001027 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001028}
1029
1030
Dan Gohman475871a2008-07-27 21:46:04 +00001031SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001032 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001033 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001034 ID.AddPointer(MBB);
1035 void *IP = 0;
1036 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001037 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001038 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001039 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001040 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001041 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001042 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001043}
1044
Dan Gohman475871a2008-07-27 21:46:04 +00001045SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001046 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001047 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001048 ID.AddInteger(Flags.getRawBits());
1049 void *IP = 0;
1050 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001051 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001052 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001053 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001054 CSEMap.InsertNode(N, IP);
1055 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001056 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001057}
1058
Dan Gohman475871a2008-07-27 21:46:04 +00001059SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001060 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1061 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001062
Duncan Sands83ec4b62008-06-06 12:08:01 +00001063 SDNode *&N = VT.isExtended() ?
1064 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001065
Dan Gohman475871a2008-07-27 21:46:04 +00001066 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001067 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001068 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001069 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001070 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001071}
1072
Bill Wendling056292f2008-09-16 21:48:12 +00001073SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1074 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001075 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001076 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1077 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001078 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001079 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001080}
1081
Bill Wendling056292f2008-09-16 21:48:12 +00001082SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1083 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001084 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001085 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1086 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001087 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001088 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001089}
1090
Dan Gohman475871a2008-07-27 21:46:04 +00001091SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001092 if ((unsigned)Cond >= CondCodeNodes.size())
1093 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001094
Chris Lattner079a27a2005-08-09 20:40:02 +00001095 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001096 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001097 new (N) CondCodeSDNode(Cond);
1098 CondCodeNodes[Cond] = N;
1099 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001100 }
Dan Gohman475871a2008-07-27 21:46:04 +00001101 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001102}
1103
Mon P Wang77cdf302008-11-10 20:54:11 +00001104SDValue SelectionDAG::getConvertRndSat(MVT VT, SDValue Val, SDValue DTy,
1105 SDValue STy, SDValue Rnd, SDValue Sat,
1106 ISD::CvtCode Code) {
Mon P Wang6db08c42008-12-11 03:30:13 +00001107 // If the src and dest types are the same, no conversion is necessary.
1108 if (DTy == STy)
1109 return Val;
1110
Mon P Wang77cdf302008-11-10 20:54:11 +00001111 FoldingSetNodeID ID;
1112 void* IP = 0;
1113 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1114 return SDValue(E, 0);
1115 CvtRndSatSDNode *N = NodeAllocator.Allocate<CvtRndSatSDNode>();
1116 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1117 new (N) CvtRndSatSDNode(VT, Ops, 5, Code);
1118 CSEMap.InsertNode(N, IP);
1119 AllNodes.push_back(N);
1120 return SDValue(N, 0);
1121}
1122
Dan Gohman475871a2008-07-27 21:46:04 +00001123SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001124 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001125 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001126 ID.AddInteger(RegNo);
1127 void *IP = 0;
1128 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001129 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001130 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001131 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001132 CSEMap.InsertNode(N, IP);
1133 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001134 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001135}
1136
Dan Gohman475871a2008-07-27 21:46:04 +00001137SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001138 unsigned Line, unsigned Col,
1139 const CompileUnitDesc *CU) {
1140 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001141 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001142 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001143 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001144}
1145
Dan Gohman475871a2008-07-27 21:46:04 +00001146SDValue SelectionDAG::getLabel(unsigned Opcode,
1147 SDValue Root,
1148 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001149 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001150 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001151 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1152 ID.AddInteger(LabelID);
1153 void *IP = 0;
1154 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001155 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001156 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001157 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001158 CSEMap.InsertNode(N, IP);
1159 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001160 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001161}
1162
Dan Gohman475871a2008-07-27 21:46:04 +00001163SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001164 assert((!V || isa<PointerType>(V->getType())) &&
1165 "SrcValue is not a pointer?");
1166
Jim Laskey583bd472006-10-27 23:46:08 +00001167 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001168 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001169 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001170
Chris Lattner61b09412006-08-11 21:01:22 +00001171 void *IP = 0;
1172 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001173 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001174
Dan Gohmanfed90b62008-07-28 21:51:04 +00001175 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001176 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001177 CSEMap.InsertNode(N, IP);
1178 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001179 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001180}
1181
Dan Gohman475871a2008-07-27 21:46:04 +00001182SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Evan Cheng24ac4082008-11-24 07:09:49 +00001183#ifndef NDEBUG
Dan Gohman69de1932008-02-06 22:27:42 +00001184 const Value *v = MO.getValue();
1185 assert((!v || isa<PointerType>(v->getType())) &&
1186 "SrcValue is not a pointer?");
Evan Cheng24ac4082008-11-24 07:09:49 +00001187#endif
Dan Gohman69de1932008-02-06 22:27:42 +00001188
1189 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001190 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001191 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001192
1193 void *IP = 0;
1194 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001195 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001196
Dan Gohmanfed90b62008-07-28 21:51:04 +00001197 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001198 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001199 CSEMap.InsertNode(N, IP);
1200 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001201 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001202}
1203
Chris Lattner37ce9df2007-10-15 17:47:20 +00001204/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1205/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001206SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001207 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands9304f2c2008-12-04 18:08:40 +00001208 unsigned ByteSize = VT.getStoreSizeInBits()/8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001209 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001210 unsigned StackAlign =
1211 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1212
Chris Lattner37ce9df2007-10-15 17:47:20 +00001213 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1214 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1215}
1216
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001217/// CreateStackTemporary - Create a stack temporary suitable for holding
1218/// either of the specified value types.
1219SDValue SelectionDAG::CreateStackTemporary(MVT VT1, MVT VT2) {
1220 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1221 VT2.getStoreSizeInBits())/8;
1222 const Type *Ty1 = VT1.getTypeForMVT();
1223 const Type *Ty2 = VT2.getTypeForMVT();
1224 const TargetData *TD = TLI.getTargetData();
1225 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1226 TD->getPrefTypeAlignment(Ty2));
1227
1228 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1229 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align);
1230 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1231}
1232
Dan Gohman475871a2008-07-27 21:46:04 +00001233SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1234 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001235 // These setcc operations always fold.
1236 switch (Cond) {
1237 default: break;
1238 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001239 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001240 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001241 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001242
1243 case ISD::SETOEQ:
1244 case ISD::SETOGT:
1245 case ISD::SETOGE:
1246 case ISD::SETOLT:
1247 case ISD::SETOLE:
1248 case ISD::SETONE:
1249 case ISD::SETO:
1250 case ISD::SETUO:
1251 case ISD::SETUEQ:
1252 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001253 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001254 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001255 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001256
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001258 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001259 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001260 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001261
Chris Lattnerc3aae252005-01-07 07:46:32 +00001262 switch (Cond) {
1263 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001264 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1265 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001266 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1267 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1268 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1269 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1270 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1271 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1272 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1273 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001274 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001275 }
Chris Lattner67255a12005-04-07 18:14:58 +00001276 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001277 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1278 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001279 // No compile time operations on this type yet.
1280 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001281 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001282
1283 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001284 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001285 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001286 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1287 return getNode(ISD::UNDEF, VT);
1288 // fall through
1289 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1290 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1291 return getNode(ISD::UNDEF, VT);
1292 // fall through
1293 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001294 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001295 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1296 return getNode(ISD::UNDEF, VT);
1297 // fall through
1298 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1299 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1300 return getNode(ISD::UNDEF, VT);
1301 // fall through
1302 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1303 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1304 return getNode(ISD::UNDEF, VT);
1305 // fall through
1306 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001307 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001308 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1309 return getNode(ISD::UNDEF, VT);
1310 // fall through
1311 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001312 R==APFloat::cmpEqual, VT);
1313 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1314 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1315 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1316 R==APFloat::cmpEqual, VT);
1317 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1318 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1319 R==APFloat::cmpLessThan, VT);
1320 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1321 R==APFloat::cmpUnordered, VT);
1322 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1323 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001324 }
1325 } else {
1326 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001327 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001328 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001329 }
1330
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001331 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001332 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001333}
1334
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001335/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1336/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001337bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001338 unsigned BitWidth = Op.getValueSizeInBits();
1339 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1340}
1341
Dan Gohmanea859be2007-06-22 14:59:07 +00001342/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1343/// this predicate to simplify operations downstream. Mask is known to be zero
1344/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001345bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001346 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001347 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001348 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1349 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1350 return (KnownZero & Mask) == Mask;
1351}
1352
1353/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1354/// known to be either zero or one and return them in the KnownZero/KnownOne
1355/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1356/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001357void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001358 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001359 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001360 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001361 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001362 "Mask size mismatches value type size!");
1363
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001364 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001365 if (Depth == 6 || Mask == 0)
1366 return; // Limit search depth.
1367
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001369
1370 switch (Op.getOpcode()) {
1371 case ISD::Constant:
1372 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001373 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001374 KnownZero = ~KnownOne & Mask;
1375 return;
1376 case ISD::AND:
1377 // If either the LHS or the RHS are Zero, the result is zero.
1378 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001379 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1380 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001381 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1382 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1383
1384 // Output known-1 bits are only known if set in both the LHS & RHS.
1385 KnownOne &= KnownOne2;
1386 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1387 KnownZero |= KnownZero2;
1388 return;
1389 case ISD::OR:
1390 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001391 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1392 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001393 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1394 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1395
1396 // Output known-0 bits are only known if clear in both the LHS & RHS.
1397 KnownZero &= KnownZero2;
1398 // Output known-1 are known to be set if set in either the LHS | RHS.
1399 KnownOne |= KnownOne2;
1400 return;
1401 case ISD::XOR: {
1402 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1403 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1404 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1405 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1406
1407 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001408 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001409 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1410 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1411 KnownZero = KnownZeroOut;
1412 return;
1413 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001414 case ISD::MUL: {
1415 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1416 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1417 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1418 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1419 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1420
1421 // If low bits are zero in either operand, output low known-0 bits.
1422 // Also compute a conserative estimate for high known-0 bits.
1423 // More trickiness is possible, but this is sufficient for the
1424 // interesting case of alignment computation.
1425 KnownOne.clear();
1426 unsigned TrailZ = KnownZero.countTrailingOnes() +
1427 KnownZero2.countTrailingOnes();
1428 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001429 KnownZero2.countLeadingOnes(),
1430 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001431
1432 TrailZ = std::min(TrailZ, BitWidth);
1433 LeadZ = std::min(LeadZ, BitWidth);
1434 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1435 APInt::getHighBitsSet(BitWidth, LeadZ);
1436 KnownZero &= Mask;
1437 return;
1438 }
1439 case ISD::UDIV: {
1440 // For the purposes of computing leading zeros we can conservatively
1441 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001442 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001443 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1444 ComputeMaskedBits(Op.getOperand(0),
1445 AllOnes, KnownZero2, KnownOne2, Depth+1);
1446 unsigned LeadZ = KnownZero2.countLeadingOnes();
1447
1448 KnownOne2.clear();
1449 KnownZero2.clear();
1450 ComputeMaskedBits(Op.getOperand(1),
1451 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001452 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1453 if (RHSUnknownLeadingOnes != BitWidth)
1454 LeadZ = std::min(BitWidth,
1455 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001456
1457 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1458 return;
1459 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001460 case ISD::SELECT:
1461 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1462 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1463 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1464 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1465
1466 // Only known if known in both the LHS and RHS.
1467 KnownOne &= KnownOne2;
1468 KnownZero &= KnownZero2;
1469 return;
1470 case ISD::SELECT_CC:
1471 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1472 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1473 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1474 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1475
1476 // Only known if known in both the LHS and RHS.
1477 KnownOne &= KnownOne2;
1478 KnownZero &= KnownZero2;
1479 return;
Bill Wendling253174b2008-11-22 07:24:01 +00001480 case ISD::SADDO:
1481 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001482 case ISD::SSUBO:
1483 case ISD::USUBO:
1484 case ISD::SMULO:
1485 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001486 if (Op.getResNo() != 1)
1487 return;
Duncan Sands03228082008-11-23 15:47:28 +00001488 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001489 case ISD::SETCC:
1490 // If we know the result of a setcc has the top bits zero, use this info.
Duncan Sands03228082008-11-23 15:47:28 +00001491 if (TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent &&
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001492 BitWidth > 1)
1493 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001494 return;
1495 case ISD::SHL:
1496 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1497 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001498 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001499
1500 // If the shift count is an invalid immediate, don't do anything.
1501 if (ShAmt >= BitWidth)
1502 return;
1503
1504 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001505 KnownZero, KnownOne, Depth+1);
1506 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001507 KnownZero <<= ShAmt;
1508 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001509 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001510 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001511 }
1512 return;
1513 case ISD::SRL:
1514 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1515 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001516 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001517
Dan Gohmand4cf9922008-02-26 18:50:50 +00001518 // If the shift count is an invalid immediate, don't do anything.
1519 if (ShAmt >= BitWidth)
1520 return;
1521
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001522 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001523 KnownZero, KnownOne, Depth+1);
1524 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001525 KnownZero = KnownZero.lshr(ShAmt);
1526 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001527
Dan Gohman72d2fd52008-02-13 22:43:25 +00001528 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001529 KnownZero |= HighBits; // High bits known zero.
1530 }
1531 return;
1532 case ISD::SRA:
1533 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001534 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001535
Dan Gohmand4cf9922008-02-26 18:50:50 +00001536 // If the shift count is an invalid immediate, don't do anything.
1537 if (ShAmt >= BitWidth)
1538 return;
1539
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001540 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001541 // If any of the demanded bits are produced by the sign extension, we also
1542 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001543 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1544 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001545 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001546
1547 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1548 Depth+1);
1549 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001550 KnownZero = KnownZero.lshr(ShAmt);
1551 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001552
1553 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001554 APInt SignBit = APInt::getSignBit(BitWidth);
1555 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001556
Dan Gohmanca93a432008-02-20 16:30:17 +00001557 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001558 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001559 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001560 KnownOne |= HighBits; // New bits are known one.
1561 }
1562 }
1563 return;
1564 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001565 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1566 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001567
1568 // Sign extension. Compute the demanded bits in the result that are not
1569 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001570 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001571
Dan Gohman977a76f2008-02-13 22:28:48 +00001572 APInt InSignBit = APInt::getSignBit(EBits);
1573 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001574
1575 // If the sign extended bits are demanded, we know that the sign
1576 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001577 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001578 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001579 InputDemandedBits |= InSignBit;
1580
1581 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1582 KnownZero, KnownOne, Depth+1);
1583 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1584
1585 // If the sign bit of the input is known set or clear, then we know the
1586 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001587 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001588 KnownZero |= NewBits;
1589 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001590 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001591 KnownOne |= NewBits;
1592 KnownZero &= ~NewBits;
1593 } else { // Input sign bit unknown
1594 KnownZero &= ~NewBits;
1595 KnownOne &= ~NewBits;
1596 }
1597 return;
1598 }
1599 case ISD::CTTZ:
1600 case ISD::CTLZ:
1601 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001602 unsigned LowBits = Log2_32(BitWidth)+1;
1603 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001604 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001605 return;
1606 }
1607 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001608 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001609 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001610 MVT VT = LD->getMemoryVT();
1611 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001612 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001613 }
1614 return;
1615 }
1616 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001617 MVT InVT = Op.getOperand(0).getValueType();
1618 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001619 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1620 APInt InMask = Mask;
1621 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001622 KnownZero.trunc(InBits);
1623 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001624 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001625 KnownZero.zext(BitWidth);
1626 KnownOne.zext(BitWidth);
1627 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001628 return;
1629 }
1630 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001631 MVT InVT = Op.getOperand(0).getValueType();
1632 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001633 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001634 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1635 APInt InMask = Mask;
1636 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001637
1638 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001639 // bit is demanded. Temporarily set this bit in the mask for our callee.
1640 if (NewBits.getBoolValue())
1641 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001642
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001643 KnownZero.trunc(InBits);
1644 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001645 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1646
1647 // Note if the sign bit is known to be zero or one.
1648 bool SignBitKnownZero = KnownZero.isNegative();
1649 bool SignBitKnownOne = KnownOne.isNegative();
1650 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1651 "Sign bit can't be known to be both zero and one!");
1652
1653 // If the sign bit wasn't actually demanded by our caller, we don't
1654 // want it set in the KnownZero and KnownOne result values. Reset the
1655 // mask and reapply it to the result values.
1656 InMask = Mask;
1657 InMask.trunc(InBits);
1658 KnownZero &= InMask;
1659 KnownOne &= InMask;
1660
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001661 KnownZero.zext(BitWidth);
1662 KnownOne.zext(BitWidth);
1663
Dan Gohman977a76f2008-02-13 22:28:48 +00001664 // If the sign bit is known zero or one, the top bits match.
1665 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001666 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001667 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001668 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001669 return;
1670 }
1671 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001672 MVT InVT = Op.getOperand(0).getValueType();
1673 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001674 APInt InMask = Mask;
1675 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001676 KnownZero.trunc(InBits);
1677 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001678 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001679 KnownZero.zext(BitWidth);
1680 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001681 return;
1682 }
1683 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001684 MVT InVT = Op.getOperand(0).getValueType();
1685 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001686 APInt InMask = Mask;
1687 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001688 KnownZero.zext(InBits);
1689 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001690 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001691 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001692 KnownZero.trunc(BitWidth);
1693 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001694 break;
1695 }
1696 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001697 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1698 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001699 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1700 KnownOne, Depth+1);
1701 KnownZero |= (~InMask) & Mask;
1702 return;
1703 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001704 case ISD::FGETSIGN:
1705 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001706 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001707 return;
1708
Dan Gohman23e8b712008-04-28 17:02:21 +00001709 case ISD::SUB: {
1710 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1711 // We know that the top bits of C-X are clear if X contains less bits
1712 // than C (i.e. no wrap-around can happen). For example, 20-X is
1713 // positive if we can prove that X is >= 0 and < 16.
1714 if (CLHS->getAPIntValue().isNonNegative()) {
1715 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1716 // NLZ can't be BitWidth with no sign bit
1717 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1718 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1719 Depth+1);
1720
1721 // If all of the MaskV bits are known to be zero, then we know the
1722 // output top bits are zero, because we now know that the output is
1723 // from [0-C].
1724 if ((KnownZero2 & MaskV) == MaskV) {
1725 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1726 // Top bits known zero.
1727 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1728 }
1729 }
1730 }
1731 }
1732 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001733 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001734 // Output known-0 bits are known if clear or set in both the low clear bits
1735 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1736 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001737 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1738 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1739 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1740 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1741
1742 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1743 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1744 KnownZeroOut = std::min(KnownZeroOut,
1745 KnownZero2.countTrailingOnes());
1746
1747 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001748 return;
1749 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001750 case ISD::SREM:
1751 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001752 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001753 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001754 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001755 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1756 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001757
Dan Gohmana60832b2008-08-13 23:12:35 +00001758 // If the sign bit of the first operand is zero, the sign bit of
1759 // the result is zero. If the first operand has no one bits below
1760 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001761 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1762 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001763
Dan Gohman23e8b712008-04-28 17:02:21 +00001764 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001765
1766 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001767 }
1768 }
1769 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001770 case ISD::UREM: {
1771 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001772 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001773 if (RA.isPowerOf2()) {
1774 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001775 APInt Mask2 = LowBits & Mask;
1776 KnownZero |= ~LowBits & Mask;
1777 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1778 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1779 break;
1780 }
1781 }
1782
1783 // Since the result is less than or equal to either operand, any leading
1784 // zero bits in either operand must also exist in the result.
1785 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1786 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1787 Depth+1);
1788 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1789 Depth+1);
1790
1791 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1792 KnownZero2.countLeadingOnes());
1793 KnownOne.clear();
1794 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1795 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001796 }
1797 default:
1798 // Allow the target to implement this method for its nodes.
1799 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1800 case ISD::INTRINSIC_WO_CHAIN:
1801 case ISD::INTRINSIC_W_CHAIN:
1802 case ISD::INTRINSIC_VOID:
1803 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1804 }
1805 return;
1806 }
1807}
1808
1809/// ComputeNumSignBits - Return the number of times the sign bit of the
1810/// register is replicated into the other bits. We know that at least 1 bit
1811/// is always equal to the sign bit (itself), but other cases can give us
1812/// information. For example, immediately after an "SRA X, 2", we know that
1813/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001814unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001815 MVT VT = Op.getValueType();
1816 assert(VT.isInteger() && "Invalid VT!");
1817 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001818 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001819 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001820
1821 if (Depth == 6)
1822 return 1; // Limit search depth.
1823
1824 switch (Op.getOpcode()) {
1825 default: break;
1826 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001827 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001828 return VTBits-Tmp+1;
1829 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001830 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001831 return VTBits-Tmp;
1832
1833 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001834 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1835 // If negative, return # leading ones.
1836 if (Val.isNegative())
1837 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001838
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001839 // Return # leading zeros.
1840 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001841 }
1842
1843 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001844 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001845 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1846
1847 case ISD::SIGN_EXTEND_INREG:
1848 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001849 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001850 Tmp = VTBits-Tmp+1;
1851
1852 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1853 return std::max(Tmp, Tmp2);
1854
1855 case ISD::SRA:
1856 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1857 // SRA X, C -> adds C sign bits.
1858 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001859 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001860 if (Tmp > VTBits) Tmp = VTBits;
1861 }
1862 return Tmp;
1863 case ISD::SHL:
1864 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1865 // shl destroys sign bits.
1866 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001867 if (C->getZExtValue() >= VTBits || // Bad shift.
1868 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1869 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001870 }
1871 break;
1872 case ISD::AND:
1873 case ISD::OR:
1874 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001875 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001876 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001877 if (Tmp != 1) {
1878 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1879 FirstAnswer = std::min(Tmp, Tmp2);
1880 // We computed what we know about the sign bits as our first
1881 // answer. Now proceed to the generic code that uses
1882 // ComputeMaskedBits, and pick whichever answer is better.
1883 }
1884 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001885
1886 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001887 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001888 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001889 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001890 return std::min(Tmp, Tmp2);
Bill Wendling253174b2008-11-22 07:24:01 +00001891
1892 case ISD::SADDO:
1893 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001894 case ISD::SSUBO:
1895 case ISD::USUBO:
1896 case ISD::SMULO:
1897 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001898 if (Op.getResNo() != 1)
1899 break;
Duncan Sands03228082008-11-23 15:47:28 +00001900 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001901 case ISD::SETCC:
1902 // If setcc returns 0/-1, all bits are sign bits.
Duncan Sands03228082008-11-23 15:47:28 +00001903 if (TLI.getBooleanContents() ==
1904 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohmanea859be2007-06-22 14:59:07 +00001905 return VTBits;
1906 break;
1907 case ISD::ROTL:
1908 case ISD::ROTR:
1909 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001910 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001911
1912 // Handle rotate right by N like a rotate left by 32-N.
1913 if (Op.getOpcode() == ISD::ROTR)
1914 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1915
1916 // If we aren't rotating out all of the known-in sign bits, return the
1917 // number that are left. This handles rotl(sext(x), 1) for example.
1918 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1919 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1920 }
1921 break;
1922 case ISD::ADD:
1923 // Add can have at most one carry bit. Thus we know that the output
1924 // is, at worst, one more bit than the inputs.
1925 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1926 if (Tmp == 1) return 1; // Early out.
1927
1928 // Special case decrementing a value (ADD X, -1):
1929 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1930 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001931 APInt KnownZero, KnownOne;
1932 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001933 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1934
1935 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1936 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001937 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001938 return VTBits;
1939
1940 // If we are subtracting one from a positive number, there is no carry
1941 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001942 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001943 return Tmp;
1944 }
1945
1946 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1947 if (Tmp2 == 1) return 1;
1948 return std::min(Tmp, Tmp2)-1;
1949 break;
1950
1951 case ISD::SUB:
1952 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1953 if (Tmp2 == 1) return 1;
1954
1955 // Handle NEG.
1956 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001957 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001958 APInt KnownZero, KnownOne;
1959 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001960 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1961 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1962 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001963 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001964 return VTBits;
1965
1966 // If the input is known to be positive (the sign bit is known clear),
1967 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001968 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001969 return Tmp2;
1970
1971 // Otherwise, we treat this like a SUB.
1972 }
1973
1974 // Sub can have at most one carry bit. Thus we know that the output
1975 // is, at worst, one more bit than the inputs.
1976 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1977 if (Tmp == 1) return 1; // Early out.
1978 return std::min(Tmp, Tmp2)-1;
1979 break;
1980 case ISD::TRUNCATE:
1981 // FIXME: it's tricky to do anything useful for this, but it is an important
1982 // case for targets like X86.
1983 break;
1984 }
1985
1986 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1987 if (Op.getOpcode() == ISD::LOAD) {
1988 LoadSDNode *LD = cast<LoadSDNode>(Op);
1989 unsigned ExtType = LD->getExtensionType();
1990 switch (ExtType) {
1991 default: break;
1992 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001993 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001994 return VTBits-Tmp+1;
1995 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001996 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001997 return VTBits-Tmp;
1998 }
1999 }
2000
2001 // Allow the target to implement this method for its nodes.
2002 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2003 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2004 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2005 Op.getOpcode() == ISD::INTRINSIC_VOID) {
2006 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002007 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002008 }
2009
2010 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2011 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002012 APInt KnownZero, KnownOne;
2013 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002014 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2015
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002016 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002017 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002018 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002019 Mask = KnownOne;
2020 } else {
2021 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002022 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002023 }
2024
2025 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2026 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002027 Mask = ~Mask;
2028 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002029 // Return # leading zeros. We use 'min' here in case Val was zero before
2030 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002031 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002032}
2033
Chris Lattner51dabfb2006-10-14 00:41:01 +00002034
Dan Gohman475871a2008-07-27 21:46:04 +00002035bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002036 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2037 if (!GA) return false;
Dan Gohman6520e202008-10-18 02:06:02 +00002038 if (GA->getOffset() != 0) return false;
Evan Chenga844bde2008-02-02 04:07:54 +00002039 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2040 if (!GV) return false;
2041 MachineModuleInfo *MMI = getMachineModuleInfo();
2042 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2043}
2044
2045
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002046/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2047/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002048SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002049 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002050 SDValue PermMask = N->getOperand(2);
2051 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002052 if (Idx.getOpcode() == ISD::UNDEF)
2053 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002054 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002055 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002056 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002057 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002058
2059 if (V.getOpcode() == ISD::BIT_CONVERT) {
2060 V = V.getOperand(0);
Mon P Wange9f10152008-12-09 05:46:39 +00002061 MVT VVT = V.getValueType();
2062 if (!VVT.isVector() || VVT.getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002063 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002064 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002065 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002066 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002067 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002068 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002069 return V.getOperand(Index);
2070 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002071 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002072 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002073}
2074
2075
Chris Lattnerc3aae252005-01-07 07:46:32 +00002076/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002077///
Dan Gohman475871a2008-07-27 21:46:04 +00002078SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002079 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002080 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002081 void *IP = 0;
2082 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002083 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002084 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002085 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002086 CSEMap.InsertNode(N, IP);
2087
2088 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002089#ifndef NDEBUG
2090 VerifyNode(N);
2091#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002092 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002093}
2094
Dan Gohman475871a2008-07-27 21:46:04 +00002095SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002096 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002097 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002098 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002099 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002100 switch (Opcode) {
2101 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002102 case ISD::SIGN_EXTEND:
2103 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002104 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002105 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002106 case ISD::TRUNCATE:
2107 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002108 case ISD::UINT_TO_FP:
2109 case ISD::SINT_TO_FP: {
2110 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002111 // No compile time operations on this type.
2112 if (VT==MVT::ppcf128)
2113 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002114 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2115 (void)apf.convertFromAPInt(Val,
2116 Opcode==ISD::SINT_TO_FP,
2117 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002118 return getConstantFP(apf, VT);
2119 }
Chris Lattner94683772005-12-23 05:30:37 +00002120 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002121 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002122 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002123 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002124 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002125 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002126 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002127 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002128 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002129 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002130 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002131 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002132 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002133 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002134 }
2135 }
2136
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002137 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002138 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002139 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002140 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002141 switch (Opcode) {
2142 case ISD::FNEG:
2143 V.changeSign();
2144 return getConstantFP(V, VT);
2145 case ISD::FABS:
2146 V.clearSign();
2147 return getConstantFP(V, VT);
2148 case ISD::FP_ROUND:
Dale Johannesen23a98552008-10-09 23:00:39 +00002149 case ISD::FP_EXTEND: {
2150 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002151 // This can return overflow, underflow, or inexact; we don't care.
2152 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002153 (void)V.convert(*MVTToAPFloatSemantics(VT),
Dale Johannesen23a98552008-10-09 23:00:39 +00002154 APFloat::rmNearestTiesToEven, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002155 return getConstantFP(V, VT);
Dale Johannesen23a98552008-10-09 23:00:39 +00002156 }
Dale Johannesendb44bf82007-10-16 23:38:29 +00002157 case ISD::FP_TO_SINT:
2158 case ISD::FP_TO_UINT: {
2159 integerPart x;
Dale Johannesen23a98552008-10-09 23:00:39 +00002160 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002161 assert(integerPartWidth >= 64);
2162 // FIXME need to be more flexible about rounding mode.
2163 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2164 Opcode==ISD::FP_TO_SINT,
Dale Johannesen23a98552008-10-09 23:00:39 +00002165 APFloat::rmTowardZero, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002166 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2167 break;
2168 return getConstant(x, VT);
2169 }
2170 case ISD::BIT_CONVERT:
2171 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Dale Johannesen23a98552008-10-09 23:00:39 +00002172 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002173 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Dale Johannesen23a98552008-10-09 23:00:39 +00002174 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002175 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002176 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002177 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002178 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002179
Gabor Greifba36cb52008-08-28 21:40:38 +00002180 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002181 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002182 case ISD::TokenFactor:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002183 case ISD::MERGE_VALUES:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002184 case ISD::CONCAT_VECTORS:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002185 return Operand; // Factor, merge or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002186 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002187 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002188 assert(VT.isFloatingPoint() &&
2189 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002190 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002191 if (Operand.getOpcode() == ISD::UNDEF)
2192 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002193 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002194 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002195 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002196 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002197 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002198 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002199 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002200 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002201 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002202 break;
2203 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002204 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002205 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002206 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002207 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002208 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002209 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002210 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002211 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002212 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002213 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002214 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002215 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002216 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002217 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002218 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2219 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002220 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002221 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002222 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002223 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002224 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002225 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002226 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002227 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002228 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002229 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002230 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2231 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002232 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002233 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2234 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2235 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2236 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002237 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002238 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002239 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002240 break;
Chris Lattner35481892005-12-23 00:16:34 +00002241 case ISD::BIT_CONVERT:
2242 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002243 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002244 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002245 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002246 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2247 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002248 if (OpOpcode == ISD::UNDEF)
2249 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002250 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002251 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002252 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2253 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002254 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002255 if (OpOpcode == ISD::UNDEF)
2256 return getNode(ISD::UNDEF, VT);
2257 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2258 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2259 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2260 Operand.getConstantOperandVal(1) == 0 &&
2261 Operand.getOperand(0).getValueType() == VT)
2262 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002263 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002264 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002265 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002266 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2267 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002268 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002269 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002270 break;
2271 case ISD::FABS:
2272 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002273 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002274 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002275 }
2276
Chris Lattner43247a12005-08-25 19:12:10 +00002277 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002278 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002279 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002280 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002281 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002282 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002283 void *IP = 0;
2284 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002285 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002286 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002287 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002288 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002289 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002290 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002291 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002292 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002293
Chris Lattnerc3aae252005-01-07 07:46:32 +00002294 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002295#ifndef NDEBUG
2296 VerifyNode(N);
2297#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002298 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002299}
2300
Bill Wendling688d1c42008-09-24 10:16:24 +00002301SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2302 MVT VT,
2303 ConstantSDNode *Cst1,
2304 ConstantSDNode *Cst2) {
2305 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2306
2307 switch (Opcode) {
2308 case ISD::ADD: return getConstant(C1 + C2, VT);
2309 case ISD::SUB: return getConstant(C1 - C2, VT);
2310 case ISD::MUL: return getConstant(C1 * C2, VT);
2311 case ISD::UDIV:
2312 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2313 break;
2314 case ISD::UREM:
2315 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2316 break;
2317 case ISD::SDIV:
2318 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2319 break;
2320 case ISD::SREM:
2321 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2322 break;
2323 case ISD::AND: return getConstant(C1 & C2, VT);
2324 case ISD::OR: return getConstant(C1 | C2, VT);
2325 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2326 case ISD::SHL: return getConstant(C1 << C2, VT);
2327 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2328 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2329 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2330 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2331 default: break;
2332 }
2333
2334 return SDValue();
2335}
2336
Dan Gohman475871a2008-07-27 21:46:04 +00002337SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2338 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002339 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2340 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002341 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002342 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002343 case ISD::TokenFactor:
2344 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2345 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002346 // Fold trivial token factors.
2347 if (N1.getOpcode() == ISD::EntryToken) return N2;
2348 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002349 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002350 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002351 case ISD::CONCAT_VECTORS:
2352 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2353 // one big BUILD_VECTOR.
2354 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2355 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002356 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2357 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002358 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2359 }
2360 break;
Chris Lattner76365122005-01-16 02:23:22 +00002361 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002362 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002363 N1.getValueType() == VT && "Binary operator types must match!");
2364 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2365 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002366 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002367 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002368 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2369 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002370 break;
Chris Lattner76365122005-01-16 02:23:22 +00002371 case ISD::OR:
2372 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002373 case ISD::ADD:
2374 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002375 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002376 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002377 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2378 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002379 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002380 return N1;
2381 break;
Chris Lattner76365122005-01-16 02:23:22 +00002382 case ISD::UDIV:
2383 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002384 case ISD::MULHU:
2385 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002386 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002387 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002388 case ISD::MUL:
2389 case ISD::SDIV:
2390 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002391 case ISD::FADD:
2392 case ISD::FSUB:
2393 case ISD::FMUL:
2394 case ISD::FDIV:
2395 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002396 assert(N1.getValueType() == N2.getValueType() &&
2397 N1.getValueType() == VT && "Binary operator types must match!");
2398 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002399 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2400 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002401 N1.getValueType().isFloatingPoint() &&
2402 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002403 "Invalid FCOPYSIGN!");
2404 break;
Chris Lattner76365122005-01-16 02:23:22 +00002405 case ISD::SHL:
2406 case ISD::SRA:
2407 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002408 case ISD::ROTL:
2409 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002410 assert(VT == N1.getValueType() &&
2411 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002412 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002413 "Shifts only work on integers");
Mon P Wange9f10152008-12-09 05:46:39 +00002414 assert((N2.getValueType() == TLI.getShiftAmountTy() ||
2415 (N2.getValueType().isVector() && N2.getValueType().isInteger())) &&
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002416 "Wrong type for shift amount");
Chris Lattner349db172008-07-02 17:01:57 +00002417
2418 // Always fold shifts of i1 values so the code generator doesn't need to
2419 // handle them. Since we know the size of the shift has to be less than the
2420 // size of the value, the shift/rotate count is guaranteed to be zero.
2421 if (VT == MVT::i1)
2422 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002423 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002424 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002425 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002426 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002427 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002428 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002429 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002430 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002431 break;
2432 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002433 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002434 assert(VT.isFloatingPoint() &&
2435 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002436 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002437 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002438 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002439 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002440 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002441 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002442 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002443 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002444 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002445 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002446 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002447 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002448 break;
2449 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002450 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002451 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002452 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002453 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002454 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002455 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002456 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002457
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002458 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002459 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002460 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002461 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002462 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002463 return getConstant(Val, VT);
2464 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002465 break;
2466 }
2467 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002468 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2469 if (N1.getOpcode() == ISD::UNDEF)
2470 return getNode(ISD::UNDEF, VT);
2471
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002472 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2473 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002474 if (N2C &&
2475 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002476 N1.getNumOperands() > 0) {
2477 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002478 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002479 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002480 N1.getOperand(N2C->getZExtValue() / Factor),
2481 getConstant(N2C->getZExtValue() % Factor,
2482 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002483 }
2484
2485 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2486 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002487 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002488 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002489
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002490 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2491 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002492 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2493 if (N1.getOperand(2) == N2)
2494 return N1.getOperand(1);
2495 else
2496 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2497 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002498 break;
2499 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002500 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002501 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2502 (N1.getValueType().isInteger() == VT.isInteger()) &&
2503 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002504
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002505 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2506 // 64-bit integers into 32-bit parts. Instead of building the extract of
2507 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2508 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002509 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002510
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002511 // EXTRACT_ELEMENT of a constant int is also very common.
2512 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002513 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002514 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002515 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2516 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002517 }
2518 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002519 case ISD::EXTRACT_SUBVECTOR:
2520 if (N1.getValueType() == VT) // Trivial extraction.
2521 return N1;
2522 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002523 }
2524
2525 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002526 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002527 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2528 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002529 } else { // Cannonicalize constant to RHS if commutative
2530 if (isCommutativeBinOp(Opcode)) {
2531 std::swap(N1C, N2C);
2532 std::swap(N1, N2);
2533 }
2534 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002535 }
2536
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002537 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002538 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2539 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002540 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002541 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2542 // Cannonicalize constant to RHS if commutative
2543 std::swap(N1CFP, N2CFP);
2544 std::swap(N1, N2);
2545 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002546 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2547 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002548 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002549 case ISD::FADD:
2550 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002551 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002552 return getConstantFP(V1, VT);
2553 break;
2554 case ISD::FSUB:
2555 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2556 if (s!=APFloat::opInvalidOp)
2557 return getConstantFP(V1, VT);
2558 break;
2559 case ISD::FMUL:
2560 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2561 if (s!=APFloat::opInvalidOp)
2562 return getConstantFP(V1, VT);
2563 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002564 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002565 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2566 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2567 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002568 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002569 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002570 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2571 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2572 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002573 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002574 case ISD::FCOPYSIGN:
2575 V1.copySign(V2);
2576 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002577 default: break;
2578 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002579 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002580 }
Chris Lattner62b57722006-04-20 05:39:12 +00002581
2582 // Canonicalize an UNDEF to the RHS, even over a constant.
2583 if (N1.getOpcode() == ISD::UNDEF) {
2584 if (isCommutativeBinOp(Opcode)) {
2585 std::swap(N1, N2);
2586 } else {
2587 switch (Opcode) {
2588 case ISD::FP_ROUND_INREG:
2589 case ISD::SIGN_EXTEND_INREG:
2590 case ISD::SUB:
2591 case ISD::FSUB:
2592 case ISD::FDIV:
2593 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002594 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002595 return N1; // fold op(undef, arg2) -> undef
2596 case ISD::UDIV:
2597 case ISD::SDIV:
2598 case ISD::UREM:
2599 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002600 case ISD::SRL:
2601 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002603 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2604 // For vectors, we can't easily build an all zero vector, just return
2605 // the LHS.
2606 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002607 }
2608 }
2609 }
2610
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002611 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002612 if (N2.getOpcode() == ISD::UNDEF) {
2613 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002614 case ISD::XOR:
2615 if (N1.getOpcode() == ISD::UNDEF)
2616 // Handle undef ^ undef -> 0 special case. This is a common
2617 // idiom (misuse).
2618 return getConstant(0, VT);
2619 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002620 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002621 case ISD::ADDC:
2622 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002623 case ISD::SUB:
2624 case ISD::FADD:
2625 case ISD::FSUB:
2626 case ISD::FMUL:
2627 case ISD::FDIV:
2628 case ISD::FREM:
2629 case ISD::UDIV:
2630 case ISD::SDIV:
2631 case ISD::UREM:
2632 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002633 return N2; // fold op(arg1, undef) -> undef
2634 case ISD::MUL:
2635 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002636 case ISD::SRL:
2637 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002638 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002639 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2640 // For vectors, we can't easily build an all zero vector, just return
2641 // the LHS.
2642 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002643 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002644 if (!VT.isVector())
2645 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002646 // For vectors, we can't easily build an all one vector, just return
2647 // the LHS.
2648 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002649 case ISD::SRA:
2650 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002651 }
2652 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002653
Chris Lattner27e9b412005-05-11 18:57:39 +00002654 // Memoize this node if possible.
2655 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002656 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002657 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002658 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002659 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002660 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002661 void *IP = 0;
2662 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002663 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002664 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002665 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002666 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002667 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002668 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002669 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002670 }
2671
Chris Lattnerc3aae252005-01-07 07:46:32 +00002672 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002673#ifndef NDEBUG
2674 VerifyNode(N);
2675#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002676 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002677}
2678
Dan Gohman475871a2008-07-27 21:46:04 +00002679SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2680 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002681 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002682 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2683 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002684 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002685 case ISD::CONCAT_VECTORS:
2686 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2687 // one big BUILD_VECTOR.
2688 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2689 N2.getOpcode() == ISD::BUILD_VECTOR &&
2690 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002691 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2692 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2693 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002694 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2695 }
2696 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002697 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002698 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002699 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002700 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002701 break;
2702 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002703 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002704 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002705 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002706 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002707 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002708 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002709 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002710
2711 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002712 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002713 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002714 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002715 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002716 return getNode(ISD::BR, MVT::Other, N1, N3);
2717 else
2718 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002719 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002720 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002721 case ISD::VECTOR_SHUFFLE:
Mon P Wangaeb06d22008-11-10 04:46:22 +00002722 assert(N1.getValueType() == N2.getValueType() &&
2723 N1.getValueType().isVector() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002724 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002725 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002726 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002727 "Illegal VECTOR_SHUFFLE node!");
2728 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002729 case ISD::BIT_CONVERT:
2730 // Fold bit_convert nodes from a type to themselves.
2731 if (N1.getValueType() == VT)
2732 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002733 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002734 }
2735
Chris Lattner43247a12005-08-25 19:12:10 +00002736 // Memoize node if it doesn't produce a flag.
2737 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002738 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002739 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002740 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002741 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002742 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002743 void *IP = 0;
2744 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002745 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002746 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002747 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002748 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002749 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002750 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002751 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002752 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002753 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002754#ifndef NDEBUG
2755 VerifyNode(N);
2756#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002757 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002758}
2759
Dan Gohman475871a2008-07-27 21:46:04 +00002760SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2761 SDValue N1, SDValue N2, SDValue N3,
2762 SDValue N4) {
2763 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002764 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002765}
2766
Dan Gohman475871a2008-07-27 21:46:04 +00002767SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2768 SDValue N1, SDValue N2, SDValue N3,
2769 SDValue N4, SDValue N5) {
2770 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002771 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002772}
2773
Dan Gohman707e0182008-04-12 04:36:06 +00002774/// getMemsetValue - Vectorized representation of the memset value
2775/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002776static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002777 unsigned NumBits = VT.isVector() ?
2778 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002779 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002780 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002781 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002782 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002783 Val = (Val << Shift) | Val;
2784 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002785 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002786 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002787 return DAG.getConstant(Val, VT);
2788 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002789 }
Evan Chengf0df0312008-05-15 08:39:06 +00002790
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002791 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Evan Chengf0df0312008-05-15 08:39:06 +00002792 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2793 unsigned Shift = 8;
2794 for (unsigned i = NumBits; i > 8; i >>= 1) {
2795 Value = DAG.getNode(ISD::OR, VT,
2796 DAG.getNode(ISD::SHL, VT, Value,
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002797 DAG.getConstant(Shift,
2798 TLI.getShiftAmountTy())),
2799 Value);
Evan Chengf0df0312008-05-15 08:39:06 +00002800 Shift <<= 1;
2801 }
2802
2803 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002804}
2805
Dan Gohman707e0182008-04-12 04:36:06 +00002806/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2807/// used when a memcpy is turned into a memset when the source is a constant
2808/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002809static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002810 const TargetLowering &TLI,
2811 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002812 // Handle vector with all elements zero.
2813 if (Str.empty()) {
2814 if (VT.isInteger())
2815 return DAG.getConstant(0, VT);
2816 unsigned NumElts = VT.getVectorNumElements();
2817 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2818 return DAG.getNode(ISD::BIT_CONVERT, VT,
2819 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2820 }
2821
Duncan Sands83ec4b62008-06-06 12:08:01 +00002822 assert(!VT.isVector() && "Can't handle vector type here!");
2823 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002824 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002825 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002826 if (TLI.isLittleEndian())
2827 Offset = Offset + MSB - 1;
2828 for (unsigned i = 0; i != MSB; ++i) {
2829 Val = (Val << 8) | (unsigned char)Str[Offset];
2830 Offset += TLI.isLittleEndian() ? -1 : 1;
2831 }
2832 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002833}
2834
Dan Gohman707e0182008-04-12 04:36:06 +00002835/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002836///
Dan Gohman475871a2008-07-27 21:46:04 +00002837static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002838 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002839 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002840 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2841}
2842
Evan Chengf0df0312008-05-15 08:39:06 +00002843/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2844///
Dan Gohman475871a2008-07-27 21:46:04 +00002845static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002846 unsigned SrcDelta = 0;
2847 GlobalAddressSDNode *G = NULL;
2848 if (Src.getOpcode() == ISD::GlobalAddress)
2849 G = cast<GlobalAddressSDNode>(Src);
2850 else if (Src.getOpcode() == ISD::ADD &&
2851 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2852 Src.getOperand(1).getOpcode() == ISD::Constant) {
2853 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002854 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002855 }
2856 if (!G)
2857 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002858
Evan Chengf0df0312008-05-15 08:39:06 +00002859 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002860 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2861 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002862
Evan Chengf0df0312008-05-15 08:39:06 +00002863 return false;
2864}
Dan Gohman707e0182008-04-12 04:36:06 +00002865
Evan Chengf0df0312008-05-15 08:39:06 +00002866/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2867/// to replace the memset / memcpy is below the threshold. It also returns the
2868/// types of the sequence of memory ops to perform memset / memcpy.
2869static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002870bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002871 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002872 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002873 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002874 SelectionDAG &DAG,
2875 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002876 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002877 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002878 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Chris Lattner7fe5e182008-10-28 07:10:51 +00002879 MVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002880 if (VT != MVT::iAny) {
2881 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002882 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002883 // If source is a string constant, this will require an unaligned load.
2884 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2885 if (Dst.getOpcode() != ISD::FrameIndex) {
2886 // Can't change destination alignment. It requires a unaligned store.
2887 if (AllowUnalign)
2888 VT = MVT::iAny;
2889 } else {
2890 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2891 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2892 if (MFI->isFixedObjectIndex(FI)) {
2893 // Can't change destination alignment. It requires a unaligned store.
2894 if (AllowUnalign)
2895 VT = MVT::iAny;
2896 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002897 // Give the stack frame object a larger alignment if needed.
2898 if (MFI->getObjectAlignment(FI) < NewAlign)
2899 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002900 Align = NewAlign;
2901 }
2902 }
2903 }
2904 }
2905
2906 if (VT == MVT::iAny) {
2907 if (AllowUnalign) {
2908 VT = MVT::i64;
2909 } else {
2910 switch (Align & 7) {
2911 case 0: VT = MVT::i64; break;
2912 case 4: VT = MVT::i32; break;
2913 case 2: VT = MVT::i16; break;
2914 default: VT = MVT::i8; break;
2915 }
2916 }
2917
Duncan Sands83ec4b62008-06-06 12:08:01 +00002918 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002919 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002920 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2921 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002922
Duncan Sands8e4eb092008-06-08 20:54:56 +00002923 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002924 VT = LVT;
2925 }
Dan Gohman707e0182008-04-12 04:36:06 +00002926
2927 unsigned NumMemOps = 0;
2928 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002929 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002930 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002931 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002932 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002933 VT = MVT::i64;
2934 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002935 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2936 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002937 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002938 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002939 VTSize >>= 1;
2940 }
Dan Gohman707e0182008-04-12 04:36:06 +00002941 }
Dan Gohman707e0182008-04-12 04:36:06 +00002942
2943 if (++NumMemOps > Limit)
2944 return false;
2945 MemOps.push_back(VT);
2946 Size -= VTSize;
2947 }
2948
2949 return true;
2950}
2951
Dan Gohman475871a2008-07-27 21:46:04 +00002952static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2953 SDValue Chain, SDValue Dst,
2954 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002955 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002956 const Value *DstSV, uint64_t DstSVOff,
2957 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002958 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2959
Dan Gohman21323f32008-05-29 19:42:22 +00002960 // Expand memcpy to a series of load and store ops if the size operand falls
2961 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002963 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002964 if (!AlwaysInline)
2965 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002966 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002967 std::string Str;
2968 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002969 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002970 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002971 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002972
Dan Gohman707e0182008-04-12 04:36:06 +00002973
Evan Cheng0ff39b32008-06-30 07:31:25 +00002974 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00002975 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00002976 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00002977 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002978 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002979 MVT VT = MemOps[i];
2980 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00002981 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00002982
Evan Cheng0ff39b32008-06-30 07:31:25 +00002983 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00002984 // It's unlikely a store of a vector immediate can be done in a single
2985 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002986 // We also handle store a vector with all zero's.
2987 // FIXME: Handle other cases where store of vector immediate is done in
2988 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002989 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002990 Store = DAG.getStore(Chain, Value,
2991 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00002992 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002993 } else {
2994 Value = DAG.getLoad(VT, Chain,
2995 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002996 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002997 Store = DAG.getStore(Chain, Value,
2998 getMemBasePlusOffset(Dst, DstOff, DAG),
2999 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00003000 }
3001 OutChains.push_back(Store);
3002 SrcOff += VTSize;
3003 DstOff += VTSize;
3004 }
3005
3006 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3007 &OutChains[0], OutChains.size());
3008}
3009
Dan Gohman475871a2008-07-27 21:46:04 +00003010static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
3011 SDValue Chain, SDValue Dst,
3012 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00003013 unsigned Align, bool AlwaysInline,
3014 const Value *DstSV, uint64_t DstSVOff,
3015 const Value *SrcSV, uint64_t SrcSVOff){
3016 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3017
3018 // Expand memmove to a series of load and store ops if the size operand falls
3019 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003020 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00003021 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00003022 if (!AlwaysInline)
3023 Limit = TLI.getMaxStoresPerMemmove();
3024 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003025 std::string Str;
3026 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00003027 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003028 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003029 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003030
Dan Gohman21323f32008-05-29 19:42:22 +00003031 uint64_t SrcOff = 0, DstOff = 0;
3032
Dan Gohman475871a2008-07-27 21:46:04 +00003033 SmallVector<SDValue, 8> LoadValues;
3034 SmallVector<SDValue, 8> LoadChains;
3035 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003036 unsigned NumMemOps = MemOps.size();
3037 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003038 MVT VT = MemOps[i];
3039 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003040 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003041
3042 Value = DAG.getLoad(VT, Chain,
3043 getMemBasePlusOffset(Src, SrcOff, DAG),
3044 SrcSV, SrcSVOff + SrcOff, false, Align);
3045 LoadValues.push_back(Value);
3046 LoadChains.push_back(Value.getValue(1));
3047 SrcOff += VTSize;
3048 }
3049 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3050 &LoadChains[0], LoadChains.size());
3051 OutChains.clear();
3052 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003053 MVT VT = MemOps[i];
3054 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003055 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003056
3057 Store = DAG.getStore(Chain, LoadValues[i],
3058 getMemBasePlusOffset(Dst, DstOff, DAG),
3059 DstSV, DstSVOff + DstOff, false, DstAlign);
3060 OutChains.push_back(Store);
3061 DstOff += VTSize;
3062 }
3063
3064 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3065 &OutChains[0], OutChains.size());
3066}
3067
Dan Gohman475871a2008-07-27 21:46:04 +00003068static SDValue getMemsetStores(SelectionDAG &DAG,
3069 SDValue Chain, SDValue Dst,
3070 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003071 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003072 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003073 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3074
3075 // Expand memset to a series of load/store ops if the size operand
3076 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003077 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003078 std::string Str;
3079 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003080 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003081 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003082 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003083
Dan Gohman475871a2008-07-27 21:46:04 +00003084 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003085 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003086
3087 unsigned NumMemOps = MemOps.size();
3088 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003089 MVT VT = MemOps[i];
3090 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003091 SDValue Value = getMemsetValue(Src, VT, DAG);
3092 SDValue Store = DAG.getStore(Chain, Value,
Chris Lattner7fe5e182008-10-28 07:10:51 +00003093 getMemBasePlusOffset(Dst, DstOff, DAG),
3094 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003095 OutChains.push_back(Store);
3096 DstOff += VTSize;
3097 }
3098
3099 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3100 &OutChains[0], OutChains.size());
3101}
3102
Dan Gohman475871a2008-07-27 21:46:04 +00003103SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3104 SDValue Src, SDValue Size,
3105 unsigned Align, bool AlwaysInline,
3106 const Value *DstSV, uint64_t DstSVOff,
3107 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003108
3109 // Check to see if we should lower the memcpy to loads and stores first.
3110 // For cases within the target-specified limits, this is the best choice.
3111 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3112 if (ConstantSize) {
3113 // Memcpy with size zero? Just return the original chain.
3114 if (ConstantSize->isNullValue())
3115 return Chain;
3116
Dan Gohman475871a2008-07-27 21:46:04 +00003117 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003118 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3119 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003120 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003121 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003122 return Result;
3123 }
3124
3125 // Then check to see if we should lower the memcpy with target-specific
3126 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003127 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003128 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3129 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003130 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003131 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003132 return Result;
3133
3134 // If we really need inline code and the target declined to provide it,
3135 // use a (potentially long) sequence of loads and stores.
3136 if (AlwaysInline) {
3137 assert(ConstantSize && "AlwaysInline requires a constant size!");
3138 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003139 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003140 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003141 }
3142
3143 // Emit a library call.
3144 TargetLowering::ArgListTy Args;
3145 TargetLowering::ArgListEntry Entry;
3146 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3147 Entry.Node = Dst; Args.push_back(Entry);
3148 Entry.Node = Src; Args.push_back(Entry);
3149 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003150 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003151 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003152 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003153 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003154 Args, *this);
3155 return CallResult.second;
3156}
3157
Dan Gohman475871a2008-07-27 21:46:04 +00003158SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3159 SDValue Src, SDValue Size,
3160 unsigned Align,
3161 const Value *DstSV, uint64_t DstSVOff,
3162 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003163
Dan Gohman21323f32008-05-29 19:42:22 +00003164 // Check to see if we should lower the memmove to loads and stores first.
3165 // For cases within the target-specified limits, this is the best choice.
3166 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3167 if (ConstantSize) {
3168 // Memmove with size zero? Just return the original chain.
3169 if (ConstantSize->isNullValue())
3170 return Chain;
3171
Dan Gohman475871a2008-07-27 21:46:04 +00003172 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003173 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3174 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003175 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003176 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003177 return Result;
3178 }
Dan Gohman707e0182008-04-12 04:36:06 +00003179
3180 // Then check to see if we should lower the memmove with target-specific
3181 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003182 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003183 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003184 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003185 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003186 return Result;
3187
3188 // Emit a library call.
3189 TargetLowering::ArgListTy Args;
3190 TargetLowering::ArgListEntry Entry;
3191 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3192 Entry.Node = Dst; Args.push_back(Entry);
3193 Entry.Node = Src; Args.push_back(Entry);
3194 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003195 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003196 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003197 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003198 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003199 Args, *this);
3200 return CallResult.second;
3201}
3202
Dan Gohman475871a2008-07-27 21:46:04 +00003203SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3204 SDValue Src, SDValue Size,
3205 unsigned Align,
3206 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003207
3208 // Check to see if we should lower the memset to stores first.
3209 // For cases within the target-specified limits, this is the best choice.
3210 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3211 if (ConstantSize) {
3212 // Memset with size zero? Just return the original chain.
3213 if (ConstantSize->isNullValue())
3214 return Chain;
3215
Dan Gohman475871a2008-07-27 21:46:04 +00003216 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003217 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3218 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003219 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003220 return Result;
3221 }
3222
3223 // Then check to see if we should lower the memset with target-specific
3224 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003225 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003226 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003227 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003228 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003229 return Result;
3230
3231 // Emit a library call.
3232 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3233 TargetLowering::ArgListTy Args;
3234 TargetLowering::ArgListEntry Entry;
3235 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3236 Args.push_back(Entry);
3237 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003238 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003239 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3240 else
3241 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3242 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3243 Args.push_back(Entry);
3244 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3245 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003246 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003247 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003248 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003249 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003250 Args, *this);
3251 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003252}
3253
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003254SDValue SelectionDAG::getAtomic(unsigned Opcode, MVT MemVT,
3255 SDValue Chain,
Dan Gohman475871a2008-07-27 21:46:04 +00003256 SDValue Ptr, SDValue Cmp,
3257 SDValue Swp, const Value* PtrVal,
3258 unsigned Alignment) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003259 assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003260 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003261
3262 MVT VT = Cmp.getValueType();
3263
3264 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003265 Alignment = getMVTAlignment(MemVT);
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003266
3267 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003268 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003269 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003270 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003271 void* IP = 0;
3272 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003273 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003274 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003275 new (N) AtomicSDNode(Opcode, VTs, MemVT,
3276 Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003277 CSEMap.InsertNode(N, IP);
3278 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003279 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003280}
3281
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003282SDValue SelectionDAG::getAtomic(unsigned Opcode, MVT MemVT,
3283 SDValue Chain,
Dan Gohman475871a2008-07-27 21:46:04 +00003284 SDValue Ptr, SDValue Val,
3285 const Value* PtrVal,
3286 unsigned Alignment) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003287 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
3288 Opcode == ISD::ATOMIC_LOAD_SUB ||
3289 Opcode == ISD::ATOMIC_LOAD_AND ||
3290 Opcode == ISD::ATOMIC_LOAD_OR ||
3291 Opcode == ISD::ATOMIC_LOAD_XOR ||
3292 Opcode == ISD::ATOMIC_LOAD_NAND ||
3293 Opcode == ISD::ATOMIC_LOAD_MIN ||
3294 Opcode == ISD::ATOMIC_LOAD_MAX ||
3295 Opcode == ISD::ATOMIC_LOAD_UMIN ||
3296 Opcode == ISD::ATOMIC_LOAD_UMAX ||
3297 Opcode == ISD::ATOMIC_SWAP) &&
3298 "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003299
3300 MVT VT = Val.getValueType();
3301
3302 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003303 Alignment = getMVTAlignment(MemVT);
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003304
3305 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003306 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003307 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003308 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003309 void* IP = 0;
3310 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003311 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003312 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003313 new (N) AtomicSDNode(Opcode, VTs, MemVT,
3314 Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003315 CSEMap.InsertNode(N, IP);
3316 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003317 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003318}
3319
Duncan Sands4bdcb612008-07-02 17:40:58 +00003320/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3321/// Allowed to return something different (and simpler) if Simplify is true.
Duncan Sandsaaffa052008-12-01 11:41:29 +00003322SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps) {
3323 if (NumOps == 1)
Duncan Sands4bdcb612008-07-02 17:40:58 +00003324 return Ops[0];
3325
3326 SmallVector<MVT, 4> VTs;
3327 VTs.reserve(NumOps);
3328 for (unsigned i = 0; i < NumOps; ++i)
3329 VTs.push_back(Ops[i].getValueType());
3330 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3331}
3332
Dan Gohman475871a2008-07-27 21:46:04 +00003333SDValue
Mon P Wangc4d10212008-10-17 18:22:58 +00003334SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3335 const MVT *VTs, unsigned NumVTs,
3336 const SDValue *Ops, unsigned NumOps,
3337 MVT MemVT, const Value *srcValue, int SVOff,
3338 unsigned Align, bool Vol,
3339 bool ReadMem, bool WriteMem) {
3340 return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3341 MemVT, srcValue, SVOff, Align, Vol,
3342 ReadMem, WriteMem);
3343}
3344
3345SDValue
3346SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3347 const SDValue *Ops, unsigned NumOps,
3348 MVT MemVT, const Value *srcValue, int SVOff,
3349 unsigned Align, bool Vol,
3350 bool ReadMem, bool WriteMem) {
3351 // Memoize the node unless it returns a flag.
3352 MemIntrinsicSDNode *N;
3353 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3354 FoldingSetNodeID ID;
3355 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3356 void *IP = 0;
3357 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3358 return SDValue(E, 0);
3359
3360 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3361 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3362 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3363 CSEMap.InsertNode(N, IP);
3364 } else {
3365 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3366 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3367 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3368 }
3369 AllNodes.push_back(N);
3370 return SDValue(N, 0);
3371}
3372
3373SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003374SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003375 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003376 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003377 // Do not include isTailCall in the folding set profile.
3378 FoldingSetNodeID ID;
3379 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3380 ID.AddInteger(CallingConv);
3381 ID.AddInteger(IsVarArgs);
3382 void *IP = 0;
3383 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3384 // Instead of including isTailCall in the folding set, we just
3385 // set the flag of the existing node.
3386 if (!IsTailCall)
3387 cast<CallSDNode>(E)->setNotTailCall();
3388 return SDValue(E, 0);
3389 }
Dan Gohman095cc292008-09-13 01:54:27 +00003390 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003391 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003392 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003393 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003394 AllNodes.push_back(N);
3395 return SDValue(N, 0);
3396}
3397
3398SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003399SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003400 MVT VT, SDValue Chain,
3401 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003402 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003403 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003404 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3405 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003406
Duncan Sands14ea39c2008-03-27 20:23:40 +00003407 if (VT == EVT) {
3408 ExtType = ISD::NON_EXTLOAD;
3409 } else if (ExtType == ISD::NON_EXTLOAD) {
3410 assert(VT == EVT && "Non-extending load from different memory type!");
3411 } else {
3412 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003413 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003414 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3415 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003416 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003417 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003418 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003419 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003420 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003421 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003422 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003423 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003424
3425 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003426 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003427 "Unindexed load with an offset!");
3428
3429 SDVTList VTs = Indexed ?
3430 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003431 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003432 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003433 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003434 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003435 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003436 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003437 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003438 void *IP = 0;
3439 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003440 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003441 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003442 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3443 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003444 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003445 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003446 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003447}
3448
Dan Gohman475871a2008-07-27 21:46:04 +00003449SDValue SelectionDAG::getLoad(MVT VT,
3450 SDValue Chain, SDValue Ptr,
3451 const Value *SV, int SVOffset,
3452 bool isVolatile, unsigned Alignment) {
3453 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003454 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3455 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003456}
3457
Dan Gohman475871a2008-07-27 21:46:04 +00003458SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3459 SDValue Chain, SDValue Ptr,
3460 const Value *SV,
3461 int SVOffset, MVT EVT,
3462 bool isVolatile, unsigned Alignment) {
3463 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003464 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3465 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003466}
3467
Dan Gohman475871a2008-07-27 21:46:04 +00003468SDValue
3469SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3470 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003471 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003472 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3473 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003474 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3475 LD->getChain(), Base, Offset, LD->getSrcValue(),
3476 LD->getSrcValueOffset(), LD->getMemoryVT(),
3477 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003478}
3479
Dan Gohman475871a2008-07-27 21:46:04 +00003480SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3481 SDValue Ptr, const Value *SV, int SVOffset,
3482 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003483 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003484
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003485 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3486 Alignment = getMVTAlignment(VT);
3487
Evan Chengad071e12006-10-05 22:57:11 +00003488 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003489 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3490 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003491 FoldingSetNodeID ID;
3492 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003493 ID.AddInteger(ISD::UNINDEXED);
3494 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003495 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003496 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003497 void *IP = 0;
3498 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003499 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003500 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003501 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3502 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003503 CSEMap.InsertNode(N, IP);
3504 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003505 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003506}
3507
Dan Gohman475871a2008-07-27 21:46:04 +00003508SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3509 SDValue Ptr, const Value *SV,
3510 int SVOffset, MVT SVT,
3511 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003512 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003513
3514 if (VT == SVT)
3515 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003516
Duncan Sands8e4eb092008-06-08 20:54:56 +00003517 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003518 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003519 "Can't do FP-INT conversion!");
3520
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003521 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3522 Alignment = getMVTAlignment(VT);
3523
Evan Cheng8b2794a2006-10-13 21:14:26 +00003524 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003525 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3526 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003527 FoldingSetNodeID ID;
3528 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003529 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003530 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003531 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003532 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003533 void *IP = 0;
3534 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003535 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003536 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003537 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3538 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003539 CSEMap.InsertNode(N, IP);
3540 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003541 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003542}
3543
Dan Gohman475871a2008-07-27 21:46:04 +00003544SDValue
3545SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3546 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003547 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3548 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3549 "Store is already a indexed store!");
3550 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003551 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003552 FoldingSetNodeID ID;
3553 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3554 ID.AddInteger(AM);
3555 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003556 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003557 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003558 void *IP = 0;
3559 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003560 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003561 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003562 new (N) StoreSDNode(Ops, VTs, AM,
3563 ST->isTruncatingStore(), ST->getMemoryVT(),
3564 ST->getSrcValue(), ST->getSrcValueOffset(),
3565 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003566 CSEMap.InsertNode(N, IP);
3567 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003568 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003569}
3570
Dan Gohman475871a2008-07-27 21:46:04 +00003571SDValue SelectionDAG::getVAArg(MVT VT,
3572 SDValue Chain, SDValue Ptr,
3573 SDValue SV) {
3574 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003575 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003576}
3577
Dan Gohman475871a2008-07-27 21:46:04 +00003578SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3579 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003580 switch (NumOps) {
3581 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003582 case 1: return getNode(Opcode, VT, Ops[0]);
3583 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3584 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003585 default: break;
3586 }
3587
Dan Gohman475871a2008-07-27 21:46:04 +00003588 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003589 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003590 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3591 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003592}
3593
Dan Gohman475871a2008-07-27 21:46:04 +00003594SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3595 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003596 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003597 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003598 case 1: return getNode(Opcode, VT, Ops[0]);
3599 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3600 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003601 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003602 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003603
Chris Lattneref847df2005-04-09 03:27:28 +00003604 switch (Opcode) {
3605 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003606 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003607 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003608 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3609 "LHS and RHS of condition must have same type!");
3610 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3611 "True and False arms of SelectCC must have same type!");
3612 assert(Ops[2].getValueType() == VT &&
3613 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003614 break;
3615 }
3616 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003617 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003618 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3619 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003620 break;
3621 }
Chris Lattneref847df2005-04-09 03:27:28 +00003622 }
3623
Chris Lattner385328c2005-05-14 07:42:29 +00003624 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003625 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003626 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003627 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003628 FoldingSetNodeID ID;
3629 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003630 void *IP = 0;
3631 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003632 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003633 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003634 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003635 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003636 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003637 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003638 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003639 }
Chris Lattneref847df2005-04-09 03:27:28 +00003640 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003641#ifndef NDEBUG
3642 VerifyNode(N);
3643#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003644 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003645}
3646
Dan Gohman475871a2008-07-27 21:46:04 +00003647SDValue SelectionDAG::getNode(unsigned Opcode,
3648 const std::vector<MVT> &ResultTys,
3649 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003650 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3651 Ops, NumOps);
3652}
3653
Dan Gohman475871a2008-07-27 21:46:04 +00003654SDValue SelectionDAG::getNode(unsigned Opcode,
3655 const MVT *VTs, unsigned NumVTs,
3656 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003657 if (NumVTs == 1)
3658 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003659 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3660}
3661
Dan Gohman475871a2008-07-27 21:46:04 +00003662SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3663 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003664 if (VTList.NumVTs == 1)
3665 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003666
Chris Lattner5f056bf2005-07-10 01:55:33 +00003667 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003668 // FIXME: figure out how to safely handle things like
3669 // int foo(int x) { return 1 << (x & 255); }
3670 // int bar() { return foo(256); }
3671#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003672 case ISD::SRA_PARTS:
3673 case ISD::SRL_PARTS:
3674 case ISD::SHL_PARTS:
3675 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003676 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003677 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3678 else if (N3.getOpcode() == ISD::AND)
3679 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3680 // If the and is only masking out bits that cannot effect the shift,
3681 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003682 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003683 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3684 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3685 }
3686 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003687#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003688 }
Chris Lattner89c34632005-05-14 06:20:26 +00003689
Chris Lattner43247a12005-08-25 19:12:10 +00003690 // Memoize the node unless it returns a flag.
3691 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003692 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003693 FoldingSetNodeID ID;
3694 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003695 void *IP = 0;
3696 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003697 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003698 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003699 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003700 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3701 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003702 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003703 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3704 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003705 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003706 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3707 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003708 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003709 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3710 }
Chris Lattnera5682852006-08-07 23:03:03 +00003711 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003712 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003713 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003714 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003715 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3716 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003717 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003718 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3719 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003720 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003721 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3722 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003723 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003724 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3725 }
Chris Lattner43247a12005-08-25 19:12:10 +00003726 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003727 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003728#ifndef NDEBUG
3729 VerifyNode(N);
3730#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003731 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003732}
3733
Dan Gohman475871a2008-07-27 21:46:04 +00003734SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003735 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003736}
3737
Dan Gohman475871a2008-07-27 21:46:04 +00003738SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3739 SDValue N1) {
3740 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003741 return getNode(Opcode, VTList, Ops, 1);
3742}
3743
Dan Gohman475871a2008-07-27 21:46:04 +00003744SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3745 SDValue N1, SDValue N2) {
3746 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003747 return getNode(Opcode, VTList, Ops, 2);
3748}
3749
Dan Gohman475871a2008-07-27 21:46:04 +00003750SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3751 SDValue N1, SDValue N2, SDValue N3) {
3752 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003753 return getNode(Opcode, VTList, Ops, 3);
3754}
3755
Dan Gohman475871a2008-07-27 21:46:04 +00003756SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3757 SDValue N1, SDValue N2, SDValue N3,
3758 SDValue N4) {
3759 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003760 return getNode(Opcode, VTList, Ops, 4);
3761}
3762
Dan Gohman475871a2008-07-27 21:46:04 +00003763SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3764 SDValue N1, SDValue N2, SDValue N3,
3765 SDValue N4, SDValue N5) {
3766 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003767 return getNode(Opcode, VTList, Ops, 5);
3768}
3769
Duncan Sands83ec4b62008-06-06 12:08:01 +00003770SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003771 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003772}
3773
Duncan Sands83ec4b62008-06-06 12:08:01 +00003774SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003775 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3776 E = VTList.rend(); I != E; ++I)
3777 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3778 return *I;
3779
3780 MVT *Array = Allocator.Allocate<MVT>(2);
3781 Array[0] = VT1;
3782 Array[1] = VT2;
3783 SDVTList Result = makeVTList(Array, 2);
3784 VTList.push_back(Result);
3785 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003786}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003787
3788SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3789 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3790 E = VTList.rend(); I != E; ++I)
3791 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3792 I->VTs[2] == VT3)
3793 return *I;
3794
3795 MVT *Array = Allocator.Allocate<MVT>(3);
3796 Array[0] = VT1;
3797 Array[1] = VT2;
3798 Array[2] = VT3;
3799 SDVTList Result = makeVTList(Array, 3);
3800 VTList.push_back(Result);
3801 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003802}
3803
Bill Wendling13d6d442008-12-01 23:28:22 +00003804SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3, MVT VT4) {
3805 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3806 E = VTList.rend(); I != E; ++I)
3807 if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3808 I->VTs[2] == VT3 && I->VTs[3] == VT4)
3809 return *I;
3810
3811 MVT *Array = Allocator.Allocate<MVT>(3);
3812 Array[0] = VT1;
3813 Array[1] = VT2;
3814 Array[2] = VT3;
3815 Array[3] = VT4;
3816 SDVTList Result = makeVTList(Array, 4);
3817 VTList.push_back(Result);
3818 return Result;
3819}
3820
Duncan Sands83ec4b62008-06-06 12:08:01 +00003821SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003822 switch (NumVTs) {
3823 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003824 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003825 case 2: return getVTList(VTs[0], VTs[1]);
3826 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3827 default: break;
3828 }
3829
Dan Gohmane8be6c62008-07-17 19:10:17 +00003830 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3831 E = VTList.rend(); I != E; ++I) {
3832 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3833 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003834
3835 bool NoMatch = false;
3836 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003837 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003838 NoMatch = true;
3839 break;
3840 }
3841 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003842 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003843 }
3844
Dan Gohmane8be6c62008-07-17 19:10:17 +00003845 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3846 std::copy(VTs, VTs+NumVTs, Array);
3847 SDVTList Result = makeVTList(Array, NumVTs);
3848 VTList.push_back(Result);
3849 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003850}
3851
3852
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003853/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3854/// specified operands. If the resultant node already exists in the DAG,
3855/// this does not modify the specified node, instead it returns the node that
3856/// already exists. If the resultant node does not exist in the DAG, the
3857/// input node is returned. As a degenerate case, if you specify the same
3858/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003859SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003860 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003861 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3862
3863 // Check to see if there is no change.
3864 if (Op == N->getOperand(0)) return InN;
3865
3866 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003867 void *InsertPos = 0;
3868 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003869 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003870
Dan Gohman79acd2b2008-07-21 22:38:59 +00003871 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003872 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003873 if (!RemoveNodeFromCSEMaps(N))
3874 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003875
3876 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003877 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003878 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003879 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003880 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003881
3882 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003883 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003884 return InN;
3885}
3886
Dan Gohman475871a2008-07-27 21:46:04 +00003887SDValue SelectionDAG::
3888UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003889 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003890 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3891
3892 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003893 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3894 return InN; // No operands changed, just return the input node.
3895
3896 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003897 void *InsertPos = 0;
3898 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003899 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003900
Dan Gohman79acd2b2008-07-21 22:38:59 +00003901 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003902 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003903 if (!RemoveNodeFromCSEMaps(N))
3904 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003905
3906 // Now we update the operands.
3907 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003908 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003909 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003910 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003911 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003912 }
3913 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003914 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003915 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003916 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003917 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003918 }
3919
3920 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003921 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003922 return InN;
3923}
3924
Dan Gohman475871a2008-07-27 21:46:04 +00003925SDValue SelectionDAG::
3926UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3927 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003928 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003929}
3930
Dan Gohman475871a2008-07-27 21:46:04 +00003931SDValue SelectionDAG::
3932UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3933 SDValue Op3, SDValue Op4) {
3934 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003935 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003936}
3937
Dan Gohman475871a2008-07-27 21:46:04 +00003938SDValue SelectionDAG::
3939UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3940 SDValue Op3, SDValue Op4, SDValue Op5) {
3941 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003942 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003943}
3944
Dan Gohman475871a2008-07-27 21:46:04 +00003945SDValue SelectionDAG::
3946UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003947 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003948 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003949 "Update with wrong number of operands");
3950
3951 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003952 bool AnyChange = false;
3953 for (unsigned i = 0; i != NumOps; ++i) {
3954 if (Ops[i] != N->getOperand(i)) {
3955 AnyChange = true;
3956 break;
3957 }
3958 }
3959
3960 // No operands changed, just return the input node.
3961 if (!AnyChange) return InN;
3962
3963 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003964 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003965 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003966 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003967
Dan Gohman7ceda162008-05-02 00:05:03 +00003968 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003969 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003970 if (!RemoveNodeFromCSEMaps(N))
3971 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003972
3973 // Now we update the operands.
3974 for (unsigned i = 0; i != NumOps; ++i) {
3975 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003976 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003977 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003978 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003979 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003980 }
3981 }
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 Gohman0fe9c6e2008-07-07 20:57:48 +00003988/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00003989/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003990void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003991 // Unlike the code in MorphNodeTo that does this, we don't need to
3992 // watch for dead nodes here.
3993 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3994 I->getVal()->removeUser(std::distance(op_begin(), I), this);
3995
3996 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003997}
Chris Lattner149c58c2005-08-16 18:17:10 +00003998
Dan Gohmane8be6c62008-07-17 19:10:17 +00003999/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4000/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004001///
Dan Gohmane8be6c62008-07-17 19:10:17 +00004002SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004003 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004004 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004005 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00004006}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004007
Dan Gohmane8be6c62008-07-17 19:10:17 +00004008SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004009 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004010 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004011 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004012 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00004013}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004014
Dan Gohmane8be6c62008-07-17 19:10:17 +00004015SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004016 MVT VT, SDValue Op1,
4017 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004018 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004019 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004020 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00004021}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004022
Dan Gohmane8be6c62008-07-17 19:10:17 +00004023SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004024 MVT VT, SDValue Op1,
4025 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004026 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004027 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004028 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00004029}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00004030
Dan Gohmane8be6c62008-07-17 19:10:17 +00004031SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004032 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00004033 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004034 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004035 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004036}
4037
Dan Gohmane8be6c62008-07-17 19:10:17 +00004038SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004039 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004040 unsigned NumOps) {
4041 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004042 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004043}
4044
Dan Gohmane8be6c62008-07-17 19:10:17 +00004045SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004046 MVT VT1, MVT VT2) {
4047 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004048 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00004049}
4050
Dan Gohmane8be6c62008-07-17 19:10:17 +00004051SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004052 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004053 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004054 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004055 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004056}
4057
Bill Wendling13d6d442008-12-01 23:28:22 +00004058SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4059 MVT VT1, MVT VT2, MVT VT3, MVT VT4,
4060 const SDValue *Ops, unsigned NumOps) {
4061 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
4062 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4063}
4064
Dan Gohmane8be6c62008-07-17 19:10:17 +00004065SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004066 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004067 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004068 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004069 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004070 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004071}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004072
Dan Gohmane8be6c62008-07-17 19:10:17 +00004073SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004074 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004075 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004076 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004077 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004078 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004079}
4080
Dan Gohmane8be6c62008-07-17 19:10:17 +00004081SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004082 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004083 SDValue Op1, SDValue Op2,
4084 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004085 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004086 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004087 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004088}
4089
Dan Gohmane8be6c62008-07-17 19:10:17 +00004090SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Bill Wendling13d6d442008-12-01 23:28:22 +00004091 MVT VT1, MVT VT2, MVT VT3,
4092 SDValue Op1, SDValue Op2,
4093 SDValue Op3) {
4094 SDVTList VTs = getVTList(VT1, VT2, VT3);
4095 SDValue Ops[] = { Op1, Op2, Op3 };
4096 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4097}
4098
4099SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004100 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004101 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004102 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4103}
4104
4105SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4106 MVT VT) {
4107 SDVTList VTs = getVTList(VT);
4108 return MorphNodeTo(N, Opc, VTs, 0, 0);
4109}
4110
4111SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004112 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004113 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004114 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004115 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4116}
4117
4118SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004119 MVT VT, SDValue Op1,
4120 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004121 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004122 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004123 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4124}
4125
4126SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004127 MVT VT, SDValue Op1,
4128 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004129 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004131 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4132}
4133
4134SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004135 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004136 unsigned NumOps) {
4137 SDVTList VTs = getVTList(VT);
4138 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4139}
4140
4141SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004142 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004143 unsigned NumOps) {
4144 SDVTList VTs = getVTList(VT1, VT2);
4145 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4146}
4147
4148SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4149 MVT VT1, MVT VT2) {
4150 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004151 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004152}
4153
4154SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4155 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004156 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004157 SDVTList VTs = getVTList(VT1, VT2, VT3);
4158 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4159}
4160
4161SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4162 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004163 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004164 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004165 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004166 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4167}
4168
4169SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4170 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004171 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004172 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004173 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004174 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4175}
4176
4177SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4178 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004179 SDValue Op1, SDValue Op2,
4180 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004181 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004182 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004183 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4184}
4185
4186/// MorphNodeTo - These *mutate* the specified node to have the specified
4187/// return type, opcode, and operands.
4188///
4189/// Note that MorphNodeTo returns the resultant node. If there is already a
4190/// node of the specified opcode and operands, it returns that node instead of
4191/// the current one.
4192///
4193/// Using MorphNodeTo is faster than creating a new node and swapping it in
4194/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004195/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004196/// the node's users.
4197///
4198SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004199 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004200 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004201 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004202 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004203 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4204 FoldingSetNodeID ID;
4205 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4206 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4207 return ON;
4208 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004209
Dan Gohman095cc292008-09-13 01:54:27 +00004210 if (!RemoveNodeFromCSEMaps(N))
4211 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004212
Dan Gohmane8be6c62008-07-17 19:10:17 +00004213 // Start the morphing.
4214 N->NodeType = Opc;
4215 N->ValueList = VTs.VTs;
4216 N->NumValues = VTs.NumVTs;
4217
4218 // Clear the operands list, updating used nodes to remove this from their
4219 // use list. Keep track of any operands that become dead as a result.
4220 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4221 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4222 I != E; ++I) {
4223 SDNode *Used = I->getVal();
4224 Used->removeUser(std::distance(B, I), N);
4225 if (Used->use_empty())
4226 DeadNodeSet.insert(Used);
4227 }
4228
4229 // If NumOps is larger than the # of operands we currently have, reallocate
4230 // the operand list.
4231 if (NumOps > N->NumOperands) {
4232 if (N->OperandsNeedDelete)
4233 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +00004234
Dan Gohmane8be6c62008-07-17 19:10:17 +00004235 if (N->isMachineOpcode()) {
4236 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004237 // remainder of the current SelectionDAG iteration, so we can allocate
4238 // the operands directly out of a pool with no recycling metadata.
4239 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004240 N->OperandsNeedDelete = false;
4241 } else {
4242 N->OperandList = new SDUse[NumOps];
4243 N->OperandsNeedDelete = true;
4244 }
4245 }
4246
4247 // Assign the new operands.
4248 N->NumOperands = NumOps;
4249 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4250 N->OperandList[i] = Ops[i];
4251 N->OperandList[i].setUser(N);
4252 SDNode *ToUse = N->OperandList[i].getVal();
4253 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004254 }
4255
4256 // Delete any nodes that are still dead after adding the uses for the
4257 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004258 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004259 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4260 E = DeadNodeSet.end(); I != E; ++I)
4261 if ((*I)->use_empty())
4262 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004263 RemoveDeadNodes(DeadNodes);
4264
Dan Gohmane8be6c62008-07-17 19:10:17 +00004265 if (IP)
4266 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004267 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004268}
4269
Chris Lattner0fb094f2005-11-19 01:44:53 +00004270
Evan Cheng6ae46c42006-02-09 07:15:23 +00004271/// getTargetNode - These are used for target selectors to create a new node
4272/// with specified return type(s), target opcode, and operands.
4273///
4274/// Note that getTargetNode returns the resultant node. If there is already a
4275/// node of the specified opcode and operands, it returns that node instead of
4276/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004277SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004278 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004279}
Dan Gohman475871a2008-07-27 21:46:04 +00004280SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004281 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004282}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004283SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004284 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004285 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004286}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004287SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004288 SDValue Op1, SDValue Op2,
4289 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004290 return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004291}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004292SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004293 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004294 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004295}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004296SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4297 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004298 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004299 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004300}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004301SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004302 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004303 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004304 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004305}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004306SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004307 MVT VT2, SDValue Op1,
4308 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004309 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004310 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004311 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004312}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004313SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004314 MVT VT2, SDValue Op1,
4315 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004316 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004317 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004318 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004319}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004320SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004321 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004322 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004323 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004324}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004325SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004326 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004327 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004328 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004329 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004330}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004331SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004332 SDValue Op1, SDValue Op2,
4333 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004334 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004335 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004336 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004337}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004338SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004339 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004340 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004341 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004342}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004343SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4344 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004345 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004346 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004347 VTList.push_back(VT1);
4348 VTList.push_back(VT2);
4349 VTList.push_back(VT3);
4350 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004351 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004352 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004353}
Evan Cheng39305cf2007-10-05 01:10:49 +00004354SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004355 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004356 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004357 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004358 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004359 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004360}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004361
Evan Cheng08b11732008-03-22 01:55:50 +00004362/// getNodeIfExists - Get the specified node if it's already available, or
4363/// else return NULL.
4364SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004365 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004366 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4367 FoldingSetNodeID ID;
4368 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4369 void *IP = 0;
4370 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4371 return E;
4372 }
4373 return NULL;
4374}
4375
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004376
Evan Cheng99157a02006-08-07 22:13:29 +00004377/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004378/// This can cause recursive merging of nodes in the DAG.
4379///
Chris Lattner11d049c2008-02-03 03:35:22 +00004380/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004381///
Dan Gohman475871a2008-07-27 21:46:04 +00004382void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004383 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004384 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004385 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004386 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004387 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004388
Chris Lattner8b8749f2005-08-17 19:00:20 +00004389 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004390 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004391 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004392
Chris Lattner8b8749f2005-08-17 19:00:20 +00004393 // This node is about to morph, remove its old self from the CSE maps.
4394 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004395 int operandNum = 0;
4396 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4397 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004398 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004399 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004400 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004401 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004402 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004403 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004404
4405 // Now that we have modified U, add it back to the CSE maps. If it already
4406 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004407 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004408 ReplaceAllUsesWith(U, Existing, UpdateListener);
4409 // U is now dead. Inform the listener if it exists and delete it.
4410 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004411 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004412 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004413 } else {
4414 // If the node doesn't already exist, we updated it. Inform a listener if
4415 // it exists.
4416 if (UpdateListener)
4417 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004418 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004419 }
4420}
4421
4422/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4423/// This can cause recursive merging of nodes in the DAG.
4424///
4425/// This version assumes From/To have matching types and numbers of result
4426/// values.
4427///
Chris Lattner1e111c72005-09-07 05:37:01 +00004428void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004429 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004430 assert(From->getVTList().VTs == To->getVTList().VTs &&
4431 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004432 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004433
4434 // Handle the trivial case.
4435 if (From == To)
4436 return;
4437
Chris Lattner8b52f212005-08-26 18:36:28 +00004438 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004439 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004440 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004441
Chris Lattner8b52f212005-08-26 18:36:28 +00004442 // This node is about to morph, remove its old self from the CSE maps.
4443 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004444 int operandNum = 0;
4445 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4446 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004447 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004448 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004449 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004450 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004451 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004452
Chris Lattner8b8749f2005-08-17 19:00:20 +00004453 // Now that we have modified U, add it back to the CSE maps. If it already
4454 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004455 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004456 ReplaceAllUsesWith(U, Existing, UpdateListener);
4457 // U is now dead. Inform the listener if it exists and delete it.
4458 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004459 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004460 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004461 } else {
4462 // If the node doesn't already exist, we updated it. Inform a listener if
4463 // it exists.
4464 if (UpdateListener)
4465 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004466 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004467 }
4468}
4469
Chris Lattner8b52f212005-08-26 18:36:28 +00004470/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4471/// This can cause recursive merging of nodes in the DAG.
4472///
4473/// This version can replace From with any result values. To must match the
4474/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004475void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004476 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004477 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004478 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004479 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004480
4481 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004482 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004483 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004484
Chris Lattner7b2880c2005-08-24 22:44:39 +00004485 // This node is about to morph, remove its old self from the CSE maps.
4486 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004487 int operandNum = 0;
4488 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4489 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004490 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004491 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004492 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004493 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004494 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004495 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004496 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004497
Chris Lattner7b2880c2005-08-24 22:44:39 +00004498 // Now that we have modified U, add it back to the CSE maps. If it already
4499 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004500 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004501 ReplaceAllUsesWith(U, Existing, UpdateListener);
4502 // U is now dead. Inform the listener if it exists and delete it.
4503 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004504 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004505 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004506 } else {
4507 // If the node doesn't already exist, we updated it. Inform a listener if
4508 // it exists.
4509 if (UpdateListener)
4510 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004511 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004512 }
4513}
4514
Chris Lattner012f2412006-02-17 21:58:01 +00004515/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004516/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004517/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004518void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004519 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004520 // Handle the really simple, really trivial case efficiently.
4521 if (From == To) return;
4522
Chris Lattner012f2412006-02-17 21:58:01 +00004523 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004524 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004525 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004526 return;
4527 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004528
Gabor Greifba36cb52008-08-28 21:40:38 +00004529 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004530 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004531 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004532
4533 while (!Users.empty()) {
4534 // We know that this user uses some value of From. If it is the right
4535 // value, update it.
4536 SDNode *User = Users.back();
4537 Users.pop_back();
4538
Chris Lattner01d029b2007-10-15 06:10:22 +00004539 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004540 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004541 for (; Op != E; ++Op)
4542 if (*Op == From) break;
4543
4544 // If there are no matches, the user must use some other result of From.
4545 if (Op == E) continue;
4546
4547 // Okay, we know this user needs to be updated. Remove its old self
4548 // from the CSE maps.
4549 RemoveNodeFromCSEMaps(User);
4550
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004551 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004552 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004553 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004554 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004555 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004556 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004557 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004558 }
4559 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004560
4561 // Now that we have modified User, add it back to the CSE maps. If it
4562 // already exists there, recursively merge the results together.
4563 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004564 if (!Existing) {
4565 if (UpdateListener) UpdateListener->NodeUpdated(User);
4566 continue; // Continue on to next user.
4567 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004568
4569 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004570 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004571 // recursive merging of other unrelated nodes down the line.
4572 ReplaceAllUsesWith(User, Existing, UpdateListener);
4573
4574 // User is now dead. Notify a listener if present.
4575 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4576 DeleteNodeNotInCSEMaps(User);
4577 }
4578}
4579
4580/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004581/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004582/// appear in both the From and To list. The Deleted vector is
4583/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004584void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4585 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004586 unsigned Num,
4587 DAGUpdateListener *UpdateListener){
4588 // Handle the simple, trivial case efficiently.
4589 if (Num == 1)
4590 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4591
4592 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4593 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004594 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4595 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004596 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004597
4598 while (!Users.empty()) {
4599 // We know that this user uses some value of From. If it is the right
4600 // value, update it.
4601 SDNode *User = Users.back().first;
4602 unsigned i = Users.back().second;
4603 Users.pop_back();
4604
4605 // Scan for an operand that matches From.
4606 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4607 for (; Op != E; ++Op)
4608 if (*Op == From[i]) break;
4609
4610 // If there are no matches, the user must use some other result of From.
4611 if (Op == E) continue;
4612
4613 // Okay, we know this user needs to be updated. Remove its old self
4614 // from the CSE maps.
4615 RemoveNodeFromCSEMaps(User);
4616
4617 // Update all operands that match "From" in case there are multiple uses.
4618 for (; Op != E; ++Op) {
4619 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004620 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004621 *Op = To[i];
4622 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004623 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004624 }
4625 }
4626
4627 // Now that we have modified User, add it back to the CSE maps. If it
4628 // already exists there, recursively merge the results together.
4629 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4630 if (!Existing) {
4631 if (UpdateListener) UpdateListener->NodeUpdated(User);
4632 continue; // Continue on to next user.
4633 }
4634
4635 // If there was already an existing matching node, use ReplaceAllUsesWith
4636 // to replace the dead one with the existing one. This can cause
4637 // recursive merging of other unrelated nodes down the line.
4638 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004639
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004640 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004641 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004642 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004643 }
4644}
4645
Evan Chenge6f35d82006-08-01 08:20:41 +00004646/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004647/// based on their topological order. It returns the maximum id and a vector
4648/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004649unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004650
Dan Gohmanf06c8352008-09-30 18:30:35 +00004651 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004652
Dan Gohmanf06c8352008-09-30 18:30:35 +00004653 // SortedPos tracks the progress of the algorithm. Nodes before it are
4654 // sorted, nodes after it are unsorted. When the algorithm completes
4655 // it is at the end of the list.
4656 allnodes_iterator SortedPos = allnodes_begin();
4657
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004658 // Visit all the nodes. Move nodes with no operands to the front of
4659 // the list immediately. Annotate nodes that do have operands with their
Dan Gohmanf06c8352008-09-30 18:30:35 +00004660 // operand count. Before we do this, the Node Id fields of the nodes
4661 // may contain arbitrary values. After, the Node Id fields for nodes
4662 // before SortedPos will contain the topological sort index, and the
4663 // Node Id fields for nodes At SortedPos and after will contain the
4664 // count of outstanding operands.
4665 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4666 SDNode *N = I++;
4667 unsigned Degree = N->getNumOperands();
4668 if (Degree == 0) {
4669 // A node with no uses, add it to the result array immediately.
4670 N->setNodeId(DAGSize++);
4671 allnodes_iterator Q = N;
4672 if (Q != SortedPos)
4673 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4674 ++SortedPos;
4675 } else {
4676 // Temporarily use the Node Id as scratch space for the degree count.
4677 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004678 }
4679 }
4680
Dan Gohmanf06c8352008-09-30 18:30:35 +00004681 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4682 // such that by the time the end is reached all nodes will be sorted.
4683 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4684 SDNode *N = I;
4685 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4686 UI != UE; ++UI) {
4687 SDNode *P = *UI;
4688 unsigned Degree = P->getNodeId();
4689 --Degree;
4690 if (Degree == 0) {
4691 // All of P's operands are sorted, so P may sorted now.
4692 P->setNodeId(DAGSize++);
4693 if (P != SortedPos)
4694 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4695 ++SortedPos;
4696 } else {
4697 // Update P's outstanding operand count.
4698 P->setNodeId(Degree);
4699 }
4700 }
4701 }
4702
4703 assert(SortedPos == AllNodes.end() &&
4704 "Topological sort incomplete!");
4705 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4706 "First node in topological sort is not the entry token!");
4707 assert(AllNodes.front().getNodeId() == 0 &&
4708 "First node in topological sort has non-zero id!");
4709 assert(AllNodes.front().getNumOperands() == 0 &&
4710 "First node in topological sort has operands!");
4711 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4712 "Last node in topologic sort has unexpected id!");
4713 assert(AllNodes.back().use_empty() &&
4714 "Last node in topologic sort has users!");
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004715 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohmanf06c8352008-09-30 18:30:35 +00004716 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004717}
4718
4719
Evan Cheng091cba12006-07-27 06:39:06 +00004720
Jim Laskey58b968b2005-08-17 20:08:02 +00004721//===----------------------------------------------------------------------===//
4722// SDNode Class
4723//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004724
Chris Lattner917d2c92006-07-19 00:00:37 +00004725// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004726void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004727void UnarySDNode::ANCHOR() {}
4728void BinarySDNode::ANCHOR() {}
4729void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004730void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004731void ConstantSDNode::ANCHOR() {}
4732void ConstantFPSDNode::ANCHOR() {}
4733void GlobalAddressSDNode::ANCHOR() {}
4734void FrameIndexSDNode::ANCHOR() {}
4735void JumpTableSDNode::ANCHOR() {}
4736void ConstantPoolSDNode::ANCHOR() {}
4737void BasicBlockSDNode::ANCHOR() {}
4738void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004739void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004740void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004741void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004742void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004743void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004744void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004745void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004746void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004747void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004748void LoadSDNode::ANCHOR() {}
4749void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004750void AtomicSDNode::ANCHOR() {}
Mon P Wangc4d10212008-10-17 18:22:58 +00004751void MemIntrinsicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004752void CallSDNode::ANCHOR() {}
Mon P Wang77cdf302008-11-10 20:54:11 +00004753void CvtRndSatSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004754
Chris Lattner48b85922007-02-04 02:41:42 +00004755HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004756 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004757}
4758
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004759GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Dan Gohman6520e202008-10-18 02:06:02 +00004760 MVT VT, int64_t o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004761 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004762 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004763 // Thread Local
4764 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4765 // Non Thread Local
4766 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4767 getSDVTList(VT)), Offset(o) {
4768 TheGlobal = const_cast<GlobalValue*>(GA);
4769}
Chris Lattner48b85922007-02-04 02:41:42 +00004770
Dan Gohman1ea58a52008-07-09 22:08:04 +00004771MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004772 const Value *srcValue, int SVO,
4773 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004774 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004775 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004776
4777 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4778 assert(getAlignment() == alignment && "Alignment representation error!");
4779 assert(isVolatile() == vol && "Volatile representation error!");
4780}
4781
Mon P Wangc4d10212008-10-17 18:22:58 +00004782MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4783 unsigned NumOps, MVT memvt, const Value *srcValue,
4784 int SVO, unsigned alignment, bool vol)
4785 : SDNode(Opc, VTs, Ops, NumOps),
4786 MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4787 Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4788 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4789 assert(getAlignment() == alignment && "Alignment representation error!");
4790 assert(isVolatile() == vol && "Volatile representation error!");
4791}
4792
Dan Gohman36b5c132008-04-07 19:35:22 +00004793/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004794/// reference performed by this memory reference.
4795MachineMemOperand MemSDNode::getMemOperand() const {
Dale Johannesenfea90882008-10-24 01:06:58 +00004796 int Flags = 0;
Dan Gohman1ea58a52008-07-09 22:08:04 +00004797 if (isa<LoadSDNode>(this))
4798 Flags = MachineMemOperand::MOLoad;
4799 else if (isa<StoreSDNode>(this))
4800 Flags = MachineMemOperand::MOStore;
Mon P Wangc4d10212008-10-17 18:22:58 +00004801 else if (isa<AtomicSDNode>(this)) {
Dan Gohman1ea58a52008-07-09 22:08:04 +00004802 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4803 }
Mon P Wangc4d10212008-10-17 18:22:58 +00004804 else {
4805 const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4806 assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4807 if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4808 if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4809 }
Dan Gohman1ea58a52008-07-09 22:08:04 +00004810
4811 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004812 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4813
Dan Gohman1ea58a52008-07-09 22:08:04 +00004814 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004815 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004816 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004817 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004818 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4819 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004820 else
4821 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4822 Size, getAlignment());
4823}
4824
Jim Laskey583bd472006-10-27 23:46:08 +00004825/// Profile - Gather unique data for the node.
4826///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004827void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004828 AddNodeIDNode(ID, this);
4829}
4830
Chris Lattnera3255112005-11-08 23:30:28 +00004831/// getValueTypeList - Return a pointer to the specified value type.
4832///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004833const MVT *SDNode::getValueTypeList(MVT VT) {
4834 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004835 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004836 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004837 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004838 static MVT VTs[MVT::LAST_VALUETYPE];
4839 VTs[VT.getSimpleVT()] = VT;
4840 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004841 }
Chris Lattnera3255112005-11-08 23:30:28 +00004842}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004843
Chris Lattner5c884562005-01-12 18:37:47 +00004844/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4845/// indicated value. This method ignores uses of other values defined by this
4846/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004847bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004848 assert(Value < getNumValues() && "Bad value!");
4849
Roman Levensteindc1adac2008-04-07 10:06:32 +00004850 // TODO: Only iterate over uses of a given value of the node
4851 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004852 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004853 if (NUses == 0)
4854 return false;
4855 --NUses;
4856 }
Chris Lattner5c884562005-01-12 18:37:47 +00004857 }
4858
4859 // Found exactly the right number of uses?
4860 return NUses == 0;
4861}
4862
4863
Evan Cheng33d55952007-08-02 05:29:38 +00004864/// hasAnyUseOfValue - Return true if there are any use of the indicated
4865/// value. This method ignores uses of other values defined by this operation.
4866bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4867 assert(Value < getNumValues() && "Bad value!");
4868
Dan Gohman1373c1c2008-07-09 22:39:01 +00004869 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004870 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004871 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004872
4873 return false;
4874}
4875
4876
Dan Gohman2a629952008-07-27 18:06:42 +00004877/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004878///
Dan Gohman2a629952008-07-27 18:06:42 +00004879bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004880 bool Seen = false;
4881 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004882 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004883 if (User == this)
4884 Seen = true;
4885 else
4886 return false;
4887 }
4888
4889 return Seen;
4890}
4891
Evan Chenge6e97e62006-11-03 07:31:32 +00004892/// isOperand - Return true if this node is an operand of N.
4893///
Dan Gohman475871a2008-07-27 21:46:04 +00004894bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004895 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4896 if (*this == N->getOperand(i))
4897 return true;
4898 return false;
4899}
4900
Evan Cheng917be682008-03-04 00:41:45 +00004901bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004902 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004903 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004904 return true;
4905 return false;
4906}
Evan Cheng4ee62112006-02-05 06:29:23 +00004907
Chris Lattner572dee72008-01-16 05:49:24 +00004908/// reachesChainWithoutSideEffects - Return true if this operand (which must
4909/// be a chain) reaches the specified operand without crossing any
4910/// side-effecting instructions. In practice, this looks through token
4911/// factors and non-volatile loads. In order to remain efficient, this only
4912/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004913bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004914 unsigned Depth) const {
4915 if (*this == Dest) return true;
4916
4917 // Don't search too deeply, we just want to be able to see through
4918 // TokenFactor's etc.
4919 if (Depth == 0) return false;
4920
4921 // If this is a token factor, all inputs to the TF happen in parallel. If any
4922 // of the operands of the TF reach dest, then we can do the xform.
4923 if (getOpcode() == ISD::TokenFactor) {
4924 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4925 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4926 return true;
4927 return false;
4928 }
4929
4930 // Loads don't have side effects, look through them.
4931 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4932 if (!Ld->isVolatile())
4933 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4934 }
4935 return false;
4936}
4937
4938
Evan Chengc5fc57d2006-11-03 03:05:24 +00004939static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004940 SmallPtrSet<SDNode *, 32> &Visited) {
4941 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004942 return;
4943
4944 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004945 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004946 if (Op == P) {
4947 found = true;
4948 return;
4949 }
4950 findPredecessor(Op, P, found, Visited);
4951 }
4952}
4953
Evan Cheng917be682008-03-04 00:41:45 +00004954/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004955/// is either an operand of N or it can be reached by recursively traversing
4956/// up the operands.
4957/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004958bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004959 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004960 bool found = false;
4961 findPredecessor(N, this, found, Visited);
4962 return found;
4963}
4964
Evan Chengc5484282006-10-04 00:56:09 +00004965uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4966 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004967 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004968}
4969
Reid Spencer577cc322007-04-01 07:32:19 +00004970std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004971 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004972 default:
4973 if (getOpcode() < ISD::BUILTIN_OP_END)
4974 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004975 if (isMachineOpcode()) {
4976 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004977 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004978 if (getMachineOpcode() < TII->getNumOpcodes())
4979 return TII->get(getMachineOpcode()).getName();
4980 return "<<Unknown Machine Node>>";
4981 }
4982 if (G) {
4983 TargetLowering &TLI = G->getTargetLoweringInfo();
4984 const char *Name = TLI.getTargetNodeName(getOpcode());
4985 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004986 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004987 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004988 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004989
Dan Gohmane8be6c62008-07-17 19:10:17 +00004990#ifndef NDEBUG
4991 case ISD::DELETED_NODE:
4992 return "<<Deleted Node!>>";
4993#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00004994 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004995 case ISD::MEMBARRIER: return "MemBarrier";
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004996 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
4997 case ISD::ATOMIC_SWAP: return "AtomicSwap";
4998 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
4999 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
5000 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
5001 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
5002 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
5003 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
5004 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
5005 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
5006 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
5007 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
Andrew Lenharth95762122005-03-31 21:24:06 +00005008 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00005009 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005010 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00005011 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005012 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00005013 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00005014 case ISD::AssertSext: return "AssertSext";
5015 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005016
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005017 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005018 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005019 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00005020 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005021
5022 case ISD::Constant: return "Constant";
5023 case ISD::ConstantFP: return "ConstantFP";
5024 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005025 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005026 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005027 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00005028 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00005029 case ISD::RETURNADDR: return "RETURNADDR";
5030 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005031 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00005032 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00005033 case ISD::EHSELECTION: return "EHSELECTION";
5034 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00005035 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005036 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00005037 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005038 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00005039 return Intrinsic::getName((Intrinsic::ID)IID);
5040 }
5041 case ISD::INTRINSIC_VOID:
5042 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005043 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00005044 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00005045 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00005046
Chris Lattnerb2827b02006-03-19 00:52:58 +00005047 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005048 case ISD::TargetConstant: return "TargetConstant";
5049 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005050 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005051 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005052 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005053 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005054 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005055 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005056
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005057 case ISD::CopyToReg: return "CopyToReg";
5058 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005059 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005060 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005061 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005062 case ISD::DBG_LABEL: return "dbg_label";
5063 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005064 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005065 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005066 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005067 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005068
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005069 // Unary operators
5070 case ISD::FABS: return "fabs";
5071 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005072 case ISD::FSQRT: return "fsqrt";
5073 case ISD::FSIN: return "fsin";
5074 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005075 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005076 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005077 case ISD::FTRUNC: return "ftrunc";
5078 case ISD::FFLOOR: return "ffloor";
5079 case ISD::FCEIL: return "fceil";
5080 case ISD::FRINT: return "frint";
5081 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005082
5083 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005084 case ISD::ADD: return "add";
5085 case ISD::SUB: return "sub";
5086 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005087 case ISD::MULHU: return "mulhu";
5088 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005089 case ISD::SDIV: return "sdiv";
5090 case ISD::UDIV: return "udiv";
5091 case ISD::SREM: return "srem";
5092 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005093 case ISD::SMUL_LOHI: return "smul_lohi";
5094 case ISD::UMUL_LOHI: return "umul_lohi";
5095 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005096 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005097 case ISD::AND: return "and";
5098 case ISD::OR: return "or";
5099 case ISD::XOR: return "xor";
5100 case ISD::SHL: return "shl";
5101 case ISD::SRA: return "sra";
5102 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005103 case ISD::ROTL: return "rotl";
5104 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005105 case ISD::FADD: return "fadd";
5106 case ISD::FSUB: return "fsub";
5107 case ISD::FMUL: return "fmul";
5108 case ISD::FDIV: return "fdiv";
5109 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005110 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005111 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005112
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005113 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005114 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005115 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005116 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005117 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005118 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005119 case ISD::CONCAT_VECTORS: return "concat_vectors";
5120 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005121 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005122 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005123 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005124 case ISD::ADDC: return "addc";
5125 case ISD::ADDE: return "adde";
Bill Wendling1c55a9c2008-11-21 02:12:42 +00005126 case ISD::SADDO: return "saddo";
5127 case ISD::UADDO: return "uaddo";
Bill Wendling74c37652008-12-09 22:08:41 +00005128 case ISD::SSUBO: return "ssubo";
5129 case ISD::USUBO: return "usubo";
5130 case ISD::SMULO: return "smulo";
5131 case ISD::UMULO: return "umulo";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005132 case ISD::SUBC: return "subc";
5133 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005134 case ISD::SHL_PARTS: return "shl_parts";
5135 case ISD::SRA_PARTS: return "sra_parts";
5136 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005137
5138 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5139 case ISD::INSERT_SUBREG: return "insert_subreg";
5140
Chris Lattner7f644642005-04-28 21:44:03 +00005141 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005142 case ISD::SIGN_EXTEND: return "sign_extend";
5143 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005144 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005145 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005146 case ISD::TRUNCATE: return "truncate";
5147 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005148 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005149 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005150 case ISD::FP_EXTEND: return "fp_extend";
5151
5152 case ISD::SINT_TO_FP: return "sint_to_fp";
5153 case ISD::UINT_TO_FP: return "uint_to_fp";
5154 case ISD::FP_TO_SINT: return "fp_to_sint";
5155 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005156 case ISD::BIT_CONVERT: return "bit_convert";
Mon P Wang77cdf302008-11-10 20:54:11 +00005157
5158 case ISD::CONVERT_RNDSAT: {
5159 switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
5160 default: assert(0 && "Unknown cvt code!");
5161 case ISD::CVT_FF: return "cvt_ff";
5162 case ISD::CVT_FS: return "cvt_fs";
5163 case ISD::CVT_FU: return "cvt_fu";
5164 case ISD::CVT_SF: return "cvt_sf";
5165 case ISD::CVT_UF: return "cvt_uf";
5166 case ISD::CVT_SS: return "cvt_ss";
5167 case ISD::CVT_SU: return "cvt_su";
5168 case ISD::CVT_US: return "cvt_us";
5169 case ISD::CVT_UU: return "cvt_uu";
5170 }
5171 }
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005172
5173 // Control flow instructions
5174 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005175 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005176 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005177 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005178 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005179 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005180 case ISD::CALLSEQ_START: return "callseq_start";
5181 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005182
5183 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005184 case ISD::LOAD: return "load";
5185 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005186 case ISD::VAARG: return "vaarg";
5187 case ISD::VACOPY: return "vacopy";
5188 case ISD::VAEND: return "vaend";
5189 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005190 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005191 case ISD::EXTRACT_ELEMENT: return "extract_element";
5192 case ISD::BUILD_PAIR: return "build_pair";
5193 case ISD::STACKSAVE: return "stacksave";
5194 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005195 case ISD::TRAP: return "trap";
5196
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005197 // Bit manipulation
5198 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005199 case ISD::CTPOP: return "ctpop";
5200 case ISD::CTTZ: return "cttz";
5201 case ISD::CTLZ: return "ctlz";
5202
Chris Lattner36ce6912005-11-29 06:21:05 +00005203 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005204 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005205 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005206
Duncan Sands36397f52007-07-27 12:58:54 +00005207 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005208 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005209
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005210 case ISD::CONDCODE:
5211 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005212 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005213 case ISD::SETOEQ: return "setoeq";
5214 case ISD::SETOGT: return "setogt";
5215 case ISD::SETOGE: return "setoge";
5216 case ISD::SETOLT: return "setolt";
5217 case ISD::SETOLE: return "setole";
5218 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005219
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005220 case ISD::SETO: return "seto";
5221 case ISD::SETUO: return "setuo";
5222 case ISD::SETUEQ: return "setue";
5223 case ISD::SETUGT: return "setugt";
5224 case ISD::SETUGE: return "setuge";
5225 case ISD::SETULT: return "setult";
5226 case ISD::SETULE: return "setule";
5227 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005228
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005229 case ISD::SETEQ: return "seteq";
5230 case ISD::SETGT: return "setgt";
5231 case ISD::SETGE: return "setge";
5232 case ISD::SETLT: return "setlt";
5233 case ISD::SETLE: return "setle";
5234 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005235 }
5236 }
5237}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005238
Evan Cheng144d8f02006-11-09 17:55:04 +00005239const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005240 switch (AM) {
5241 default:
5242 return "";
5243 case ISD::PRE_INC:
5244 return "<pre-inc>";
5245 case ISD::PRE_DEC:
5246 return "<pre-dec>";
5247 case ISD::POST_INC:
5248 return "<post-inc>";
5249 case ISD::POST_DEC:
5250 return "<post-dec>";
5251 }
5252}
5253
Duncan Sands276dcbd2008-03-21 09:14:45 +00005254std::string ISD::ArgFlagsTy::getArgFlagsString() {
5255 std::string S = "< ";
5256
5257 if (isZExt())
5258 S += "zext ";
5259 if (isSExt())
5260 S += "sext ";
5261 if (isInReg())
5262 S += "inreg ";
5263 if (isSRet())
5264 S += "sret ";
5265 if (isByVal())
5266 S += "byval ";
5267 if (isNest())
5268 S += "nest ";
5269 if (getByValAlign())
5270 S += "byval-align:" + utostr(getByValAlign()) + " ";
5271 if (getOrigAlign())
5272 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5273 if (getByValSize())
5274 S += "byval-size:" + utostr(getByValSize()) + " ";
5275 return S + ">";
5276}
5277
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005278void SDNode::dump() const { dump(0); }
5279void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005280 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005281 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005282}
5283
5284void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5285 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005286
5287 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005288 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005289 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005290 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005291 else
Chris Lattner944fac72008-08-23 22:23:09 +00005292 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005293 }
Chris Lattner944fac72008-08-23 22:23:09 +00005294 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005295
Chris Lattner944fac72008-08-23 22:23:09 +00005296 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005297 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005298 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005299 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005300 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005301 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005302 }
5303
Evan Chengce254432007-12-11 02:08:35 +00005304 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005305 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005306 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005307 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005308 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005309 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005310 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005311 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005312 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005313 }
Chris Lattner944fac72008-08-23 22:23:09 +00005314 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005315 }
5316
Chris Lattnerc3aae252005-01-07 07:46:32 +00005317 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005318 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005319 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005320 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005321 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005322 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005323 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005324 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005325 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005326 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005327 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005328 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005329 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005330 dyn_cast<GlobalAddressSDNode>(this)) {
Dan Gohman668aff62008-10-18 18:22:42 +00005331 int64_t offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005332 OS << '<';
5333 WriteAsOperand(OS, GADN->getGlobal());
5334 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005335 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005336 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005337 else
Chris Lattner944fac72008-08-23 22:23:09 +00005338 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005339 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005340 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005341 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005342 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005343 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005344 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005345 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005346 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005347 else
Chris Lattner944fac72008-08-23 22:23:09 +00005348 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005349 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005350 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005351 else
Chris Lattner944fac72008-08-23 22:23:09 +00005352 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005353 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005354 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005355 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5356 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005357 OS << LBB->getName() << " ";
5358 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005359 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005360 if (G && R->getReg() &&
5361 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005362 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005363 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005364 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005365 }
Bill Wendling056292f2008-09-16 21:48:12 +00005366 } else if (const ExternalSymbolSDNode *ES =
5367 dyn_cast<ExternalSymbolSDNode>(this)) {
5368 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005369 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5370 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005371 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005372 else
Chris Lattner944fac72008-08-23 22:23:09 +00005373 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005374 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5375 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005376 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005377 else
Chris Lattner944fac72008-08-23 22:23:09 +00005378 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005379 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005380 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005381 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005382 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005383 }
5384 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005385 const Value *SrcValue = LD->getSrcValue();
5386 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005387 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005388 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005389 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005390 else
Chris Lattner944fac72008-08-23 22:23:09 +00005391 OS << "null";
5392 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005393
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005394 bool doExt = true;
5395 switch (LD->getExtensionType()) {
5396 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005397 case ISD::EXTLOAD: OS << " <anyext "; break;
5398 case ISD::SEXTLOAD: OS << " <sext "; break;
5399 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005400 }
5401 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005402 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005403
Evan Cheng144d8f02006-11-09 17:55:04 +00005404 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005405 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005406 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005407 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005408 OS << " <volatile>";
5409 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005410 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005411 const Value *SrcValue = ST->getSrcValue();
5412 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005413 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005414 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005415 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005416 else
Chris Lattner944fac72008-08-23 22:23:09 +00005417 OS << "null";
5418 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005419
5420 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005421 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005422
5423 const char *AM = getIndexedModeName(ST->getAddressingMode());
5424 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005425 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005426 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005427 OS << " <volatile>";
5428 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005429 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5430 const Value *SrcValue = AT->getSrcValue();
5431 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005432 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005433 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005434 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005435 else
Chris Lattner944fac72008-08-23 22:23:09 +00005436 OS << "null";
5437 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005438 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005439 OS << " <volatile>";
5440 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005441 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005442}
5443
Chris Lattnerde202b32005-11-09 23:47:37 +00005444static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005445 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005446 if (N->getOperand(i).getNode()->hasOneUse())
5447 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005448 else
Bill Wendling832171c2006-12-07 20:04:42 +00005449 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005450 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005451
Chris Lattnerea946cd2005-01-09 20:38:33 +00005452
Bill Wendling832171c2006-12-07 20:04:42 +00005453 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005454 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005455}
5456
Chris Lattnerc3aae252005-01-07 07:46:32 +00005457void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005458 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005459
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005460 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5461 I != E; ++I) {
5462 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005463 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005464 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005465 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005466
Gabor Greifba36cb52008-08-28 21:40:38 +00005467 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005468
Bill Wendling832171c2006-12-07 20:04:42 +00005469 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005470}
5471
Evan Chengd6594ae2006-09-12 21:00:35 +00005472const Type *ConstantPoolSDNode::getType() const {
5473 if (isMachineConstantPoolEntry())
5474 return Val.MachineCPVal->getType();
5475 return Val.ConstVal->getType();
5476}