blob: 36c1048dfd28aa68b6c32c31cac4a0bbc959b3ca [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +000013#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000014#include "llvm/Constants.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000015#include "llvm/Analysis/ValueTracking.h"
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +000016#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000017#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000018#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000020#include "llvm/Assembly/Writer.h"
Dan Gohman707e0182008-04-12 04:36:06 +000021#include "llvm/CallingConv.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000028#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000029#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000030#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetMachine.h"
Bill Wendling6f287b22008-09-30 21:22:07 +000032#include "llvm/Support/CommandLine.h"
Chris Lattner944fac72008-08-23 22:23:09 +000033#include "llvm/Support/MathExtras.h"
34#include "llvm/Support/raw_ostream.h"
Chris Lattner012f2412006-02-17 21:58:01 +000035#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000036#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000037#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000038#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000039#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000040#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000041#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000042using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000043
Chris Lattner0b3e5252006-08-15 19:11:05 +000044/// makeVTList - Return an instance of the SDVTList struct initialized with the
45/// specified members.
Duncan Sands83ec4b62008-06-06 12:08:01 +000046static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000047 SDVTList Res = {VTs, NumVTs};
48 return Res;
49}
50
Duncan Sands83ec4b62008-06-06 12:08:01 +000051static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
52 switch (VT.getSimpleVT()) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000053 default: assert(0 && "Unknown FP format");
54 case MVT::f32: return &APFloat::IEEEsingle;
55 case MVT::f64: return &APFloat::IEEEdouble;
56 case MVT::f80: return &APFloat::x87DoubleExtended;
57 case MVT::f128: return &APFloat::IEEEquad;
58 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
59 }
60}
61
Chris Lattnerf8dc0612008-02-03 06:49:24 +000062SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
63
Jim Laskey58b968b2005-08-17 20:08:02 +000064//===----------------------------------------------------------------------===//
65// ConstantFPSDNode Class
66//===----------------------------------------------------------------------===//
67
68/// isExactlyValue - We don't rely on operator== working on double values, as
69/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
70/// As such, this method can be used to do an exact bit-for-bit comparison of
71/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000072bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohman4fbd7962008-09-12 18:08:03 +000073 return getValueAPF().bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000074}
75
Duncan Sands83ec4b62008-06-06 12:08:01 +000076bool ConstantFPSDNode::isValueValidForType(MVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000077 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000078 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Chris Lattnerec4a5672008-03-05 06:48:13 +000079
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000080 // PPC long double cannot be converted to any other type.
81 if (VT == MVT::ppcf128 ||
82 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000083 return false;
84
Dale Johannesenf04afdb2007-08-30 00:23:21 +000085 // convert modifies in place, so make a copy.
86 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +000087 bool losesInfo;
88 (void) Val2.convert(*MVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
89 &losesInfo);
90 return !losesInfo;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000091}
92
Jim Laskey58b968b2005-08-17 20:08:02 +000093//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000094// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000095//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000096
Evan Chenga8df1662006-03-27 06:58:47 +000097/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000098/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000099bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000100 // Look through a bit convert.
101 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000102 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000103
Evan Chenga8df1662006-03-27 06:58:47 +0000104 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000105
106 unsigned i = 0, e = N->getNumOperands();
107
108 // Skip over all of the undef values.
109 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
110 ++i;
111
112 // Do not accept an all-undef vector.
113 if (i == e) return false;
114
115 // Do not accept build_vectors that aren't all constants or which have non-~0
116 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000117 SDValue NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000118 if (isa<ConstantSDNode>(NotZero)) {
119 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
120 return false;
121 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000122 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
Dale Johannesen23a98552008-10-09 23:00:39 +0000123 bitcastToAPInt().isAllOnesValue())
Dan Gohman6c231502008-02-29 01:47:35 +0000124 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000125 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000126 return false;
127
128 // Okay, we have at least one ~0 value, check to see if the rest match or are
129 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000130 for (++i; i != e; ++i)
131 if (N->getOperand(i) != NotZero &&
132 N->getOperand(i).getOpcode() != ISD::UNDEF)
133 return false;
134 return true;
135}
136
137
Evan Cheng4a147842006-03-26 09:50:58 +0000138/// isBuildVectorAllZeros - Return true if the specified node is a
139/// BUILD_VECTOR where all of the elements are 0 or undef.
140bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000141 // Look through a bit convert.
142 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000143 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000144
Evan Cheng4a147842006-03-26 09:50:58 +0000145 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000146
147 unsigned i = 0, e = N->getNumOperands();
148
149 // Skip over all of the undef values.
150 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
151 ++i;
152
153 // Do not accept an all-undef vector.
154 if (i == e) return false;
155
156 // Do not accept build_vectors that aren't all constants or which have non-~0
157 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000158 SDValue Zero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000159 if (isa<ConstantSDNode>(Zero)) {
160 if (!cast<ConstantSDNode>(Zero)->isNullValue())
161 return false;
162 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000163 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000164 return false;
165 } else
166 return false;
167
168 // Okay, we have at least one ~0 value, check to see if the rest match or are
169 // undefs.
170 for (++i; i != e; ++i)
171 if (N->getOperand(i) != Zero &&
172 N->getOperand(i).getOpcode() != ISD::UNDEF)
173 return false;
174 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000175}
176
Evan Chengefec7512008-02-18 23:04:32 +0000177/// isScalarToVector - Return true if the specified node is a
178/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
179/// element is not an undef.
180bool ISD::isScalarToVector(const SDNode *N) {
181 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
182 return true;
183
184 if (N->getOpcode() != ISD::BUILD_VECTOR)
185 return false;
186 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
187 return false;
188 unsigned NumElems = N->getNumOperands();
189 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000190 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000191 if (V.getOpcode() != ISD::UNDEF)
192 return false;
193 }
194 return true;
195}
196
197
Evan Chengbb81d972008-01-31 09:59:15 +0000198/// isDebugLabel - Return true if the specified node represents a debug
Dan Gohman44066042008-07-01 00:05:16 +0000199/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
Evan Chengbb81d972008-01-31 09:59:15 +0000200bool ISD::isDebugLabel(const SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000201 SDValue Zero;
Dan Gohman44066042008-07-01 00:05:16 +0000202 if (N->getOpcode() == ISD::DBG_LABEL)
203 return true;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000204 if (N->isMachineOpcode() &&
205 N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
Dan Gohman44066042008-07-01 00:05:16 +0000206 return true;
207 return false;
Evan Chengbb81d972008-01-31 09:59:15 +0000208}
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211/// when given the operation for (X op Y).
212ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213 // To perform this operation, we just need to swap the L and G bits of the
214 // operation.
215 unsigned OldL = (Operation >> 2) & 1;
216 unsigned OldG = (Operation >> 1) & 1;
217 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
218 (OldL << 1) | // New G bit
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000219 (OldG << 2)); // New L bit.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000220}
221
222/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223/// 'op' is a valid SetCC operation.
224ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225 unsigned Operation = Op;
226 if (isInteger)
227 Operation ^= 7; // Flip L, G, E bits, but not U.
228 else
229 Operation ^= 15; // Flip all of the condition bits.
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000230
Chris Lattnerc3aae252005-01-07 07:46:32 +0000231 if (Operation > ISD::SETTRUE2)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000232 Operation &= ~8; // Don't let N and U bits get set.
233
Chris Lattnerc3aae252005-01-07 07:46:32 +0000234 return ISD::CondCode(Operation);
235}
236
237
238/// isSignedOp - For an integer comparison, return 1 if the comparison is a
239/// signed operation and 2 if the result is an unsigned comparison. Return zero
240/// if the operation does not depend on the sign of the input (setne and seteq).
241static int isSignedOp(ISD::CondCode Opcode) {
242 switch (Opcode) {
243 default: assert(0 && "Illegal integer setcc operation!");
244 case ISD::SETEQ:
245 case ISD::SETNE: return 0;
246 case ISD::SETLT:
247 case ISD::SETLE:
248 case ISD::SETGT:
249 case ISD::SETGE: return 1;
250 case ISD::SETULT:
251 case ISD::SETULE:
252 case ISD::SETUGT:
253 case ISD::SETUGE: return 2;
254 }
255}
256
257/// getSetCCOrOperation - Return the result of a logical OR between different
258/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
259/// returns SETCC_INVALID if it is not possible to represent the resultant
260/// comparison.
261ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
262 bool isInteger) {
263 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
264 // Cannot fold a signed integer setcc with an unsigned integer setcc.
265 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000266
Chris Lattnerc3aae252005-01-07 07:46:32 +0000267 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000268
Chris Lattnerc3aae252005-01-07 07:46:32 +0000269 // If the N and U bits get set then the resultant comparison DOES suddenly
270 // care about orderedness, and is true when ordered.
271 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000272 Op &= ~16; // Clear the U bit if the N bit is set.
273
274 // Canonicalize illegal integer setcc's.
275 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
276 Op = ISD::SETNE;
277
Chris Lattnerc3aae252005-01-07 07:46:32 +0000278 return ISD::CondCode(Op);
279}
280
281/// getSetCCAndOperation - Return the result of a logical AND between different
282/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
283/// function returns zero if it is not possible to represent the resultant
284/// comparison.
285ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
286 bool isInteger) {
287 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
288 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000289 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000290
291 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000292 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
293
294 // Canonicalize illegal integer setcc's.
295 if (isInteger) {
296 switch (Result) {
297 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000298 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000299 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000300 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
301 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
302 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000303 }
304 }
305
306 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000307}
308
Chris Lattnerb48da392005-01-23 04:39:44 +0000309const TargetMachine &SelectionDAG::getTarget() const {
Dan Gohman6448d912008-09-04 15:39:15 +0000310 return MF->getTarget();
Chris Lattnerb48da392005-01-23 04:39:44 +0000311}
312
Jim Laskey58b968b2005-08-17 20:08:02 +0000313//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000314// SDNode Profile Support
315//===----------------------------------------------------------------------===//
316
Jim Laskeydef69b92006-10-27 23:52:51 +0000317/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
318///
Jim Laskey583bd472006-10-27 23:46:08 +0000319static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
320 ID.AddInteger(OpC);
321}
322
323/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
324/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000325static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000326 ID.AddPointer(VTList.VTs);
327}
328
Jim Laskeydef69b92006-10-27 23:52:51 +0000329/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
330///
Jim Laskey583bd472006-10-27 23:46:08 +0000331static void AddNodeIDOperands(FoldingSetNodeID &ID,
Dan Gohman475871a2008-07-27 21:46:04 +0000332 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000333 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000334 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000335 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000336 }
Jim Laskey583bd472006-10-27 23:46:08 +0000337}
338
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000339/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
340///
341static void AddNodeIDOperands(FoldingSetNodeID &ID,
342 const SDUse *Ops, unsigned NumOps) {
343 for (; NumOps; --NumOps, ++Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +0000344 ID.AddPointer(Ops->getVal());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000345 ID.AddInteger(Ops->getSDValue().getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000346 }
347}
348
Jim Laskey583bd472006-10-27 23:46:08 +0000349static void AddNodeIDNode(FoldingSetNodeID &ID,
350 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000351 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000352 AddNodeIDOpcode(ID, OpC);
353 AddNodeIDValueTypes(ID, VTList);
354 AddNodeIDOperands(ID, OpList, N);
355}
356
Roman Levenstein9cac5252008-04-16 16:15:27 +0000357
Jim Laskeydef69b92006-10-27 23:52:51 +0000358/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
359/// data.
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000360static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000361 AddNodeIDOpcode(ID, N->getOpcode());
362 // Add the return value info.
363 AddNodeIDValueTypes(ID, N->getVTList());
364 // Add the operand info.
365 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
366
367 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000368 switch (N->getOpcode()) {
369 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000370 case ISD::ARG_FLAGS:
371 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
372 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000373 case ISD::TargetConstant:
374 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000375 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000376 break;
377 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000378 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000379 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000380 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000381 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000382 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000383 case ISD::GlobalAddress:
384 case ISD::TargetGlobalTLSAddress:
385 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000386 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000387 ID.AddPointer(GA->getGlobal());
388 ID.AddInteger(GA->getOffset());
389 break;
390 }
391 case ISD::BasicBlock:
392 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
393 break;
394 case ISD::Register:
395 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
396 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000397 case ISD::DBG_STOPPOINT: {
398 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
399 ID.AddInteger(DSP->getLine());
400 ID.AddInteger(DSP->getColumn());
401 ID.AddPointer(DSP->getCompileUnit());
402 break;
403 }
Dan Gohman69de1932008-02-06 22:27:42 +0000404 case ISD::SRCVALUE:
405 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
406 break;
407 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000408 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000409 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000410 break;
411 }
412 case ISD::FrameIndex:
413 case ISD::TargetFrameIndex:
414 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
415 break;
416 case ISD::JumpTable:
417 case ISD::TargetJumpTable:
418 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
419 break;
420 case ISD::ConstantPool:
421 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000422 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000423 ID.AddInteger(CP->getAlignment());
424 ID.AddInteger(CP->getOffset());
425 if (CP->isMachineConstantPoolEntry())
426 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
427 else
428 ID.AddPointer(CP->getConstVal());
429 break;
430 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000431 case ISD::CALL: {
432 const CallSDNode *Call = cast<CallSDNode>(N);
433 ID.AddInteger(Call->getCallingConv());
434 ID.AddInteger(Call->isVarArg());
435 break;
436 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000437 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000438 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000439 ID.AddInteger(LD->getAddressingMode());
440 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000441 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000442 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000443 break;
444 }
445 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000446 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000447 ID.AddInteger(ST->getAddressingMode());
448 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000449 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000450 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000451 break;
452 }
Dale Johannesene00a8a22008-08-28 02:44:49 +0000453 case ISD::ATOMIC_CMP_SWAP_8:
454 case ISD::ATOMIC_SWAP_8:
455 case ISD::ATOMIC_LOAD_ADD_8:
456 case ISD::ATOMIC_LOAD_SUB_8:
457 case ISD::ATOMIC_LOAD_AND_8:
458 case ISD::ATOMIC_LOAD_OR_8:
459 case ISD::ATOMIC_LOAD_XOR_8:
460 case ISD::ATOMIC_LOAD_NAND_8:
461 case ISD::ATOMIC_LOAD_MIN_8:
462 case ISD::ATOMIC_LOAD_MAX_8:
463 case ISD::ATOMIC_LOAD_UMIN_8:
464 case ISD::ATOMIC_LOAD_UMAX_8:
465 case ISD::ATOMIC_CMP_SWAP_16:
466 case ISD::ATOMIC_SWAP_16:
467 case ISD::ATOMIC_LOAD_ADD_16:
468 case ISD::ATOMIC_LOAD_SUB_16:
469 case ISD::ATOMIC_LOAD_AND_16:
470 case ISD::ATOMIC_LOAD_OR_16:
471 case ISD::ATOMIC_LOAD_XOR_16:
472 case ISD::ATOMIC_LOAD_NAND_16:
473 case ISD::ATOMIC_LOAD_MIN_16:
474 case ISD::ATOMIC_LOAD_MAX_16:
475 case ISD::ATOMIC_LOAD_UMIN_16:
476 case ISD::ATOMIC_LOAD_UMAX_16:
477 case ISD::ATOMIC_CMP_SWAP_32:
478 case ISD::ATOMIC_SWAP_32:
479 case ISD::ATOMIC_LOAD_ADD_32:
480 case ISD::ATOMIC_LOAD_SUB_32:
481 case ISD::ATOMIC_LOAD_AND_32:
482 case ISD::ATOMIC_LOAD_OR_32:
483 case ISD::ATOMIC_LOAD_XOR_32:
484 case ISD::ATOMIC_LOAD_NAND_32:
485 case ISD::ATOMIC_LOAD_MIN_32:
486 case ISD::ATOMIC_LOAD_MAX_32:
487 case ISD::ATOMIC_LOAD_UMIN_32:
488 case ISD::ATOMIC_LOAD_UMAX_32:
489 case ISD::ATOMIC_CMP_SWAP_64:
490 case ISD::ATOMIC_SWAP_64:
491 case ISD::ATOMIC_LOAD_ADD_64:
492 case ISD::ATOMIC_LOAD_SUB_64:
493 case ISD::ATOMIC_LOAD_AND_64:
494 case ISD::ATOMIC_LOAD_OR_64:
495 case ISD::ATOMIC_LOAD_XOR_64:
496 case ISD::ATOMIC_LOAD_NAND_64:
497 case ISD::ATOMIC_LOAD_MIN_64:
498 case ISD::ATOMIC_LOAD_MAX_64:
499 case ISD::ATOMIC_LOAD_UMIN_64:
500 case ISD::ATOMIC_LOAD_UMAX_64: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000501 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
502 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000503 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000504 }
Mon P Wang28873102008-06-25 08:15:39 +0000505 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000506}
507
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000508/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
509/// the CSE map that carries both alignment and volatility information.
510///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000511static inline unsigned
512encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000513 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
514}
515
Jim Laskey583bd472006-10-27 23:46:08 +0000516//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000517// SelectionDAG Class
518//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000519
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000520/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000521/// SelectionDAG.
522void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000523 // Create a dummy node (which is not added to allnodes), that adds a reference
524 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000525 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000526
Chris Lattner190a4182006-08-04 17:45:20 +0000527 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000528
Chris Lattner190a4182006-08-04 17:45:20 +0000529 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000530 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000531 if (I->use_empty())
532 DeadNodes.push_back(I);
533
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000534 RemoveDeadNodes(DeadNodes);
535
536 // If the root changed (e.g. it was a dead load, update the root).
537 setRoot(Dummy.getValue());
538}
539
540/// RemoveDeadNodes - This method deletes the unreachable nodes in the
541/// given list, and any nodes that become unreachable as a result.
542void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
543 DAGUpdateListener *UpdateListener) {
544
Chris Lattner190a4182006-08-04 17:45:20 +0000545 // Process the worklist, deleting the nodes and adding their uses to the
546 // worklist.
547 while (!DeadNodes.empty()) {
548 SDNode *N = DeadNodes.back();
549 DeadNodes.pop_back();
550
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000551 if (UpdateListener)
552 UpdateListener->NodeDeleted(N, 0);
553
Chris Lattner190a4182006-08-04 17:45:20 +0000554 // Take the node out of the appropriate CSE map.
555 RemoveNodeFromCSEMaps(N);
556
557 // Next, brutally remove the operand list. This is safe to do, as there are
558 // no cycles in the graph.
559 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000560 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000561 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000562
563 // Now that we removed this operand, see if there are no uses of it left.
564 if (Operand->use_empty())
565 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000566 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000567
568 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000569 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000570
Chris Lattner190a4182006-08-04 17:45:20 +0000571 N->OperandList = 0;
572 N->NumOperands = 0;
573
574 // Finally, remove N itself.
Dan Gohman11467282008-08-26 01:44:34 +0000575 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerf469cb62005-11-08 18:52:27 +0000576 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000577}
578
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000579void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000580 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000581 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000582}
583
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000584void SelectionDAG::DeleteNode(SDNode *N) {
585 assert(N->use_empty() && "Cannot delete a node that is not dead!");
586
587 // First take this out of the appropriate CSE map.
588 RemoveNodeFromCSEMaps(N);
589
Chris Lattner1e111c72005-09-07 05:37:01 +0000590 // Finally, remove uses due to operands of this node, remove from the
591 // AllNodes list, and delete the node.
592 DeleteNodeNotInCSEMaps(N);
593}
594
595void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000596 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000597 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000598 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000599
600 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000601 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000602 N->OperandList = 0;
603 }
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000604
Dan Gohman11467282008-08-26 01:44:34 +0000605 assert(N != AllNodes.begin());
606 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000607}
608
Chris Lattner149c58c2005-08-16 18:17:10 +0000609/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
610/// correspond to it. This is useful when we're about to delete or repurpose
611/// the node. We don't want future request for structurally identical nodes
612/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000613bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000614 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000615 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000616 case ISD::EntryToken:
617 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000618 return false;
619 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000620 case ISD::CONDCODE:
621 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
622 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000623 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000624 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
625 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000626 case ISD::ExternalSymbol:
627 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000628 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000629 case ISD::TargetExternalSymbol:
630 Erased =
631 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000632 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000633 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000634 MVT VT = cast<VTSDNode>(N)->getVT();
635 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000636 Erased = ExtendedValueTypeNodes.erase(VT);
637 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000638 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
639 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000640 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000641 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000642 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000643 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000644 // Remove it from the CSE Map.
645 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000646 break;
647 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000648#ifndef NDEBUG
649 // Verify that the node was actually in one of the CSE maps, unless it has a
650 // flag result (which cannot be CSE'd) or is one of the special cases that are
651 // not subject to CSE.
652 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Dan Gohman095cc292008-09-13 01:54:27 +0000653 !N->isMachineOpcode() &&
Evan Cheng71e86852008-07-08 20:06:39 +0000654 N->getOpcode() != ISD::DBG_LABEL &&
655 N->getOpcode() != ISD::DBG_STOPPOINT &&
656 N->getOpcode() != ISD::EH_LABEL &&
657 N->getOpcode() != ISD::DECLARE) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000658 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000659 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000660 assert(0 && "Node is not in map!");
661 }
662#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000663 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000664}
665
Chris Lattner8b8749f2005-08-17 19:00:20 +0000666/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
667/// has been taken out and modified in some way. If the specified node already
668/// exists in the CSE maps, do not modify the maps, but return the existing node
669/// instead. If it doesn't exist, add it and return null.
670///
671SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
672 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000673
674 if (N->getValueType(0) == MVT::Flag)
675 return 0; // Never CSE anything that produces a flag.
676
677 switch (N->getOpcode()) {
678 default: break;
679 case ISD::HANDLENODE:
680 case ISD::DBG_LABEL:
681 case ISD::DBG_STOPPOINT:
682 case ISD::EH_LABEL:
683 case ISD::DECLARE:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000684 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000685 }
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000686
Chris Lattner9f8cc692005-12-19 22:21:21 +0000687 // Check that remaining values produced are not flags.
688 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
689 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000690 return 0; // Never CSE anything that produces a flag.
Chris Lattner9f8cc692005-12-19 22:21:21 +0000691
Chris Lattnera5682852006-08-07 23:03:03 +0000692 SDNode *New = CSEMap.GetOrInsertNode(N);
693 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000694 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000695}
696
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000697/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
698/// were replaced with those specified. If this node is never memoized,
699/// return null, otherwise return a pointer to the slot it would take. If a
700/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000701SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000702 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000703 if (N->getValueType(0) == MVT::Flag)
704 return 0; // Never CSE anything that produces a flag.
705
706 switch (N->getOpcode()) {
707 default: break;
708 case ISD::HANDLENODE:
709 case ISD::DBG_LABEL:
710 case ISD::DBG_STOPPOINT:
711 case ISD::EH_LABEL:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000712 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000713 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000714
715 // Check that remaining values produced are not flags.
716 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
717 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000718 return 0; // Never CSE anything that produces a flag.
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000719
Dan Gohman475871a2008-07-27 21:46:04 +0000720 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000721 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000722 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000723 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000724}
725
726/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
727/// were replaced with those specified. If this node is never memoized,
728/// return null, otherwise return a pointer to the slot it would take. If a
729/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000730SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000731 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000732 void *&InsertPos) {
733 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnera5682852006-08-07 23:03:03 +0000734
735 // Check that remaining values produced are not flags.
736 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
737 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000738 return 0; // Never CSE anything that produces a flag.
Chris Lattnera5682852006-08-07 23:03:03 +0000739
Dan Gohman475871a2008-07-27 21:46:04 +0000740 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000741 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000742 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000743 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
744}
745
746
747/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
748/// were replaced with those specified. If this node is never memoized,
749/// return null, otherwise return a pointer to the slot it would take. If a
750/// node already exists with these operands, the slot will be non-null.
751SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000752 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000753 void *&InsertPos) {
Evan Cheng71e86852008-07-08 20:06:39 +0000754 if (N->getValueType(0) == MVT::Flag)
755 return 0; // Never CSE anything that produces a flag.
756
757 switch (N->getOpcode()) {
758 default: break;
759 case ISD::HANDLENODE:
760 case ISD::DBG_LABEL:
761 case ISD::DBG_STOPPOINT:
762 case ISD::EH_LABEL:
763 case ISD::DECLARE:
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000764 return 0; // Never add these nodes.
Evan Cheng71e86852008-07-08 20:06:39 +0000765 }
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000766
767 // Check that remaining values produced are not flags.
768 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
769 if (N->getValueType(i) == MVT::Flag)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000770 return 0; // Never CSE anything that produces a flag.
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000771
Jim Laskey583bd472006-10-27 23:46:08 +0000772 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000773 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000774
Evan Cheng9629aba2006-10-11 01:47:58 +0000775 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
776 ID.AddInteger(LD->getAddressingMode());
777 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000778 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000779 ID.AddInteger(LD->getRawFlags());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000780 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
781 ID.AddInteger(ST->getAddressingMode());
782 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000783 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000784 ID.AddInteger(ST->getRawFlags());
Evan Cheng9629aba2006-10-11 01:47:58 +0000785 }
Jim Laskey583bd472006-10-27 23:46:08 +0000786
Chris Lattnera5682852006-08-07 23:03:03 +0000787 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000788}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000789
Duncan Sandsd038e042008-07-21 10:20:31 +0000790/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
791void SelectionDAG::VerifyNode(SDNode *N) {
792 switch (N->getOpcode()) {
793 default:
794 break;
795 case ISD::BUILD_VECTOR: {
796 assert(N->getNumValues() == 1 && "Too many results for BUILD_VECTOR!");
797 assert(N->getValueType(0).isVector() && "Wrong BUILD_VECTOR return type!");
798 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
799 "Wrong number of BUILD_VECTOR operands!");
Duncan Sands0954aef2008-10-22 09:00:33 +0000800 // FIXME: Change vector_shuffle to a variadic node with mask elements being
801 // operands of the node. Currently the mask is a BUILD_VECTOR passed as an
802 // operand, and it is not always possible to legalize it. Turning off the
803 // following checks at least makes it possible to legalize most of the time.
804// MVT EltVT = N->getValueType(0).getVectorElementType();
805// for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
806// assert(I->getSDValue().getValueType() == EltVT &&
807// "Wrong BUILD_VECTOR operand type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000808 break;
809 }
810 }
811}
812
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000813/// getMVTAlignment - Compute the default alignment value for the
814/// given type.
815///
816unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
817 const Type *Ty = VT == MVT::iPTR ?
818 PointerType::get(Type::Int8Ty, 0) :
819 VT.getTypeForMVT();
820
821 return TLI.getTargetData()->getABITypeAlignment(Ty);
822}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000823
Dan Gohman7c3234c2008-08-27 23:52:12 +0000824SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
825 : TLI(tli), FLI(fli),
826 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000827 Root(getEntryNode()) {
828 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000829}
830
Dan Gohman7c3234c2008-08-27 23:52:12 +0000831void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
832 MF = &mf;
833 MMI = mmi;
834}
835
Chris Lattner78ec3112003-08-11 14:57:33 +0000836SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000837 allnodes_clear();
838}
839
840void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000841 assert(&*AllNodes.begin() == &EntryNode);
842 AllNodes.remove(AllNodes.begin());
Chris Lattnerde202b32005-11-09 23:47:37 +0000843 while (!AllNodes.empty()) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000844 SDNode *N = AllNodes.remove(AllNodes.begin());
Chris Lattner213a16c2006-08-14 22:19:25 +0000845 N->SetNextInBucket(0);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000846
847 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000848 delete [] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000849 N->OperandList = 0;
850 }
851
Dan Gohman11467282008-08-26 01:44:34 +0000852 NodeAllocator.Deallocate(N);
Chris Lattner65113b22005-11-08 22:07:03 +0000853 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000854}
855
Dan Gohman7c3234c2008-08-27 23:52:12 +0000856void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000857 allnodes_clear();
858 OperandAllocator.Reset();
859 CSEMap.clear();
860
861 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000862 ExternalSymbols.clear();
863 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000864 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
865 static_cast<CondCodeSDNode*>(0));
866 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
867 static_cast<SDNode*>(0));
868
869 EntryNode.Uses = 0;
870 AllNodes.push_back(&EntryNode);
871 Root = getEntryNode();
872}
873
Dan Gohman475871a2008-07-27 21:46:04 +0000874SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000875 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000876 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000877 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000878 return getNode(ISD::AND, Op.getValueType(), Op,
879 getConstant(Imm, Op.getValueType()));
880}
881
Dan Gohman475871a2008-07-27 21:46:04 +0000882SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000883 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000884 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000885}
886
Dan Gohman475871a2008-07-27 21:46:04 +0000887SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000888 return getConstant(*ConstantInt::get(Val), VT, isT);
889}
890
891SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000892 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000893
Evan Cheng0ff39b32008-06-30 07:31:25 +0000894 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000895 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000896 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000897
898 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000899 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000900 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000901 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000902 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000903 SDNode *N = NULL;
904 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000905 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000906 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000907 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000908 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000909 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000910 CSEMap.InsertNode(N, IP);
911 AllNodes.push_back(N);
912 }
913
Dan Gohman475871a2008-07-27 21:46:04 +0000914 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000915 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000916 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000917 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000918 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
919 }
920 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000921}
922
Dan Gohman475871a2008-07-27 21:46:04 +0000923SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000924 return getConstant(Val, TLI.getPointerTy(), isTarget);
925}
926
927
Dan Gohman475871a2008-07-27 21:46:04 +0000928SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000929 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
930}
931
932SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000933 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000934
Duncan Sands83ec4b62008-06-06 12:08:01 +0000935 MVT EltVT =
936 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000937
Chris Lattnerd8658612005-02-17 20:17:32 +0000938 // Do the map lookup using the actual bit pattern for the floating point
939 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
940 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000941 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000942 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000943 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000944 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000945 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000946 SDNode *N = NULL;
947 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000948 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000949 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000950 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000951 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000952 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000953 CSEMap.InsertNode(N, IP);
954 AllNodes.push_back(N);
955 }
956
Dan Gohman475871a2008-07-27 21:46:04 +0000957 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000958 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000959 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000960 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000961 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
962 }
963 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000964}
965
Dan Gohman475871a2008-07-27 21:46:04 +0000966SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000967 MVT EltVT =
968 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000969 if (EltVT==MVT::f32)
970 return getConstantFP(APFloat((float)Val), VT, isTarget);
971 else
972 return getConstantFP(APFloat(Val), VT, isTarget);
973}
974
Dan Gohman475871a2008-07-27 21:46:04 +0000975SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +0000976 MVT VT, int64_t Offset,
Dan Gohman475871a2008-07-27 21:46:04 +0000977 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000978 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000979
Dan Gohman6520e202008-10-18 02:06:02 +0000980 // Truncate (with sign-extension) the offset value to the pointer size.
Dan Gohman44013612008-10-21 03:38:42 +0000981 unsigned BitWidth = TLI.getPointerTy().getSizeInBits();
Dan Gohman6520e202008-10-18 02:06:02 +0000982 if (BitWidth < 64)
983 Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
984
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000985 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
986 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000987 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000988 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000989 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000990 }
991
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000992 if (GVar && GVar->isThreadLocal())
993 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
994 else
995 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000996
Jim Laskey583bd472006-10-27 23:46:08 +0000997 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000998 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000999 ID.AddPointer(GV);
1000 ID.AddInteger(Offset);
1001 void *IP = 0;
1002 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001003 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001004 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001005 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +00001006 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001007 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001008 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001009}
1010
Dan Gohman475871a2008-07-27 21:46:04 +00001011SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001012 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +00001013 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001014 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001015 ID.AddInteger(FI);
1016 void *IP = 0;
1017 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001018 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001019 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001020 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001021 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001022 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001023 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001024}
1025
Dan Gohman475871a2008-07-27 21:46:04 +00001026SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001027 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001028 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001029 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001030 ID.AddInteger(JTI);
1031 void *IP = 0;
1032 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001033 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001034 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001035 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001036 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001037 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001038 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001039}
1040
Dan Gohman475871a2008-07-27 21:46:04 +00001041SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1042 unsigned Alignment, int Offset,
1043 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001044 if (Alignment == 0)
1045 Alignment =
1046 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001047 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001048 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001049 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001050 ID.AddInteger(Alignment);
1051 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001052 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001053 void *IP = 0;
1054 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001055 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001056 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001057 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001058 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001059 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001060 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001061}
1062
Chris Lattnerc3aae252005-01-07 07:46:32 +00001063
Dan Gohman475871a2008-07-27 21:46:04 +00001064SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1065 unsigned Alignment, int Offset,
1066 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001067 if (Alignment == 0)
1068 Alignment =
1069 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001070 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001071 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001072 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001073 ID.AddInteger(Alignment);
1074 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001075 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001076 void *IP = 0;
1077 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001078 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001079 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001080 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001081 CSEMap.InsertNode(N, IP);
1082 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001083 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001084}
1085
1086
Dan Gohman475871a2008-07-27 21:46:04 +00001087SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001088 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001089 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001090 ID.AddPointer(MBB);
1091 void *IP = 0;
1092 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001093 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001094 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001095 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001096 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001097 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001098 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001099}
1100
Dan Gohman475871a2008-07-27 21:46:04 +00001101SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001102 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001103 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001104 ID.AddInteger(Flags.getRawBits());
1105 void *IP = 0;
1106 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001107 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001108 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001109 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001110 CSEMap.InsertNode(N, IP);
1111 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001112 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001113}
1114
Dan Gohman475871a2008-07-27 21:46:04 +00001115SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001116 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1117 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001118
Duncan Sands83ec4b62008-06-06 12:08:01 +00001119 SDNode *&N = VT.isExtended() ?
1120 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001121
Dan Gohman475871a2008-07-27 21:46:04 +00001122 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001123 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001124 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001125 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001126 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001127}
1128
Bill Wendling056292f2008-09-16 21:48:12 +00001129SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1130 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001131 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001132 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1133 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001134 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001135 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001136}
1137
Bill Wendling056292f2008-09-16 21:48:12 +00001138SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1139 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001140 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001141 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1142 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001143 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001144 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001145}
1146
Dan Gohman475871a2008-07-27 21:46:04 +00001147SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001148 if ((unsigned)Cond >= CondCodeNodes.size())
1149 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001150
Chris Lattner079a27a2005-08-09 20:40:02 +00001151 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001152 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001153 new (N) CondCodeSDNode(Cond);
1154 CondCodeNodes[Cond] = N;
1155 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001156 }
Dan Gohman475871a2008-07-27 21:46:04 +00001157 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001158}
1159
Dan Gohman475871a2008-07-27 21:46:04 +00001160SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001161 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001162 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001163 ID.AddInteger(RegNo);
1164 void *IP = 0;
1165 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001166 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001167 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001168 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001169 CSEMap.InsertNode(N, IP);
1170 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001171 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001172}
1173
Dan Gohman475871a2008-07-27 21:46:04 +00001174SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Dan Gohmanfed90b62008-07-28 21:51:04 +00001175 unsigned Line, unsigned Col,
1176 const CompileUnitDesc *CU) {
1177 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001178 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001179 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001180 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001181}
1182
Dan Gohman475871a2008-07-27 21:46:04 +00001183SDValue SelectionDAG::getLabel(unsigned Opcode,
1184 SDValue Root,
1185 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001186 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001187 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001188 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1189 ID.AddInteger(LabelID);
1190 void *IP = 0;
1191 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001192 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001193 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001194 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001195 CSEMap.InsertNode(N, IP);
1196 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001197 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001198}
1199
Dan Gohman475871a2008-07-27 21:46:04 +00001200SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001201 assert((!V || isa<PointerType>(V->getType())) &&
1202 "SrcValue is not a pointer?");
1203
Jim Laskey583bd472006-10-27 23:46:08 +00001204 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001205 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001206 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001207
Chris Lattner61b09412006-08-11 21:01:22 +00001208 void *IP = 0;
1209 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001210 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001211
Dan Gohmanfed90b62008-07-28 21:51:04 +00001212 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001213 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001214 CSEMap.InsertNode(N, IP);
1215 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001216 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001217}
1218
Dan Gohman475871a2008-07-27 21:46:04 +00001219SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001220 const Value *v = MO.getValue();
1221 assert((!v || isa<PointerType>(v->getType())) &&
1222 "SrcValue is not a pointer?");
1223
1224 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001225 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001226 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001227
1228 void *IP = 0;
1229 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001230 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001231
Dan Gohmanfed90b62008-07-28 21:51:04 +00001232 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001233 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001234 CSEMap.InsertNode(N, IP);
1235 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001236 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001237}
1238
Chris Lattner37ce9df2007-10-15 17:47:20 +00001239/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1240/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001241SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001242 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001243 unsigned ByteSize = VT.getSizeInBits()/8;
1244 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001245 unsigned StackAlign =
1246 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1247
Chris Lattner37ce9df2007-10-15 17:47:20 +00001248 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1249 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1250}
1251
Dan Gohman475871a2008-07-27 21:46:04 +00001252SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1253 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001254 // These setcc operations always fold.
1255 switch (Cond) {
1256 default: break;
1257 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001258 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001259 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001260 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001261
1262 case ISD::SETOEQ:
1263 case ISD::SETOGT:
1264 case ISD::SETOGE:
1265 case ISD::SETOLT:
1266 case ISD::SETOLE:
1267 case ISD::SETONE:
1268 case ISD::SETO:
1269 case ISD::SETUO:
1270 case ISD::SETUEQ:
1271 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001272 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001273 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001274 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001275
Gabor Greifba36cb52008-08-28 21:40:38 +00001276 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001277 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001278 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001279 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001280
Chris Lattnerc3aae252005-01-07 07:46:32 +00001281 switch (Cond) {
1282 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001283 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1284 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001285 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1286 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1287 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1288 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1289 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1290 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1291 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1292 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001293 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001294 }
Chris Lattner67255a12005-04-07 18:14:58 +00001295 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001296 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1297 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001298 // No compile time operations on this type yet.
1299 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001300 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001301
1302 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001303 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001304 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001305 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1306 return getNode(ISD::UNDEF, VT);
1307 // fall through
1308 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1309 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1310 return getNode(ISD::UNDEF, VT);
1311 // fall through
1312 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001313 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001314 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1315 return getNode(ISD::UNDEF, VT);
1316 // fall through
1317 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1318 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1319 return getNode(ISD::UNDEF, VT);
1320 // fall through
1321 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1322 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1323 return getNode(ISD::UNDEF, VT);
1324 // fall through
1325 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001326 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001327 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1328 return getNode(ISD::UNDEF, VT);
1329 // fall through
1330 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001331 R==APFloat::cmpEqual, VT);
1332 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1333 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1334 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1335 R==APFloat::cmpEqual, VT);
1336 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1337 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1338 R==APFloat::cmpLessThan, VT);
1339 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1340 R==APFloat::cmpUnordered, VT);
1341 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1342 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001343 }
1344 } else {
1345 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001346 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001347 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001348 }
1349
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001350 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001351 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001352}
1353
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001354/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1355/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001356bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001357 unsigned BitWidth = Op.getValueSizeInBits();
1358 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1359}
1360
Dan Gohmanea859be2007-06-22 14:59:07 +00001361/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1362/// this predicate to simplify operations downstream. Mask is known to be zero
1363/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001364bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001365 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001366 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001367 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1368 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1369 return (KnownZero & Mask) == Mask;
1370}
1371
1372/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1373/// known to be either zero or one and return them in the KnownZero/KnownOne
1374/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1375/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001376void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001377 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001378 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001379 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001380 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001381 "Mask size mismatches value type size!");
1382
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001383 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001384 if (Depth == 6 || Mask == 0)
1385 return; // Limit search depth.
1386
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001387 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001388
1389 switch (Op.getOpcode()) {
1390 case ISD::Constant:
1391 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001392 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001393 KnownZero = ~KnownOne & Mask;
1394 return;
1395 case ISD::AND:
1396 // If either the LHS or the RHS are Zero, the result is zero.
1397 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001398 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1399 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001400 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1401 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1402
1403 // Output known-1 bits are only known if set in both the LHS & RHS.
1404 KnownOne &= KnownOne2;
1405 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1406 KnownZero |= KnownZero2;
1407 return;
1408 case ISD::OR:
1409 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001410 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1411 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001412 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1413 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1414
1415 // Output known-0 bits are only known if clear in both the LHS & RHS.
1416 KnownZero &= KnownZero2;
1417 // Output known-1 are known to be set if set in either the LHS | RHS.
1418 KnownOne |= KnownOne2;
1419 return;
1420 case ISD::XOR: {
1421 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1422 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1423 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1424 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1425
1426 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001427 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001428 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1429 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1430 KnownZero = KnownZeroOut;
1431 return;
1432 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001433 case ISD::MUL: {
1434 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1435 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1436 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1437 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1438 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1439
1440 // If low bits are zero in either operand, output low known-0 bits.
1441 // Also compute a conserative estimate for high known-0 bits.
1442 // More trickiness is possible, but this is sufficient for the
1443 // interesting case of alignment computation.
1444 KnownOne.clear();
1445 unsigned TrailZ = KnownZero.countTrailingOnes() +
1446 KnownZero2.countTrailingOnes();
1447 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001448 KnownZero2.countLeadingOnes(),
1449 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001450
1451 TrailZ = std::min(TrailZ, BitWidth);
1452 LeadZ = std::min(LeadZ, BitWidth);
1453 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1454 APInt::getHighBitsSet(BitWidth, LeadZ);
1455 KnownZero &= Mask;
1456 return;
1457 }
1458 case ISD::UDIV: {
1459 // For the purposes of computing leading zeros we can conservatively
1460 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001461 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001462 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1463 ComputeMaskedBits(Op.getOperand(0),
1464 AllOnes, KnownZero2, KnownOne2, Depth+1);
1465 unsigned LeadZ = KnownZero2.countLeadingOnes();
1466
1467 KnownOne2.clear();
1468 KnownZero2.clear();
1469 ComputeMaskedBits(Op.getOperand(1),
1470 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001471 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1472 if (RHSUnknownLeadingOnes != BitWidth)
1473 LeadZ = std::min(BitWidth,
1474 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001475
1476 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1477 return;
1478 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001479 case ISD::SELECT:
1480 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1481 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1482 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1483 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1484
1485 // Only known if known in both the LHS and RHS.
1486 KnownOne &= KnownOne2;
1487 KnownZero &= KnownZero2;
1488 return;
1489 case ISD::SELECT_CC:
1490 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1491 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1492 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1493 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1494
1495 // Only known if known in both the LHS and RHS.
1496 KnownOne &= KnownOne2;
1497 KnownZero &= KnownZero2;
1498 return;
1499 case ISD::SETCC:
1500 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001501 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1502 BitWidth > 1)
1503 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001504 return;
1505 case ISD::SHL:
1506 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1507 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001508 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001509
1510 // If the shift count is an invalid immediate, don't do anything.
1511 if (ShAmt >= BitWidth)
1512 return;
1513
1514 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001515 KnownZero, KnownOne, Depth+1);
1516 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001517 KnownZero <<= ShAmt;
1518 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001519 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001520 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001521 }
1522 return;
1523 case ISD::SRL:
1524 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1525 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001526 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001527
Dan Gohmand4cf9922008-02-26 18:50:50 +00001528 // If the shift count is an invalid immediate, don't do anything.
1529 if (ShAmt >= BitWidth)
1530 return;
1531
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001532 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001533 KnownZero, KnownOne, Depth+1);
1534 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001535 KnownZero = KnownZero.lshr(ShAmt);
1536 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001537
Dan Gohman72d2fd52008-02-13 22:43:25 +00001538 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001539 KnownZero |= HighBits; // High bits known zero.
1540 }
1541 return;
1542 case ISD::SRA:
1543 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001544 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001545
Dan Gohmand4cf9922008-02-26 18:50:50 +00001546 // If the shift count is an invalid immediate, don't do anything.
1547 if (ShAmt >= BitWidth)
1548 return;
1549
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001550 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001551 // If any of the demanded bits are produced by the sign extension, we also
1552 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001553 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1554 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001555 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001556
1557 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1558 Depth+1);
1559 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001560 KnownZero = KnownZero.lshr(ShAmt);
1561 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001562
1563 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001564 APInt SignBit = APInt::getSignBit(BitWidth);
1565 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001566
Dan Gohmanca93a432008-02-20 16:30:17 +00001567 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001568 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001569 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001570 KnownOne |= HighBits; // New bits are known one.
1571 }
1572 }
1573 return;
1574 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001575 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1576 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001577
1578 // Sign extension. Compute the demanded bits in the result that are not
1579 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001580 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001581
Dan Gohman977a76f2008-02-13 22:28:48 +00001582 APInt InSignBit = APInt::getSignBit(EBits);
1583 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001584
1585 // If the sign extended bits are demanded, we know that the sign
1586 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001587 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001588 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001589 InputDemandedBits |= InSignBit;
1590
1591 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1592 KnownZero, KnownOne, Depth+1);
1593 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1594
1595 // If the sign bit of the input is known set or clear, then we know the
1596 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001597 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001598 KnownZero |= NewBits;
1599 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001600 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001601 KnownOne |= NewBits;
1602 KnownZero &= ~NewBits;
1603 } else { // Input sign bit unknown
1604 KnownZero &= ~NewBits;
1605 KnownOne &= ~NewBits;
1606 }
1607 return;
1608 }
1609 case ISD::CTTZ:
1610 case ISD::CTLZ:
1611 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001612 unsigned LowBits = Log2_32(BitWidth)+1;
1613 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001614 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001615 return;
1616 }
1617 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001618 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001619 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001620 MVT VT = LD->getMemoryVT();
1621 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001622 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001623 }
1624 return;
1625 }
1626 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001627 MVT InVT = Op.getOperand(0).getValueType();
1628 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001629 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1630 APInt InMask = Mask;
1631 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001632 KnownZero.trunc(InBits);
1633 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001634 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001635 KnownZero.zext(BitWidth);
1636 KnownOne.zext(BitWidth);
1637 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001638 return;
1639 }
1640 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001641 MVT InVT = Op.getOperand(0).getValueType();
1642 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001643 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001644 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1645 APInt InMask = Mask;
1646 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001647
1648 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001649 // bit is demanded. Temporarily set this bit in the mask for our callee.
1650 if (NewBits.getBoolValue())
1651 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001652
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001653 KnownZero.trunc(InBits);
1654 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001655 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1656
1657 // Note if the sign bit is known to be zero or one.
1658 bool SignBitKnownZero = KnownZero.isNegative();
1659 bool SignBitKnownOne = KnownOne.isNegative();
1660 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1661 "Sign bit can't be known to be both zero and one!");
1662
1663 // If the sign bit wasn't actually demanded by our caller, we don't
1664 // want it set in the KnownZero and KnownOne result values. Reset the
1665 // mask and reapply it to the result values.
1666 InMask = Mask;
1667 InMask.trunc(InBits);
1668 KnownZero &= InMask;
1669 KnownOne &= InMask;
1670
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001671 KnownZero.zext(BitWidth);
1672 KnownOne.zext(BitWidth);
1673
Dan Gohman977a76f2008-02-13 22:28:48 +00001674 // If the sign bit is known zero or one, the top bits match.
1675 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001676 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001677 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001678 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001679 return;
1680 }
1681 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001682 MVT InVT = Op.getOperand(0).getValueType();
1683 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001684 APInt InMask = Mask;
1685 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001686 KnownZero.trunc(InBits);
1687 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001688 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001689 KnownZero.zext(BitWidth);
1690 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001691 return;
1692 }
1693 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001694 MVT InVT = Op.getOperand(0).getValueType();
1695 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001696 APInt InMask = Mask;
1697 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001698 KnownZero.zext(InBits);
1699 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001700 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001701 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001702 KnownZero.trunc(BitWidth);
1703 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001704 break;
1705 }
1706 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001707 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1708 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001709 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1710 KnownOne, Depth+1);
1711 KnownZero |= (~InMask) & Mask;
1712 return;
1713 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001714 case ISD::FGETSIGN:
1715 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001716 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001717 return;
1718
Dan Gohman23e8b712008-04-28 17:02:21 +00001719 case ISD::SUB: {
1720 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1721 // We know that the top bits of C-X are clear if X contains less bits
1722 // than C (i.e. no wrap-around can happen). For example, 20-X is
1723 // positive if we can prove that X is >= 0 and < 16.
1724 if (CLHS->getAPIntValue().isNonNegative()) {
1725 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1726 // NLZ can't be BitWidth with no sign bit
1727 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1728 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1729 Depth+1);
1730
1731 // If all of the MaskV bits are known to be zero, then we know the
1732 // output top bits are zero, because we now know that the output is
1733 // from [0-C].
1734 if ((KnownZero2 & MaskV) == MaskV) {
1735 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1736 // Top bits known zero.
1737 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1738 }
1739 }
1740 }
1741 }
1742 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001743 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001744 // Output known-0 bits are known if clear or set in both the low clear bits
1745 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1746 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001747 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1748 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1749 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1750 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1751
1752 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1753 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1754 KnownZeroOut = std::min(KnownZeroOut,
1755 KnownZero2.countTrailingOnes());
1756
1757 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001758 return;
1759 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001760 case ISD::SREM:
1761 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001762 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001763 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001764 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001765 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1766 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001767
Dan Gohmana60832b2008-08-13 23:12:35 +00001768 // If the sign bit of the first operand is zero, the sign bit of
1769 // the result is zero. If the first operand has no one bits below
1770 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001771 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1772 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001773
Dan Gohman23e8b712008-04-28 17:02:21 +00001774 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001775
1776 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001777 }
1778 }
1779 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001780 case ISD::UREM: {
1781 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001782 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001783 if (RA.isPowerOf2()) {
1784 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001785 APInt Mask2 = LowBits & Mask;
1786 KnownZero |= ~LowBits & Mask;
1787 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1788 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1789 break;
1790 }
1791 }
1792
1793 // Since the result is less than or equal to either operand, any leading
1794 // zero bits in either operand must also exist in the result.
1795 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1796 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1797 Depth+1);
1798 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1799 Depth+1);
1800
1801 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1802 KnownZero2.countLeadingOnes());
1803 KnownOne.clear();
1804 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1805 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001806 }
1807 default:
1808 // Allow the target to implement this method for its nodes.
1809 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1810 case ISD::INTRINSIC_WO_CHAIN:
1811 case ISD::INTRINSIC_W_CHAIN:
1812 case ISD::INTRINSIC_VOID:
1813 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1814 }
1815 return;
1816 }
1817}
1818
1819/// ComputeNumSignBits - Return the number of times the sign bit of the
1820/// register is replicated into the other bits. We know that at least 1 bit
1821/// is always equal to the sign bit (itself), but other cases can give us
1822/// information. For example, immediately after an "SRA X, 2", we know that
1823/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001824unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001825 MVT VT = Op.getValueType();
1826 assert(VT.isInteger() && "Invalid VT!");
1827 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001828 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001829 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001830
1831 if (Depth == 6)
1832 return 1; // Limit search depth.
1833
1834 switch (Op.getOpcode()) {
1835 default: break;
1836 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001837 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001838 return VTBits-Tmp+1;
1839 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001840 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001841 return VTBits-Tmp;
1842
1843 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001844 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1845 // If negative, return # leading ones.
1846 if (Val.isNegative())
1847 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001848
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001849 // Return # leading zeros.
1850 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001851 }
1852
1853 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001854 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001855 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1856
1857 case ISD::SIGN_EXTEND_INREG:
1858 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001859 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001860 Tmp = VTBits-Tmp+1;
1861
1862 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1863 return std::max(Tmp, Tmp2);
1864
1865 case ISD::SRA:
1866 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1867 // SRA X, C -> adds C sign bits.
1868 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001869 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001870 if (Tmp > VTBits) Tmp = VTBits;
1871 }
1872 return Tmp;
1873 case ISD::SHL:
1874 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1875 // shl destroys sign bits.
1876 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001877 if (C->getZExtValue() >= VTBits || // Bad shift.
1878 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1879 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001880 }
1881 break;
1882 case ISD::AND:
1883 case ISD::OR:
1884 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001885 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001886 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001887 if (Tmp != 1) {
1888 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1889 FirstAnswer = std::min(Tmp, Tmp2);
1890 // We computed what we know about the sign bits as our first
1891 // answer. Now proceed to the generic code that uses
1892 // ComputeMaskedBits, and pick whichever answer is better.
1893 }
1894 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001895
1896 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001897 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001898 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001899 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001900 return std::min(Tmp, Tmp2);
1901
1902 case ISD::SETCC:
1903 // If setcc returns 0/-1, all bits are sign bits.
1904 if (TLI.getSetCCResultContents() ==
1905 TargetLowering::ZeroOrNegativeOneSetCCResult)
1906 return VTBits;
1907 break;
1908 case ISD::ROTL:
1909 case ISD::ROTR:
1910 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001911 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001912
1913 // Handle rotate right by N like a rotate left by 32-N.
1914 if (Op.getOpcode() == ISD::ROTR)
1915 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1916
1917 // If we aren't rotating out all of the known-in sign bits, return the
1918 // number that are left. This handles rotl(sext(x), 1) for example.
1919 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1920 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1921 }
1922 break;
1923 case ISD::ADD:
1924 // Add can have at most one carry bit. Thus we know that the output
1925 // is, at worst, one more bit than the inputs.
1926 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1927 if (Tmp == 1) return 1; // Early out.
1928
1929 // Special case decrementing a value (ADD X, -1):
1930 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1931 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001932 APInt KnownZero, KnownOne;
1933 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001934 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1935
1936 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1937 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001938 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001939 return VTBits;
1940
1941 // If we are subtracting one from a positive number, there is no carry
1942 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001943 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001944 return Tmp;
1945 }
1946
1947 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1948 if (Tmp2 == 1) return 1;
1949 return std::min(Tmp, Tmp2)-1;
1950 break;
1951
1952 case ISD::SUB:
1953 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1954 if (Tmp2 == 1) return 1;
1955
1956 // Handle NEG.
1957 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001958 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001959 APInt KnownZero, KnownOne;
1960 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001961 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1962 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1963 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001964 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001965 return VTBits;
1966
1967 // If the input is known to be positive (the sign bit is known clear),
1968 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001969 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001970 return Tmp2;
1971
1972 // Otherwise, we treat this like a SUB.
1973 }
1974
1975 // Sub can have at most one carry bit. Thus we know that the output
1976 // is, at worst, one more bit than the inputs.
1977 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1978 if (Tmp == 1) return 1; // Early out.
1979 return std::min(Tmp, Tmp2)-1;
1980 break;
1981 case ISD::TRUNCATE:
1982 // FIXME: it's tricky to do anything useful for this, but it is an important
1983 // case for targets like X86.
1984 break;
1985 }
1986
1987 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1988 if (Op.getOpcode() == ISD::LOAD) {
1989 LoadSDNode *LD = cast<LoadSDNode>(Op);
1990 unsigned ExtType = LD->getExtensionType();
1991 switch (ExtType) {
1992 default: break;
1993 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001995 return VTBits-Tmp+1;
1996 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001997 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001998 return VTBits-Tmp;
1999 }
2000 }
2001
2002 // Allow the target to implement this method for its nodes.
2003 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2004 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2005 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2006 Op.getOpcode() == ISD::INTRINSIC_VOID) {
2007 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002008 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002009 }
2010
2011 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2012 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002013 APInt KnownZero, KnownOne;
2014 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002015 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2016
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002017 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002018 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002019 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002020 Mask = KnownOne;
2021 } else {
2022 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002023 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002024 }
2025
2026 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2027 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002028 Mask = ~Mask;
2029 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002030 // Return # leading zeros. We use 'min' here in case Val was zero before
2031 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002032 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002033}
2034
Chris Lattner51dabfb2006-10-14 00:41:01 +00002035
Dan Gohman475871a2008-07-27 21:46:04 +00002036bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002037 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2038 if (!GA) return false;
Dan Gohman6520e202008-10-18 02:06:02 +00002039 if (GA->getOffset() != 0) return false;
Evan Chenga844bde2008-02-02 04:07:54 +00002040 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2041 if (!GV) return false;
2042 MachineModuleInfo *MMI = getMachineModuleInfo();
2043 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2044}
2045
2046
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002047/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2048/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002049SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002050 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002051 SDValue PermMask = N->getOperand(2);
2052 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002053 if (Idx.getOpcode() == ISD::UNDEF)
2054 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002055 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002056 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002057 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002058 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002059
2060 if (V.getOpcode() == ISD::BIT_CONVERT) {
2061 V = V.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002062 if (V.getValueType().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:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002183 case ISD::CONCAT_VECTORS:
2184 return Operand; // Factor or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002185 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002186 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002187 assert(VT.isFloatingPoint() &&
2188 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002189 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002190 if (Operand.getOpcode() == ISD::UNDEF)
2191 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002192 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002193 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002194 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002195 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002196 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002197 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002198 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002199 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002200 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002201 break;
2202 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002203 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002204 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002205 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002206 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002207 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002208 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002209 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002210 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002211 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002212 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002213 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002214 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002215 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002216 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002217 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2218 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002219 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002220 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002221 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002222 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002223 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002224 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002225 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002226 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002227 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002228 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002229 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2230 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002231 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002232 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2233 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2234 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2235 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002236 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002237 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002238 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002239 break;
Chris Lattner35481892005-12-23 00:16:34 +00002240 case ISD::BIT_CONVERT:
2241 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002242 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002243 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002244 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002245 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2246 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002247 if (OpOpcode == ISD::UNDEF)
2248 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002249 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002250 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002251 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2252 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002253 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002254 if (OpOpcode == ISD::UNDEF)
2255 return getNode(ISD::UNDEF, VT);
2256 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2257 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2258 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2259 Operand.getConstantOperandVal(1) == 0 &&
2260 Operand.getOperand(0).getValueType() == VT)
2261 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002262 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002263 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002264 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002265 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2266 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002267 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002268 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002269 break;
2270 case ISD::FABS:
2271 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002272 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002273 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002274 }
2275
Chris Lattner43247a12005-08-25 19:12:10 +00002276 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002277 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002278 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002279 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002280 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002281 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002282 void *IP = 0;
2283 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002284 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002285 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002286 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002287 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002288 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002289 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002290 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002291 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002292
Chris Lattnerc3aae252005-01-07 07:46:32 +00002293 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002294#ifndef NDEBUG
2295 VerifyNode(N);
2296#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002297 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002298}
2299
Bill Wendling688d1c42008-09-24 10:16:24 +00002300SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2301 MVT VT,
2302 ConstantSDNode *Cst1,
2303 ConstantSDNode *Cst2) {
2304 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2305
2306 switch (Opcode) {
2307 case ISD::ADD: return getConstant(C1 + C2, VT);
2308 case ISD::SUB: return getConstant(C1 - C2, VT);
2309 case ISD::MUL: return getConstant(C1 * C2, VT);
2310 case ISD::UDIV:
2311 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2312 break;
2313 case ISD::UREM:
2314 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2315 break;
2316 case ISD::SDIV:
2317 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2318 break;
2319 case ISD::SREM:
2320 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2321 break;
2322 case ISD::AND: return getConstant(C1 & C2, VT);
2323 case ISD::OR: return getConstant(C1 | C2, VT);
2324 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2325 case ISD::SHL: return getConstant(C1 << C2, VT);
2326 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2327 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2328 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2329 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2330 default: break;
2331 }
2332
2333 return SDValue();
2334}
2335
Dan Gohman475871a2008-07-27 21:46:04 +00002336SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2337 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002338 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2339 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002340 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002341 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002342 case ISD::TokenFactor:
2343 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2344 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002345 // Fold trivial token factors.
2346 if (N1.getOpcode() == ISD::EntryToken) return N2;
2347 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002348 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002349 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002350 case ISD::CONCAT_VECTORS:
2351 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2352 // one big BUILD_VECTOR.
2353 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2354 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002355 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2356 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002357 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2358 }
2359 break;
Chris Lattner76365122005-01-16 02:23:22 +00002360 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002361 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002362 N1.getValueType() == VT && "Binary operator types must match!");
2363 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2364 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002365 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002366 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002367 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2368 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002369 break;
Chris Lattner76365122005-01-16 02:23:22 +00002370 case ISD::OR:
2371 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002372 case ISD::ADD:
2373 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002374 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002375 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002376 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2377 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002378 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002379 return N1;
2380 break;
Chris Lattner76365122005-01-16 02:23:22 +00002381 case ISD::UDIV:
2382 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002383 case ISD::MULHU:
2384 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002385 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002386 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002387 case ISD::MUL:
2388 case ISD::SDIV:
2389 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002390 case ISD::FADD:
2391 case ISD::FSUB:
2392 case ISD::FMUL:
2393 case ISD::FDIV:
2394 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002395 assert(N1.getValueType() == N2.getValueType() &&
2396 N1.getValueType() == VT && "Binary operator types must match!");
2397 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002398 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2399 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002400 N1.getValueType().isFloatingPoint() &&
2401 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002402 "Invalid FCOPYSIGN!");
2403 break;
Chris Lattner76365122005-01-16 02:23:22 +00002404 case ISD::SHL:
2405 case ISD::SRA:
2406 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002407 case ISD::ROTL:
2408 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002409 assert(VT == N1.getValueType() &&
2410 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002411 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002412 "Shifts only work on integers");
2413
2414 // Always fold shifts of i1 values so the code generator doesn't need to
2415 // handle them. Since we know the size of the shift has to be less than the
2416 // size of the value, the shift/rotate count is guaranteed to be zero.
2417 if (VT == MVT::i1)
2418 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002419 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002420 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002421 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002422 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002423 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002424 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002425 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002426 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002427 break;
2428 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002429 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002430 assert(VT.isFloatingPoint() &&
2431 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002432 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002433 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002434 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002435 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002436 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002437 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002438 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002439 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002440 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002441 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002442 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002443 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002444 break;
2445 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002446 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002447 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002448 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002449 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002450 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002451 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002452 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002453
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002454 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002455 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002456 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002457 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002458 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002459 return getConstant(Val, VT);
2460 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002461 break;
2462 }
2463 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002464 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2465 if (N1.getOpcode() == ISD::UNDEF)
2466 return getNode(ISD::UNDEF, VT);
2467
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002468 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2469 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002470 if (N2C &&
2471 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002472 N1.getNumOperands() > 0) {
2473 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002474 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002475 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002476 N1.getOperand(N2C->getZExtValue() / Factor),
2477 getConstant(N2C->getZExtValue() % Factor,
2478 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002479 }
2480
2481 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2482 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002483 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002484 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002485
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002486 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2487 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002488 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2489 if (N1.getOperand(2) == N2)
2490 return N1.getOperand(1);
2491 else
2492 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2493 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002494 break;
2495 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002496 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002497 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2498 (N1.getValueType().isInteger() == VT.isInteger()) &&
2499 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002500
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002501 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2502 // 64-bit integers into 32-bit parts. Instead of building the extract of
2503 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2504 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002505 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002506
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002507 // EXTRACT_ELEMENT of a constant int is also very common.
2508 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002509 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002510 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002511 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2512 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002513 }
2514 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002515 case ISD::EXTRACT_SUBVECTOR:
2516 if (N1.getValueType() == VT) // Trivial extraction.
2517 return N1;
2518 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002519 }
2520
2521 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002522 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002523 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2524 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002525 } else { // Cannonicalize constant to RHS if commutative
2526 if (isCommutativeBinOp(Opcode)) {
2527 std::swap(N1C, N2C);
2528 std::swap(N1, N2);
2529 }
2530 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002531 }
2532
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002533 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002534 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2535 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002536 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002537 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2538 // Cannonicalize constant to RHS if commutative
2539 std::swap(N1CFP, N2CFP);
2540 std::swap(N1, N2);
2541 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002542 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2543 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002544 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002545 case ISD::FADD:
2546 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002547 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002548 return getConstantFP(V1, VT);
2549 break;
2550 case ISD::FSUB:
2551 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2552 if (s!=APFloat::opInvalidOp)
2553 return getConstantFP(V1, VT);
2554 break;
2555 case ISD::FMUL:
2556 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2557 if (s!=APFloat::opInvalidOp)
2558 return getConstantFP(V1, VT);
2559 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002560 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002561 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2562 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2563 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002564 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002565 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002566 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2567 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2568 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002569 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002570 case ISD::FCOPYSIGN:
2571 V1.copySign(V2);
2572 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002573 default: break;
2574 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002575 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002576 }
Chris Lattner62b57722006-04-20 05:39:12 +00002577
2578 // Canonicalize an UNDEF to the RHS, even over a constant.
2579 if (N1.getOpcode() == ISD::UNDEF) {
2580 if (isCommutativeBinOp(Opcode)) {
2581 std::swap(N1, N2);
2582 } else {
2583 switch (Opcode) {
2584 case ISD::FP_ROUND_INREG:
2585 case ISD::SIGN_EXTEND_INREG:
2586 case ISD::SUB:
2587 case ISD::FSUB:
2588 case ISD::FDIV:
2589 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002590 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002591 return N1; // fold op(undef, arg2) -> undef
2592 case ISD::UDIV:
2593 case ISD::SDIV:
2594 case ISD::UREM:
2595 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002596 case ISD::SRL:
2597 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002598 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002599 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2600 // For vectors, we can't easily build an all zero vector, just return
2601 // the LHS.
2602 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002603 }
2604 }
2605 }
2606
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002607 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002608 if (N2.getOpcode() == ISD::UNDEF) {
2609 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002610 case ISD::XOR:
2611 if (N1.getOpcode() == ISD::UNDEF)
2612 // Handle undef ^ undef -> 0 special case. This is a common
2613 // idiom (misuse).
2614 return getConstant(0, VT);
2615 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002616 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002617 case ISD::ADDC:
2618 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002619 case ISD::SUB:
2620 case ISD::FADD:
2621 case ISD::FSUB:
2622 case ISD::FMUL:
2623 case ISD::FDIV:
2624 case ISD::FREM:
2625 case ISD::UDIV:
2626 case ISD::SDIV:
2627 case ISD::UREM:
2628 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002629 return N2; // fold op(arg1, undef) -> undef
2630 case ISD::MUL:
2631 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002632 case ISD::SRL:
2633 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002634 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002635 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2636 // For vectors, we can't easily build an all zero vector, just return
2637 // the LHS.
2638 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002639 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002640 if (!VT.isVector())
2641 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002642 // For vectors, we can't easily build an all one vector, just return
2643 // the LHS.
2644 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002645 case ISD::SRA:
2646 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002647 }
2648 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002649
Chris Lattner27e9b412005-05-11 18:57:39 +00002650 // Memoize this node if possible.
2651 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002652 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002653 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002654 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002655 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002656 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002657 void *IP = 0;
2658 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002659 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002660 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002661 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002662 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002663 } else {
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 Lattner27e9b412005-05-11 18:57:39 +00002666 }
2667
Chris Lattnerc3aae252005-01-07 07:46:32 +00002668 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002669#ifndef NDEBUG
2670 VerifyNode(N);
2671#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002672 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002673}
2674
Dan Gohman475871a2008-07-27 21:46:04 +00002675SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2676 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002677 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002678 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2679 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002680 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002681 case ISD::CONCAT_VECTORS:
2682 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2683 // one big BUILD_VECTOR.
2684 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2685 N2.getOpcode() == ISD::BUILD_VECTOR &&
2686 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002687 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2688 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2689 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002690 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2691 }
2692 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002693 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002694 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002695 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002696 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002697 break;
2698 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002699 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002700 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002701 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002702 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002703 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002704 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002705 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002706
2707 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002708 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002709 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002710 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002711 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002712 return getNode(ISD::BR, MVT::Other, N1, N3);
2713 else
2714 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002715 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002716 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002717 case ISD::VECTOR_SHUFFLE:
2718 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002719 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002720 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002721 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002722 "Illegal VECTOR_SHUFFLE node!");
2723 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002724 case ISD::BIT_CONVERT:
2725 // Fold bit_convert nodes from a type to themselves.
2726 if (N1.getValueType() == VT)
2727 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002728 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002729 }
2730
Chris Lattner43247a12005-08-25 19:12:10 +00002731 // Memoize node if it doesn't produce a flag.
2732 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002733 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002734 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002735 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002736 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002737 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002738 void *IP = 0;
2739 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002740 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002741 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002742 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002743 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002744 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002745 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002746 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002747 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002748 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002749#ifndef NDEBUG
2750 VerifyNode(N);
2751#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002752 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002753}
2754
Dan Gohman475871a2008-07-27 21:46:04 +00002755SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2756 SDValue N1, SDValue N2, SDValue N3,
2757 SDValue N4) {
2758 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002759 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002760}
2761
Dan Gohman475871a2008-07-27 21:46:04 +00002762SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2763 SDValue N1, SDValue N2, SDValue N3,
2764 SDValue N4, SDValue N5) {
2765 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002766 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002767}
2768
Dan Gohman707e0182008-04-12 04:36:06 +00002769/// getMemsetValue - Vectorized representation of the memset value
2770/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002771static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002772 unsigned NumBits = VT.isVector() ?
2773 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002774 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002775 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002776 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002777 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002778 Val = (Val << Shift) | Val;
2779 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002780 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002781 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002782 return DAG.getConstant(Val, VT);
2783 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002784 }
Evan Chengf0df0312008-05-15 08:39:06 +00002785
2786 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2787 unsigned Shift = 8;
2788 for (unsigned i = NumBits; i > 8; i >>= 1) {
2789 Value = DAG.getNode(ISD::OR, VT,
2790 DAG.getNode(ISD::SHL, VT, Value,
2791 DAG.getConstant(Shift, MVT::i8)), Value);
2792 Shift <<= 1;
2793 }
2794
2795 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002796}
2797
Dan Gohman707e0182008-04-12 04:36:06 +00002798/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2799/// used when a memcpy is turned into a memset when the source is a constant
2800/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002801static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002802 const TargetLowering &TLI,
2803 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002804 // Handle vector with all elements zero.
2805 if (Str.empty()) {
2806 if (VT.isInteger())
2807 return DAG.getConstant(0, VT);
2808 unsigned NumElts = VT.getVectorNumElements();
2809 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2810 return DAG.getNode(ISD::BIT_CONVERT, VT,
2811 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2812 }
2813
Duncan Sands83ec4b62008-06-06 12:08:01 +00002814 assert(!VT.isVector() && "Can't handle vector type here!");
2815 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002816 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002817 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002818 if (TLI.isLittleEndian())
2819 Offset = Offset + MSB - 1;
2820 for (unsigned i = 0; i != MSB; ++i) {
2821 Val = (Val << 8) | (unsigned char)Str[Offset];
2822 Offset += TLI.isLittleEndian() ? -1 : 1;
2823 }
2824 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002825}
2826
Dan Gohman707e0182008-04-12 04:36:06 +00002827/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002828///
Dan Gohman475871a2008-07-27 21:46:04 +00002829static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002830 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002831 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002832 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2833}
2834
Evan Chengf0df0312008-05-15 08:39:06 +00002835/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2836///
Dan Gohman475871a2008-07-27 21:46:04 +00002837static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002838 unsigned SrcDelta = 0;
2839 GlobalAddressSDNode *G = NULL;
2840 if (Src.getOpcode() == ISD::GlobalAddress)
2841 G = cast<GlobalAddressSDNode>(Src);
2842 else if (Src.getOpcode() == ISD::ADD &&
2843 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2844 Src.getOperand(1).getOpcode() == ISD::Constant) {
2845 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002846 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002847 }
2848 if (!G)
2849 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002850
Evan Chengf0df0312008-05-15 08:39:06 +00002851 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002852 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2853 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002854
Evan Chengf0df0312008-05-15 08:39:06 +00002855 return false;
2856}
Dan Gohman707e0182008-04-12 04:36:06 +00002857
Evan Chengf0df0312008-05-15 08:39:06 +00002858/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2859/// to replace the memset / memcpy is below the threshold. It also returns the
2860/// types of the sequence of memory ops to perform memset / memcpy.
2861static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002862bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002863 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002864 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002865 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002866 SelectionDAG &DAG,
2867 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002868 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002869 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002870 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002871 MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002872 if (VT != MVT::iAny) {
2873 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002874 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002875 // If source is a string constant, this will require an unaligned load.
2876 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2877 if (Dst.getOpcode() != ISD::FrameIndex) {
2878 // Can't change destination alignment. It requires a unaligned store.
2879 if (AllowUnalign)
2880 VT = MVT::iAny;
2881 } else {
2882 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2883 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2884 if (MFI->isFixedObjectIndex(FI)) {
2885 // Can't change destination alignment. It requires a unaligned store.
2886 if (AllowUnalign)
2887 VT = MVT::iAny;
2888 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002889 // Give the stack frame object a larger alignment if needed.
2890 if (MFI->getObjectAlignment(FI) < NewAlign)
2891 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002892 Align = NewAlign;
2893 }
2894 }
2895 }
2896 }
2897
2898 if (VT == MVT::iAny) {
2899 if (AllowUnalign) {
2900 VT = MVT::i64;
2901 } else {
2902 switch (Align & 7) {
2903 case 0: VT = MVT::i64; break;
2904 case 4: VT = MVT::i32; break;
2905 case 2: VT = MVT::i16; break;
2906 default: VT = MVT::i8; break;
2907 }
2908 }
2909
Duncan Sands83ec4b62008-06-06 12:08:01 +00002910 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002911 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002912 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2913 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002914
Duncan Sands8e4eb092008-06-08 20:54:56 +00002915 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002916 VT = LVT;
2917 }
Dan Gohman707e0182008-04-12 04:36:06 +00002918
2919 unsigned NumMemOps = 0;
2920 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002921 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002922 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002923 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002924 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002925 VT = MVT::i64;
2926 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002927 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2928 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002929 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002930 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002931 VTSize >>= 1;
2932 }
Dan Gohman707e0182008-04-12 04:36:06 +00002933 }
Dan Gohman707e0182008-04-12 04:36:06 +00002934
2935 if (++NumMemOps > Limit)
2936 return false;
2937 MemOps.push_back(VT);
2938 Size -= VTSize;
2939 }
2940
2941 return true;
2942}
2943
Dan Gohman475871a2008-07-27 21:46:04 +00002944static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2945 SDValue Chain, SDValue Dst,
2946 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002947 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002948 const Value *DstSV, uint64_t DstSVOff,
2949 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002950 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2951
Dan Gohman21323f32008-05-29 19:42:22 +00002952 // Expand memcpy to a series of load and store ops if the size operand falls
2953 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002954 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002955 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002956 if (!AlwaysInline)
2957 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002958 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002959 std::string Str;
2960 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002961 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002962 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002963 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002964
Dan Gohman707e0182008-04-12 04:36:06 +00002965
Evan Cheng0ff39b32008-06-30 07:31:25 +00002966 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00002967 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00002968 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00002969 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002970 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002971 MVT VT = MemOps[i];
2972 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00002973 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00002974
Evan Cheng0ff39b32008-06-30 07:31:25 +00002975 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00002976 // It's unlikely a store of a vector immediate can be done in a single
2977 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002978 // We also handle store a vector with all zero's.
2979 // FIXME: Handle other cases where store of vector immediate is done in
2980 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002981 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002982 Store = DAG.getStore(Chain, Value,
2983 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00002984 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002985 } else {
2986 Value = DAG.getLoad(VT, Chain,
2987 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002988 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002989 Store = DAG.getStore(Chain, Value,
2990 getMemBasePlusOffset(Dst, DstOff, DAG),
2991 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002992 }
2993 OutChains.push_back(Store);
2994 SrcOff += VTSize;
2995 DstOff += VTSize;
2996 }
2997
2998 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2999 &OutChains[0], OutChains.size());
3000}
3001
Dan Gohman475871a2008-07-27 21:46:04 +00003002static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
3003 SDValue Chain, SDValue Dst,
3004 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00003005 unsigned Align, bool AlwaysInline,
3006 const Value *DstSV, uint64_t DstSVOff,
3007 const Value *SrcSV, uint64_t SrcSVOff){
3008 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3009
3010 // Expand memmove to a series of load and store ops if the size operand falls
3011 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003012 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00003013 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00003014 if (!AlwaysInline)
3015 Limit = TLI.getMaxStoresPerMemmove();
3016 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003017 std::string Str;
3018 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00003019 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003020 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003021 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003022
Dan Gohman21323f32008-05-29 19:42:22 +00003023 uint64_t SrcOff = 0, DstOff = 0;
3024
Dan Gohman475871a2008-07-27 21:46:04 +00003025 SmallVector<SDValue, 8> LoadValues;
3026 SmallVector<SDValue, 8> LoadChains;
3027 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003028 unsigned NumMemOps = MemOps.size();
3029 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003030 MVT VT = MemOps[i];
3031 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003032 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003033
3034 Value = DAG.getLoad(VT, Chain,
3035 getMemBasePlusOffset(Src, SrcOff, DAG),
3036 SrcSV, SrcSVOff + SrcOff, false, Align);
3037 LoadValues.push_back(Value);
3038 LoadChains.push_back(Value.getValue(1));
3039 SrcOff += VTSize;
3040 }
3041 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3042 &LoadChains[0], LoadChains.size());
3043 OutChains.clear();
3044 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003045 MVT VT = MemOps[i];
3046 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003047 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003048
3049 Store = DAG.getStore(Chain, LoadValues[i],
3050 getMemBasePlusOffset(Dst, DstOff, DAG),
3051 DstSV, DstSVOff + DstOff, false, DstAlign);
3052 OutChains.push_back(Store);
3053 DstOff += VTSize;
3054 }
3055
3056 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3057 &OutChains[0], OutChains.size());
3058}
3059
Dan Gohman475871a2008-07-27 21:46:04 +00003060static SDValue getMemsetStores(SelectionDAG &DAG,
3061 SDValue Chain, SDValue Dst,
3062 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003063 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003064 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003065 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3066
3067 // Expand memset to a series of load/store ops if the size operand
3068 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003069 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003070 std::string Str;
3071 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003072 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003073 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003074 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003075
Dan Gohman475871a2008-07-27 21:46:04 +00003076 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003077 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003078
3079 unsigned NumMemOps = MemOps.size();
3080 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003081 MVT VT = MemOps[i];
3082 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003083 SDValue Value = getMemsetValue(Src, VT, DAG);
3084 SDValue Store = DAG.getStore(Chain, Value,
Dan Gohman707e0182008-04-12 04:36:06 +00003085 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003086 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003087 OutChains.push_back(Store);
3088 DstOff += VTSize;
3089 }
3090
3091 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3092 &OutChains[0], OutChains.size());
3093}
3094
Dan Gohman475871a2008-07-27 21:46:04 +00003095SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3096 SDValue Src, SDValue Size,
3097 unsigned Align, bool AlwaysInline,
3098 const Value *DstSV, uint64_t DstSVOff,
3099 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003100
3101 // Check to see if we should lower the memcpy to loads and stores first.
3102 // For cases within the target-specified limits, this is the best choice.
3103 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3104 if (ConstantSize) {
3105 // Memcpy with size zero? Just return the original chain.
3106 if (ConstantSize->isNullValue())
3107 return Chain;
3108
Dan Gohman475871a2008-07-27 21:46:04 +00003109 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003110 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3111 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003112 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003113 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003114 return Result;
3115 }
3116
3117 // Then check to see if we should lower the memcpy with target-specific
3118 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003119 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003120 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3121 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003122 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003123 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003124 return Result;
3125
3126 // If we really need inline code and the target declined to provide it,
3127 // use a (potentially long) sequence of loads and stores.
3128 if (AlwaysInline) {
3129 assert(ConstantSize && "AlwaysInline requires a constant size!");
3130 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003131 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003132 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003133 }
3134
3135 // Emit a library call.
3136 TargetLowering::ArgListTy Args;
3137 TargetLowering::ArgListEntry Entry;
3138 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3139 Entry.Node = Dst; Args.push_back(Entry);
3140 Entry.Node = Src; Args.push_back(Entry);
3141 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003142 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003143 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003144 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003145 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003146 Args, *this);
3147 return CallResult.second;
3148}
3149
Dan Gohman475871a2008-07-27 21:46:04 +00003150SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3151 SDValue Src, SDValue Size,
3152 unsigned Align,
3153 const Value *DstSV, uint64_t DstSVOff,
3154 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003155
Dan Gohman21323f32008-05-29 19:42:22 +00003156 // Check to see if we should lower the memmove to loads and stores first.
3157 // For cases within the target-specified limits, this is the best choice.
3158 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3159 if (ConstantSize) {
3160 // Memmove with size zero? Just return the original chain.
3161 if (ConstantSize->isNullValue())
3162 return Chain;
3163
Dan Gohman475871a2008-07-27 21:46:04 +00003164 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003165 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3166 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003167 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003168 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003169 return Result;
3170 }
Dan Gohman707e0182008-04-12 04:36:06 +00003171
3172 // Then check to see if we should lower the memmove with target-specific
3173 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003174 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003175 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003176 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003177 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003178 return Result;
3179
3180 // Emit a library call.
3181 TargetLowering::ArgListTy Args;
3182 TargetLowering::ArgListEntry Entry;
3183 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3184 Entry.Node = Dst; Args.push_back(Entry);
3185 Entry.Node = Src; Args.push_back(Entry);
3186 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003187 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003188 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003189 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003190 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003191 Args, *this);
3192 return CallResult.second;
3193}
3194
Dan Gohman475871a2008-07-27 21:46:04 +00003195SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3196 SDValue Src, SDValue Size,
3197 unsigned Align,
3198 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003199
3200 // Check to see if we should lower the memset to stores first.
3201 // For cases within the target-specified limits, this is the best choice.
3202 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3203 if (ConstantSize) {
3204 // Memset with size zero? Just return the original chain.
3205 if (ConstantSize->isNullValue())
3206 return Chain;
3207
Dan Gohman475871a2008-07-27 21:46:04 +00003208 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003209 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3210 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003211 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003212 return Result;
3213 }
3214
3215 // Then check to see if we should lower the memset with target-specific
3216 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003217 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003218 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003219 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003220 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003221 return Result;
3222
3223 // Emit a library call.
3224 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3225 TargetLowering::ArgListTy Args;
3226 TargetLowering::ArgListEntry Entry;
3227 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3228 Args.push_back(Entry);
3229 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003230 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003231 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3232 else
3233 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3234 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3235 Args.push_back(Entry);
3236 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3237 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003238 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003239 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003240 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003241 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003242 Args, *this);
3243 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003244}
3245
Dan Gohman475871a2008-07-27 21:46:04 +00003246SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3247 SDValue Ptr, SDValue Cmp,
3248 SDValue Swp, const Value* PtrVal,
3249 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003250 assert((Opcode == ISD::ATOMIC_CMP_SWAP_8 ||
3251 Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3252 Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3253 Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003254 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003255
3256 MVT VT = Cmp.getValueType();
3257
3258 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3259 Alignment = getMVTAlignment(VT);
3260
3261 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003262 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003263 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003264 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003265 void* IP = 0;
3266 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003267 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003268 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003269 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003270 CSEMap.InsertNode(N, IP);
3271 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003272 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003273}
3274
Dan Gohman475871a2008-07-27 21:46:04 +00003275SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3276 SDValue Ptr, SDValue Val,
3277 const Value* PtrVal,
3278 unsigned Alignment) {
Dale Johannesene00a8a22008-08-28 02:44:49 +00003279 assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3280 Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3281 Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3282 Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3283 Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3284 Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3285 Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3286 Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3287 Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3288 Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3289 Opcode == ISD::ATOMIC_SWAP_8 ||
3290 Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3291 Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3292 Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3293 Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3294 Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3295 Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3296 Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3297 Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3298 Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3299 Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3300 Opcode == ISD::ATOMIC_SWAP_16 ||
3301 Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3302 Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3303 Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3304 Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3305 Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3306 Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3307 Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3308 Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3309 Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3310 Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3311 Opcode == ISD::ATOMIC_SWAP_32 ||
3312 Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3313 Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3314 Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3315 Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3316 Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3317 Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3318 Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3319 Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3320 Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3321 Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3322 Opcode == ISD::ATOMIC_SWAP_64) && "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003323
3324 MVT VT = Val.getValueType();
3325
3326 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3327 Alignment = getMVTAlignment(VT);
3328
3329 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003330 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003331 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003332 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003333 void* IP = 0;
3334 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003335 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003336 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003337 new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003338 CSEMap.InsertNode(N, IP);
3339 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003340 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003341}
3342
Duncan Sands4bdcb612008-07-02 17:40:58 +00003343/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3344/// Allowed to return something different (and simpler) if Simplify is true.
Dan Gohman475871a2008-07-27 21:46:04 +00003345SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3346 bool Simplify) {
Duncan Sands4bdcb612008-07-02 17:40:58 +00003347 if (Simplify && NumOps == 1)
3348 return Ops[0];
3349
3350 SmallVector<MVT, 4> VTs;
3351 VTs.reserve(NumOps);
3352 for (unsigned i = 0; i < NumOps; ++i)
3353 VTs.push_back(Ops[i].getValueType());
3354 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3355}
3356
Dan Gohman475871a2008-07-27 21:46:04 +00003357SDValue
Mon P Wangc4d10212008-10-17 18:22:58 +00003358SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3359 const MVT *VTs, unsigned NumVTs,
3360 const SDValue *Ops, unsigned NumOps,
3361 MVT MemVT, const Value *srcValue, int SVOff,
3362 unsigned Align, bool Vol,
3363 bool ReadMem, bool WriteMem) {
3364 return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3365 MemVT, srcValue, SVOff, Align, Vol,
3366 ReadMem, WriteMem);
3367}
3368
3369SDValue
3370SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3371 const SDValue *Ops, unsigned NumOps,
3372 MVT MemVT, const Value *srcValue, int SVOff,
3373 unsigned Align, bool Vol,
3374 bool ReadMem, bool WriteMem) {
3375 // Memoize the node unless it returns a flag.
3376 MemIntrinsicSDNode *N;
3377 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3378 FoldingSetNodeID ID;
3379 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3380 void *IP = 0;
3381 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3382 return SDValue(E, 0);
3383
3384 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3385 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3386 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3387 CSEMap.InsertNode(N, IP);
3388 } else {
3389 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3390 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3391 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3392 }
3393 AllNodes.push_back(N);
3394 return SDValue(N, 0);
3395}
3396
3397SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003398SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003399 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003400 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003401 // Do not include isTailCall in the folding set profile.
3402 FoldingSetNodeID ID;
3403 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3404 ID.AddInteger(CallingConv);
3405 ID.AddInteger(IsVarArgs);
3406 void *IP = 0;
3407 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3408 // Instead of including isTailCall in the folding set, we just
3409 // set the flag of the existing node.
3410 if (!IsTailCall)
3411 cast<CallSDNode>(E)->setNotTailCall();
3412 return SDValue(E, 0);
3413 }
Dan Gohman095cc292008-09-13 01:54:27 +00003414 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003415 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003416 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003417 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003418 AllNodes.push_back(N);
3419 return SDValue(N, 0);
3420}
3421
3422SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003423SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003424 MVT VT, SDValue Chain,
3425 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003426 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003427 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003428 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3429 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003430
Duncan Sands14ea39c2008-03-27 20:23:40 +00003431 if (VT == EVT) {
3432 ExtType = ISD::NON_EXTLOAD;
3433 } else if (ExtType == ISD::NON_EXTLOAD) {
3434 assert(VT == EVT && "Non-extending load from different memory type!");
3435 } else {
3436 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003437 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003438 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3439 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003440 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003441 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003442 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003443 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003444 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003445 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003446 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003447 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003448
3449 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003450 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003451 "Unindexed load with an offset!");
3452
3453 SDVTList VTs = Indexed ?
3454 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003455 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003456 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003457 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003458 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003459 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003460 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003461 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003462 void *IP = 0;
3463 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003464 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003465 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003466 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3467 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003468 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003469 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003470 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003471}
3472
Dan Gohman475871a2008-07-27 21:46:04 +00003473SDValue SelectionDAG::getLoad(MVT VT,
3474 SDValue Chain, SDValue Ptr,
3475 const Value *SV, int SVOffset,
3476 bool isVolatile, unsigned Alignment) {
3477 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003478 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3479 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003480}
3481
Dan Gohman475871a2008-07-27 21:46:04 +00003482SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3483 SDValue Chain, SDValue Ptr,
3484 const Value *SV,
3485 int SVOffset, MVT EVT,
3486 bool isVolatile, unsigned Alignment) {
3487 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003488 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3489 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003490}
3491
Dan Gohman475871a2008-07-27 21:46:04 +00003492SDValue
3493SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3494 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003495 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003496 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3497 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003498 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3499 LD->getChain(), Base, Offset, LD->getSrcValue(),
3500 LD->getSrcValueOffset(), LD->getMemoryVT(),
3501 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003502}
3503
Dan Gohman475871a2008-07-27 21:46:04 +00003504SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3505 SDValue Ptr, const Value *SV, int SVOffset,
3506 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003507 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003508
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003509 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3510 Alignment = getMVTAlignment(VT);
3511
Evan Chengad071e12006-10-05 22:57:11 +00003512 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003513 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3514 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003515 FoldingSetNodeID ID;
3516 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003517 ID.AddInteger(ISD::UNINDEXED);
3518 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003519 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003520 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003521 void *IP = 0;
3522 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003523 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003524 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003525 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3526 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003527 CSEMap.InsertNode(N, IP);
3528 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003529 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003530}
3531
Dan Gohman475871a2008-07-27 21:46:04 +00003532SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3533 SDValue Ptr, const Value *SV,
3534 int SVOffset, MVT SVT,
3535 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003536 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003537
3538 if (VT == SVT)
3539 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003540
Duncan Sands8e4eb092008-06-08 20:54:56 +00003541 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003542 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003543 "Can't do FP-INT conversion!");
3544
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003545 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3546 Alignment = getMVTAlignment(VT);
3547
Evan Cheng8b2794a2006-10-13 21:14:26 +00003548 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003549 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3550 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003551 FoldingSetNodeID ID;
3552 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003553 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003554 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003555 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003556 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003557 void *IP = 0;
3558 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003559 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003560 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003561 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3562 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003563 CSEMap.InsertNode(N, IP);
3564 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003565 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003566}
3567
Dan Gohman475871a2008-07-27 21:46:04 +00003568SDValue
3569SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3570 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003571 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3572 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3573 "Store is already a indexed store!");
3574 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003575 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003576 FoldingSetNodeID ID;
3577 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3578 ID.AddInteger(AM);
3579 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003580 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003581 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003582 void *IP = 0;
3583 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003584 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003585 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003586 new (N) StoreSDNode(Ops, VTs, AM,
3587 ST->isTruncatingStore(), ST->getMemoryVT(),
3588 ST->getSrcValue(), ST->getSrcValueOffset(),
3589 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003590 CSEMap.InsertNode(N, IP);
3591 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003592 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003593}
3594
Dan Gohman475871a2008-07-27 21:46:04 +00003595SDValue SelectionDAG::getVAArg(MVT VT,
3596 SDValue Chain, SDValue Ptr,
3597 SDValue SV) {
3598 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003599 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003600}
3601
Dan Gohman475871a2008-07-27 21:46:04 +00003602SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3603 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003604 switch (NumOps) {
3605 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003606 case 1: return getNode(Opcode, VT, Ops[0]);
3607 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3608 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003609 default: break;
3610 }
3611
Dan Gohman475871a2008-07-27 21:46:04 +00003612 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003613 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003614 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3615 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003616}
3617
Dan Gohman475871a2008-07-27 21:46:04 +00003618SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3619 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003620 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003621 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003622 case 1: return getNode(Opcode, VT, Ops[0]);
3623 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3624 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003625 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003626 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003627
Chris Lattneref847df2005-04-09 03:27:28 +00003628 switch (Opcode) {
3629 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003630 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003631 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003632 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3633 "LHS and RHS of condition must have same type!");
3634 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3635 "True and False arms of SelectCC must have same type!");
3636 assert(Ops[2].getValueType() == VT &&
3637 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003638 break;
3639 }
3640 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003641 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003642 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3643 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003644 break;
3645 }
Chris Lattneref847df2005-04-09 03:27:28 +00003646 }
3647
Chris Lattner385328c2005-05-14 07:42:29 +00003648 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003649 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003650 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003651 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003652 FoldingSetNodeID ID;
3653 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003654 void *IP = 0;
3655 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003656 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003657 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003658 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003659 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003660 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003661 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003662 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003663 }
Chris Lattneref847df2005-04-09 03:27:28 +00003664 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003665#ifndef NDEBUG
3666 VerifyNode(N);
3667#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003668 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003669}
3670
Dan Gohman475871a2008-07-27 21:46:04 +00003671SDValue SelectionDAG::getNode(unsigned Opcode,
3672 const std::vector<MVT> &ResultTys,
3673 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003674 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3675 Ops, NumOps);
3676}
3677
Dan Gohman475871a2008-07-27 21:46:04 +00003678SDValue SelectionDAG::getNode(unsigned Opcode,
3679 const MVT *VTs, unsigned NumVTs,
3680 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003681 if (NumVTs == 1)
3682 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003683 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3684}
3685
Dan Gohman475871a2008-07-27 21:46:04 +00003686SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3687 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003688 if (VTList.NumVTs == 1)
3689 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003690
Chris Lattner5f056bf2005-07-10 01:55:33 +00003691 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003692 // FIXME: figure out how to safely handle things like
3693 // int foo(int x) { return 1 << (x & 255); }
3694 // int bar() { return foo(256); }
3695#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003696 case ISD::SRA_PARTS:
3697 case ISD::SRL_PARTS:
3698 case ISD::SHL_PARTS:
3699 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003700 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003701 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3702 else if (N3.getOpcode() == ISD::AND)
3703 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3704 // If the and is only masking out bits that cannot effect the shift,
3705 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003706 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003707 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3708 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3709 }
3710 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003711#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003712 }
Chris Lattner89c34632005-05-14 06:20:26 +00003713
Chris Lattner43247a12005-08-25 19:12:10 +00003714 // Memoize the node unless it returns a flag.
3715 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003716 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003717 FoldingSetNodeID ID;
3718 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003719 void *IP = 0;
3720 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003721 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003722 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003723 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003724 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3725 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003726 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003727 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3728 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003729 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003730 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3731 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003732 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003733 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3734 }
Chris Lattnera5682852006-08-07 23:03:03 +00003735 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003736 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003737 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003738 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003739 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3740 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003741 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003742 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3743 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003744 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003745 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3746 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003747 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003748 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3749 }
Chris Lattner43247a12005-08-25 19:12:10 +00003750 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003751 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003752#ifndef NDEBUG
3753 VerifyNode(N);
3754#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003755 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003756}
3757
Dan Gohman475871a2008-07-27 21:46:04 +00003758SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003759 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003760}
3761
Dan Gohman475871a2008-07-27 21:46:04 +00003762SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3763 SDValue N1) {
3764 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003765 return getNode(Opcode, VTList, Ops, 1);
3766}
3767
Dan Gohman475871a2008-07-27 21:46:04 +00003768SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3769 SDValue N1, SDValue N2) {
3770 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003771 return getNode(Opcode, VTList, Ops, 2);
3772}
3773
Dan Gohman475871a2008-07-27 21:46:04 +00003774SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3775 SDValue N1, SDValue N2, SDValue N3) {
3776 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003777 return getNode(Opcode, VTList, Ops, 3);
3778}
3779
Dan Gohman475871a2008-07-27 21:46:04 +00003780SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3781 SDValue N1, SDValue N2, SDValue N3,
3782 SDValue N4) {
3783 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003784 return getNode(Opcode, VTList, Ops, 4);
3785}
3786
Dan Gohman475871a2008-07-27 21:46:04 +00003787SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3788 SDValue N1, SDValue N2, SDValue N3,
3789 SDValue N4, SDValue N5) {
3790 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003791 return getNode(Opcode, VTList, Ops, 5);
3792}
3793
Duncan Sands83ec4b62008-06-06 12:08:01 +00003794SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003795 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003796}
3797
Duncan Sands83ec4b62008-06-06 12:08:01 +00003798SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003799 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3800 E = VTList.rend(); I != E; ++I)
3801 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3802 return *I;
3803
3804 MVT *Array = Allocator.Allocate<MVT>(2);
3805 Array[0] = VT1;
3806 Array[1] = VT2;
3807 SDVTList Result = makeVTList(Array, 2);
3808 VTList.push_back(Result);
3809 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003810}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003811
3812SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3813 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3814 E = VTList.rend(); I != E; ++I)
3815 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3816 I->VTs[2] == VT3)
3817 return *I;
3818
3819 MVT *Array = Allocator.Allocate<MVT>(3);
3820 Array[0] = VT1;
3821 Array[1] = VT2;
3822 Array[2] = VT3;
3823 SDVTList Result = makeVTList(Array, 3);
3824 VTList.push_back(Result);
3825 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003826}
3827
Duncan Sands83ec4b62008-06-06 12:08:01 +00003828SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003829 switch (NumVTs) {
3830 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003831 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003832 case 2: return getVTList(VTs[0], VTs[1]);
3833 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3834 default: break;
3835 }
3836
Dan Gohmane8be6c62008-07-17 19:10:17 +00003837 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3838 E = VTList.rend(); I != E; ++I) {
3839 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3840 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003841
3842 bool NoMatch = false;
3843 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003844 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003845 NoMatch = true;
3846 break;
3847 }
3848 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003849 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003850 }
3851
Dan Gohmane8be6c62008-07-17 19:10:17 +00003852 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3853 std::copy(VTs, VTs+NumVTs, Array);
3854 SDVTList Result = makeVTList(Array, NumVTs);
3855 VTList.push_back(Result);
3856 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003857}
3858
3859
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003860/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3861/// specified operands. If the resultant node already exists in the DAG,
3862/// this does not modify the specified node, instead it returns the node that
3863/// already exists. If the resultant node does not exist in the DAG, the
3864/// input node is returned. As a degenerate case, if you specify the same
3865/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003866SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003867 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003868 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3869
3870 // Check to see if there is no change.
3871 if (Op == N->getOperand(0)) return InN;
3872
3873 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003874 void *InsertPos = 0;
3875 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003876 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003877
Dan Gohman79acd2b2008-07-21 22:38:59 +00003878 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003879 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003880 if (!RemoveNodeFromCSEMaps(N))
3881 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003882
3883 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003884 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003885 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003886 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003887 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003888
3889 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003890 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003891 return InN;
3892}
3893
Dan Gohman475871a2008-07-27 21:46:04 +00003894SDValue SelectionDAG::
3895UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003896 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003897 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3898
3899 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003900 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3901 return InN; // No operands changed, just return the input node.
3902
3903 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003904 void *InsertPos = 0;
3905 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003906 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003907
Dan Gohman79acd2b2008-07-21 22:38:59 +00003908 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003909 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003910 if (!RemoveNodeFromCSEMaps(N))
3911 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003912
3913 // Now we update the operands.
3914 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003915 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003916 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003917 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003918 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003919 }
3920 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003921 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003922 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003923 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003924 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003925 }
3926
3927 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003928 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003929 return InN;
3930}
3931
Dan Gohman475871a2008-07-27 21:46:04 +00003932SDValue SelectionDAG::
3933UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3934 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003935 return UpdateNodeOperands(N, Ops, 3);
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) {
3941 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003942 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003943}
3944
Dan Gohman475871a2008-07-27 21:46:04 +00003945SDValue SelectionDAG::
3946UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3947 SDValue Op3, SDValue Op4, SDValue Op5) {
3948 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003949 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003950}
3951
Dan Gohman475871a2008-07-27 21:46:04 +00003952SDValue SelectionDAG::
3953UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003954 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003955 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003956 "Update with wrong number of operands");
3957
3958 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003959 bool AnyChange = false;
3960 for (unsigned i = 0; i != NumOps; ++i) {
3961 if (Ops[i] != N->getOperand(i)) {
3962 AnyChange = true;
3963 break;
3964 }
3965 }
3966
3967 // No operands changed, just return the input node.
3968 if (!AnyChange) return InN;
3969
3970 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003971 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003972 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003973 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003974
Dan Gohman7ceda162008-05-02 00:05:03 +00003975 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003976 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003977 if (!RemoveNodeFromCSEMaps(N))
3978 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003979
3980 // Now we update the operands.
3981 for (unsigned i = 0; i != NumOps; ++i) {
3982 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003983 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003984 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003985 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003986 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003987 }
3988 }
3989
3990 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003991 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003992 return InN;
3993}
3994
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003995/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00003996/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003997void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00003998 // Unlike the code in MorphNodeTo that does this, we don't need to
3999 // watch for dead nodes here.
4000 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
4001 I->getVal()->removeUser(std::distance(op_begin(), I), this);
4002
4003 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00004004}
Chris Lattner149c58c2005-08-16 18:17:10 +00004005
Dan Gohmane8be6c62008-07-17 19:10:17 +00004006/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4007/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004008///
Dan Gohmane8be6c62008-07-17 19:10:17 +00004009SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004010 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004011 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004012 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +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) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004017 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004018 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004019 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00004020}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004021
Dan Gohmane8be6c62008-07-17 19:10:17 +00004022SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004023 MVT VT, SDValue Op1,
4024 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004025 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004026 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004027 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00004028}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004029
Dan Gohmane8be6c62008-07-17 19:10:17 +00004030SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004031 MVT VT, SDValue Op1,
4032 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004033 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004034 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004035 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00004036}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00004037
Dan Gohmane8be6c62008-07-17 19:10:17 +00004038SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004039 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00004040 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004041 SDVTList VTs = getVTList(VT);
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 Gohman475871a2008-07-27 21:46:04 +00004046 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004047 unsigned NumOps) {
4048 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004049 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004050}
4051
Dan Gohmane8be6c62008-07-17 19:10:17 +00004052SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004053 MVT VT1, MVT VT2) {
4054 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004055 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00004056}
4057
Dan Gohmane8be6c62008-07-17 19:10:17 +00004058SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004059 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004060 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004061 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004062 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004063}
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,
Dan Gohman475871a2008-07-27 21:46:04 +00004091 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004092 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004093 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4094}
4095
4096SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4097 MVT VT) {
4098 SDVTList VTs = getVTList(VT);
4099 return MorphNodeTo(N, Opc, VTs, 0, 0);
4100}
4101
4102SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004103 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004104 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004105 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004106 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4107}
4108
4109SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004110 MVT VT, SDValue Op1,
4111 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004112 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004113 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004114 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4115}
4116
4117SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004118 MVT VT, SDValue Op1,
4119 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004120 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004121 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004122 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4123}
4124
4125SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004126 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004127 unsigned NumOps) {
4128 SDVTList VTs = getVTList(VT);
4129 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4130}
4131
4132SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004133 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004134 unsigned NumOps) {
4135 SDVTList VTs = getVTList(VT1, VT2);
4136 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4137}
4138
4139SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4140 MVT VT1, MVT VT2) {
4141 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004142 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004143}
4144
4145SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4146 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004147 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004148 SDVTList VTs = getVTList(VT1, VT2, VT3);
4149 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4150}
4151
4152SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4153 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004154 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004155 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004156 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004157 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4158}
4159
4160SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4161 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004162 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004163 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004164 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004165 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4166}
4167
4168SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4169 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004170 SDValue Op1, SDValue Op2,
4171 SDValue Op3) {
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, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004174 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4175}
4176
4177/// MorphNodeTo - These *mutate* the specified node to have the specified
4178/// return type, opcode, and operands.
4179///
4180/// Note that MorphNodeTo returns the resultant node. If there is already a
4181/// node of the specified opcode and operands, it returns that node instead of
4182/// the current one.
4183///
4184/// Using MorphNodeTo is faster than creating a new node and swapping it in
4185/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004186/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004187/// the node's users.
4188///
4189SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004190 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004191 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004192 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004193 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004194 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4195 FoldingSetNodeID ID;
4196 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4197 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4198 return ON;
4199 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004200
Dan Gohman095cc292008-09-13 01:54:27 +00004201 if (!RemoveNodeFromCSEMaps(N))
4202 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004203
Dan Gohmane8be6c62008-07-17 19:10:17 +00004204 // Start the morphing.
4205 N->NodeType = Opc;
4206 N->ValueList = VTs.VTs;
4207 N->NumValues = VTs.NumVTs;
4208
4209 // Clear the operands list, updating used nodes to remove this from their
4210 // use list. Keep track of any operands that become dead as a result.
4211 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4212 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4213 I != E; ++I) {
4214 SDNode *Used = I->getVal();
4215 Used->removeUser(std::distance(B, I), N);
4216 if (Used->use_empty())
4217 DeadNodeSet.insert(Used);
4218 }
4219
4220 // If NumOps is larger than the # of operands we currently have, reallocate
4221 // the operand list.
4222 if (NumOps > N->NumOperands) {
4223 if (N->OperandsNeedDelete)
4224 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +00004225
Dan Gohmane8be6c62008-07-17 19:10:17 +00004226 if (N->isMachineOpcode()) {
4227 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004228 // remainder of the current SelectionDAG iteration, so we can allocate
4229 // the operands directly out of a pool with no recycling metadata.
4230 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004231 N->OperandsNeedDelete = false;
4232 } else {
4233 N->OperandList = new SDUse[NumOps];
4234 N->OperandsNeedDelete = true;
4235 }
4236 }
4237
4238 // Assign the new operands.
4239 N->NumOperands = NumOps;
4240 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4241 N->OperandList[i] = Ops[i];
4242 N->OperandList[i].setUser(N);
4243 SDNode *ToUse = N->OperandList[i].getVal();
4244 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004245 }
4246
4247 // Delete any nodes that are still dead after adding the uses for the
4248 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004249 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004250 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4251 E = DeadNodeSet.end(); I != E; ++I)
4252 if ((*I)->use_empty())
4253 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004254 RemoveDeadNodes(DeadNodes);
4255
Dan Gohmane8be6c62008-07-17 19:10:17 +00004256 if (IP)
4257 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004258 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004259}
4260
Chris Lattner0fb094f2005-11-19 01:44:53 +00004261
Evan Cheng6ae46c42006-02-09 07:15:23 +00004262/// getTargetNode - These are used for target selectors to create a new node
4263/// with specified return type(s), target opcode, and operands.
4264///
4265/// Note that getTargetNode returns the resultant node. If there is already a
4266/// node of the specified opcode and operands, it returns that node instead of
4267/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004268SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004269 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004270}
Dan Gohman475871a2008-07-27 21:46:04 +00004271SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004272 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004273}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004274SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004275 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004276 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004277}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004278SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004279 SDValue Op1, SDValue Op2,
4280 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004281 return getNode(~Opcode, VT, Op1, Op2, Op3).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 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004285 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004286}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004287SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4288 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004289 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004290 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004291}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004292SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004293 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004294 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004295 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004296}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004297SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004298 MVT VT2, SDValue Op1,
4299 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004300 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004301 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004302 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004303}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004304SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004305 MVT VT2, SDValue Op1,
4306 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004307 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004308 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004310}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004311SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004312 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004313 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004314 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004315}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004316SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004317 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004318 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004319 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004320 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004321}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004322SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004323 SDValue Op1, SDValue Op2,
4324 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004325 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004326 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004327 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004328}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004329SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004330 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004331 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004332 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004333}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004334SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4335 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004336 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004337 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004338 VTList.push_back(VT1);
4339 VTList.push_back(VT2);
4340 VTList.push_back(VT3);
4341 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004342 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004343 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004344}
Evan Cheng39305cf2007-10-05 01:10:49 +00004345SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004346 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004347 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004348 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004349 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004350 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004351}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004352
Evan Cheng08b11732008-03-22 01:55:50 +00004353/// getNodeIfExists - Get the specified node if it's already available, or
4354/// else return NULL.
4355SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004356 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004357 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4358 FoldingSetNodeID ID;
4359 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4360 void *IP = 0;
4361 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4362 return E;
4363 }
4364 return NULL;
4365}
4366
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004367
Evan Cheng99157a02006-08-07 22:13:29 +00004368/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004369/// This can cause recursive merging of nodes in the DAG.
4370///
Chris Lattner11d049c2008-02-03 03:35:22 +00004371/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004372///
Dan Gohman475871a2008-07-27 21:46:04 +00004373void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004374 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004375 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004376 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004377 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004378 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004379
Chris Lattner8b8749f2005-08-17 19:00:20 +00004380 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004381 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004382 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004383
Chris Lattner8b8749f2005-08-17 19:00:20 +00004384 // This node is about to morph, remove its old self from the CSE maps.
4385 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004386 int operandNum = 0;
4387 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4388 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004389 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004390 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004391 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004392 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004393 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004394 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004395
4396 // Now that we have modified U, add it back to the CSE maps. If it already
4397 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004398 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004399 ReplaceAllUsesWith(U, Existing, UpdateListener);
4400 // U is now dead. Inform the listener if it exists and delete it.
4401 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004402 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004403 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004404 } else {
4405 // If the node doesn't already exist, we updated it. Inform a listener if
4406 // it exists.
4407 if (UpdateListener)
4408 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004409 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004410 }
4411}
4412
4413/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4414/// This can cause recursive merging of nodes in the DAG.
4415///
4416/// This version assumes From/To have matching types and numbers of result
4417/// values.
4418///
Chris Lattner1e111c72005-09-07 05:37:01 +00004419void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004420 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004421 assert(From->getVTList().VTs == To->getVTList().VTs &&
4422 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004423 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004424
4425 // Handle the trivial case.
4426 if (From == To)
4427 return;
4428
Chris Lattner8b52f212005-08-26 18:36:28 +00004429 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004430 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004431 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004432
Chris Lattner8b52f212005-08-26 18:36:28 +00004433 // This node is about to morph, remove its old self from the CSE maps.
4434 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004435 int operandNum = 0;
4436 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4437 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004438 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004439 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004440 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004441 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004442 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004443
Chris Lattner8b8749f2005-08-17 19:00:20 +00004444 // Now that we have modified U, add it back to the CSE maps. If it already
4445 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004446 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004447 ReplaceAllUsesWith(U, Existing, UpdateListener);
4448 // U is now dead. Inform the listener if it exists and delete it.
4449 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004450 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004451 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004452 } else {
4453 // If the node doesn't already exist, we updated it. Inform a listener if
4454 // it exists.
4455 if (UpdateListener)
4456 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004457 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004458 }
4459}
4460
Chris Lattner8b52f212005-08-26 18:36:28 +00004461/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4462/// This can cause recursive merging of nodes in the DAG.
4463///
4464/// This version can replace From with any result values. To must match the
4465/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004466void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004467 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004468 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004469 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004470 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004471
4472 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004473 SDNode::use_iterator UI = From->use_begin();
Dan Gohman89684502008-07-27 20:43:25 +00004474 SDNode *U = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004475
Chris Lattner7b2880c2005-08-24 22:44:39 +00004476 // This node is about to morph, remove its old self from the CSE maps.
4477 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004478 int operandNum = 0;
4479 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4480 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004481 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004482 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004483 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004484 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004485 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004486 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004487 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004488
Chris Lattner7b2880c2005-08-24 22:44:39 +00004489 // Now that we have modified U, add it back to the CSE maps. If it already
4490 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004491 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004492 ReplaceAllUsesWith(U, Existing, UpdateListener);
4493 // U is now dead. Inform the listener if it exists and delete it.
4494 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004495 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004496 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004497 } else {
4498 // If the node doesn't already exist, we updated it. Inform a listener if
4499 // it exists.
4500 if (UpdateListener)
4501 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004502 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004503 }
4504}
4505
Chris Lattner012f2412006-02-17 21:58:01 +00004506/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004507/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004508/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004509void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004510 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004511 // Handle the really simple, really trivial case efficiently.
4512 if (From == To) return;
4513
Chris Lattner012f2412006-02-17 21:58:01 +00004514 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004515 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004516 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004517 return;
4518 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004519
Gabor Greifba36cb52008-08-28 21:40:38 +00004520 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004521 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004522 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004523
4524 while (!Users.empty()) {
4525 // We know that this user uses some value of From. If it is the right
4526 // value, update it.
4527 SDNode *User = Users.back();
4528 Users.pop_back();
4529
Chris Lattner01d029b2007-10-15 06:10:22 +00004530 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004531 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004532 for (; Op != E; ++Op)
4533 if (*Op == From) break;
4534
4535 // If there are no matches, the user must use some other result of From.
4536 if (Op == E) continue;
4537
4538 // Okay, we know this user needs to be updated. Remove its old self
4539 // from the CSE maps.
4540 RemoveNodeFromCSEMaps(User);
4541
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004542 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004543 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004544 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004545 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004546 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004547 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004548 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004549 }
4550 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004551
4552 // Now that we have modified User, add it back to the CSE maps. If it
4553 // already exists there, recursively merge the results together.
4554 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004555 if (!Existing) {
4556 if (UpdateListener) UpdateListener->NodeUpdated(User);
4557 continue; // Continue on to next user.
4558 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004559
4560 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004561 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004562 // recursive merging of other unrelated nodes down the line.
4563 ReplaceAllUsesWith(User, Existing, UpdateListener);
4564
4565 // User is now dead. Notify a listener if present.
4566 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4567 DeleteNodeNotInCSEMaps(User);
4568 }
4569}
4570
4571/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004572/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004573/// appear in both the From and To list. The Deleted vector is
4574/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004575void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4576 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004577 unsigned Num,
4578 DAGUpdateListener *UpdateListener){
4579 // Handle the simple, trivial case efficiently.
4580 if (Num == 1)
4581 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4582
4583 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4584 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004585 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4586 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004587 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004588
4589 while (!Users.empty()) {
4590 // We know that this user uses some value of From. If it is the right
4591 // value, update it.
4592 SDNode *User = Users.back().first;
4593 unsigned i = Users.back().second;
4594 Users.pop_back();
4595
4596 // Scan for an operand that matches From.
4597 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4598 for (; Op != E; ++Op)
4599 if (*Op == From[i]) break;
4600
4601 // If there are no matches, the user must use some other result of From.
4602 if (Op == E) continue;
4603
4604 // Okay, we know this user needs to be updated. Remove its old self
4605 // from the CSE maps.
4606 RemoveNodeFromCSEMaps(User);
4607
4608 // Update all operands that match "From" in case there are multiple uses.
4609 for (; Op != E; ++Op) {
4610 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004611 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004612 *Op = To[i];
4613 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004614 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004615 }
4616 }
4617
4618 // Now that we have modified User, add it back to the CSE maps. If it
4619 // already exists there, recursively merge the results together.
4620 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4621 if (!Existing) {
4622 if (UpdateListener) UpdateListener->NodeUpdated(User);
4623 continue; // Continue on to next user.
4624 }
4625
4626 // If there was already an existing matching node, use ReplaceAllUsesWith
4627 // to replace the dead one with the existing one. This can cause
4628 // recursive merging of other unrelated nodes down the line.
4629 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004630
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004631 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004632 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004633 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004634 }
4635}
4636
Evan Chenge6f35d82006-08-01 08:20:41 +00004637/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004638/// based on their topological order. It returns the maximum id and a vector
4639/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004640unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004641
Dan Gohmanf06c8352008-09-30 18:30:35 +00004642 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004643
Dan Gohmanf06c8352008-09-30 18:30:35 +00004644 // SortedPos tracks the progress of the algorithm. Nodes before it are
4645 // sorted, nodes after it are unsorted. When the algorithm completes
4646 // it is at the end of the list.
4647 allnodes_iterator SortedPos = allnodes_begin();
4648
4649 // Visit all the nodes. Add nodes with no operands to the TopOrder result
4650 // array immediately. Annotate nodes that do have operands with their
4651 // operand count. Before we do this, the Node Id fields of the nodes
4652 // may contain arbitrary values. After, the Node Id fields for nodes
4653 // before SortedPos will contain the topological sort index, and the
4654 // Node Id fields for nodes At SortedPos and after will contain the
4655 // count of outstanding operands.
4656 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4657 SDNode *N = I++;
4658 unsigned Degree = N->getNumOperands();
4659 if (Degree == 0) {
4660 // A node with no uses, add it to the result array immediately.
4661 N->setNodeId(DAGSize++);
4662 allnodes_iterator Q = N;
4663 if (Q != SortedPos)
4664 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4665 ++SortedPos;
4666 } else {
4667 // Temporarily use the Node Id as scratch space for the degree count.
4668 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004669 }
4670 }
4671
Dan Gohmanf06c8352008-09-30 18:30:35 +00004672 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4673 // such that by the time the end is reached all nodes will be sorted.
4674 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4675 SDNode *N = I;
4676 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4677 UI != UE; ++UI) {
4678 SDNode *P = *UI;
4679 unsigned Degree = P->getNodeId();
4680 --Degree;
4681 if (Degree == 0) {
4682 // All of P's operands are sorted, so P may sorted now.
4683 P->setNodeId(DAGSize++);
4684 if (P != SortedPos)
4685 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4686 ++SortedPos;
4687 } else {
4688 // Update P's outstanding operand count.
4689 P->setNodeId(Degree);
4690 }
4691 }
4692 }
4693
4694 assert(SortedPos == AllNodes.end() &&
4695 "Topological sort incomplete!");
4696 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4697 "First node in topological sort is not the entry token!");
4698 assert(AllNodes.front().getNodeId() == 0 &&
4699 "First node in topological sort has non-zero id!");
4700 assert(AllNodes.front().getNumOperands() == 0 &&
4701 "First node in topological sort has operands!");
4702 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4703 "Last node in topologic sort has unexpected id!");
4704 assert(AllNodes.back().use_empty() &&
4705 "Last node in topologic sort has users!");
4706 assert(DAGSize == allnodes_size() && "TopOrder result count mismatch!");
4707 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004708}
4709
4710
Evan Cheng091cba12006-07-27 06:39:06 +00004711
Jim Laskey58b968b2005-08-17 20:08:02 +00004712//===----------------------------------------------------------------------===//
4713// SDNode Class
4714//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004715
Chris Lattner917d2c92006-07-19 00:00:37 +00004716// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004717void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004718void UnarySDNode::ANCHOR() {}
4719void BinarySDNode::ANCHOR() {}
4720void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004721void HandleSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004722void ConstantSDNode::ANCHOR() {}
4723void ConstantFPSDNode::ANCHOR() {}
4724void GlobalAddressSDNode::ANCHOR() {}
4725void FrameIndexSDNode::ANCHOR() {}
4726void JumpTableSDNode::ANCHOR() {}
4727void ConstantPoolSDNode::ANCHOR() {}
4728void BasicBlockSDNode::ANCHOR() {}
4729void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004730void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004731void RegisterSDNode::ANCHOR() {}
Dan Gohman7f460202008-06-30 20:59:49 +00004732void DbgStopPointSDNode::ANCHOR() {}
Dan Gohman44066042008-07-01 00:05:16 +00004733void LabelSDNode::ANCHOR() {}
Bill Wendling056292f2008-09-16 21:48:12 +00004734void ExternalSymbolSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004735void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004736void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004737void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004738void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004739void LoadSDNode::ANCHOR() {}
4740void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004741void AtomicSDNode::ANCHOR() {}
Mon P Wangc4d10212008-10-17 18:22:58 +00004742void MemIntrinsicSDNode::ANCHOR() {}
Dan Gohman095cc292008-09-13 01:54:27 +00004743void CallSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004744
Chris Lattner48b85922007-02-04 02:41:42 +00004745HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004746 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004747}
4748
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004749GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Dan Gohman6520e202008-10-18 02:06:02 +00004750 MVT VT, int64_t o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004751 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004752 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004753 // Thread Local
4754 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4755 // Non Thread Local
4756 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4757 getSDVTList(VT)), Offset(o) {
4758 TheGlobal = const_cast<GlobalValue*>(GA);
4759}
Chris Lattner48b85922007-02-04 02:41:42 +00004760
Dan Gohman1ea58a52008-07-09 22:08:04 +00004761MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004762 const Value *srcValue, int SVO,
4763 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004764 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004765 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004766
4767 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4768 assert(getAlignment() == alignment && "Alignment representation error!");
4769 assert(isVolatile() == vol && "Volatile representation error!");
4770}
4771
Mon P Wangc4d10212008-10-17 18:22:58 +00004772MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4773 unsigned NumOps, MVT memvt, const Value *srcValue,
4774 int SVO, unsigned alignment, bool vol)
4775 : SDNode(Opc, VTs, Ops, NumOps),
4776 MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4777 Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4778 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4779 assert(getAlignment() == alignment && "Alignment representation error!");
4780 assert(isVolatile() == vol && "Volatile representation error!");
4781}
4782
Dan Gohman36b5c132008-04-07 19:35:22 +00004783/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004784/// reference performed by this memory reference.
4785MachineMemOperand MemSDNode::getMemOperand() const {
Dale Johannesenfea90882008-10-24 01:06:58 +00004786 int Flags = 0;
Dan Gohman1ea58a52008-07-09 22:08:04 +00004787 if (isa<LoadSDNode>(this))
4788 Flags = MachineMemOperand::MOLoad;
4789 else if (isa<StoreSDNode>(this))
4790 Flags = MachineMemOperand::MOStore;
Mon P Wangc4d10212008-10-17 18:22:58 +00004791 else if (isa<AtomicSDNode>(this)) {
Dan Gohman1ea58a52008-07-09 22:08:04 +00004792 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4793 }
Mon P Wangc4d10212008-10-17 18:22:58 +00004794 else {
4795 const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4796 assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4797 if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4798 if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4799 }
Dan Gohman1ea58a52008-07-09 22:08:04 +00004800
4801 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004802 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4803
Dan Gohman1ea58a52008-07-09 22:08:04 +00004804 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004805 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004806 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004807 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004808 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4809 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004810 else
4811 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4812 Size, getAlignment());
4813}
4814
Jim Laskey583bd472006-10-27 23:46:08 +00004815/// Profile - Gather unique data for the node.
4816///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004817void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004818 AddNodeIDNode(ID, this);
4819}
4820
Chris Lattnera3255112005-11-08 23:30:28 +00004821/// getValueTypeList - Return a pointer to the specified value type.
4822///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004823const MVT *SDNode::getValueTypeList(MVT VT) {
4824 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004825 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004826 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004827 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004828 static MVT VTs[MVT::LAST_VALUETYPE];
4829 VTs[VT.getSimpleVT()] = VT;
4830 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004831 }
Chris Lattnera3255112005-11-08 23:30:28 +00004832}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004833
Chris Lattner5c884562005-01-12 18:37:47 +00004834/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4835/// indicated value. This method ignores uses of other values defined by this
4836/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004837bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004838 assert(Value < getNumValues() && "Bad value!");
4839
Roman Levensteindc1adac2008-04-07 10:06:32 +00004840 // TODO: Only iterate over uses of a given value of the node
4841 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004842 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004843 if (NUses == 0)
4844 return false;
4845 --NUses;
4846 }
Chris Lattner5c884562005-01-12 18:37:47 +00004847 }
4848
4849 // Found exactly the right number of uses?
4850 return NUses == 0;
4851}
4852
4853
Evan Cheng33d55952007-08-02 05:29:38 +00004854/// hasAnyUseOfValue - Return true if there are any use of the indicated
4855/// value. This method ignores uses of other values defined by this operation.
4856bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4857 assert(Value < getNumValues() && "Bad value!");
4858
Dan Gohman1373c1c2008-07-09 22:39:01 +00004859 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004860 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004861 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004862
4863 return false;
4864}
4865
4866
Dan Gohman2a629952008-07-27 18:06:42 +00004867/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004868///
Dan Gohman2a629952008-07-27 18:06:42 +00004869bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004870 bool Seen = false;
4871 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004872 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004873 if (User == this)
4874 Seen = true;
4875 else
4876 return false;
4877 }
4878
4879 return Seen;
4880}
4881
Evan Chenge6e97e62006-11-03 07:31:32 +00004882/// isOperand - Return true if this node is an operand of N.
4883///
Dan Gohman475871a2008-07-27 21:46:04 +00004884bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004885 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4886 if (*this == N->getOperand(i))
4887 return true;
4888 return false;
4889}
4890
Evan Cheng917be682008-03-04 00:41:45 +00004891bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004892 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004893 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004894 return true;
4895 return false;
4896}
Evan Cheng4ee62112006-02-05 06:29:23 +00004897
Chris Lattner572dee72008-01-16 05:49:24 +00004898/// reachesChainWithoutSideEffects - Return true if this operand (which must
4899/// be a chain) reaches the specified operand without crossing any
4900/// side-effecting instructions. In practice, this looks through token
4901/// factors and non-volatile loads. In order to remain efficient, this only
4902/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004903bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004904 unsigned Depth) const {
4905 if (*this == Dest) return true;
4906
4907 // Don't search too deeply, we just want to be able to see through
4908 // TokenFactor's etc.
4909 if (Depth == 0) return false;
4910
4911 // If this is a token factor, all inputs to the TF happen in parallel. If any
4912 // of the operands of the TF reach dest, then we can do the xform.
4913 if (getOpcode() == ISD::TokenFactor) {
4914 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4915 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4916 return true;
4917 return false;
4918 }
4919
4920 // Loads don't have side effects, look through them.
4921 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4922 if (!Ld->isVolatile())
4923 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4924 }
4925 return false;
4926}
4927
4928
Evan Chengc5fc57d2006-11-03 03:05:24 +00004929static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004930 SmallPtrSet<SDNode *, 32> &Visited) {
4931 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004932 return;
4933
4934 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004935 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004936 if (Op == P) {
4937 found = true;
4938 return;
4939 }
4940 findPredecessor(Op, P, found, Visited);
4941 }
4942}
4943
Evan Cheng917be682008-03-04 00:41:45 +00004944/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004945/// is either an operand of N or it can be reached by recursively traversing
4946/// up the operands.
4947/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004948bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004949 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004950 bool found = false;
4951 findPredecessor(N, this, found, Visited);
4952 return found;
4953}
4954
Evan Chengc5484282006-10-04 00:56:09 +00004955uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4956 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004957 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004958}
4959
Reid Spencer577cc322007-04-01 07:32:19 +00004960std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004961 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004962 default:
4963 if (getOpcode() < ISD::BUILTIN_OP_END)
4964 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004965 if (isMachineOpcode()) {
4966 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004967 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004968 if (getMachineOpcode() < TII->getNumOpcodes())
4969 return TII->get(getMachineOpcode()).getName();
4970 return "<<Unknown Machine Node>>";
4971 }
4972 if (G) {
4973 TargetLowering &TLI = G->getTargetLoweringInfo();
4974 const char *Name = TLI.getTargetNodeName(getOpcode());
4975 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004976 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004977 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004978 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004979
Dan Gohmane8be6c62008-07-17 19:10:17 +00004980#ifndef NDEBUG
4981 case ISD::DELETED_NODE:
4982 return "<<Deleted Node!>>";
4983#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00004984 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004985 case ISD::MEMBARRIER: return "MemBarrier";
Dale Johannesene00a8a22008-08-28 02:44:49 +00004986 case ISD::ATOMIC_CMP_SWAP_8: return "AtomicCmpSwap8";
4987 case ISD::ATOMIC_SWAP_8: return "AtomicSwap8";
4988 case ISD::ATOMIC_LOAD_ADD_8: return "AtomicLoadAdd8";
4989 case ISD::ATOMIC_LOAD_SUB_8: return "AtomicLoadSub8";
4990 case ISD::ATOMIC_LOAD_AND_8: return "AtomicLoadAnd8";
4991 case ISD::ATOMIC_LOAD_OR_8: return "AtomicLoadOr8";
4992 case ISD::ATOMIC_LOAD_XOR_8: return "AtomicLoadXor8";
4993 case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
4994 case ISD::ATOMIC_LOAD_MIN_8: return "AtomicLoadMin8";
4995 case ISD::ATOMIC_LOAD_MAX_8: return "AtomicLoadMax8";
4996 case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
4997 case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
4998 case ISD::ATOMIC_CMP_SWAP_16: return "AtomicCmpSwap16";
4999 case ISD::ATOMIC_SWAP_16: return "AtomicSwap16";
5000 case ISD::ATOMIC_LOAD_ADD_16: return "AtomicLoadAdd16";
5001 case ISD::ATOMIC_LOAD_SUB_16: return "AtomicLoadSub16";
5002 case ISD::ATOMIC_LOAD_AND_16: return "AtomicLoadAnd16";
5003 case ISD::ATOMIC_LOAD_OR_16: return "AtomicLoadOr16";
5004 case ISD::ATOMIC_LOAD_XOR_16: return "AtomicLoadXor16";
5005 case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
5006 case ISD::ATOMIC_LOAD_MIN_16: return "AtomicLoadMin16";
5007 case ISD::ATOMIC_LOAD_MAX_16: return "AtomicLoadMax16";
5008 case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
5009 case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
5010 case ISD::ATOMIC_CMP_SWAP_32: return "AtomicCmpSwap32";
5011 case ISD::ATOMIC_SWAP_32: return "AtomicSwap32";
5012 case ISD::ATOMIC_LOAD_ADD_32: return "AtomicLoadAdd32";
5013 case ISD::ATOMIC_LOAD_SUB_32: return "AtomicLoadSub32";
5014 case ISD::ATOMIC_LOAD_AND_32: return "AtomicLoadAnd32";
5015 case ISD::ATOMIC_LOAD_OR_32: return "AtomicLoadOr32";
5016 case ISD::ATOMIC_LOAD_XOR_32: return "AtomicLoadXor32";
5017 case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
5018 case ISD::ATOMIC_LOAD_MIN_32: return "AtomicLoadMin32";
5019 case ISD::ATOMIC_LOAD_MAX_32: return "AtomicLoadMax32";
5020 case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
5021 case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
5022 case ISD::ATOMIC_CMP_SWAP_64: return "AtomicCmpSwap64";
5023 case ISD::ATOMIC_SWAP_64: return "AtomicSwap64";
5024 case ISD::ATOMIC_LOAD_ADD_64: return "AtomicLoadAdd64";
5025 case ISD::ATOMIC_LOAD_SUB_64: return "AtomicLoadSub64";
5026 case ISD::ATOMIC_LOAD_AND_64: return "AtomicLoadAnd64";
5027 case ISD::ATOMIC_LOAD_OR_64: return "AtomicLoadOr64";
5028 case ISD::ATOMIC_LOAD_XOR_64: return "AtomicLoadXor64";
5029 case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
5030 case ISD::ATOMIC_LOAD_MIN_64: return "AtomicLoadMin64";
5031 case ISD::ATOMIC_LOAD_MAX_64: return "AtomicLoadMax64";
5032 case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
5033 case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
Andrew Lenharth95762122005-03-31 21:24:06 +00005034 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00005035 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005036 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00005037 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005038 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00005039 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00005040 case ISD::AssertSext: return "AssertSext";
5041 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005042
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005043 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005044 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005045 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00005046 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005047
5048 case ISD::Constant: return "Constant";
5049 case ISD::ConstantFP: return "ConstantFP";
5050 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005051 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005052 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005053 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00005054 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00005055 case ISD::RETURNADDR: return "RETURNADDR";
5056 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005057 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00005058 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00005059 case ISD::EHSELECTION: return "EHSELECTION";
5060 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00005061 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005062 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00005063 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005064 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00005065 return Intrinsic::getName((Intrinsic::ID)IID);
5066 }
5067 case ISD::INTRINSIC_VOID:
5068 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005069 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00005070 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00005071 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00005072
Chris Lattnerb2827b02006-03-19 00:52:58 +00005073 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005074 case ISD::TargetConstant: return "TargetConstant";
5075 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005076 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005077 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005078 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005079 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005080 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005081 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005082
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005083 case ISD::CopyToReg: return "CopyToReg";
5084 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005085 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005086 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005087 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005088 case ISD::DBG_LABEL: return "dbg_label";
5089 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005090 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005091 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005092 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005093 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005094
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005095 // Unary operators
5096 case ISD::FABS: return "fabs";
5097 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005098 case ISD::FSQRT: return "fsqrt";
5099 case ISD::FSIN: return "fsin";
5100 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005101 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005102 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005103 case ISD::FTRUNC: return "ftrunc";
5104 case ISD::FFLOOR: return "ffloor";
5105 case ISD::FCEIL: return "fceil";
5106 case ISD::FRINT: return "frint";
5107 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005108
5109 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005110 case ISD::ADD: return "add";
5111 case ISD::SUB: return "sub";
5112 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005113 case ISD::MULHU: return "mulhu";
5114 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005115 case ISD::SDIV: return "sdiv";
5116 case ISD::UDIV: return "udiv";
5117 case ISD::SREM: return "srem";
5118 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005119 case ISD::SMUL_LOHI: return "smul_lohi";
5120 case ISD::UMUL_LOHI: return "umul_lohi";
5121 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005122 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005123 case ISD::AND: return "and";
5124 case ISD::OR: return "or";
5125 case ISD::XOR: return "xor";
5126 case ISD::SHL: return "shl";
5127 case ISD::SRA: return "sra";
5128 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005129 case ISD::ROTL: return "rotl";
5130 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005131 case ISD::FADD: return "fadd";
5132 case ISD::FSUB: return "fsub";
5133 case ISD::FMUL: return "fmul";
5134 case ISD::FDIV: return "fdiv";
5135 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005136 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005137 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005138
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005139 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005140 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005141 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005142 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005143 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005144 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005145 case ISD::CONCAT_VECTORS: return "concat_vectors";
5146 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005147 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005148 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005149 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005150 case ISD::ADDC: return "addc";
5151 case ISD::ADDE: return "adde";
5152 case ISD::SUBC: return "subc";
5153 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005154 case ISD::SHL_PARTS: return "shl_parts";
5155 case ISD::SRA_PARTS: return "sra_parts";
5156 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005157
5158 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5159 case ISD::INSERT_SUBREG: return "insert_subreg";
5160
Chris Lattner7f644642005-04-28 21:44:03 +00005161 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005162 case ISD::SIGN_EXTEND: return "sign_extend";
5163 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005164 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005165 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005166 case ISD::TRUNCATE: return "truncate";
5167 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005168 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005169 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005170 case ISD::FP_EXTEND: return "fp_extend";
5171
5172 case ISD::SINT_TO_FP: return "sint_to_fp";
5173 case ISD::UINT_TO_FP: return "uint_to_fp";
5174 case ISD::FP_TO_SINT: return "fp_to_sint";
5175 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005176 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005177
5178 // Control flow instructions
5179 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005180 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005181 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005182 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005183 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005184 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005185 case ISD::CALLSEQ_START: return "callseq_start";
5186 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005187
5188 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005189 case ISD::LOAD: return "load";
5190 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005191 case ISD::VAARG: return "vaarg";
5192 case ISD::VACOPY: return "vacopy";
5193 case ISD::VAEND: return "vaend";
5194 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005195 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005196 case ISD::EXTRACT_ELEMENT: return "extract_element";
5197 case ISD::BUILD_PAIR: return "build_pair";
5198 case ISD::STACKSAVE: return "stacksave";
5199 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005200 case ISD::TRAP: return "trap";
5201
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005202 // Bit manipulation
5203 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005204 case ISD::CTPOP: return "ctpop";
5205 case ISD::CTTZ: return "cttz";
5206 case ISD::CTLZ: return "ctlz";
5207
Chris Lattner36ce6912005-11-29 06:21:05 +00005208 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005209 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005210 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005211
Duncan Sands36397f52007-07-27 12:58:54 +00005212 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005213 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005214
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005215 case ISD::CONDCODE:
5216 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005217 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005218 case ISD::SETOEQ: return "setoeq";
5219 case ISD::SETOGT: return "setogt";
5220 case ISD::SETOGE: return "setoge";
5221 case ISD::SETOLT: return "setolt";
5222 case ISD::SETOLE: return "setole";
5223 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005224
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005225 case ISD::SETO: return "seto";
5226 case ISD::SETUO: return "setuo";
5227 case ISD::SETUEQ: return "setue";
5228 case ISD::SETUGT: return "setugt";
5229 case ISD::SETUGE: return "setuge";
5230 case ISD::SETULT: return "setult";
5231 case ISD::SETULE: return "setule";
5232 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005233
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005234 case ISD::SETEQ: return "seteq";
5235 case ISD::SETGT: return "setgt";
5236 case ISD::SETGE: return "setge";
5237 case ISD::SETLT: return "setlt";
5238 case ISD::SETLE: return "setle";
5239 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005240 }
5241 }
5242}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005243
Evan Cheng144d8f02006-11-09 17:55:04 +00005244const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005245 switch (AM) {
5246 default:
5247 return "";
5248 case ISD::PRE_INC:
5249 return "<pre-inc>";
5250 case ISD::PRE_DEC:
5251 return "<pre-dec>";
5252 case ISD::POST_INC:
5253 return "<post-inc>";
5254 case ISD::POST_DEC:
5255 return "<post-dec>";
5256 }
5257}
5258
Duncan Sands276dcbd2008-03-21 09:14:45 +00005259std::string ISD::ArgFlagsTy::getArgFlagsString() {
5260 std::string S = "< ";
5261
5262 if (isZExt())
5263 S += "zext ";
5264 if (isSExt())
5265 S += "sext ";
5266 if (isInReg())
5267 S += "inreg ";
5268 if (isSRet())
5269 S += "sret ";
5270 if (isByVal())
5271 S += "byval ";
5272 if (isNest())
5273 S += "nest ";
5274 if (getByValAlign())
5275 S += "byval-align:" + utostr(getByValAlign()) + " ";
5276 if (getOrigAlign())
5277 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5278 if (getByValSize())
5279 S += "byval-size:" + utostr(getByValSize()) + " ";
5280 return S + ">";
5281}
5282
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005283void SDNode::dump() const { dump(0); }
5284void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005285 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005286 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005287}
5288
5289void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5290 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005291
5292 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005293 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005294 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005295 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005296 else
Chris Lattner944fac72008-08-23 22:23:09 +00005297 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005298 }
Chris Lattner944fac72008-08-23 22:23:09 +00005299 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005300
Chris Lattner944fac72008-08-23 22:23:09 +00005301 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005302 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005303 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005304 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005305 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005306 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005307 }
5308
Evan Chengce254432007-12-11 02:08:35 +00005309 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005310 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005311 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005312 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005313 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005314 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005315 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005316 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005317 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005318 }
Chris Lattner944fac72008-08-23 22:23:09 +00005319 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005320 }
5321
Chris Lattnerc3aae252005-01-07 07:46:32 +00005322 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005323 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005324 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005325 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005326 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005327 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005328 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005329 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005330 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005331 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005332 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005333 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005334 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005335 dyn_cast<GlobalAddressSDNode>(this)) {
Dan Gohman668aff62008-10-18 18:22:42 +00005336 int64_t offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005337 OS << '<';
5338 WriteAsOperand(OS, GADN->getGlobal());
5339 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005340 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005341 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005342 else
Chris Lattner944fac72008-08-23 22:23:09 +00005343 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005344 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005345 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005346 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005347 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005348 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005349 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005350 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005351 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005352 else
Chris Lattner944fac72008-08-23 22:23:09 +00005353 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005354 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005355 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005356 else
Chris Lattner944fac72008-08-23 22:23:09 +00005357 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005358 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005359 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005360 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5361 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005362 OS << LBB->getName() << " ";
5363 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005364 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005365 if (G && R->getReg() &&
5366 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005367 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005368 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005369 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005370 }
Bill Wendling056292f2008-09-16 21:48:12 +00005371 } else if (const ExternalSymbolSDNode *ES =
5372 dyn_cast<ExternalSymbolSDNode>(this)) {
5373 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005374 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5375 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005376 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005377 else
Chris Lattner944fac72008-08-23 22:23:09 +00005378 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005379 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5380 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005381 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005382 else
Chris Lattner944fac72008-08-23 22:23:09 +00005383 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005384 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005385 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005386 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005387 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005388 }
5389 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005390 const Value *SrcValue = LD->getSrcValue();
5391 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005392 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005393 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005394 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005395 else
Chris Lattner944fac72008-08-23 22:23:09 +00005396 OS << "null";
5397 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005398
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005399 bool doExt = true;
5400 switch (LD->getExtensionType()) {
5401 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005402 case ISD::EXTLOAD: OS << " <anyext "; break;
5403 case ISD::SEXTLOAD: OS << " <sext "; break;
5404 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005405 }
5406 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005407 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005408
Evan Cheng144d8f02006-11-09 17:55:04 +00005409 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005410 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005411 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005412 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005413 OS << " <volatile>";
5414 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005415 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005416 const Value *SrcValue = ST->getSrcValue();
5417 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005418 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005419 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005420 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005421 else
Chris Lattner944fac72008-08-23 22:23:09 +00005422 OS << "null";
5423 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005424
5425 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005426 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005427
5428 const char *AM = getIndexedModeName(ST->getAddressingMode());
5429 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005430 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005431 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005432 OS << " <volatile>";
5433 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005434 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5435 const Value *SrcValue = AT->getSrcValue();
5436 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005437 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005438 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005439 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005440 else
Chris Lattner944fac72008-08-23 22:23:09 +00005441 OS << "null";
5442 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005443 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005444 OS << " <volatile>";
5445 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005446 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005447}
5448
Chris Lattnerde202b32005-11-09 23:47:37 +00005449static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005450 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005451 if (N->getOperand(i).getNode()->hasOneUse())
5452 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005453 else
Bill Wendling832171c2006-12-07 20:04:42 +00005454 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005455 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005456
Chris Lattnerea946cd2005-01-09 20:38:33 +00005457
Bill Wendling832171c2006-12-07 20:04:42 +00005458 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005459 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005460}
5461
Chris Lattnerc3aae252005-01-07 07:46:32 +00005462void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005463 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005464
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005465 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5466 I != E; ++I) {
5467 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005468 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005469 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005470 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005471
Gabor Greifba36cb52008-08-28 21:40:38 +00005472 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005473
Bill Wendling832171c2006-12-07 20:04:42 +00005474 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005475}
5476
Evan Chengd6594ae2006-09-12 21:00:35 +00005477const Type *ConstantPoolSDNode::getType() const {
5478 if (isMachineConstantPoolEntry())
5479 return Val.MachineCPVal->getType();
5480 return Val.ConstVal->getType();
5481}