blob: 9204410122177ecf200e4918fe373fde415faae8 [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"
Dan Gohman760f86f2009-01-22 21:58:43 +000030#include "llvm/Target/TargetOptions.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000031#include "llvm/Target/TargetInstrInfo.h"
32#include "llvm/Target/TargetMachine.h"
Bill Wendling6f287b22008-09-30 21:22:07 +000033#include "llvm/Support/CommandLine.h"
Chris Lattner944fac72008-08-23 22:23:09 +000034#include "llvm/Support/MathExtras.h"
35#include "llvm/Support/raw_ostream.h"
Chris Lattner012f2412006-02-17 21:58:01 +000036#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000037#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000038#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000039#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000040#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000041#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000042#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000043using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000044
Chris Lattner0b3e5252006-08-15 19:11:05 +000045/// makeVTList - Return an instance of the SDVTList struct initialized with the
46/// specified members.
Duncan Sands83ec4b62008-06-06 12:08:01 +000047static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000048 SDVTList Res = {VTs, NumVTs};
49 return Res;
50}
51
Duncan Sands83ec4b62008-06-06 12:08:01 +000052static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
53 switch (VT.getSimpleVT()) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000054 default: assert(0 && "Unknown FP format");
55 case MVT::f32: return &APFloat::IEEEsingle;
56 case MVT::f64: return &APFloat::IEEEdouble;
57 case MVT::f80: return &APFloat::x87DoubleExtended;
58 case MVT::f128: return &APFloat::IEEEquad;
59 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
60 }
61}
62
Chris Lattnerf8dc0612008-02-03 06:49:24 +000063SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
64
Jim Laskey58b968b2005-08-17 20:08:02 +000065//===----------------------------------------------------------------------===//
66// ConstantFPSDNode Class
67//===----------------------------------------------------------------------===//
68
69/// isExactlyValue - We don't rely on operator== working on double values, as
70/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
71/// As such, this method can be used to do an exact bit-for-bit comparison of
72/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000073bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohman4fbd7962008-09-12 18:08:03 +000074 return getValueAPF().bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000075}
76
Duncan Sands83ec4b62008-06-06 12:08:01 +000077bool ConstantFPSDNode::isValueValidForType(MVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000078 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000079 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Chris Lattnerec4a5672008-03-05 06:48:13 +000080
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000081 // PPC long double cannot be converted to any other type.
82 if (VT == MVT::ppcf128 ||
83 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000084 return false;
85
Dale Johannesenf04afdb2007-08-30 00:23:21 +000086 // convert modifies in place, so make a copy.
87 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +000088 bool losesInfo;
89 (void) Val2.convert(*MVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
90 &losesInfo);
91 return !losesInfo;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000092}
93
Jim Laskey58b968b2005-08-17 20:08:02 +000094//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000095// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000096//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000097
Evan Chenga8df1662006-03-27 06:58:47 +000098/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000099/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +0000100bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000101 // Look through a bit convert.
102 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000103 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000104
Evan Chenga8df1662006-03-27 06:58:47 +0000105 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000106
107 unsigned i = 0, e = N->getNumOperands();
108
109 // Skip over all of the undef values.
110 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
111 ++i;
112
113 // Do not accept an all-undef vector.
114 if (i == e) return false;
115
116 // Do not accept build_vectors that aren't all constants or which have non-~0
117 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000118 SDValue NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000119 if (isa<ConstantSDNode>(NotZero)) {
120 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
121 return false;
122 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000123 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
Dale Johannesen23a98552008-10-09 23:00:39 +0000124 bitcastToAPInt().isAllOnesValue())
Dan Gohman6c231502008-02-29 01:47:35 +0000125 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000126 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000127 return false;
128
129 // Okay, we have at least one ~0 value, check to see if the rest match or are
130 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000131 for (++i; i != e; ++i)
132 if (N->getOperand(i) != NotZero &&
133 N->getOperand(i).getOpcode() != ISD::UNDEF)
134 return false;
135 return true;
136}
137
138
Evan Cheng4a147842006-03-26 09:50:58 +0000139/// isBuildVectorAllZeros - Return true if the specified node is a
140/// BUILD_VECTOR where all of the elements are 0 or undef.
141bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000142 // Look through a bit convert.
143 if (N->getOpcode() == ISD::BIT_CONVERT)
Gabor Greifba36cb52008-08-28 21:40:38 +0000144 N = N->getOperand(0).getNode();
Chris Lattner547a16f2006-04-15 23:38:00 +0000145
Evan Cheng4a147842006-03-26 09:50:58 +0000146 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000147
148 unsigned i = 0, e = N->getNumOperands();
149
150 // Skip over all of the undef values.
151 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
152 ++i;
153
154 // Do not accept an all-undef vector.
155 if (i == e) return false;
156
157 // Do not accept build_vectors that aren't all constants or which have non-~0
158 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000159 SDValue Zero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000160 if (isa<ConstantSDNode>(Zero)) {
161 if (!cast<ConstantSDNode>(Zero)->isNullValue())
162 return false;
163 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000164 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000165 return false;
166 } else
167 return false;
168
169 // Okay, we have at least one ~0 value, check to see if the rest match or are
170 // undefs.
171 for (++i; i != e; ++i)
172 if (N->getOperand(i) != Zero &&
173 N->getOperand(i).getOpcode() != ISD::UNDEF)
174 return false;
175 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000176}
177
Evan Chengefec7512008-02-18 23:04:32 +0000178/// isScalarToVector - Return true if the specified node is a
179/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
180/// element is not an undef.
181bool ISD::isScalarToVector(const SDNode *N) {
182 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
183 return true;
184
185 if (N->getOpcode() != ISD::BUILD_VECTOR)
186 return false;
187 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
188 return false;
189 unsigned NumElems = N->getNumOperands();
190 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000191 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000192 if (V.getOpcode() != ISD::UNDEF)
193 return false;
194 }
195 return true;
196}
197
198
Evan Chengbb81d972008-01-31 09:59:15 +0000199/// isDebugLabel - Return true if the specified node represents a debug
Dan Gohman44066042008-07-01 00:05:16 +0000200/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
Evan Chengbb81d972008-01-31 09:59:15 +0000201bool ISD::isDebugLabel(const SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue Zero;
Dan Gohman44066042008-07-01 00:05:16 +0000203 if (N->getOpcode() == ISD::DBG_LABEL)
204 return true;
Dan Gohmane8be6c62008-07-17 19:10:17 +0000205 if (N->isMachineOpcode() &&
206 N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
Dan Gohman44066042008-07-01 00:05:16 +0000207 return true;
208 return false;
Evan Chengbb81d972008-01-31 09:59:15 +0000209}
210
Chris Lattnerc3aae252005-01-07 07:46:32 +0000211/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
212/// when given the operation for (X op Y).
213ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
214 // To perform this operation, we just need to swap the L and G bits of the
215 // operation.
216 unsigned OldL = (Operation >> 2) & 1;
217 unsigned OldG = (Operation >> 1) & 1;
218 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
219 (OldL << 1) | // New G bit
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000220 (OldG << 2)); // New L bit.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000221}
222
223/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
224/// 'op' is a valid SetCC operation.
225ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
226 unsigned Operation = Op;
227 if (isInteger)
228 Operation ^= 7; // Flip L, G, E bits, but not U.
229 else
230 Operation ^= 15; // Flip all of the condition bits.
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000231
Chris Lattnerc3aae252005-01-07 07:46:32 +0000232 if (Operation > ISD::SETTRUE2)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000233 Operation &= ~8; // Don't let N and U bits get set.
234
Chris Lattnerc3aae252005-01-07 07:46:32 +0000235 return ISD::CondCode(Operation);
236}
237
238
239/// isSignedOp - For an integer comparison, return 1 if the comparison is a
240/// signed operation and 2 if the result is an unsigned comparison. Return zero
241/// if the operation does not depend on the sign of the input (setne and seteq).
242static int isSignedOp(ISD::CondCode Opcode) {
243 switch (Opcode) {
244 default: assert(0 && "Illegal integer setcc operation!");
245 case ISD::SETEQ:
246 case ISD::SETNE: return 0;
247 case ISD::SETLT:
248 case ISD::SETLE:
249 case ISD::SETGT:
250 case ISD::SETGE: return 1;
251 case ISD::SETULT:
252 case ISD::SETULE:
253 case ISD::SETUGT:
254 case ISD::SETUGE: return 2;
255 }
256}
257
258/// getSetCCOrOperation - Return the result of a logical OR between different
259/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
260/// returns SETCC_INVALID if it is not possible to represent the resultant
261/// comparison.
262ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
263 bool isInteger) {
264 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
265 // Cannot fold a signed integer setcc with an unsigned integer setcc.
266 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000267
Chris Lattnerc3aae252005-01-07 07:46:32 +0000268 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000269
Chris Lattnerc3aae252005-01-07 07:46:32 +0000270 // If the N and U bits get set then the resultant comparison DOES suddenly
271 // care about orderedness, and is true when ordered.
272 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000273 Op &= ~16; // Clear the U bit if the N bit is set.
274
275 // Canonicalize illegal integer setcc's.
276 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
277 Op = ISD::SETNE;
278
Chris Lattnerc3aae252005-01-07 07:46:32 +0000279 return ISD::CondCode(Op);
280}
281
282/// getSetCCAndOperation - Return the result of a logical AND between different
283/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
284/// function returns zero if it is not possible to represent the resultant
285/// comparison.
286ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
287 bool isInteger) {
288 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
289 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000290 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000291
292 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000293 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
294
295 // Canonicalize illegal integer setcc's.
296 if (isInteger) {
297 switch (Result) {
298 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000299 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000300 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000301 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
302 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
303 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000304 }
305 }
306
307 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000308}
309
Chris Lattnerb48da392005-01-23 04:39:44 +0000310const TargetMachine &SelectionDAG::getTarget() const {
Dan Gohman6448d912008-09-04 15:39:15 +0000311 return MF->getTarget();
Chris Lattnerb48da392005-01-23 04:39:44 +0000312}
313
Jim Laskey58b968b2005-08-17 20:08:02 +0000314//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000315// SDNode Profile Support
316//===----------------------------------------------------------------------===//
317
Jim Laskeydef69b92006-10-27 23:52:51 +0000318/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
319///
Jim Laskey583bd472006-10-27 23:46:08 +0000320static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
321 ID.AddInteger(OpC);
322}
323
324/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
325/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000326static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000327 ID.AddPointer(VTList.VTs);
328}
329
Jim Laskeydef69b92006-10-27 23:52:51 +0000330/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
331///
Jim Laskey583bd472006-10-27 23:46:08 +0000332static void AddNodeIDOperands(FoldingSetNodeID &ID,
Dan Gohman475871a2008-07-27 21:46:04 +0000333 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000334 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000335 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000336 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000337 }
Jim Laskey583bd472006-10-27 23:46:08 +0000338}
339
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000340/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
341///
342static void AddNodeIDOperands(FoldingSetNodeID &ID,
343 const SDUse *Ops, unsigned NumOps) {
344 for (; NumOps; --NumOps, ++Ops) {
Dan Gohman475871a2008-07-27 21:46:04 +0000345 ID.AddPointer(Ops->getVal());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000346 ID.AddInteger(Ops->getSDValue().getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000347 }
348}
349
Jim Laskey583bd472006-10-27 23:46:08 +0000350static void AddNodeIDNode(FoldingSetNodeID &ID,
351 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000352 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000353 AddNodeIDOpcode(ID, OpC);
354 AddNodeIDValueTypes(ID, VTList);
355 AddNodeIDOperands(ID, OpList, N);
356}
357
Duncan Sands0dc40452008-10-27 15:30:53 +0000358/// AddNodeIDCustom - If this is an SDNode with special info, add this info to
359/// the NodeID data.
360static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000361 switch (N->getOpcode()) {
362 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000363 case ISD::ARG_FLAGS:
364 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
365 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000366 case ISD::TargetConstant:
367 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000368 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000369 break;
370 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000371 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000372 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000373 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000374 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000375 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000376 case ISD::GlobalAddress:
377 case ISD::TargetGlobalTLSAddress:
378 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000379 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000380 ID.AddPointer(GA->getGlobal());
381 ID.AddInteger(GA->getOffset());
382 break;
383 }
384 case ISD::BasicBlock:
385 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
386 break;
387 case ISD::Register:
388 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
389 break;
Dan Gohman7f460202008-06-30 20:59:49 +0000390 case ISD::DBG_STOPPOINT: {
391 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
392 ID.AddInteger(DSP->getLine());
393 ID.AddInteger(DSP->getColumn());
394 ID.AddPointer(DSP->getCompileUnit());
395 break;
396 }
Dan Gohman69de1932008-02-06 22:27:42 +0000397 case ISD::SRCVALUE:
398 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
399 break;
400 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000401 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000402 MO.Profile(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000403 break;
404 }
405 case ISD::FrameIndex:
406 case ISD::TargetFrameIndex:
407 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
408 break;
409 case ISD::JumpTable:
410 case ISD::TargetJumpTable:
411 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
412 break;
413 case ISD::ConstantPool:
414 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000415 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000416 ID.AddInteger(CP->getAlignment());
417 ID.AddInteger(CP->getOffset());
418 if (CP->isMachineConstantPoolEntry())
419 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
420 else
421 ID.AddPointer(CP->getConstVal());
422 break;
423 }
Dan Gohman5eb0cec2008-09-15 19:46:03 +0000424 case ISD::CALL: {
425 const CallSDNode *Call = cast<CallSDNode>(N);
426 ID.AddInteger(Call->getCallingConv());
427 ID.AddInteger(Call->isVarArg());
428 break;
429 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000430 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000431 const LoadSDNode *LD = cast<LoadSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000432 ID.AddInteger(LD->getAddressingMode());
433 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000434 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000435 ID.AddInteger(LD->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000436 break;
437 }
438 case ISD::STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000439 const StoreSDNode *ST = cast<StoreSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000440 ID.AddInteger(ST->getAddressingMode());
441 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000442 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000443 ID.AddInteger(ST->getRawFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000444 break;
445 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000446 case ISD::ATOMIC_CMP_SWAP:
447 case ISD::ATOMIC_SWAP:
448 case ISD::ATOMIC_LOAD_ADD:
449 case ISD::ATOMIC_LOAD_SUB:
450 case ISD::ATOMIC_LOAD_AND:
451 case ISD::ATOMIC_LOAD_OR:
452 case ISD::ATOMIC_LOAD_XOR:
453 case ISD::ATOMIC_LOAD_NAND:
454 case ISD::ATOMIC_LOAD_MIN:
455 case ISD::ATOMIC_LOAD_MAX:
456 case ISD::ATOMIC_LOAD_UMIN:
457 case ISD::ATOMIC_LOAD_UMAX: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000458 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
459 ID.AddInteger(AT->getRawFlags());
Mon P Wang28873102008-06-25 08:15:39 +0000460 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000461 }
Mon P Wang28873102008-06-25 08:15:39 +0000462 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000463}
464
Duncan Sands0dc40452008-10-27 15:30:53 +0000465/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
466/// data.
467static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
468 AddNodeIDOpcode(ID, N->getOpcode());
469 // Add the return value info.
470 AddNodeIDValueTypes(ID, N->getVTList());
471 // Add the operand info.
472 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
473
474 // Handle SDNode leafs with special info.
475 AddNodeIDCustom(ID, N);
476}
477
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000478/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
479/// the CSE map that carries both alignment and volatility information.
480///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000481static inline unsigned
482encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000483 return isVolatile | ((Log2_32(Alignment) + 1) << 1);
484}
485
Jim Laskey583bd472006-10-27 23:46:08 +0000486//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000487// SelectionDAG Class
488//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000489
Duncan Sands0dc40452008-10-27 15:30:53 +0000490/// doNotCSE - Return true if CSE should not be performed for this node.
491static bool doNotCSE(SDNode *N) {
492 if (N->getValueType(0) == MVT::Flag)
493 return true; // Never CSE anything that produces a flag.
494
495 switch (N->getOpcode()) {
496 default: break;
497 case ISD::HANDLENODE:
498 case ISD::DBG_LABEL:
499 case ISD::DBG_STOPPOINT:
500 case ISD::EH_LABEL:
501 case ISD::DECLARE:
502 return true; // Never CSE these nodes.
503 }
504
505 // Check that remaining values produced are not flags.
506 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
507 if (N->getValueType(i) == MVT::Flag)
508 return true; // Never CSE anything that produces a flag.
509
510 return false;
511}
512
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000513/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000514/// SelectionDAG.
515void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000516 // Create a dummy node (which is not added to allnodes), that adds a reference
517 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000518 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000519
Chris Lattner190a4182006-08-04 17:45:20 +0000520 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000521
Chris Lattner190a4182006-08-04 17:45:20 +0000522 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000523 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000524 if (I->use_empty())
525 DeadNodes.push_back(I);
526
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000527 RemoveDeadNodes(DeadNodes);
528
529 // If the root changed (e.g. it was a dead load, update the root).
530 setRoot(Dummy.getValue());
531}
532
533/// RemoveDeadNodes - This method deletes the unreachable nodes in the
534/// given list, and any nodes that become unreachable as a result.
535void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
536 DAGUpdateListener *UpdateListener) {
537
Chris Lattner190a4182006-08-04 17:45:20 +0000538 // Process the worklist, deleting the nodes and adding their uses to the
539 // worklist.
540 while (!DeadNodes.empty()) {
541 SDNode *N = DeadNodes.back();
542 DeadNodes.pop_back();
543
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000544 if (UpdateListener)
545 UpdateListener->NodeDeleted(N, 0);
546
Chris Lattner190a4182006-08-04 17:45:20 +0000547 // Take the node out of the appropriate CSE map.
548 RemoveNodeFromCSEMaps(N);
549
550 // Next, brutally remove the operand list. This is safe to do, as there are
551 // no cycles in the graph.
552 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000553 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000554 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000555
556 // Now that we removed this operand, see if there are no uses of it left.
557 if (Operand->use_empty())
558 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000559 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000560
Dan Gohmanc5336122009-01-19 22:39:36 +0000561 DeallocateNode(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000562 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000563}
564
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000565void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000566 SmallVector<SDNode*, 16> DeadNodes(1, N);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000567 RemoveDeadNodes(DeadNodes, UpdateListener);
Evan Cheng130a6472006-10-12 20:34:05 +0000568}
569
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000570void SelectionDAG::DeleteNode(SDNode *N) {
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000571 // First take this out of the appropriate CSE map.
572 RemoveNodeFromCSEMaps(N);
573
Chris Lattner1e111c72005-09-07 05:37:01 +0000574 // Finally, remove uses due to operands of this node, remove from the
575 // AllNodes list, and delete the node.
576 DeleteNodeNotInCSEMaps(N);
577}
578
579void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmane77f89d2009-01-25 16:20:37 +0000580 assert(N != AllNodes.begin() && "Cannot delete the entry node!");
581 assert(N->use_empty() && "Cannot delete a node that is not dead!");
Dan Gohmanc5336122009-01-19 22:39:36 +0000582
Dan Gohmanf06c8352008-09-30 18:30:35 +0000583 // Drop all of the operands and decrement used node's use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000584 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000585 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000586
Dan Gohmanc5336122009-01-19 22:39:36 +0000587 DeallocateNode(N);
588}
589
590void SelectionDAG::DeallocateNode(SDNode *N) {
591 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000592 delete[] N->OperandList;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000593
Dan Gohmanc5336122009-01-19 22:39:36 +0000594 // Set the opcode to DELETED_NODE to help catch bugs when node
595 // memory is reallocated.
596 N->NodeType = ISD::DELETED_NODE;
597
Dan Gohman11467282008-08-26 01:44:34 +0000598 NodeAllocator.Deallocate(AllNodes.remove(N));
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000599}
600
Chris Lattner149c58c2005-08-16 18:17:10 +0000601/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
602/// correspond to it. This is useful when we're about to delete or repurpose
603/// the node. We don't want future request for structurally identical nodes
604/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000605bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000606 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000607 switch (N->getOpcode()) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000608 case ISD::EntryToken:
609 assert(0 && "EntryToken should not be in CSEMaps!");
Dan Gohman095cc292008-09-13 01:54:27 +0000610 return false;
611 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000612 case ISD::CONDCODE:
613 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
614 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000615 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000616 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
617 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000618 case ISD::ExternalSymbol:
619 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000620 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000621 case ISD::TargetExternalSymbol:
622 Erased =
623 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000624 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000625 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000626 MVT VT = cast<VTSDNode>(N)->getVT();
627 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000628 Erased = ExtendedValueTypeNodes.erase(VT);
629 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000630 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
631 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000632 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000633 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000634 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000635 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000636 // Remove it from the CSE Map.
637 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000638 break;
639 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000640#ifndef NDEBUG
641 // Verify that the node was actually in one of the CSE maps, unless it has a
642 // flag result (which cannot be CSE'd) or is one of the special cases that are
643 // not subject to CSE.
644 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Duncan Sands0dc40452008-10-27 15:30:53 +0000645 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000646 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000647 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000648 assert(0 && "Node is not in map!");
649 }
650#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000651 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000652}
653
Chris Lattner8b8749f2005-08-17 19:00:20 +0000654/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
655/// has been taken out and modified in some way. If the specified node already
656/// exists in the CSE maps, do not modify the maps, but return the existing node
657/// instead. If it doesn't exist, add it and return null.
658///
659SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
660 assert(N->getNumOperands() && "This is a leaf node!");
Evan Cheng71e86852008-07-08 20:06:39 +0000661
Duncan Sands0dc40452008-10-27 15:30:53 +0000662 if (doNotCSE(N))
663 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000664
Chris Lattnera5682852006-08-07 23:03:03 +0000665 SDNode *New = CSEMap.GetOrInsertNode(N);
666 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000667 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000668}
669
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000670/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
671/// were replaced with those specified. If this node is never memoized,
672/// return null, otherwise return a pointer to the slot it would take. If a
673/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000674SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000675 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000676 if (doNotCSE(N))
677 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000678
Dan Gohman475871a2008-07-27 21:46:04 +0000679 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000680 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000681 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Duncan Sands0dc40452008-10-27 15:30:53 +0000682 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000683 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000684}
685
686/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
687/// were replaced with those specified. If this node is never memoized,
688/// return null, otherwise return a pointer to the slot it would take. If a
689/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000690SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000691 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000692 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000693 if (doNotCSE(N))
694 return 0;
695
Dan Gohman475871a2008-07-27 21:46:04 +0000696 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000697 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000698 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Duncan Sands0dc40452008-10-27 15:30:53 +0000699 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000700 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
701}
702
703
704/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
705/// were replaced with those specified. If this node is never memoized,
706/// return null, otherwise return a pointer to the slot it would take. If a
707/// node already exists with these operands, the slot will be non-null.
708SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000709 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000710 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000711 if (doNotCSE(N))
712 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000713
Jim Laskey583bd472006-10-27 23:46:08 +0000714 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000715 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Duncan Sands0dc40452008-10-27 15:30:53 +0000716 AddNodeIDCustom(ID, N);
Chris Lattnera5682852006-08-07 23:03:03 +0000717 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000718}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000719
Duncan Sandsd038e042008-07-21 10:20:31 +0000720/// VerifyNode - Sanity check the given node. Aborts if it is invalid.
721void SelectionDAG::VerifyNode(SDNode *N) {
722 switch (N->getOpcode()) {
723 default:
724 break;
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000725 case ISD::BUILD_PAIR: {
726 MVT VT = N->getValueType(0);
727 assert(N->getNumValues() == 1 && "Too many results!");
728 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
729 "Wrong return type!");
730 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
731 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
732 "Mismatched operand types!");
733 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
734 "Wrong operand type!");
735 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
736 "Wrong return type size");
737 break;
738 }
Duncan Sandsd038e042008-07-21 10:20:31 +0000739 case ISD::BUILD_VECTOR: {
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000740 assert(N->getNumValues() == 1 && "Too many results!");
741 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000742 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000743 "Wrong number of operands!");
Duncan Sands0954aef2008-10-22 09:00:33 +0000744 // FIXME: Change vector_shuffle to a variadic node with mask elements being
745 // operands of the node. Currently the mask is a BUILD_VECTOR passed as an
746 // operand, and it is not always possible to legalize it. Turning off the
747 // following checks at least makes it possible to legalize most of the time.
748// MVT EltVT = N->getValueType(0).getVectorElementType();
749// for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
750// assert(I->getSDValue().getValueType() == EltVT &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000751// "Wrong operand type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000752 break;
753 }
754 }
755}
756
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000757/// getMVTAlignment - Compute the default alignment value for the
758/// given type.
759///
760unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
761 const Type *Ty = VT == MVT::iPTR ?
762 PointerType::get(Type::Int8Ty, 0) :
763 VT.getTypeForMVT();
764
765 return TLI.getTargetData()->getABITypeAlignment(Ty);
766}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000767
Dan Gohman7c3234c2008-08-27 23:52:12 +0000768SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
769 : TLI(tli), FLI(fli),
770 EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
Dan Gohmanf350b272008-08-23 02:25:05 +0000771 Root(getEntryNode()) {
772 AllNodes.push_back(&EntryNode);
Dan Gohman6f179662008-08-23 00:50:30 +0000773}
774
Devang Patel6e7a1612009-01-09 19:11:50 +0000775void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi,
776 DwarfWriter *dw) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000777 MF = &mf;
778 MMI = mmi;
Devang Patel6e7a1612009-01-09 19:11:50 +0000779 DW = dw;
Dan Gohman7c3234c2008-08-27 23:52:12 +0000780}
781
Chris Lattner78ec3112003-08-11 14:57:33 +0000782SelectionDAG::~SelectionDAG() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000783 allnodes_clear();
784}
785
786void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000787 assert(&*AllNodes.begin() == &EntryNode);
788 AllNodes.remove(AllNodes.begin());
Dan Gohmanc5336122009-01-19 22:39:36 +0000789 while (!AllNodes.empty())
790 DeallocateNode(AllNodes.begin());
Chris Lattner78ec3112003-08-11 14:57:33 +0000791}
792
Dan Gohman7c3234c2008-08-27 23:52:12 +0000793void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000794 allnodes_clear();
795 OperandAllocator.Reset();
796 CSEMap.clear();
797
798 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000799 ExternalSymbols.clear();
800 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000801 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
802 static_cast<CondCodeSDNode*>(0));
803 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
804 static_cast<SDNode*>(0));
805
806 EntryNode.Uses = 0;
807 AllNodes.push_back(&EntryNode);
808 Root = getEntryNode();
809}
810
Dan Gohman475871a2008-07-27 21:46:04 +0000811SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000812 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000813 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000814 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000815 return getNode(ISD::AND, Op.getValueType(), Op,
816 getConstant(Imm, Op.getValueType()));
817}
818
Bob Wilson4c245462009-01-22 17:39:32 +0000819/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
820///
821SDValue SelectionDAG::getNOT(SDValue Val, MVT VT) {
822 SDValue NegOne;
823 if (VT.isVector()) {
824 MVT EltVT = VT.getVectorElementType();
825 SDValue NegOneElt = getConstant(EltVT.getIntegerVTBitMask(), EltVT);
826 std::vector<SDValue> NegOnes(VT.getVectorNumElements(), NegOneElt);
827 NegOne = getNode(ISD::BUILD_VECTOR, VT, &NegOnes[0], NegOnes.size());
828 } else
829 NegOne = getConstant(VT.getIntegerVTBitMask(), VT);
830
831 return getNode(ISD::XOR, VT, Val, NegOne);
832}
833
Dan Gohman475871a2008-07-27 21:46:04 +0000834SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
Evan Cheng0ff39b32008-06-30 07:31:25 +0000835 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000836 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000837}
838
Dan Gohman475871a2008-07-27 21:46:04 +0000839SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000840 return getConstant(*ConstantInt::get(Val), VT, isT);
841}
842
843SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000844 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000845
Evan Cheng0ff39b32008-06-30 07:31:25 +0000846 MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000847 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000848 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000849
850 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000851 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000852 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000853 ID.AddPointer(&Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000854 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000855 SDNode *N = NULL;
856 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000857 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000858 return SDValue(N, 0);
Dan Gohman89081322007-12-12 22:21:26 +0000859 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000860 N = NodeAllocator.Allocate<ConstantSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000861 new (N) ConstantSDNode(isT, &Val, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +0000862 CSEMap.InsertNode(N, IP);
863 AllNodes.push_back(N);
864 }
865
Dan Gohman475871a2008-07-27 21:46:04 +0000866 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000867 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000868 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000869 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000870 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
871 }
872 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000873}
874
Dan Gohman475871a2008-07-27 21:46:04 +0000875SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Chris Lattner0bd48932008-01-17 07:00:52 +0000876 return getConstant(Val, TLI.getPointerTy(), isTarget);
877}
878
879
Dan Gohman475871a2008-07-27 21:46:04 +0000880SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000881 return getConstantFP(*ConstantFP::get(V), VT, isTarget);
882}
883
884SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +0000885 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000886
Duncan Sands83ec4b62008-06-06 12:08:01 +0000887 MVT EltVT =
888 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000889
Chris Lattnerd8658612005-02-17 20:17:32 +0000890 // Do the map lookup using the actual bit pattern for the floating point
891 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
892 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000893 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000894 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000895 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000896 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000897 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000898 SDNode *N = NULL;
899 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000900 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000901 return SDValue(N, 0);
Evan Chengc908dcd2007-06-29 21:36:04 +0000902 if (!N) {
Dan Gohmanfed90b62008-07-28 21:51:04 +0000903 N = NodeAllocator.Allocate<ConstantFPSDNode>();
Dan Gohman4fbd7962008-09-12 18:08:03 +0000904 new (N) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000905 CSEMap.InsertNode(N, IP);
906 AllNodes.push_back(N);
907 }
908
Dan Gohman475871a2008-07-27 21:46:04 +0000909 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000910 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000911 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000912 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000913 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
914 }
915 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000916}
917
Dan Gohman475871a2008-07-27 21:46:04 +0000918SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919 MVT EltVT =
920 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000921 if (EltVT==MVT::f32)
922 return getConstantFP(APFloat((float)Val), VT, isTarget);
923 else
924 return getConstantFP(APFloat(Val), VT, isTarget);
925}
926
Dan Gohman475871a2008-07-27 21:46:04 +0000927SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +0000928 MVT VT, int64_t Offset,
Dan Gohman475871a2008-07-27 21:46:04 +0000929 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000930 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000931
Dan Gohman6520e202008-10-18 02:06:02 +0000932 // Truncate (with sign-extension) the offset value to the pointer size.
Dan Gohman44013612008-10-21 03:38:42 +0000933 unsigned BitWidth = TLI.getPointerTy().getSizeInBits();
Dan Gohman6520e202008-10-18 02:06:02 +0000934 if (BitWidth < 64)
935 Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
936
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000937 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
938 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000939 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000940 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +0000941 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000942 }
943
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000944 if (GVar && GVar->isThreadLocal())
945 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
946 else
947 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000948
Jim Laskey583bd472006-10-27 23:46:08 +0000949 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000950 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000951 ID.AddPointer(GV);
952 ID.AddInteger(Offset);
953 void *IP = 0;
954 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman74692c02009-01-25 16:21:38 +0000955 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000956 SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000957 new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
Chris Lattner61b09412006-08-11 21:01:22 +0000958 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000959 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000960 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000961}
962
Dan Gohman475871a2008-07-27 21:46:04 +0000963SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000964 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000965 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000966 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000967 ID.AddInteger(FI);
968 void *IP = 0;
969 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000970 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000971 SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000972 new (N) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000973 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000974 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000975 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000976}
977
Dan Gohman475871a2008-07-27 21:46:04 +0000978SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000979 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000980 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000981 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000982 ID.AddInteger(JTI);
983 void *IP = 0;
984 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +0000985 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +0000986 SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +0000987 new (N) JumpTableSDNode(JTI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000988 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000989 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +0000990 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +0000991}
992
Dan Gohman475871a2008-07-27 21:46:04 +0000993SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
994 unsigned Alignment, int Offset,
995 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +0000996 if (Alignment == 0)
997 Alignment =
998 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000999 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001000 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001001 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001002 ID.AddInteger(Alignment);
1003 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001004 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001005 void *IP = 0;
1006 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001007 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001008 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001009 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001010 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001011 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001012 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001013}
1014
Chris Lattnerc3aae252005-01-07 07:46:32 +00001015
Dan Gohman475871a2008-07-27 21:46:04 +00001016SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1017 unsigned Alignment, int Offset,
1018 bool isTarget) {
Dan Gohman50284d82008-09-16 22:05:41 +00001019 if (Alignment == 0)
1020 Alignment =
1021 TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001022 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001023 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001024 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001025 ID.AddInteger(Alignment);
1026 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +00001027 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +00001028 void *IP = 0;
1029 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001030 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001031 SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001032 new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
Evan Chengd6594ae2006-09-12 21:00:35 +00001033 CSEMap.InsertNode(N, IP);
1034 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001035 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001036}
1037
1038
Dan Gohman475871a2008-07-27 21:46:04 +00001039SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001040 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001041 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001042 ID.AddPointer(MBB);
1043 void *IP = 0;
1044 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001045 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001046 SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001047 new (N) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001048 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001049 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001050 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001051}
1052
Dan Gohman475871a2008-07-27 21:46:04 +00001053SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00001054 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001055 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001056 ID.AddInteger(Flags.getRawBits());
1057 void *IP = 0;
1058 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001059 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001060 SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001061 new (N) ARG_FLAGSSDNode(Flags);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001062 CSEMap.InsertNode(N, IP);
1063 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001064 return SDValue(N, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001065}
1066
Dan Gohman475871a2008-07-27 21:46:04 +00001067SDValue SelectionDAG::getValueType(MVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001068 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1069 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001070
Duncan Sands83ec4b62008-06-06 12:08:01 +00001071 SDNode *&N = VT.isExtended() ?
1072 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +00001073
Dan Gohman475871a2008-07-27 21:46:04 +00001074 if (N) return SDValue(N, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001075 N = NodeAllocator.Allocate<VTSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001076 new (N) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001077 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001078 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001079}
1080
Bill Wendling056292f2008-09-16 21:48:12 +00001081SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1082 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001083 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001084 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1085 new (N) ExternalSymbolSDNode(false, Sym, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001086 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001087 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001088}
1089
Bill Wendling056292f2008-09-16 21:48:12 +00001090SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1091 SDNode *&N = TargetExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001092 if (N) return SDValue(N, 0);
Bill Wendling056292f2008-09-16 21:48:12 +00001093 N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1094 new (N) ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001095 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001096 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001097}
1098
Dan Gohman475871a2008-07-27 21:46:04 +00001099SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001100 if ((unsigned)Cond >= CondCodeNodes.size())
1101 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001102
Chris Lattner079a27a2005-08-09 20:40:02 +00001103 if (CondCodeNodes[Cond] == 0) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001104 CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001105 new (N) CondCodeSDNode(Cond);
1106 CondCodeNodes[Cond] = N;
1107 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001108 }
Dan Gohman475871a2008-07-27 21:46:04 +00001109 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001110}
1111
Mon P Wang77cdf302008-11-10 20:54:11 +00001112SDValue SelectionDAG::getConvertRndSat(MVT VT, SDValue Val, SDValue DTy,
1113 SDValue STy, SDValue Rnd, SDValue Sat,
1114 ISD::CvtCode Code) {
Mon P Wang6db08c42008-12-11 03:30:13 +00001115 // If the src and dest types are the same, no conversion is necessary.
1116 if (DTy == STy)
1117 return Val;
1118
Mon P Wang77cdf302008-11-10 20:54:11 +00001119 FoldingSetNodeID ID;
1120 void* IP = 0;
1121 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1122 return SDValue(E, 0);
1123 CvtRndSatSDNode *N = NodeAllocator.Allocate<CvtRndSatSDNode>();
1124 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1125 new (N) CvtRndSatSDNode(VT, Ops, 5, Code);
1126 CSEMap.InsertNode(N, IP);
1127 AllNodes.push_back(N);
1128 return SDValue(N, 0);
1129}
1130
Dan Gohman475871a2008-07-27 21:46:04 +00001131SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001132 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001133 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001134 ID.AddInteger(RegNo);
1135 void *IP = 0;
1136 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001137 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001138 SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001139 new (N) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001140 CSEMap.InsertNode(N, IP);
1141 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001142 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001143}
1144
Dan Gohman475871a2008-07-27 21:46:04 +00001145SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
Devang Patel83489bb2009-01-13 00:35:13 +00001146 unsigned Line, unsigned Col,
1147 Value *CU) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00001148 SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001149 new (N) DbgStopPointSDNode(Root, Line, Col, CU);
Dan Gohman7f460202008-06-30 20:59:49 +00001150 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001151 return SDValue(N, 0);
Dan Gohman7f460202008-06-30 20:59:49 +00001152}
1153
Dan Gohman475871a2008-07-27 21:46:04 +00001154SDValue SelectionDAG::getLabel(unsigned Opcode,
1155 SDValue Root,
1156 unsigned LabelID) {
Dan Gohman44066042008-07-01 00:05:16 +00001157 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00001158 SDValue Ops[] = { Root };
Dan Gohman44066042008-07-01 00:05:16 +00001159 AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1160 ID.AddInteger(LabelID);
1161 void *IP = 0;
1162 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001163 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00001164 SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001165 new (N) LabelSDNode(Opcode, Root, LabelID);
Dan Gohman44066042008-07-01 00:05:16 +00001166 CSEMap.InsertNode(N, IP);
1167 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001168 return SDValue(N, 0);
Dan Gohman44066042008-07-01 00:05:16 +00001169}
1170
Dan Gohman475871a2008-07-27 21:46:04 +00001171SDValue SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001172 assert((!V || isa<PointerType>(V->getType())) &&
1173 "SrcValue is not a pointer?");
1174
Jim Laskey583bd472006-10-27 23:46:08 +00001175 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001176 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001177 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001178
Chris Lattner61b09412006-08-11 21:01:22 +00001179 void *IP = 0;
1180 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001181 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001182
Dan Gohmanfed90b62008-07-28 21:51:04 +00001183 SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001184 new (N) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001185 CSEMap.InsertNode(N, IP);
1186 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001187 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001188}
1189
Dan Gohman475871a2008-07-27 21:46:04 +00001190SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Evan Cheng24ac4082008-11-24 07:09:49 +00001191#ifndef NDEBUG
Dan Gohman69de1932008-02-06 22:27:42 +00001192 const Value *v = MO.getValue();
1193 assert((!v || isa<PointerType>(v->getType())) &&
1194 "SrcValue is not a pointer?");
Evan Cheng24ac4082008-11-24 07:09:49 +00001195#endif
Dan Gohman69de1932008-02-06 22:27:42 +00001196
1197 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001198 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
Dan Gohmanb8d2f552008-08-20 15:58:01 +00001199 MO.Profile(ID);
Dan Gohman69de1932008-02-06 22:27:42 +00001200
1201 void *IP = 0;
1202 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001203 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001204
Dan Gohmanfed90b62008-07-28 21:51:04 +00001205 SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00001206 new (N) MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001207 CSEMap.InsertNode(N, IP);
1208 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001209 return SDValue(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001210}
1211
Chris Lattner37ce9df2007-10-15 17:47:20 +00001212/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1213/// specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00001214SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001215 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands9304f2c2008-12-04 18:08:40 +00001216 unsigned ByteSize = VT.getStoreSizeInBits()/8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001217 const Type *Ty = VT.getTypeForMVT();
Mon P Wang364d73d2008-07-05 20:40:31 +00001218 unsigned StackAlign =
1219 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1220
Chris Lattner37ce9df2007-10-15 17:47:20 +00001221 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1222 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1223}
1224
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001225/// CreateStackTemporary - Create a stack temporary suitable for holding
1226/// either of the specified value types.
1227SDValue SelectionDAG::CreateStackTemporary(MVT VT1, MVT VT2) {
1228 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1229 VT2.getStoreSizeInBits())/8;
1230 const Type *Ty1 = VT1.getTypeForMVT();
1231 const Type *Ty2 = VT2.getTypeForMVT();
1232 const TargetData *TD = TLI.getTargetData();
1233 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1234 TD->getPrefTypeAlignment(Ty2));
1235
1236 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1237 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align);
1238 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1239}
1240
Dan Gohman475871a2008-07-27 21:46:04 +00001241SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1242 SDValue N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001243 // These setcc operations always fold.
1244 switch (Cond) {
1245 default: break;
1246 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001247 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001248 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001249 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001250
1251 case ISD::SETOEQ:
1252 case ISD::SETOGT:
1253 case ISD::SETOGE:
1254 case ISD::SETOLT:
1255 case ISD::SETOLE:
1256 case ISD::SETONE:
1257 case ISD::SETO:
1258 case ISD::SETUO:
1259 case ISD::SETUEQ:
1260 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001261 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001262 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001263 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001264
Gabor Greifba36cb52008-08-28 21:40:38 +00001265 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001266 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001267 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001268 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001269
Chris Lattnerc3aae252005-01-07 07:46:32 +00001270 switch (Cond) {
1271 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001272 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1273 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001274 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1275 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1276 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1277 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1278 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1279 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1280 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1281 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001282 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001283 }
Chris Lattner67255a12005-04-07 18:14:58 +00001284 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1286 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001287 // No compile time operations on this type yet.
1288 if (N1C->getValueType(0) == MVT::ppcf128)
Dan Gohman475871a2008-07-27 21:46:04 +00001289 return SDValue();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001290
1291 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001292 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001293 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001294 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1295 return getNode(ISD::UNDEF, VT);
1296 // fall through
1297 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1298 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1299 return getNode(ISD::UNDEF, VT);
1300 // fall through
1301 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001302 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001303 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1304 return getNode(ISD::UNDEF, VT);
1305 // fall through
1306 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1307 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1308 return getNode(ISD::UNDEF, VT);
1309 // fall through
1310 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1311 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1312 return getNode(ISD::UNDEF, VT);
1313 // fall through
1314 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001315 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001316 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1317 return getNode(ISD::UNDEF, VT);
1318 // fall through
1319 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001320 R==APFloat::cmpEqual, VT);
1321 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1322 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1323 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1324 R==APFloat::cmpEqual, VT);
1325 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1326 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1327 R==APFloat::cmpLessThan, VT);
1328 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1329 R==APFloat::cmpUnordered, VT);
1330 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1331 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001332 }
1333 } else {
1334 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001335 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001336 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001337 }
1338
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001339 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001340 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001341}
1342
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001343/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1344/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001345bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001346 unsigned BitWidth = Op.getValueSizeInBits();
1347 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1348}
1349
Dan Gohmanea859be2007-06-22 14:59:07 +00001350/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1351/// this predicate to simplify operations downstream. Mask is known to be zero
1352/// for bits that V cannot have.
Dan Gohman475871a2008-07-27 21:46:04 +00001353bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001354 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001355 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001356 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1357 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1358 return (KnownZero & Mask) == Mask;
1359}
1360
1361/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1362/// known to be either zero or one and return them in the KnownZero/KnownOne
1363/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1364/// processing.
Dan Gohman475871a2008-07-27 21:46:04 +00001365void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001366 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001367 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001369 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001370 "Mask size mismatches value type size!");
1371
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001372 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001373 if (Depth == 6 || Mask == 0)
1374 return; // Limit search depth.
1375
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001376 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001377
1378 switch (Op.getOpcode()) {
1379 case ISD::Constant:
1380 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001381 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001382 KnownZero = ~KnownOne & Mask;
1383 return;
1384 case ISD::AND:
1385 // If either the LHS or the RHS are Zero, the result is zero.
1386 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001387 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1388 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001389 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1390 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1391
1392 // Output known-1 bits are only known if set in both the LHS & RHS.
1393 KnownOne &= KnownOne2;
1394 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1395 KnownZero |= KnownZero2;
1396 return;
1397 case ISD::OR:
1398 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001399 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1400 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001401 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1402 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1403
1404 // Output known-0 bits are only known if clear in both the LHS & RHS.
1405 KnownZero &= KnownZero2;
1406 // Output known-1 are known to be set if set in either the LHS | RHS.
1407 KnownOne |= KnownOne2;
1408 return;
1409 case ISD::XOR: {
1410 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1411 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1412 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 known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001416 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001417 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1418 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1419 KnownZero = KnownZeroOut;
1420 return;
1421 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001422 case ISD::MUL: {
1423 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1424 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1425 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1426 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1427 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1428
1429 // If low bits are zero in either operand, output low known-0 bits.
1430 // Also compute a conserative estimate for high known-0 bits.
1431 // More trickiness is possible, but this is sufficient for the
1432 // interesting case of alignment computation.
1433 KnownOne.clear();
1434 unsigned TrailZ = KnownZero.countTrailingOnes() +
1435 KnownZero2.countTrailingOnes();
1436 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001437 KnownZero2.countLeadingOnes(),
1438 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001439
1440 TrailZ = std::min(TrailZ, BitWidth);
1441 LeadZ = std::min(LeadZ, BitWidth);
1442 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1443 APInt::getHighBitsSet(BitWidth, LeadZ);
1444 KnownZero &= Mask;
1445 return;
1446 }
1447 case ISD::UDIV: {
1448 // For the purposes of computing leading zeros we can conservatively
1449 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001450 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001451 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1452 ComputeMaskedBits(Op.getOperand(0),
1453 AllOnes, KnownZero2, KnownOne2, Depth+1);
1454 unsigned LeadZ = KnownZero2.countLeadingOnes();
1455
1456 KnownOne2.clear();
1457 KnownZero2.clear();
1458 ComputeMaskedBits(Op.getOperand(1),
1459 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001460 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1461 if (RHSUnknownLeadingOnes != BitWidth)
1462 LeadZ = std::min(BitWidth,
1463 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001464
1465 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1466 return;
1467 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001468 case ISD::SELECT:
1469 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1470 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1471 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1472 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1473
1474 // Only known if known in both the LHS and RHS.
1475 KnownOne &= KnownOne2;
1476 KnownZero &= KnownZero2;
1477 return;
1478 case ISD::SELECT_CC:
1479 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1480 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1481 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1482 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1483
1484 // Only known if known in both the LHS and RHS.
1485 KnownOne &= KnownOne2;
1486 KnownZero &= KnownZero2;
1487 return;
Bill Wendling253174b2008-11-22 07:24:01 +00001488 case ISD::SADDO:
1489 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001490 case ISD::SSUBO:
1491 case ISD::USUBO:
1492 case ISD::SMULO:
1493 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001494 if (Op.getResNo() != 1)
1495 return;
Duncan Sands03228082008-11-23 15:47:28 +00001496 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001497 case ISD::SETCC:
1498 // If we know the result of a setcc has the top bits zero, use this info.
Duncan Sands03228082008-11-23 15:47:28 +00001499 if (TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent &&
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001500 BitWidth > 1)
1501 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001502 return;
1503 case ISD::SHL:
1504 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1505 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001506 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001507
1508 // If the shift count is an invalid immediate, don't do anything.
1509 if (ShAmt >= BitWidth)
1510 return;
1511
1512 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001513 KnownZero, KnownOne, Depth+1);
1514 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001515 KnownZero <<= ShAmt;
1516 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001517 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001518 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001519 }
1520 return;
1521 case ISD::SRL:
1522 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1523 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001524 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001525
Dan Gohmand4cf9922008-02-26 18:50:50 +00001526 // If the shift count is an invalid immediate, don't do anything.
1527 if (ShAmt >= BitWidth)
1528 return;
1529
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001530 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001531 KnownZero, KnownOne, Depth+1);
1532 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001533 KnownZero = KnownZero.lshr(ShAmt);
1534 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001535
Dan Gohman72d2fd52008-02-13 22:43:25 +00001536 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001537 KnownZero |= HighBits; // High bits known zero.
1538 }
1539 return;
1540 case ISD::SRA:
1541 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001542 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001543
Dan Gohmand4cf9922008-02-26 18:50:50 +00001544 // If the shift count is an invalid immediate, don't do anything.
1545 if (ShAmt >= BitWidth)
1546 return;
1547
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001548 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001549 // If any of the demanded bits are produced by the sign extension, we also
1550 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001551 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1552 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001553 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001554
1555 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1556 Depth+1);
1557 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001558 KnownZero = KnownZero.lshr(ShAmt);
1559 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001560
1561 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001562 APInt SignBit = APInt::getSignBit(BitWidth);
1563 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001564
Dan Gohmanca93a432008-02-20 16:30:17 +00001565 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001566 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001567 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001568 KnownOne |= HighBits; // New bits are known one.
1569 }
1570 }
1571 return;
1572 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001573 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1574 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001575
1576 // Sign extension. Compute the demanded bits in the result that are not
1577 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001578 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001579
Dan Gohman977a76f2008-02-13 22:28:48 +00001580 APInt InSignBit = APInt::getSignBit(EBits);
1581 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001582
1583 // If the sign extended bits are demanded, we know that the sign
1584 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001585 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001586 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001587 InputDemandedBits |= InSignBit;
1588
1589 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1590 KnownZero, KnownOne, Depth+1);
1591 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1592
1593 // If the sign bit of the input is known set or clear, then we know the
1594 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001595 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001596 KnownZero |= NewBits;
1597 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001598 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001599 KnownOne |= NewBits;
1600 KnownZero &= ~NewBits;
1601 } else { // Input sign bit unknown
1602 KnownZero &= ~NewBits;
1603 KnownOne &= ~NewBits;
1604 }
1605 return;
1606 }
1607 case ISD::CTTZ:
1608 case ISD::CTLZ:
1609 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001610 unsigned LowBits = Log2_32(BitWidth)+1;
1611 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001612 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001613 return;
1614 }
1615 case ISD::LOAD: {
Gabor Greifba36cb52008-08-28 21:40:38 +00001616 if (ISD::isZEXTLoad(Op.getNode())) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001617 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001618 MVT VT = LD->getMemoryVT();
1619 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001620 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001621 }
1622 return;
1623 }
1624 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001625 MVT InVT = Op.getOperand(0).getValueType();
1626 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001627 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1628 APInt InMask = Mask;
1629 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001630 KnownZero.trunc(InBits);
1631 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001632 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001633 KnownZero.zext(BitWidth);
1634 KnownOne.zext(BitWidth);
1635 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001636 return;
1637 }
1638 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001639 MVT InVT = Op.getOperand(0).getValueType();
1640 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001641 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001642 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1643 APInt InMask = Mask;
1644 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001645
1646 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001647 // bit is demanded. Temporarily set this bit in the mask for our callee.
1648 if (NewBits.getBoolValue())
1649 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001650
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001651 KnownZero.trunc(InBits);
1652 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001653 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1654
1655 // Note if the sign bit is known to be zero or one.
1656 bool SignBitKnownZero = KnownZero.isNegative();
1657 bool SignBitKnownOne = KnownOne.isNegative();
1658 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1659 "Sign bit can't be known to be both zero and one!");
1660
1661 // If the sign bit wasn't actually demanded by our caller, we don't
1662 // want it set in the KnownZero and KnownOne result values. Reset the
1663 // mask and reapply it to the result values.
1664 InMask = Mask;
1665 InMask.trunc(InBits);
1666 KnownZero &= InMask;
1667 KnownOne &= InMask;
1668
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001669 KnownZero.zext(BitWidth);
1670 KnownOne.zext(BitWidth);
1671
Dan Gohman977a76f2008-02-13 22:28:48 +00001672 // If the sign bit is known zero or one, the top bits match.
1673 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001674 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001675 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001676 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001677 return;
1678 }
1679 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001680 MVT InVT = Op.getOperand(0).getValueType();
1681 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001682 APInt InMask = Mask;
1683 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001684 KnownZero.trunc(InBits);
1685 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001686 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001687 KnownZero.zext(BitWidth);
1688 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001689 return;
1690 }
1691 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001692 MVT InVT = Op.getOperand(0).getValueType();
1693 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001694 APInt InMask = Mask;
1695 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001696 KnownZero.zext(InBits);
1697 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001698 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001699 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001700 KnownZero.trunc(BitWidth);
1701 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001702 break;
1703 }
1704 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001705 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1706 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001707 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1708 KnownOne, Depth+1);
1709 KnownZero |= (~InMask) & Mask;
1710 return;
1711 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001712 case ISD::FGETSIGN:
1713 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001714 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001715 return;
1716
Dan Gohman23e8b712008-04-28 17:02:21 +00001717 case ISD::SUB: {
1718 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1719 // We know that the top bits of C-X are clear if X contains less bits
1720 // than C (i.e. no wrap-around can happen). For example, 20-X is
1721 // positive if we can prove that X is >= 0 and < 16.
1722 if (CLHS->getAPIntValue().isNonNegative()) {
1723 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1724 // NLZ can't be BitWidth with no sign bit
1725 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1726 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1727 Depth+1);
1728
1729 // If all of the MaskV bits are known to be zero, then we know the
1730 // output top bits are zero, because we now know that the output is
1731 // from [0-C].
1732 if ((KnownZero2 & MaskV) == MaskV) {
1733 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1734 // Top bits known zero.
1735 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1736 }
1737 }
1738 }
1739 }
1740 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001741 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001742 // Output known-0 bits are known if clear or set in both the low clear bits
1743 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1744 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001745 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1746 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1747 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1748 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1749
1750 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1751 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1752 KnownZeroOut = std::min(KnownZeroOut,
1753 KnownZero2.countTrailingOnes());
1754
1755 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001756 return;
1757 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001758 case ISD::SREM:
1759 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001760 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e8b712008-04-28 17:02:21 +00001761 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001762 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001763 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1764 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001765
Dan Gohmana60832b2008-08-13 23:12:35 +00001766 // If the sign bit of the first operand is zero, the sign bit of
1767 // the result is zero. If the first operand has no one bits below
1768 // the second operand's single 1 bit, its sign will be zero.
Dan Gohman23e8b712008-04-28 17:02:21 +00001769 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1770 KnownZero2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001771
Dan Gohman23e8b712008-04-28 17:02:21 +00001772 KnownZero |= KnownZero2 & Mask;
Dan Gohman23e8b712008-04-28 17:02:21 +00001773
1774 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001775 }
1776 }
1777 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001778 case ISD::UREM: {
1779 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00001780 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001781 if (RA.isPowerOf2()) {
1782 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001783 APInt Mask2 = LowBits & Mask;
1784 KnownZero |= ~LowBits & Mask;
1785 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1786 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1787 break;
1788 }
1789 }
1790
1791 // Since the result is less than or equal to either operand, any leading
1792 // zero bits in either operand must also exist in the result.
1793 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1794 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1795 Depth+1);
1796 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1797 Depth+1);
1798
1799 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1800 KnownZero2.countLeadingOnes());
1801 KnownOne.clear();
1802 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1803 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001804 }
1805 default:
1806 // Allow the target to implement this method for its nodes.
1807 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1808 case ISD::INTRINSIC_WO_CHAIN:
1809 case ISD::INTRINSIC_W_CHAIN:
1810 case ISD::INTRINSIC_VOID:
1811 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1812 }
1813 return;
1814 }
1815}
1816
1817/// ComputeNumSignBits - Return the number of times the sign bit of the
1818/// register is replicated into the other bits. We know that at least 1 bit
1819/// is always equal to the sign bit (itself), but other cases can give us
1820/// information. For example, immediately after an "SRA X, 2", we know that
1821/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00001822unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001823 MVT VT = Op.getValueType();
1824 assert(VT.isInteger() && "Invalid VT!");
1825 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001826 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001827 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001828
1829 if (Depth == 6)
1830 return 1; // Limit search depth.
1831
1832 switch (Op.getOpcode()) {
1833 default: break;
1834 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001835 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001836 return VTBits-Tmp+1;
1837 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001838 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001839 return VTBits-Tmp;
1840
1841 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001842 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1843 // If negative, return # leading ones.
1844 if (Val.isNegative())
1845 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001846
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001847 // Return # leading zeros.
1848 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001849 }
1850
1851 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001852 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001853 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1854
1855 case ISD::SIGN_EXTEND_INREG:
1856 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001857 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001858 Tmp = VTBits-Tmp+1;
1859
1860 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1861 return std::max(Tmp, Tmp2);
1862
1863 case ISD::SRA:
1864 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1865 // SRA X, C -> adds C sign bits.
1866 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001867 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001868 if (Tmp > VTBits) Tmp = VTBits;
1869 }
1870 return Tmp;
1871 case ISD::SHL:
1872 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1873 // shl destroys sign bits.
1874 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001875 if (C->getZExtValue() >= VTBits || // Bad shift.
1876 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
1877 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001878 }
1879 break;
1880 case ISD::AND:
1881 case ISD::OR:
1882 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001883 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001884 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001885 if (Tmp != 1) {
1886 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1887 FirstAnswer = std::min(Tmp, Tmp2);
1888 // We computed what we know about the sign bits as our first
1889 // answer. Now proceed to the generic code that uses
1890 // ComputeMaskedBits, and pick whichever answer is better.
1891 }
1892 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001893
1894 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001895 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001896 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001897 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001898 return std::min(Tmp, Tmp2);
Bill Wendling253174b2008-11-22 07:24:01 +00001899
1900 case ISD::SADDO:
1901 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001902 case ISD::SSUBO:
1903 case ISD::USUBO:
1904 case ISD::SMULO:
1905 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001906 if (Op.getResNo() != 1)
1907 break;
Duncan Sands03228082008-11-23 15:47:28 +00001908 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001909 case ISD::SETCC:
1910 // If setcc returns 0/-1, all bits are sign bits.
Duncan Sands03228082008-11-23 15:47:28 +00001911 if (TLI.getBooleanContents() ==
1912 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohmanea859be2007-06-22 14:59:07 +00001913 return VTBits;
1914 break;
1915 case ISD::ROTL:
1916 case ISD::ROTR:
1917 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001918 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001919
1920 // Handle rotate right by N like a rotate left by 32-N.
1921 if (Op.getOpcode() == ISD::ROTR)
1922 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1923
1924 // If we aren't rotating out all of the known-in sign bits, return the
1925 // number that are left. This handles rotl(sext(x), 1) for example.
1926 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1927 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1928 }
1929 break;
1930 case ISD::ADD:
1931 // Add can have at most one carry bit. Thus we know that the output
1932 // is, at worst, one more bit than the inputs.
1933 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1934 if (Tmp == 1) return 1; // Early out.
1935
1936 // Special case decrementing a value (ADD X, -1):
1937 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1938 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001939 APInt KnownZero, KnownOne;
1940 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001941 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1942
1943 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1944 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001945 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001946 return VTBits;
1947
1948 // If we are subtracting one from a positive number, there is no carry
1949 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001950 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001951 return Tmp;
1952 }
1953
1954 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1955 if (Tmp2 == 1) return 1;
1956 return std::min(Tmp, Tmp2)-1;
1957 break;
1958
1959 case ISD::SUB:
1960 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1961 if (Tmp2 == 1) return 1;
1962
1963 // Handle NEG.
1964 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001965 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001966 APInt KnownZero, KnownOne;
1967 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001968 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1969 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1970 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001971 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001972 return VTBits;
1973
1974 // If the input is known to be positive (the sign bit is known clear),
1975 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001976 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001977 return Tmp2;
1978
1979 // Otherwise, we treat this like a SUB.
1980 }
1981
1982 // Sub can have at most one carry bit. Thus we know that the output
1983 // is, at worst, one more bit than the inputs.
1984 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1985 if (Tmp == 1) return 1; // Early out.
1986 return std::min(Tmp, Tmp2)-1;
1987 break;
1988 case ISD::TRUNCATE:
1989 // FIXME: it's tricky to do anything useful for this, but it is an important
1990 // case for targets like X86.
1991 break;
1992 }
1993
1994 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1995 if (Op.getOpcode() == ISD::LOAD) {
1996 LoadSDNode *LD = cast<LoadSDNode>(Op);
1997 unsigned ExtType = LD->getExtensionType();
1998 switch (ExtType) {
1999 default: break;
2000 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00002001 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002002 return VTBits-Tmp+1;
2003 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00002004 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002005 return VTBits-Tmp;
2006 }
2007 }
2008
2009 // Allow the target to implement this method for its nodes.
2010 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2011 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2012 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2013 Op.getOpcode() == ISD::INTRINSIC_VOID) {
2014 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002015 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002016 }
2017
2018 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2019 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002020 APInt KnownZero, KnownOne;
2021 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002022 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2023
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002024 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002025 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002026 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002027 Mask = KnownOne;
2028 } else {
2029 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002030 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002031 }
2032
2033 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2034 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002035 Mask = ~Mask;
2036 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002037 // Return # leading zeros. We use 'min' here in case Val was zero before
2038 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002039 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002040}
2041
Chris Lattner51dabfb2006-10-14 00:41:01 +00002042
Dan Gohman475871a2008-07-27 21:46:04 +00002043bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
Evan Chenga844bde2008-02-02 04:07:54 +00002044 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2045 if (!GA) return false;
Dan Gohman6520e202008-10-18 02:06:02 +00002046 if (GA->getOffset() != 0) return false;
Evan Chenga844bde2008-02-02 04:07:54 +00002047 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2048 if (!GV) return false;
Devang Patel35fe7342009-01-13 22:54:57 +00002049 MachineModuleInfo *MMI = getMachineModuleInfo();
Devang Patelbbdc8202009-01-13 23:54:55 +00002050 return MMI && MMI->hasDebugInfo();
Evan Chenga844bde2008-02-02 04:07:54 +00002051}
2052
2053
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002054/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2055/// element of the result of the vector shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00002056SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002057 MVT VT = N->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00002058 SDValue PermMask = N->getOperand(2);
2059 SDValue Idx = PermMask.getOperand(i);
Evan Chengab262272008-06-25 20:52:59 +00002060 if (Idx.getOpcode() == ISD::UNDEF)
2061 return getNode(ISD::UNDEF, VT.getVectorElementType());
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002062 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002063 unsigned NumElems = PermMask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002064 SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
Evan Chengab262272008-06-25 20:52:59 +00002065 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002066
2067 if (V.getOpcode() == ISD::BIT_CONVERT) {
2068 V = V.getOperand(0);
Mon P Wange9f10152008-12-09 05:46:39 +00002069 MVT VVT = V.getValueType();
2070 if (!VVT.isVector() || VVT.getVectorNumElements() != NumElems)
Dan Gohman475871a2008-07-27 21:46:04 +00002071 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002072 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002073 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002074 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002075 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00002076 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00002077 return V.getOperand(Index);
2078 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002079 return getShuffleScalarElt(V.getNode(), Index);
Dan Gohman475871a2008-07-27 21:46:04 +00002080 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00002081}
2082
2083
Chris Lattnerc3aae252005-01-07 07:46:32 +00002084/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002085///
Dan Gohman475871a2008-07-27 21:46:04 +00002086SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002087 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002088 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002089 void *IP = 0;
2090 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002091 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002092 SDNode *N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002093 new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002094 CSEMap.InsertNode(N, IP);
2095
2096 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002097#ifndef NDEBUG
2098 VerifyNode(N);
2099#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002100 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002101}
2102
Dan Gohman475871a2008-07-27 21:46:04 +00002103SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002104 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002105 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002106 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002107 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002108 switch (Opcode) {
2109 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002110 case ISD::SIGN_EXTEND:
2111 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002112 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002113 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002114 case ISD::TRUNCATE:
2115 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002116 case ISD::UINT_TO_FP:
2117 case ISD::SINT_TO_FP: {
2118 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00002119 // No compile time operations on this type.
2120 if (VT==MVT::ppcf128)
2121 break;
Dan Gohman6c231502008-02-29 01:47:35 +00002122 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2123 (void)apf.convertFromAPInt(Val,
2124 Opcode==ISD::SINT_TO_FP,
2125 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002126 return getConstantFP(apf, VT);
2127 }
Chris Lattner94683772005-12-23 05:30:37 +00002128 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002129 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00002130 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00002131 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00002132 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002133 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002134 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002135 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002136 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002137 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002138 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002139 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002140 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00002141 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002142 }
2143 }
2144
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002145 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002146 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002147 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00002148 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00002149 switch (Opcode) {
2150 case ISD::FNEG:
2151 V.changeSign();
2152 return getConstantFP(V, VT);
2153 case ISD::FABS:
2154 V.clearSign();
2155 return getConstantFP(V, VT);
2156 case ISD::FP_ROUND:
Dale Johannesen23a98552008-10-09 23:00:39 +00002157 case ISD::FP_EXTEND: {
2158 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002159 // This can return overflow, underflow, or inexact; we don't care.
2160 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00002161 (void)V.convert(*MVTToAPFloatSemantics(VT),
Dale Johannesen23a98552008-10-09 23:00:39 +00002162 APFloat::rmNearestTiesToEven, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002163 return getConstantFP(V, VT);
Dale Johannesen23a98552008-10-09 23:00:39 +00002164 }
Dale Johannesendb44bf82007-10-16 23:38:29 +00002165 case ISD::FP_TO_SINT:
2166 case ISD::FP_TO_UINT: {
2167 integerPart x;
Dale Johannesen23a98552008-10-09 23:00:39 +00002168 bool ignored;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002169 assert(integerPartWidth >= 64);
2170 // FIXME need to be more flexible about rounding mode.
2171 APFloat::opStatus s = V.convertToInteger(&x, 64U,
2172 Opcode==ISD::FP_TO_SINT,
Dale Johannesen23a98552008-10-09 23:00:39 +00002173 APFloat::rmTowardZero, &ignored);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002174 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
2175 break;
2176 return getConstant(x, VT);
2177 }
2178 case ISD::BIT_CONVERT:
2179 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
Dale Johannesen23a98552008-10-09 23:00:39 +00002180 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesendb44bf82007-10-16 23:38:29 +00002181 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
Dale Johannesen23a98552008-10-09 23:00:39 +00002182 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002183 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00002184 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002185 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002186 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002187
Gabor Greifba36cb52008-08-28 21:40:38 +00002188 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002189 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002190 case ISD::TokenFactor:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002191 case ISD::MERGE_VALUES:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002192 case ISD::CONCAT_VECTORS:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002193 return Operand; // Factor, merge or concat of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00002194 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002195 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002196 assert(VT.isFloatingPoint() &&
2197 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002198 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00002199 if (Operand.getOpcode() == ISD::UNDEF)
2200 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002201 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002202 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002203 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002204 "Invalid SIGN_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 sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002208 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
Gabor Greifba36cb52008-08-28 21:40:38 +00002209 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002210 break;
2211 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002212 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002213 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46: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 zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002217 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002218 return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002219 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002220 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002221 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002222 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002223 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002224 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002225 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002226 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2227 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002228 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002229 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002230 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002231 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002232 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002233 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002234 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002235 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002236 if (OpOpcode == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00002237 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002238 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2239 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002240 // If the source is smaller than the dest, we still need an extend.
Gabor Greifba36cb52008-08-28 21:40:38 +00002241 if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2242 return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2243 else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2244 return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002245 else
Gabor Greifba36cb52008-08-28 21:40:38 +00002246 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002247 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002248 break;
Chris Lattner35481892005-12-23 00:16:34 +00002249 case ISD::BIT_CONVERT:
2250 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002251 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002252 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002253 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002254 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2255 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002256 if (OpOpcode == ISD::UNDEF)
2257 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002258 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002259 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002260 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2261 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002262 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002263 if (OpOpcode == ISD::UNDEF)
2264 return getNode(ISD::UNDEF, VT);
2265 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2266 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2267 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2268 Operand.getConstantOperandVal(1) == 0 &&
2269 Operand.getOperand(0).getValueType() == VT)
2270 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002271 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002272 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002273 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002274 return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2275 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002276 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002277 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002278 break;
2279 case ISD::FABS:
2280 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Gabor Greifba36cb52008-08-28 21:40:38 +00002281 return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002282 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002283 }
2284
Chris Lattner43247a12005-08-25 19:12:10 +00002285 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002286 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002287 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002288 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002289 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002290 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002291 void *IP = 0;
2292 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002293 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002294 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002295 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002296 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002297 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002298 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002299 new (N) UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002300 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002301
Chris Lattnerc3aae252005-01-07 07:46:32 +00002302 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002303#ifndef NDEBUG
2304 VerifyNode(N);
2305#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002306 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002307}
2308
Bill Wendling688d1c42008-09-24 10:16:24 +00002309SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2310 MVT VT,
2311 ConstantSDNode *Cst1,
2312 ConstantSDNode *Cst2) {
2313 const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2314
2315 switch (Opcode) {
2316 case ISD::ADD: return getConstant(C1 + C2, VT);
2317 case ISD::SUB: return getConstant(C1 - C2, VT);
2318 case ISD::MUL: return getConstant(C1 * C2, VT);
2319 case ISD::UDIV:
2320 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2321 break;
2322 case ISD::UREM:
2323 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2324 break;
2325 case ISD::SDIV:
2326 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2327 break;
2328 case ISD::SREM:
2329 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2330 break;
2331 case ISD::AND: return getConstant(C1 & C2, VT);
2332 case ISD::OR: return getConstant(C1 | C2, VT);
2333 case ISD::XOR: return getConstant(C1 ^ C2, VT);
2334 case ISD::SHL: return getConstant(C1 << C2, VT);
2335 case ISD::SRL: return getConstant(C1.lshr(C2), VT);
2336 case ISD::SRA: return getConstant(C1.ashr(C2), VT);
2337 case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2338 case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2339 default: break;
2340 }
2341
2342 return SDValue();
2343}
2344
Dan Gohman475871a2008-07-27 21:46:04 +00002345SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2346 SDValue N1, SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002347 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2348 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002349 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002350 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002351 case ISD::TokenFactor:
2352 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2353 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002354 // Fold trivial token factors.
2355 if (N1.getOpcode() == ISD::EntryToken) return N2;
2356 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002357 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002358 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002359 case ISD::CONCAT_VECTORS:
2360 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2361 // one big BUILD_VECTOR.
2362 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2363 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002364 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2365 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002366 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2367 }
2368 break;
Chris Lattner76365122005-01-16 02:23:22 +00002369 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002370 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002371 N1.getValueType() == VT && "Binary operator types must match!");
2372 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2373 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002374 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002375 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002376 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2377 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002378 break;
Chris Lattner76365122005-01-16 02:23:22 +00002379 case ISD::OR:
2380 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002381 case ISD::ADD:
2382 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002383 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002384 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002385 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2386 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002387 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002388 return N1;
2389 break;
Chris Lattner76365122005-01-16 02:23:22 +00002390 case ISD::UDIV:
2391 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002392 case ISD::MULHU:
2393 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00002394 case ISD::MUL:
2395 case ISD::SDIV:
2396 case ISD::SREM:
Dan Gohman760f86f2009-01-22 21:58:43 +00002397 assert(VT.isInteger() && "This operator does not apply to FP types!");
2398 // fall through
Chris Lattner01b3d732005-09-28 22:28:18 +00002399 case ISD::FADD:
2400 case ISD::FSUB:
2401 case ISD::FMUL:
2402 case ISD::FDIV:
2403 case ISD::FREM:
Dan Gohmana90c8e62009-01-23 19:10:37 +00002404 if (UnsafeFPMath) {
2405 if (Opcode == ISD::FADD) {
2406 // 0+x --> x
2407 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
2408 if (CFP->getValueAPF().isZero())
2409 return N2;
2410 // x+0 --> x
2411 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2412 if (CFP->getValueAPF().isZero())
2413 return N1;
2414 } else if (Opcode == ISD::FSUB) {
2415 // x-0 --> x
2416 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2417 if (CFP->getValueAPF().isZero())
2418 return N1;
2419 }
Dan Gohman760f86f2009-01-22 21:58:43 +00002420 }
Chris Lattner76365122005-01-16 02:23:22 +00002421 assert(N1.getValueType() == N2.getValueType() &&
2422 N1.getValueType() == VT && "Binary operator types must match!");
2423 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002424 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2425 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002426 N1.getValueType().isFloatingPoint() &&
2427 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002428 "Invalid FCOPYSIGN!");
2429 break;
Chris Lattner76365122005-01-16 02:23:22 +00002430 case ISD::SHL:
2431 case ISD::SRA:
2432 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002433 case ISD::ROTL:
2434 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002435 assert(VT == N1.getValueType() &&
2436 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002437 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002438 "Shifts only work on integers");
Mon P Wange9f10152008-12-09 05:46:39 +00002439 assert((N2.getValueType() == TLI.getShiftAmountTy() ||
2440 (N2.getValueType().isVector() && N2.getValueType().isInteger())) &&
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002441 "Wrong type for shift amount");
Chris Lattner349db172008-07-02 17:01:57 +00002442
2443 // Always fold shifts of i1 values so the code generator doesn't need to
2444 // handle them. Since we know the size of the shift has to be less than the
2445 // size of the value, the shift/rotate count is guaranteed to be zero.
2446 if (VT == MVT::i1)
2447 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002448 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002449 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002450 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002451 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002452 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002453 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002454 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002455 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002456 break;
2457 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002458 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002459 assert(VT.isFloatingPoint() &&
2460 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002461 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002462 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002463 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002464 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002465 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002466 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002467 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002468 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002469 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002470 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002471 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002472 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002473 break;
2474 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002475 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002476 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002477 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002478 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002479 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002480 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002481 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002482
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002483 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002484 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002485 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002486 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002487 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002488 return getConstant(Val, VT);
2489 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002490 break;
2491 }
2492 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002493 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2494 if (N1.getOpcode() == ISD::UNDEF)
2495 return getNode(ISD::UNDEF, VT);
2496
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002497 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2498 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00002499 if (N2C &&
2500 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002501 N1.getNumOperands() > 0) {
2502 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002503 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002504 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002505 N1.getOperand(N2C->getZExtValue() / Factor),
2506 getConstant(N2C->getZExtValue() % Factor,
2507 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002508 }
2509
2510 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2511 // expanding large vector constants.
Dan Gohman6ab64222008-08-13 21:51:37 +00002512 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002513 return N1.getOperand(N2C->getZExtValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002514
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002515 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2516 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00002517 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2518 if (N1.getOperand(2) == N2)
2519 return N1.getOperand(1);
2520 else
2521 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2522 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002523 break;
2524 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002525 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002526 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2527 (N1.getValueType().isInteger() == VT.isInteger()) &&
2528 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002529
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002530 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2531 // 64-bit integers into 32-bit parts. Instead of building the extract of
2532 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2533 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002534 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002535
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002536 // EXTRACT_ELEMENT of a constant int is also very common.
2537 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002538 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002539 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002540 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2541 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002542 }
2543 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002544 case ISD::EXTRACT_SUBVECTOR:
2545 if (N1.getValueType() == VT) // Trivial extraction.
2546 return N1;
2547 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002548 }
2549
2550 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002551 if (N2C) {
Bill Wendling688d1c42008-09-24 10:16:24 +00002552 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2553 if (SV.getNode()) return SV;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002554 } else { // Cannonicalize constant to RHS if commutative
2555 if (isCommutativeBinOp(Opcode)) {
2556 std::swap(N1C, N2C);
2557 std::swap(N1, N2);
2558 }
2559 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002560 }
2561
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002562 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002563 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2564 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00002565 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002566 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2567 // Cannonicalize constant to RHS if commutative
2568 std::swap(N1CFP, N2CFP);
2569 std::swap(N1, N2);
2570 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002571 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2572 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002573 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002574 case ISD::FADD:
2575 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002576 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002577 return getConstantFP(V1, VT);
2578 break;
2579 case ISD::FSUB:
2580 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2581 if (s!=APFloat::opInvalidOp)
2582 return getConstantFP(V1, VT);
2583 break;
2584 case ISD::FMUL:
2585 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2586 if (s!=APFloat::opInvalidOp)
2587 return getConstantFP(V1, VT);
2588 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002589 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002590 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2591 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2592 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002593 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002594 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002595 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2596 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2597 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002598 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002599 case ISD::FCOPYSIGN:
2600 V1.copySign(V2);
2601 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002602 default: break;
2603 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002604 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002605 }
Chris Lattner62b57722006-04-20 05:39:12 +00002606
2607 // Canonicalize an UNDEF to the RHS, even over a constant.
2608 if (N1.getOpcode() == ISD::UNDEF) {
2609 if (isCommutativeBinOp(Opcode)) {
2610 std::swap(N1, N2);
2611 } else {
2612 switch (Opcode) {
2613 case ISD::FP_ROUND_INREG:
2614 case ISD::SIGN_EXTEND_INREG:
2615 case ISD::SUB:
2616 case ISD::FSUB:
2617 case ISD::FDIV:
2618 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002619 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002620 return N1; // fold op(undef, arg2) -> undef
2621 case ISD::UDIV:
2622 case ISD::SDIV:
2623 case ISD::UREM:
2624 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002625 case ISD::SRL:
2626 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002627 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002628 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2629 // For vectors, we can't easily build an all zero vector, just return
2630 // the LHS.
2631 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002632 }
2633 }
2634 }
2635
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002636 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002637 if (N2.getOpcode() == ISD::UNDEF) {
2638 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002639 case ISD::XOR:
2640 if (N1.getOpcode() == ISD::UNDEF)
2641 // Handle undef ^ undef -> 0 special case. This is a common
2642 // idiom (misuse).
2643 return getConstant(0, VT);
2644 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002645 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002646 case ISD::ADDC:
2647 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002648 case ISD::SUB:
2649 case ISD::FADD:
2650 case ISD::FSUB:
2651 case ISD::FMUL:
2652 case ISD::FDIV:
2653 case ISD::FREM:
2654 case ISD::UDIV:
2655 case ISD::SDIV:
2656 case ISD::UREM:
2657 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002658 return N2; // fold op(arg1, undef) -> undef
2659 case ISD::MUL:
2660 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002661 case ISD::SRL:
2662 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002663 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002664 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2665 // For vectors, we can't easily build an all zero vector, just return
2666 // the LHS.
2667 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002668 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002669 if (!VT.isVector())
2670 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002671 // For vectors, we can't easily build an all one vector, just return
2672 // the LHS.
2673 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002674 case ISD::SRA:
2675 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002676 }
2677 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002678
Chris Lattner27e9b412005-05-11 18:57:39 +00002679 // Memoize this node if possible.
2680 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002681 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002682 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002683 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002684 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002685 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002686 void *IP = 0;
2687 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002688 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002689 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002690 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002691 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002692 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002693 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002694 new (N) BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002695 }
2696
Chris Lattnerc3aae252005-01-07 07:46:32 +00002697 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002698#ifndef NDEBUG
2699 VerifyNode(N);
2700#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002701 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002702}
2703
Dan Gohman475871a2008-07-27 21:46:04 +00002704SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2705 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002706 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00002707 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2708 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00002709 switch (Opcode) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00002710 case ISD::CONCAT_VECTORS:
2711 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2712 // one big BUILD_VECTOR.
2713 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2714 N2.getOpcode() == ISD::BUILD_VECTOR &&
2715 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002716 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2717 Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2718 Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002719 return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2720 }
2721 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002722 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002723 // Use FoldSetCC to simplify SETCC's.
Dan Gohman475871a2008-07-27 21:46:04 +00002724 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Gabor Greifba36cb52008-08-28 21:40:38 +00002725 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002726 break;
2727 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002728 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002729 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002730 if (N1C->getZExtValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002731 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002732 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002733 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002734 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002735
2736 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002737 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002738 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002739 if (N2C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002740 if (N2C->getZExtValue()) // Unconditional branch
Chris Lattner5351e9b2005-01-07 22:49:57 +00002741 return getNode(ISD::BR, MVT::Other, N1, N3);
2742 else
2743 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002744 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002745 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002746 case ISD::VECTOR_SHUFFLE:
Mon P Wangaeb06d22008-11-10 04:46:22 +00002747 assert(N1.getValueType() == N2.getValueType() &&
2748 N1.getValueType().isVector() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002749 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002750 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002751 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002752 "Illegal VECTOR_SHUFFLE node!");
2753 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002754 case ISD::BIT_CONVERT:
2755 // Fold bit_convert nodes from a type to themselves.
2756 if (N1.getValueType() == VT)
2757 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002758 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002759 }
2760
Chris Lattner43247a12005-08-25 19:12:10 +00002761 // Memoize node if it doesn't produce a flag.
2762 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002763 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002764 if (VT != MVT::Flag) {
Dan Gohman475871a2008-07-27 21:46:04 +00002765 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002766 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002767 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002768 void *IP = 0;
2769 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002770 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00002771 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002772 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002773 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002774 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00002775 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00002776 new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002777 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002778 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002779#ifndef NDEBUG
2780 VerifyNode(N);
2781#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002782 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002783}
2784
Dan Gohman475871a2008-07-27 21:46:04 +00002785SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2786 SDValue N1, SDValue N2, SDValue N3,
2787 SDValue N4) {
2788 SDValue Ops[] = { N1, N2, N3, N4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002789 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002790}
2791
Dan Gohman475871a2008-07-27 21:46:04 +00002792SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2793 SDValue N1, SDValue N2, SDValue N3,
2794 SDValue N4, SDValue N5) {
2795 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002796 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002797}
2798
Dan Gohman707e0182008-04-12 04:36:06 +00002799/// getMemsetValue - Vectorized representation of the memset value
2800/// operand.
Dan Gohman475871a2008-07-27 21:46:04 +00002801static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002802 unsigned NumBits = VT.isVector() ?
2803 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002804 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002805 APInt Val = APInt(NumBits, C->getZExtValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002806 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002807 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002808 Val = (Val << Shift) | Val;
2809 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002810 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002811 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002812 return DAG.getConstant(Val, VT);
2813 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002814 }
Evan Chengf0df0312008-05-15 08:39:06 +00002815
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002816 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Evan Chengf0df0312008-05-15 08:39:06 +00002817 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2818 unsigned Shift = 8;
2819 for (unsigned i = NumBits; i > 8; i >>= 1) {
2820 Value = DAG.getNode(ISD::OR, VT,
2821 DAG.getNode(ISD::SHL, VT, Value,
Duncan Sands3d0f5af2008-10-30 20:26:50 +00002822 DAG.getConstant(Shift,
2823 TLI.getShiftAmountTy())),
2824 Value);
Evan Chengf0df0312008-05-15 08:39:06 +00002825 Shift <<= 1;
2826 }
2827
2828 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002829}
2830
Dan Gohman707e0182008-04-12 04:36:06 +00002831/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2832/// used when a memcpy is turned into a memset when the source is a constant
2833/// string ptr.
Dan Gohman475871a2008-07-27 21:46:04 +00002834static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002835 const TargetLowering &TLI,
2836 std::string &Str, unsigned Offset) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002837 // Handle vector with all elements zero.
2838 if (Str.empty()) {
2839 if (VT.isInteger())
2840 return DAG.getConstant(0, VT);
2841 unsigned NumElts = VT.getVectorNumElements();
2842 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2843 return DAG.getNode(ISD::BIT_CONVERT, VT,
2844 DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2845 }
2846
Duncan Sands83ec4b62008-06-06 12:08:01 +00002847 assert(!VT.isVector() && "Can't handle vector type here!");
2848 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002849 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002850 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002851 if (TLI.isLittleEndian())
2852 Offset = Offset + MSB - 1;
2853 for (unsigned i = 0; i != MSB; ++i) {
2854 Val = (Val << 8) | (unsigned char)Str[Offset];
2855 Offset += TLI.isLittleEndian() ? -1 : 1;
2856 }
2857 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002858}
2859
Dan Gohman707e0182008-04-12 04:36:06 +00002860/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002861///
Dan Gohman475871a2008-07-27 21:46:04 +00002862static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
Dan Gohman707e0182008-04-12 04:36:06 +00002863 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002864 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002865 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2866}
2867
Evan Chengf0df0312008-05-15 08:39:06 +00002868/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2869///
Dan Gohman475871a2008-07-27 21:46:04 +00002870static bool isMemSrcFromString(SDValue Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002871 unsigned SrcDelta = 0;
2872 GlobalAddressSDNode *G = NULL;
2873 if (Src.getOpcode() == ISD::GlobalAddress)
2874 G = cast<GlobalAddressSDNode>(Src);
2875 else if (Src.getOpcode() == ISD::ADD &&
2876 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2877 Src.getOperand(1).getOpcode() == ISD::Constant) {
2878 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002879 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00002880 }
2881 if (!G)
2882 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002883
Evan Chengf0df0312008-05-15 08:39:06 +00002884 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Evan Cheng0ff39b32008-06-30 07:31:25 +00002885 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2886 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002887
Evan Chengf0df0312008-05-15 08:39:06 +00002888 return false;
2889}
Dan Gohman707e0182008-04-12 04:36:06 +00002890
Evan Chengf0df0312008-05-15 08:39:06 +00002891/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2892/// to replace the memset / memcpy is below the threshold. It also returns the
2893/// types of the sequence of memory ops to perform memset / memcpy.
2894static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002895bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Dan Gohman475871a2008-07-27 21:46:04 +00002896 SDValue Dst, SDValue Src,
Evan Chengf0df0312008-05-15 08:39:06 +00002897 unsigned Limit, uint64_t Size, unsigned &Align,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002898 std::string &Str, bool &isSrcStr,
Evan Chengf0df0312008-05-15 08:39:06 +00002899 SelectionDAG &DAG,
2900 const TargetLowering &TLI) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00002901 isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002902 bool isSrcConst = isa<ConstantSDNode>(Src);
Evan Cheng0ff39b32008-06-30 07:31:25 +00002903 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
Chris Lattner7fe5e182008-10-28 07:10:51 +00002904 MVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002905 if (VT != MVT::iAny) {
2906 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002907 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002908 // If source is a string constant, this will require an unaligned load.
2909 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2910 if (Dst.getOpcode() != ISD::FrameIndex) {
2911 // Can't change destination alignment. It requires a unaligned store.
2912 if (AllowUnalign)
2913 VT = MVT::iAny;
2914 } else {
2915 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2916 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2917 if (MFI->isFixedObjectIndex(FI)) {
2918 // Can't change destination alignment. It requires a unaligned store.
2919 if (AllowUnalign)
2920 VT = MVT::iAny;
2921 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002922 // Give the stack frame object a larger alignment if needed.
2923 if (MFI->getObjectAlignment(FI) < NewAlign)
2924 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002925 Align = NewAlign;
2926 }
2927 }
2928 }
2929 }
2930
2931 if (VT == MVT::iAny) {
2932 if (AllowUnalign) {
2933 VT = MVT::i64;
2934 } else {
2935 switch (Align & 7) {
2936 case 0: VT = MVT::i64; break;
2937 case 4: VT = MVT::i32; break;
2938 case 2: VT = MVT::i16; break;
2939 default: VT = MVT::i8; break;
2940 }
2941 }
2942
Duncan Sands83ec4b62008-06-06 12:08:01 +00002943 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002944 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002945 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2946 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002947
Duncan Sands8e4eb092008-06-08 20:54:56 +00002948 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002949 VT = LVT;
2950 }
Dan Gohman707e0182008-04-12 04:36:06 +00002951
2952 unsigned NumMemOps = 0;
2953 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002954 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002955 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002956 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002957 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002958 VT = MVT::i64;
2959 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002960 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2961 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002962 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002963 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002964 VTSize >>= 1;
2965 }
Dan Gohman707e0182008-04-12 04:36:06 +00002966 }
Dan Gohman707e0182008-04-12 04:36:06 +00002967
2968 if (++NumMemOps > Limit)
2969 return false;
2970 MemOps.push_back(VT);
2971 Size -= VTSize;
2972 }
2973
2974 return true;
2975}
2976
Dan Gohman475871a2008-07-27 21:46:04 +00002977static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2978 SDValue Chain, SDValue Dst,
2979 SDValue Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002980 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002981 const Value *DstSV, uint64_t DstSVOff,
2982 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002983 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2984
Dan Gohman21323f32008-05-29 19:42:22 +00002985 // Expand memcpy to a series of load and store ops if the size operand falls
2986 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002987 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00002988 uint64_t Limit = -1ULL;
Dan Gohman707e0182008-04-12 04:36:06 +00002989 if (!AlwaysInline)
2990 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002991 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00002992 std::string Str;
2993 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00002994 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00002995 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00002996 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00002997
Dan Gohman707e0182008-04-12 04:36:06 +00002998
Evan Cheng0ff39b32008-06-30 07:31:25 +00002999 bool isZeroStr = CopyFromStr && Str.empty();
Dan Gohman475871a2008-07-27 21:46:04 +00003000 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00003001 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00003002 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003003 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 MVT VT = MemOps[i];
3005 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003006 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00003007
Evan Cheng0ff39b32008-06-30 07:31:25 +00003008 if (CopyFromStr && (isZeroStr || !VT.isVector())) {
Evan Chengf0df0312008-05-15 08:39:06 +00003009 // It's unlikely a store of a vector immediate can be done in a single
3010 // instruction. It would require a load from a constantpool first.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003011 // We also handle store a vector with all zero's.
3012 // FIXME: Handle other cases where store of vector immediate is done in
3013 // a single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00003014 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00003015 Store = DAG.getStore(Chain, Value,
3016 getMemBasePlusOffset(Dst, DstOff, DAG),
Evan Cheng1afe5c32008-07-09 06:38:06 +00003017 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00003018 } else {
3019 Value = DAG.getLoad(VT, Chain,
3020 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00003021 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00003022 Store = DAG.getStore(Chain, Value,
3023 getMemBasePlusOffset(Dst, DstOff, DAG),
3024 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00003025 }
3026 OutChains.push_back(Store);
3027 SrcOff += VTSize;
3028 DstOff += VTSize;
3029 }
3030
3031 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3032 &OutChains[0], OutChains.size());
3033}
3034
Dan Gohman475871a2008-07-27 21:46:04 +00003035static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
3036 SDValue Chain, SDValue Dst,
3037 SDValue Src, uint64_t Size,
Dan Gohman21323f32008-05-29 19:42:22 +00003038 unsigned Align, bool AlwaysInline,
3039 const Value *DstSV, uint64_t DstSVOff,
3040 const Value *SrcSV, uint64_t SrcSVOff){
3041 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3042
3043 // Expand memmove to a series of load and store ops if the size operand falls
3044 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003045 std::vector<MVT> MemOps;
Dan Gohmanca0a5d92008-10-03 17:56:45 +00003046 uint64_t Limit = -1ULL;
Dan Gohman21323f32008-05-29 19:42:22 +00003047 if (!AlwaysInline)
3048 Limit = TLI.getMaxStoresPerMemmove();
3049 unsigned DstAlign = Align; // Destination alignment can change.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003050 std::string Str;
3051 bool CopyFromStr;
Dan Gohman21323f32008-05-29 19:42:22 +00003052 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
Evan Cheng0ff39b32008-06-30 07:31:25 +00003053 Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003054 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003055
Dan Gohman21323f32008-05-29 19:42:22 +00003056 uint64_t SrcOff = 0, DstOff = 0;
3057
Dan Gohman475871a2008-07-27 21:46:04 +00003058 SmallVector<SDValue, 8> LoadValues;
3059 SmallVector<SDValue, 8> LoadChains;
3060 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003061 unsigned NumMemOps = MemOps.size();
3062 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003063 MVT VT = MemOps[i];
3064 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003065 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003066
3067 Value = DAG.getLoad(VT, Chain,
3068 getMemBasePlusOffset(Src, SrcOff, DAG),
3069 SrcSV, SrcSVOff + SrcOff, false, Align);
3070 LoadValues.push_back(Value);
3071 LoadChains.push_back(Value.getValue(1));
3072 SrcOff += VTSize;
3073 }
3074 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3075 &LoadChains[0], LoadChains.size());
3076 OutChains.clear();
3077 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003078 MVT VT = MemOps[i];
3079 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003080 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003081
3082 Store = DAG.getStore(Chain, LoadValues[i],
3083 getMemBasePlusOffset(Dst, DstOff, DAG),
3084 DstSV, DstSVOff + DstOff, false, DstAlign);
3085 OutChains.push_back(Store);
3086 DstOff += VTSize;
3087 }
3088
3089 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3090 &OutChains[0], OutChains.size());
3091}
3092
Dan Gohman475871a2008-07-27 21:46:04 +00003093static SDValue getMemsetStores(SelectionDAG &DAG,
3094 SDValue Chain, SDValue Dst,
3095 SDValue Src, uint64_t Size,
Dan Gohman707e0182008-04-12 04:36:06 +00003096 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003097 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003098 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3099
3100 // Expand memset to a series of load/store ops if the size operand
3101 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003102 std::vector<MVT> MemOps;
Evan Cheng0ff39b32008-06-30 07:31:25 +00003103 std::string Str;
3104 bool CopyFromStr;
Evan Chengf0df0312008-05-15 08:39:06 +00003105 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
Evan Cheng0ff39b32008-06-30 07:31:25 +00003106 Size, Align, Str, CopyFromStr, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003107 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003108
Dan Gohman475871a2008-07-27 21:46:04 +00003109 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003110 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003111
3112 unsigned NumMemOps = MemOps.size();
3113 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003114 MVT VT = MemOps[i];
3115 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003116 SDValue Value = getMemsetValue(Src, VT, DAG);
3117 SDValue Store = DAG.getStore(Chain, Value,
Chris Lattner7fe5e182008-10-28 07:10:51 +00003118 getMemBasePlusOffset(Dst, DstOff, DAG),
3119 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003120 OutChains.push_back(Store);
3121 DstOff += VTSize;
3122 }
3123
3124 return DAG.getNode(ISD::TokenFactor, MVT::Other,
3125 &OutChains[0], OutChains.size());
3126}
3127
Dan Gohman475871a2008-07-27 21:46:04 +00003128SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3129 SDValue Src, SDValue Size,
3130 unsigned Align, bool AlwaysInline,
3131 const Value *DstSV, uint64_t DstSVOff,
3132 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003133
3134 // Check to see if we should lower the memcpy to loads and stores first.
3135 // For cases within the target-specified limits, this is the best choice.
3136 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3137 if (ConstantSize) {
3138 // Memcpy with size zero? Just return the original chain.
3139 if (ConstantSize->isNullValue())
3140 return Chain;
3141
Dan Gohman475871a2008-07-27 21:46:04 +00003142 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003143 getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3144 ConstantSize->getZExtValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00003145 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003146 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003147 return Result;
3148 }
3149
3150 // Then check to see if we should lower the memcpy with target-specific
3151 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003152 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003153 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3154 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00003155 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003156 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003157 return Result;
3158
3159 // If we really need inline code and the target declined to provide it,
3160 // use a (potentially long) sequence of loads and stores.
3161 if (AlwaysInline) {
3162 assert(ConstantSize && "AlwaysInline requires a constant size!");
3163 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003164 ConstantSize->getZExtValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00003165 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00003166 }
3167
3168 // Emit a library call.
3169 TargetLowering::ArgListTy Args;
3170 TargetLowering::ArgListEntry Entry;
3171 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3172 Entry.Node = Dst; Args.push_back(Entry);
3173 Entry.Node = Src; Args.push_back(Entry);
3174 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003175 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003176 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003177 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003178 getExternalSymbol("memcpy", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003179 Args, *this);
3180 return CallResult.second;
3181}
3182
Dan Gohman475871a2008-07-27 21:46:04 +00003183SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3184 SDValue Src, SDValue Size,
3185 unsigned Align,
3186 const Value *DstSV, uint64_t DstSVOff,
3187 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003188
Dan Gohman21323f32008-05-29 19:42:22 +00003189 // Check to see if we should lower the memmove to loads and stores first.
3190 // For cases within the target-specified limits, this is the best choice.
3191 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3192 if (ConstantSize) {
3193 // Memmove with size zero? Just return the original chain.
3194 if (ConstantSize->isNullValue())
3195 return Chain;
3196
Dan Gohman475871a2008-07-27 21:46:04 +00003197 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003198 getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3199 ConstantSize->getZExtValue(),
Dan Gohman21323f32008-05-29 19:42:22 +00003200 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003201 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003202 return Result;
3203 }
Dan Gohman707e0182008-04-12 04:36:06 +00003204
3205 // Then check to see if we should lower the memmove with target-specific
3206 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003207 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003208 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00003209 DstSV, DstSVOff, SrcSV, SrcSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003210 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003211 return Result;
3212
3213 // Emit a library call.
3214 TargetLowering::ArgListTy Args;
3215 TargetLowering::ArgListEntry Entry;
3216 Entry.Ty = TLI.getTargetData()->getIntPtrType();
3217 Entry.Node = Dst; Args.push_back(Entry);
3218 Entry.Node = Src; Args.push_back(Entry);
3219 Entry.Node = Size; Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003220 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003221 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003222 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003223 getExternalSymbol("memmove", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003224 Args, *this);
3225 return CallResult.second;
3226}
3227
Dan Gohman475871a2008-07-27 21:46:04 +00003228SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3229 SDValue Src, SDValue Size,
3230 unsigned Align,
3231 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00003232
3233 // Check to see if we should lower the memset to stores first.
3234 // For cases within the target-specified limits, this is the best choice.
3235 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3236 if (ConstantSize) {
3237 // Memset with size zero? Just return the original chain.
3238 if (ConstantSize->isNullValue())
3239 return Chain;
3240
Dan Gohman475871a2008-07-27 21:46:04 +00003241 SDValue Result =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003242 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3243 Align, DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003244 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003245 return Result;
3246 }
3247
3248 // Then check to see if we should lower the memset with target-specific
3249 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003250 SDValue Result =
Dan Gohman707e0182008-04-12 04:36:06 +00003251 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Bill Wendling6158d842008-10-01 00:59:58 +00003252 DstSV, DstSVOff);
Gabor Greifba36cb52008-08-28 21:40:38 +00003253 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003254 return Result;
3255
3256 // Emit a library call.
3257 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3258 TargetLowering::ArgListTy Args;
3259 TargetLowering::ArgListEntry Entry;
3260 Entry.Node = Dst; Entry.Ty = IntPtrTy;
3261 Args.push_back(Entry);
3262 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00003263 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00003264 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3265 else
3266 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3267 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3268 Args.push_back(Entry);
3269 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3270 Args.push_back(Entry);
Dan Gohman475871a2008-07-27 21:46:04 +00003271 std::pair<SDValue,SDValue> CallResult =
Dan Gohman707e0182008-04-12 04:36:06 +00003272 TLI.LowerCallTo(Chain, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003273 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003274 getExternalSymbol("memset", TLI.getPointerTy()),
Dan Gohman707e0182008-04-12 04:36:06 +00003275 Args, *this);
3276 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003277}
3278
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003279SDValue SelectionDAG::getAtomic(unsigned Opcode, MVT MemVT,
3280 SDValue Chain,
Dan Gohman475871a2008-07-27 21:46:04 +00003281 SDValue Ptr, SDValue Cmp,
3282 SDValue Swp, const Value* PtrVal,
3283 unsigned Alignment) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003284 assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003285 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003286
3287 MVT VT = Cmp.getValueType();
3288
3289 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003290 Alignment = getMVTAlignment(MemVT);
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003291
3292 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003293 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003294 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003295 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003296 void* IP = 0;
3297 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003298 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003299 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003300 new (N) AtomicSDNode(Opcode, VTs, MemVT,
3301 Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003302 CSEMap.InsertNode(N, IP);
3303 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003304 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003305}
3306
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003307SDValue SelectionDAG::getAtomic(unsigned Opcode, MVT MemVT,
3308 SDValue Chain,
Dan Gohman475871a2008-07-27 21:46:04 +00003309 SDValue Ptr, SDValue Val,
3310 const Value* PtrVal,
3311 unsigned Alignment) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003312 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
3313 Opcode == ISD::ATOMIC_LOAD_SUB ||
3314 Opcode == ISD::ATOMIC_LOAD_AND ||
3315 Opcode == ISD::ATOMIC_LOAD_OR ||
3316 Opcode == ISD::ATOMIC_LOAD_XOR ||
3317 Opcode == ISD::ATOMIC_LOAD_NAND ||
3318 Opcode == ISD::ATOMIC_LOAD_MIN ||
3319 Opcode == ISD::ATOMIC_LOAD_MAX ||
3320 Opcode == ISD::ATOMIC_LOAD_UMIN ||
3321 Opcode == ISD::ATOMIC_LOAD_UMAX ||
3322 Opcode == ISD::ATOMIC_SWAP) &&
3323 "Invalid Atomic Op");
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003324
3325 MVT VT = Val.getValueType();
3326
3327 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003328 Alignment = getMVTAlignment(MemVT);
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003329
3330 SDVTList VTs = getVTList(VT, MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003331 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00003332 SDValue Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003333 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003334 void* IP = 0;
3335 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003336 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003337 SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003338 new (N) AtomicSDNode(Opcode, VTs, MemVT,
3339 Chain, Ptr, Val, PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003340 CSEMap.InsertNode(N, IP);
3341 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003342 return SDValue(N, 0);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003343}
3344
Duncan Sands4bdcb612008-07-02 17:40:58 +00003345/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3346/// Allowed to return something different (and simpler) if Simplify is true.
Duncan Sandsaaffa052008-12-01 11:41:29 +00003347SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps) {
3348 if (NumOps == 1)
Duncan Sands4bdcb612008-07-02 17:40:58 +00003349 return Ops[0];
3350
3351 SmallVector<MVT, 4> VTs;
3352 VTs.reserve(NumOps);
3353 for (unsigned i = 0; i < NumOps; ++i)
3354 VTs.push_back(Ops[i].getValueType());
3355 return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3356}
3357
Dan Gohman475871a2008-07-27 21:46:04 +00003358SDValue
Mon P Wangc4d10212008-10-17 18:22:58 +00003359SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3360 const MVT *VTs, unsigned NumVTs,
3361 const SDValue *Ops, unsigned NumOps,
3362 MVT MemVT, const Value *srcValue, int SVOff,
3363 unsigned Align, bool Vol,
3364 bool ReadMem, bool WriteMem) {
3365 return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3366 MemVT, srcValue, SVOff, Align, Vol,
3367 ReadMem, WriteMem);
3368}
3369
3370SDValue
3371SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3372 const SDValue *Ops, unsigned NumOps,
3373 MVT MemVT, const Value *srcValue, int SVOff,
3374 unsigned Align, bool Vol,
3375 bool ReadMem, bool WriteMem) {
3376 // Memoize the node unless it returns a flag.
3377 MemIntrinsicSDNode *N;
3378 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3379 FoldingSetNodeID ID;
3380 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3381 void *IP = 0;
3382 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3383 return SDValue(E, 0);
3384
3385 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3386 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3387 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3388 CSEMap.InsertNode(N, IP);
3389 } else {
3390 N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3391 new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3392 srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3393 }
3394 AllNodes.push_back(N);
3395 return SDValue(N, 0);
3396}
3397
3398SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00003399SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003400 bool IsInreg, SDVTList VTs,
Dan Gohman095cc292008-09-13 01:54:27 +00003401 const SDValue *Operands, unsigned NumOperands) {
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003402 // Do not include isTailCall in the folding set profile.
3403 FoldingSetNodeID ID;
3404 AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3405 ID.AddInteger(CallingConv);
3406 ID.AddInteger(IsVarArgs);
3407 void *IP = 0;
3408 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3409 // Instead of including isTailCall in the folding set, we just
3410 // set the flag of the existing node.
3411 if (!IsTailCall)
3412 cast<CallSDNode>(E)->setNotTailCall();
3413 return SDValue(E, 0);
3414 }
Dan Gohman095cc292008-09-13 01:54:27 +00003415 SDNode *N = NodeAllocator.Allocate<CallSDNode>();
Dale Johannesen86098bd2008-09-26 19:31:26 +00003416 new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00003417 VTs, Operands, NumOperands);
Dan Gohman5eb0cec2008-09-15 19:46:03 +00003418 CSEMap.InsertNode(N, IP);
Dan Gohman095cc292008-09-13 01:54:27 +00003419 AllNodes.push_back(N);
3420 return SDValue(N, 0);
3421}
3422
3423SDValue
Duncan Sandse10efce2008-03-28 09:45:24 +00003424SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Dan Gohman475871a2008-07-27 21:46:04 +00003425 MVT VT, SDValue Chain,
3426 SDValue Ptr, SDValue Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003427 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003428 bool isVolatile, unsigned Alignment) {
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003429 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3430 Alignment = getMVTAlignment(VT);
Evan Cheng466685d2006-10-09 20:57:25 +00003431
Duncan Sands14ea39c2008-03-27 20:23:40 +00003432 if (VT == EVT) {
3433 ExtType = ISD::NON_EXTLOAD;
3434 } else if (ExtType == ISD::NON_EXTLOAD) {
3435 assert(VT == EVT && "Non-extending load from different memory type!");
3436 } else {
3437 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003438 if (VT.isVector())
Dan Gohman7f8613e2008-08-14 20:04:46 +00003439 assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3440 "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003441 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003442 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003443 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003444 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003445 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003446 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003447 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003448 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003449
3450 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003451 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003452 "Unindexed load with an offset!");
3453
3454 SDVTList VTs = Indexed ?
3455 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003456 SDValue Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003457 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003458 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003459 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003460 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003461 ID.AddInteger(EVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003462 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng466685d2006-10-09 20:57:25 +00003463 void *IP = 0;
3464 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003465 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003466 SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003467 new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3468 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003469 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003470 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003471 return SDValue(N, 0);
Evan Cheng7038daf2005-12-10 00:37:58 +00003472}
3473
Dan Gohman475871a2008-07-27 21:46:04 +00003474SDValue SelectionDAG::getLoad(MVT VT,
3475 SDValue Chain, SDValue Ptr,
3476 const Value *SV, int SVOffset,
3477 bool isVolatile, unsigned Alignment) {
3478 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003479 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3480 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003481}
3482
Dan Gohman475871a2008-07-27 21:46:04 +00003483SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3484 SDValue Chain, SDValue Ptr,
3485 const Value *SV,
3486 int SVOffset, MVT EVT,
3487 bool isVolatile, unsigned Alignment) {
3488 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003489 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3490 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003491}
3492
Dan Gohman475871a2008-07-27 21:46:04 +00003493SDValue
3494SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3495 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003496 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003497 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3498 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003499 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3500 LD->getChain(), Base, Offset, LD->getSrcValue(),
3501 LD->getSrcValueOffset(), LD->getMemoryVT(),
3502 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003503}
3504
Dan Gohman475871a2008-07-27 21:46:04 +00003505SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3506 SDValue Ptr, const Value *SV, int SVOffset,
3507 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003508 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003509
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003510 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3511 Alignment = getMVTAlignment(VT);
3512
Evan Chengad071e12006-10-05 22:57:11 +00003513 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003514 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3515 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003516 FoldingSetNodeID ID;
3517 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003518 ID.AddInteger(ISD::UNINDEXED);
3519 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003520 ID.AddInteger(VT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003521 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Chengad071e12006-10-05 22:57:11 +00003522 void *IP = 0;
3523 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003524 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003525 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003526 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3527 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003528 CSEMap.InsertNode(N, IP);
3529 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003530 return SDValue(N, 0);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003531}
3532
Dan Gohman475871a2008-07-27 21:46:04 +00003533SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3534 SDValue Ptr, const Value *SV,
3535 int SVOffset, MVT SVT,
3536 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003537 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003538
3539 if (VT == SVT)
3540 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003541
Duncan Sands8e4eb092008-06-08 20:54:56 +00003542 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003543 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003544 "Can't do FP-INT conversion!");
3545
Dan Gohman9c6e70e2008-07-08 23:46:32 +00003546 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3547 Alignment = getMVTAlignment(VT);
3548
Evan Cheng8b2794a2006-10-13 21:14:26 +00003549 SDVTList VTs = getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003550 SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3551 SDValue Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003552 FoldingSetNodeID ID;
3553 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003554 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003555 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003556 ID.AddInteger(SVT.getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003557 ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003558 void *IP = 0;
3559 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003560 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003561 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003562 new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3563 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003564 CSEMap.InsertNode(N, IP);
3565 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003566 return SDValue(N, 0);
Evan Chengad071e12006-10-05 22:57:11 +00003567}
3568
Dan Gohman475871a2008-07-27 21:46:04 +00003569SDValue
3570SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3571 SDValue Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003572 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3573 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3574 "Store is already a indexed store!");
3575 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00003576 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
Evan Cheng9109fb12006-11-05 09:30:09 +00003577 FoldingSetNodeID ID;
3578 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3579 ID.AddInteger(AM);
3580 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003581 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmanb8d2f552008-08-20 15:58:01 +00003582 ID.AddInteger(ST->getRawFlags());
Evan Cheng9109fb12006-11-05 09:30:09 +00003583 void *IP = 0;
3584 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003585 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003586 SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003587 new (N) StoreSDNode(Ops, VTs, AM,
3588 ST->isTruncatingStore(), ST->getMemoryVT(),
3589 ST->getSrcValue(), ST->getSrcValueOffset(),
3590 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003591 CSEMap.InsertNode(N, IP);
3592 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00003593 return SDValue(N, 0);
Evan Cheng9109fb12006-11-05 09:30:09 +00003594}
3595
Dan Gohman475871a2008-07-27 21:46:04 +00003596SDValue SelectionDAG::getVAArg(MVT VT,
3597 SDValue Chain, SDValue Ptr,
3598 SDValue SV) {
3599 SDValue Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003600 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003601}
3602
Dan Gohman475871a2008-07-27 21:46:04 +00003603SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3604 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003605 switch (NumOps) {
3606 case 0: return getNode(Opcode, VT);
Dan Gohman475871a2008-07-27 21:46:04 +00003607 case 1: return getNode(Opcode, VT, Ops[0]);
3608 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3609 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003610 default: break;
3611 }
3612
Dan Gohman475871a2008-07-27 21:46:04 +00003613 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003614 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00003615 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3616 return getNode(Opcode, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003617}
3618
Dan Gohman475871a2008-07-27 21:46:04 +00003619SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3620 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003621 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003622 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003623 case 1: return getNode(Opcode, VT, Ops[0]);
3624 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3625 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003626 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003627 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003628
Chris Lattneref847df2005-04-09 03:27:28 +00003629 switch (Opcode) {
3630 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003631 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003632 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003633 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3634 "LHS and RHS of condition must have same type!");
3635 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3636 "True and False arms of SelectCC must have same type!");
3637 assert(Ops[2].getValueType() == VT &&
3638 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003639 break;
3640 }
3641 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003642 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003643 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3644 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003645 break;
3646 }
Chris Lattneref847df2005-04-09 03:27:28 +00003647 }
3648
Chris Lattner385328c2005-05-14 07:42:29 +00003649 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003650 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003651 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003652 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003653 FoldingSetNodeID ID;
3654 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003655 void *IP = 0;
3656 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003657 return SDValue(E, 0);
Dan Gohmanfed90b62008-07-28 21:51:04 +00003658 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003659 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003660 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003661 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003662 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003663 new (N) SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003664 }
Chris Lattneref847df2005-04-09 03:27:28 +00003665 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003666#ifndef NDEBUG
3667 VerifyNode(N);
3668#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003669 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003670}
3671
Dan Gohman475871a2008-07-27 21:46:04 +00003672SDValue SelectionDAG::getNode(unsigned Opcode,
3673 const std::vector<MVT> &ResultTys,
3674 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003675 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3676 Ops, NumOps);
3677}
3678
Dan Gohman475871a2008-07-27 21:46:04 +00003679SDValue SelectionDAG::getNode(unsigned Opcode,
3680 const MVT *VTs, unsigned NumVTs,
3681 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003682 if (NumVTs == 1)
3683 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003684 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3685}
3686
Dan Gohman475871a2008-07-27 21:46:04 +00003687SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3688 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003689 if (VTList.NumVTs == 1)
3690 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003691
Chris Lattner5f056bf2005-07-10 01:55:33 +00003692 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003693 // FIXME: figure out how to safely handle things like
3694 // int foo(int x) { return 1 << (x & 255); }
3695 // int bar() { return foo(256); }
3696#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003697 case ISD::SRA_PARTS:
3698 case ISD::SRL_PARTS:
3699 case ISD::SHL_PARTS:
3700 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003701 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003702 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3703 else if (N3.getOpcode() == ISD::AND)
3704 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3705 // If the and is only masking out bits that cannot effect the shift,
3706 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003707 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003708 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3709 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3710 }
3711 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003712#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003713 }
Chris Lattner89c34632005-05-14 06:20:26 +00003714
Chris Lattner43247a12005-08-25 19:12:10 +00003715 // Memoize the node unless it returns a flag.
3716 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003717 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003718 FoldingSetNodeID ID;
3719 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003720 void *IP = 0;
3721 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003722 return SDValue(E, 0);
Dan Gohman0e5f1302008-07-07 23:02:41 +00003723 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003724 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003725 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3726 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003727 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003728 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3729 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003730 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003731 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3732 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003733 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003734 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3735 }
Chris Lattnera5682852006-08-07 23:03:03 +00003736 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003737 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00003738 if (NumOps == 1) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003739 N = NodeAllocator.Allocate<UnarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003740 new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3741 } else if (NumOps == 2) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003742 N = NodeAllocator.Allocate<BinarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003743 new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3744 } else if (NumOps == 3) {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003745 N = NodeAllocator.Allocate<TernarySDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003746 new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3747 } else {
Dan Gohmanfed90b62008-07-28 21:51:04 +00003748 N = NodeAllocator.Allocate<SDNode>();
Dan Gohman0e5f1302008-07-07 23:02:41 +00003749 new (N) SDNode(Opcode, VTList, Ops, NumOps);
3750 }
Chris Lattner43247a12005-08-25 19:12:10 +00003751 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003752 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003753#ifndef NDEBUG
3754 VerifyNode(N);
3755#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003756 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00003757}
3758
Dan Gohman475871a2008-07-27 21:46:04 +00003759SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00003760 return getNode(Opcode, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003761}
3762
Dan Gohman475871a2008-07-27 21:46:04 +00003763SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3764 SDValue N1) {
3765 SDValue Ops[] = { N1 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003766 return getNode(Opcode, VTList, Ops, 1);
3767}
3768
Dan Gohman475871a2008-07-27 21:46:04 +00003769SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3770 SDValue N1, SDValue N2) {
3771 SDValue Ops[] = { N1, N2 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003772 return getNode(Opcode, VTList, Ops, 2);
3773}
3774
Dan Gohman475871a2008-07-27 21:46:04 +00003775SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3776 SDValue N1, SDValue N2, SDValue N3) {
3777 SDValue Ops[] = { N1, N2, N3 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003778 return getNode(Opcode, VTList, Ops, 3);
3779}
3780
Dan Gohman475871a2008-07-27 21:46:04 +00003781SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3782 SDValue N1, SDValue N2, SDValue N3,
3783 SDValue N4) {
3784 SDValue Ops[] = { N1, N2, N3, N4 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003785 return getNode(Opcode, VTList, Ops, 4);
3786}
3787
Dan Gohman475871a2008-07-27 21:46:04 +00003788SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3789 SDValue N1, SDValue N2, SDValue N3,
3790 SDValue N4, SDValue N5) {
3791 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Dan Gohman08ce9762007-10-08 15:49:58 +00003792 return getNode(Opcode, VTList, Ops, 5);
3793}
3794
Duncan Sands83ec4b62008-06-06 12:08:01 +00003795SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003796 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003797}
3798
Duncan Sands83ec4b62008-06-06 12:08:01 +00003799SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00003800 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3801 E = VTList.rend(); I != E; ++I)
3802 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3803 return *I;
3804
3805 MVT *Array = Allocator.Allocate<MVT>(2);
3806 Array[0] = VT1;
3807 Array[1] = VT2;
3808 SDVTList Result = makeVTList(Array, 2);
3809 VTList.push_back(Result);
3810 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00003811}
Dan Gohmane8be6c62008-07-17 19:10:17 +00003812
3813SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3814 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3815 E = VTList.rend(); I != E; ++I)
3816 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3817 I->VTs[2] == VT3)
3818 return *I;
3819
3820 MVT *Array = Allocator.Allocate<MVT>(3);
3821 Array[0] = VT1;
3822 Array[1] = VT2;
3823 Array[2] = VT3;
3824 SDVTList Result = makeVTList(Array, 3);
3825 VTList.push_back(Result);
3826 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00003827}
3828
Bill Wendling13d6d442008-12-01 23:28:22 +00003829SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3, MVT VT4) {
3830 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3831 E = VTList.rend(); I != E; ++I)
3832 if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3833 I->VTs[2] == VT3 && I->VTs[3] == VT4)
3834 return *I;
3835
3836 MVT *Array = Allocator.Allocate<MVT>(3);
3837 Array[0] = VT1;
3838 Array[1] = VT2;
3839 Array[2] = VT3;
3840 Array[3] = VT4;
3841 SDVTList Result = makeVTList(Array, 4);
3842 VTList.push_back(Result);
3843 return Result;
3844}
3845
Duncan Sands83ec4b62008-06-06 12:08:01 +00003846SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003847 switch (NumVTs) {
3848 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003849 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003850 case 2: return getVTList(VTs[0], VTs[1]);
3851 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3852 default: break;
3853 }
3854
Dan Gohmane8be6c62008-07-17 19:10:17 +00003855 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3856 E = VTList.rend(); I != E; ++I) {
3857 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3858 continue;
Chris Lattner70046e92006-08-15 17:46:01 +00003859
3860 bool NoMatch = false;
3861 for (unsigned i = 2; i != NumVTs; ++i)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003862 if (VTs[i] != I->VTs[i]) {
Chris Lattner70046e92006-08-15 17:46:01 +00003863 NoMatch = true;
3864 break;
3865 }
3866 if (!NoMatch)
Dan Gohmane8be6c62008-07-17 19:10:17 +00003867 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00003868 }
3869
Dan Gohmane8be6c62008-07-17 19:10:17 +00003870 MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3871 std::copy(VTs, VTs+NumVTs, Array);
3872 SDVTList Result = makeVTList(Array, NumVTs);
3873 VTList.push_back(Result);
3874 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003875}
3876
3877
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003878/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3879/// specified operands. If the resultant node already exists in the DAG,
3880/// this does not modify the specified node, instead it returns the node that
3881/// already exists. If the resultant node does not exist in the DAG, the
3882/// input node is returned. As a degenerate case, if you specify the same
3883/// input operands as the node already has, the input node is returned.
Dan Gohman475871a2008-07-27 21:46:04 +00003884SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003885 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003886 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3887
3888 // Check to see if there is no change.
3889 if (Op == N->getOperand(0)) return InN;
3890
3891 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003892 void *InsertPos = 0;
3893 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003894 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003895
Dan Gohman79acd2b2008-07-21 22:38:59 +00003896 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003897 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003898 if (!RemoveNodeFromCSEMaps(N))
3899 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003900
3901 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003902 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003903 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003904 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003905 Op.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003906
3907 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003908 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003909 return InN;
3910}
3911
Dan Gohman475871a2008-07-27 21:46:04 +00003912SDValue SelectionDAG::
3913UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003914 SDNode *N = InN.getNode();
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003915 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3916
3917 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003918 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3919 return InN; // No operands changed, just return the input node.
3920
3921 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003922 void *InsertPos = 0;
3923 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003924 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003925
Dan Gohman79acd2b2008-07-21 22:38:59 +00003926 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003927 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003928 if (!RemoveNodeFromCSEMaps(N))
3929 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003930
3931 // Now we update the operands.
3932 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003933 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003934 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003935 N->OperandList[0].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003936 Op1.getNode()->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003937 }
3938 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003939 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003940 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003941 N->OperandList[1].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003942 Op2.getNode()->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003943 }
3944
3945 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003946 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003947 return InN;
3948}
3949
Dan Gohman475871a2008-07-27 21:46:04 +00003950SDValue SelectionDAG::
3951UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3952 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003953 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003954}
3955
Dan Gohman475871a2008-07-27 21:46:04 +00003956SDValue SelectionDAG::
3957UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3958 SDValue Op3, SDValue Op4) {
3959 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003960 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003961}
3962
Dan Gohman475871a2008-07-27 21:46:04 +00003963SDValue SelectionDAG::
3964UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3965 SDValue Op3, SDValue Op4, SDValue Op5) {
3966 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003967 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003968}
3969
Dan Gohman475871a2008-07-27 21:46:04 +00003970SDValue SelectionDAG::
3971UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003972 SDNode *N = InN.getNode();
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003973 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003974 "Update with wrong number of operands");
3975
3976 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003977 bool AnyChange = false;
3978 for (unsigned i = 0; i != NumOps; ++i) {
3979 if (Ops[i] != N->getOperand(i)) {
3980 AnyChange = true;
3981 break;
3982 }
3983 }
3984
3985 // No operands changed, just return the input node.
3986 if (!AnyChange) return InN;
3987
3988 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003989 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003990 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Gabor Greif99a6cb92008-08-26 22:36:50 +00003991 return SDValue(Existing, InN.getResNo());
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003992
Dan Gohman7ceda162008-05-02 00:05:03 +00003993 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003994 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00003995 if (!RemoveNodeFromCSEMaps(N))
3996 InsertPos = 0;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003997
3998 // Now we update the operands.
3999 for (unsigned i = 0; i != NumOps; ++i) {
4000 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00004001 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004002 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004003 N->OperandList[i].setUser(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00004004 Ops[i].getNode()->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004005 }
4006 }
4007
4008 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00004009 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004010 return InN;
4011}
4012
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004013/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00004014/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004015void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004016 // Unlike the code in MorphNodeTo that does this, we don't need to
4017 // watch for dead nodes here.
4018 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
4019 I->getVal()->removeUser(std::distance(op_begin(), I), this);
4020
4021 NumOperands = 0;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00004022}
Chris Lattner149c58c2005-08-16 18:17:10 +00004023
Dan Gohmane8be6c62008-07-17 19:10:17 +00004024/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4025/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004026///
Dan Gohmane8be6c62008-07-17 19:10:17 +00004027SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004028 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004029 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004030 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00004031}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004032
Dan Gohmane8be6c62008-07-17 19:10:17 +00004033SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004034 MVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004035 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004036 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004037 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00004038}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004039
Dan Gohmane8be6c62008-07-17 19:10:17 +00004040SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004041 MVT VT, SDValue Op1,
4042 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004043 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004044 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004045 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00004046}
Chris Lattner0fb094f2005-11-19 01:44:53 +00004047
Dan Gohmane8be6c62008-07-17 19:10:17 +00004048SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004049 MVT VT, SDValue Op1,
4050 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004051 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004052 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004053 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00004054}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00004055
Dan Gohmane8be6c62008-07-17 19:10:17 +00004056SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004057 MVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00004058 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004059 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004060 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004061}
4062
Dan Gohmane8be6c62008-07-17 19:10:17 +00004063SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004064 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004065 unsigned NumOps) {
4066 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004067 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004068}
4069
Dan Gohmane8be6c62008-07-17 19:10:17 +00004070SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004071 MVT VT1, MVT VT2) {
4072 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004073 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00004074}
4075
Dan Gohmane8be6c62008-07-17 19:10:17 +00004076SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004077 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004078 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004079 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004080 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00004081}
4082
Bill Wendling13d6d442008-12-01 23:28:22 +00004083SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4084 MVT VT1, MVT VT2, MVT VT3, MVT VT4,
4085 const SDValue *Ops, unsigned NumOps) {
4086 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
4087 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4088}
4089
Dan Gohmane8be6c62008-07-17 19:10:17 +00004090SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohmancd920d92008-07-02 23:23:19 +00004091 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004092 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004093 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004094 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004095 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00004096}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00004097
Dan Gohmane8be6c62008-07-17 19:10:17 +00004098SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004099 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004100 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004101 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004102 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004103 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00004104}
4105
Dan Gohmane8be6c62008-07-17 19:10:17 +00004106SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004107 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004108 SDValue Op1, SDValue Op2,
4109 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00004110 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004111 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004112 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00004113}
4114
Dan Gohmane8be6c62008-07-17 19:10:17 +00004115SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Bill Wendling13d6d442008-12-01 23:28:22 +00004116 MVT VT1, MVT VT2, MVT VT3,
4117 SDValue Op1, SDValue Op2,
4118 SDValue Op3) {
4119 SDVTList VTs = getVTList(VT1, VT2, VT3);
4120 SDValue Ops[] = { Op1, Op2, Op3 };
4121 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4122}
4123
4124SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00004125 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00004126 unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004127 return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4128}
4129
4130SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4131 MVT VT) {
4132 SDVTList VTs = getVTList(VT);
4133 return MorphNodeTo(N, Opc, VTs, 0, 0);
4134}
4135
4136SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004137 MVT VT, SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004138 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004139 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004140 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4141}
4142
4143SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004144 MVT VT, SDValue Op1,
4145 SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004146 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004147 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004148 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4149}
4150
4151SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004152 MVT VT, SDValue Op1,
4153 SDValue Op2, SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004154 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00004155 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004156 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4157}
4158
4159SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004160 MVT VT, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004161 unsigned NumOps) {
4162 SDVTList VTs = getVTList(VT);
4163 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4164}
4165
4166SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004167 MVT VT1, MVT VT2, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004168 unsigned NumOps) {
4169 SDVTList VTs = getVTList(VT1, VT2);
4170 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4171}
4172
4173SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4174 MVT VT1, MVT VT2) {
4175 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004176 return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004177}
4178
4179SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4180 MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004181 const SDValue *Ops, unsigned NumOps) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004182 SDVTList VTs = getVTList(VT1, VT2, VT3);
4183 return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4184}
4185
4186SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4187 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004188 SDValue Op1) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004189 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004190 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004191 return MorphNodeTo(N, Opc, VTs, Ops, 1);
4192}
4193
4194SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4195 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004196 SDValue Op1, SDValue Op2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004197 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004198 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004199 return MorphNodeTo(N, Opc, VTs, Ops, 2);
4200}
4201
4202SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4203 MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004204 SDValue Op1, SDValue Op2,
4205 SDValue Op3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004206 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004207 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00004208 return MorphNodeTo(N, Opc, VTs, Ops, 3);
4209}
4210
4211/// MorphNodeTo - These *mutate* the specified node to have the specified
4212/// return type, opcode, and operands.
4213///
4214/// Note that MorphNodeTo returns the resultant node. If there is already a
4215/// node of the specified opcode and operands, it returns that node instead of
4216/// the current one.
4217///
4218/// Using MorphNodeTo is faster than creating a new node and swapping it in
4219/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00004220/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00004221/// the node's users.
4222///
4223SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00004224 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004225 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00004226 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00004227 void *IP = 0;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004228 if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4229 FoldingSetNodeID ID;
4230 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4231 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4232 return ON;
4233 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00004234
Dan Gohman095cc292008-09-13 01:54:27 +00004235 if (!RemoveNodeFromCSEMaps(N))
4236 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00004237
Dan Gohmane8be6c62008-07-17 19:10:17 +00004238 // Start the morphing.
4239 N->NodeType = Opc;
4240 N->ValueList = VTs.VTs;
4241 N->NumValues = VTs.NumVTs;
4242
4243 // Clear the operands list, updating used nodes to remove this from their
4244 // use list. Keep track of any operands that become dead as a result.
4245 SmallPtrSet<SDNode*, 16> DeadNodeSet;
4246 for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4247 I != E; ++I) {
4248 SDNode *Used = I->getVal();
4249 Used->removeUser(std::distance(B, I), N);
4250 if (Used->use_empty())
4251 DeadNodeSet.insert(Used);
4252 }
4253
4254 // If NumOps is larger than the # of operands we currently have, reallocate
4255 // the operand list.
4256 if (NumOps > N->NumOperands) {
4257 if (N->OperandsNeedDelete)
4258 delete[] N->OperandList;
Bill Wendlinga1dc6022008-10-19 20:51:12 +00004259
Dan Gohmane8be6c62008-07-17 19:10:17 +00004260 if (N->isMachineOpcode()) {
4261 // We're creating a final node that will live unmorphed for the
Dan Gohmanf350b272008-08-23 02:25:05 +00004262 // remainder of the current SelectionDAG iteration, so we can allocate
4263 // the operands directly out of a pool with no recycling metadata.
4264 N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004265 N->OperandsNeedDelete = false;
4266 } else {
4267 N->OperandList = new SDUse[NumOps];
4268 N->OperandsNeedDelete = true;
4269 }
4270 }
4271
4272 // Assign the new operands.
4273 N->NumOperands = NumOps;
4274 for (unsigned i = 0, e = NumOps; i != e; ++i) {
4275 N->OperandList[i] = Ops[i];
4276 N->OperandList[i].setUser(N);
4277 SDNode *ToUse = N->OperandList[i].getVal();
4278 ToUse->addUser(i, N);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004279 }
4280
4281 // Delete any nodes that are still dead after adding the uses for the
4282 // new operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004283 SmallVector<SDNode *, 16> DeadNodes;
Dan Gohmane8be6c62008-07-17 19:10:17 +00004284 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4285 E = DeadNodeSet.end(); I != E; ++I)
4286 if ((*I)->use_empty())
4287 DeadNodes.push_back(*I);
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004288 RemoveDeadNodes(DeadNodes);
4289
Dan Gohmane8be6c62008-07-17 19:10:17 +00004290 if (IP)
4291 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00004292 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00004293}
4294
Chris Lattner0fb094f2005-11-19 01:44:53 +00004295
Evan Cheng6ae46c42006-02-09 07:15:23 +00004296/// getTargetNode - These are used for target selectors to create a new node
4297/// with specified return type(s), target opcode, and operands.
4298///
4299/// Note that getTargetNode returns the resultant node. If there is already a
4300/// node of the specified opcode and operands, it returns that node instead of
4301/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004302SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004303 return getNode(~Opcode, VT).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004304}
Dan Gohman475871a2008-07-27 21:46:04 +00004305SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004306 return getNode(~Opcode, VT, Op1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004307}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004308SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004309 SDValue Op1, SDValue Op2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004310 return getNode(~Opcode, VT, Op1, Op2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004311}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004312SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SDValue Op1, SDValue Op2,
4314 SDValue Op3) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004315 return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004316}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004317SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00004318 const SDValue *Ops, unsigned NumOps) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004319 return getNode(~Opcode, VT, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004320}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004321SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4322 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004323 SDValue Op;
Gabor Greifba36cb52008-08-28 21:40:38 +00004324 return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004325}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004326SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004327 MVT VT2, SDValue Op1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004328 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004329 return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004330}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004331SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004332 MVT VT2, SDValue Op1,
4333 SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004334 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004335 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004336 return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004337}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004338SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
Dan Gohman475871a2008-07-27 21:46:04 +00004339 MVT VT2, SDValue Op1,
4340 SDValue Op2, SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004341 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00004342 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004343 return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004344}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004345SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00004346 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004347 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004348 return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004349}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004350SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004351 SDValue Op1, SDValue Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004352 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004353 SDValue Ops[] = { Op1, Op2 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004354 return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004355}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004356SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004357 SDValue Op1, SDValue Op2,
4358 SDValue Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004359 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Dan Gohman475871a2008-07-27 21:46:04 +00004360 SDValue Ops[] = { Op1, Op2, Op3 };
Gabor Greifba36cb52008-08-28 21:40:38 +00004361 return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004362}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004363SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00004364 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004365 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Gabor Greifba36cb52008-08-28 21:40:38 +00004366 return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
Evan Cheng6ae46c42006-02-09 07:15:23 +00004367}
Duncan Sands83ec4b62008-06-06 12:08:01 +00004368SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4369 MVT VT2, MVT VT3, MVT VT4,
Dan Gohman475871a2008-07-27 21:46:04 +00004370 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004371 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00004372 VTList.push_back(VT1);
4373 VTList.push_back(VT2);
4374 VTList.push_back(VT3);
4375 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004376 const MVT *VTs = getNodeValueTypes(VTList);
Gabor Greifba36cb52008-08-28 21:40:38 +00004377 return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
Evan Cheng05e69c12007-09-12 23:39:49 +00004378}
Evan Cheng39305cf2007-10-05 01:10:49 +00004379SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Dan Gohmanf877b732008-07-09 00:00:42 +00004380 const std::vector<MVT> &ResultTys,
Dan Gohman475871a2008-07-27 21:46:04 +00004381 const SDValue *Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004382 const MVT *VTs = getNodeValueTypes(ResultTys);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004383 return getNode(~Opcode, VTs, ResultTys.size(),
Gabor Greifba36cb52008-08-28 21:40:38 +00004384 Ops, NumOps).getNode();
Evan Cheng39305cf2007-10-05 01:10:49 +00004385}
Evan Cheng6ae46c42006-02-09 07:15:23 +00004386
Evan Cheng08b11732008-03-22 01:55:50 +00004387/// getNodeIfExists - Get the specified node if it's already available, or
4388/// else return NULL.
4389SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00004390 const SDValue *Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00004391 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4392 FoldingSetNodeID ID;
4393 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4394 void *IP = 0;
4395 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4396 return E;
4397 }
4398 return NULL;
4399}
4400
Evan Cheng99157a02006-08-07 22:13:29 +00004401/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00004402/// This can cause recursive merging of nodes in the DAG.
4403///
Chris Lattner11d049c2008-02-03 03:35:22 +00004404/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00004405///
Dan Gohman475871a2008-07-27 21:46:04 +00004406void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004407 DAGUpdateListener *UpdateListener) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004408 SDNode *From = FromN.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004409 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004410 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00004411 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00004412
Dan Gohmandbe664a2009-01-19 21:44:21 +00004413 // Iterate over all the existing uses of From. This specifically avoids
Chris Lattnere70909b2009-01-22 07:21:55 +00004414 // visiting any new uses of From that arise while the replacement is
Dan Gohmandbe664a2009-01-19 21:44:21 +00004415 // happening, because any such uses would be the result of CSE: If an
4416 // existing node looks like From after one of its operands is replaced
4417 // by To, we don't want to replace of all its users with To too.
4418 // See PR3018 for more info.
4419 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
4420 while (UI != UE) {
Dan Gohman89684502008-07-27 20:43:25 +00004421 SDNode *U = *UI;
Dan Gohmandbe664a2009-01-19 21:44:21 +00004422 do ++UI; while (UI != UE && *UI == U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004423
Chris Lattner8b8749f2005-08-17 19:00:20 +00004424 // This node is about to morph, remove its old self from the CSE maps.
4425 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004426 int operandNum = 0;
4427 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4428 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004429 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004430 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00004431 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004432 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004433 To.getNode()->addUser(operandNum, U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004434 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004435
4436 // Now that we have modified U, add it back to the CSE maps. If it already
4437 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004438 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004439 ReplaceAllUsesWith(U, Existing, UpdateListener);
4440 // U is now dead. Inform the listener if it exists and delete it.
4441 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004442 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004443 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004444 } else {
4445 // If the node doesn't already exist, we updated it. Inform a listener if
4446 // it exists.
4447 if (UpdateListener)
4448 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004449 }
Chris Lattner8b52f212005-08-26 18:36:28 +00004450 }
4451}
4452
4453/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4454/// This can cause recursive merging of nodes in the DAG.
4455///
4456/// This version assumes From/To have matching types and numbers of result
4457/// values.
4458///
Chris Lattner1e111c72005-09-07 05:37:01 +00004459void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004460 DAGUpdateListener *UpdateListener) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004461 assert(From->getVTList().VTs == To->getVTList().VTs &&
4462 From->getNumValues() == To->getNumValues() &&
Chris Lattner8b52f212005-08-26 18:36:28 +00004463 "Cannot use this version of ReplaceAllUsesWith!");
Dan Gohmane8be6c62008-07-17 19:10:17 +00004464
4465 // Handle the trivial case.
4466 if (From == To)
4467 return;
4468
Dan Gohmandbe664a2009-01-19 21:44:21 +00004469 // Iterate over just the existing users of From. See the comments in
4470 // the ReplaceAllUsesWith above.
4471 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
4472 while (UI != UE) {
Dan Gohman89684502008-07-27 20:43:25 +00004473 SDNode *U = *UI;
Dan Gohmandbe664a2009-01-19 21:44:21 +00004474 do ++UI; while (UI != UE && *UI == U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004475
Chris Lattner8b52f212005-08-26 18:36:28 +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) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004482 From->removeUser(operandNum, U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004483 I->getSDValue().setNode(To);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004484 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00004485 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004486
Chris Lattner8b8749f2005-08-17 19:00:20 +00004487 // Now that we have modified U, add it back to the CSE maps. If it already
4488 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004489 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004490 ReplaceAllUsesWith(U, Existing, UpdateListener);
4491 // U is now dead. Inform the listener if it exists and delete it.
4492 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004493 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004494 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004495 } else {
4496 // If the node doesn't already exist, we updated it. Inform a listener if
4497 // it exists.
4498 if (UpdateListener)
4499 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004500 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00004501 }
4502}
4503
Chris Lattner8b52f212005-08-26 18:36:28 +00004504/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4505/// This can cause recursive merging of nodes in the DAG.
4506///
4507/// This version can replace From with any result values. To must match the
4508/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00004509void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Dan Gohman475871a2008-07-27 21:46:04 +00004510 const SDValue *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004511 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00004512 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Dan Gohman475871a2008-07-27 21:46:04 +00004513 return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004514
Dan Gohmandbe664a2009-01-19 21:44:21 +00004515 // Iterate over just the existing users of From. See the comments in
4516 // the ReplaceAllUsesWith above.
4517 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
4518 while (UI != UE) {
Dan Gohman89684502008-07-27 20:43:25 +00004519 SDNode *U = *UI;
Dan Gohmandbe664a2009-01-19 21:44:21 +00004520 do ++UI; while (UI != UE && *UI == U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004521
Chris Lattner7b2880c2005-08-24 22:44:39 +00004522 // This node is about to morph, remove its old self from the CSE maps.
4523 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00004524 int operandNum = 0;
4525 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4526 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004527 if (I->getVal() == From) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004528 const SDValue &ToOp = To[I->getSDValue().getResNo()];
Roman Levensteindc1adac2008-04-07 10:06:32 +00004529 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00004530 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004531 I->setUser(U);
Gabor Greifba36cb52008-08-28 21:40:38 +00004532 ToOp.getNode()->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00004533 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00004534
Chris Lattner7b2880c2005-08-24 22:44:39 +00004535 // Now that we have modified U, add it back to the CSE maps. If it already
4536 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00004537 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004538 ReplaceAllUsesWith(U, Existing, UpdateListener);
4539 // U is now dead. Inform the listener if it exists and delete it.
4540 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00004541 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00004542 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004543 } else {
4544 // If the node doesn't already exist, we updated it. Inform a listener if
4545 // it exists.
4546 if (UpdateListener)
4547 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004548 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004549 }
4550}
4551
Chris Lattner012f2412006-02-17 21:58:01 +00004552/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004553/// uses of other values produced by From.getVal() alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004554/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004555void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004556 DAGUpdateListener *UpdateListener){
Dan Gohmane8be6c62008-07-17 19:10:17 +00004557 // Handle the really simple, really trivial case efficiently.
4558 if (From == To) return;
4559
Chris Lattner012f2412006-02-17 21:58:01 +00004560 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00004561 if (From.getNode()->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004562 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004563 return;
4564 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004565
Gabor Greifba36cb52008-08-28 21:40:38 +00004566 // Get all of the users of From.getNode(). We want these in a nice,
Chris Lattnercf5640b2007-02-04 00:14:31 +00004567 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Gabor Greifba36cb52008-08-28 21:40:38 +00004568 SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00004569
4570 while (!Users.empty()) {
4571 // We know that this user uses some value of From. If it is the right
4572 // value, update it.
4573 SDNode *User = Users.back();
4574 Users.pop_back();
4575
Chris Lattner01d029b2007-10-15 06:10:22 +00004576 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004577 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004578 for (; Op != E; ++Op)
4579 if (*Op == From) break;
4580
4581 // If there are no matches, the user must use some other result of From.
4582 if (Op == E) continue;
4583
4584 // Okay, we know this user needs to be updated. Remove its old self
4585 // from the CSE maps.
4586 RemoveNodeFromCSEMaps(User);
4587
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004588 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004589 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004590 if (*Op == From) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004591 From.getNode()->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004592 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004593 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004594 To.getNode()->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004595 }
4596 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004597
4598 // Now that we have modified User, add it back to the CSE maps. If it
4599 // already exists there, recursively merge the results together.
4600 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004601 if (!Existing) {
4602 if (UpdateListener) UpdateListener->NodeUpdated(User);
4603 continue; // Continue on to next user.
4604 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004605
4606 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004607 // to replace the dead one with the existing one. This can cause
Dan Gohmane8be6c62008-07-17 19:10:17 +00004608 // recursive merging of other unrelated nodes down the line.
4609 ReplaceAllUsesWith(User, Existing, UpdateListener);
4610
4611 // User is now dead. Notify a listener if present.
4612 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4613 DeleteNodeNotInCSEMaps(User);
4614 }
4615}
4616
4617/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Gabor Greifba36cb52008-08-28 21:40:38 +00004618/// uses of other values produced by From.getVal() alone. The same value may
Dan Gohmane8be6c62008-07-17 19:10:17 +00004619/// appear in both the From and To list. The Deleted vector is
4620/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00004621void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4622 const SDValue *To,
Dan Gohmane8be6c62008-07-17 19:10:17 +00004623 unsigned Num,
4624 DAGUpdateListener *UpdateListener){
4625 // Handle the simple, trivial case efficiently.
4626 if (Num == 1)
4627 return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4628
4629 SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4630 for (unsigned i = 0; i != Num; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00004631 for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4632 E = From[i].getNode()->use_end(); UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004633 Users.push_back(std::make_pair(*UI, i));
Dan Gohmane8be6c62008-07-17 19:10:17 +00004634
4635 while (!Users.empty()) {
4636 // We know that this user uses some value of From. If it is the right
4637 // value, update it.
4638 SDNode *User = Users.back().first;
4639 unsigned i = Users.back().second;
4640 Users.pop_back();
4641
4642 // Scan for an operand that matches From.
4643 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4644 for (; Op != E; ++Op)
4645 if (*Op == From[i]) break;
4646
4647 // If there are no matches, the user must use some other result of From.
4648 if (Op == E) continue;
4649
4650 // Okay, we know this user needs to be updated. Remove its old self
4651 // from the CSE maps.
4652 RemoveNodeFromCSEMaps(User);
4653
4654 // Update all operands that match "From" in case there are multiple uses.
4655 for (; Op != E; ++Op) {
4656 if (*Op == From[i]) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004657 From[i].getNode()->removeUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004658 *Op = To[i];
4659 Op->setUser(User);
Gabor Greifba36cb52008-08-28 21:40:38 +00004660 To[i].getNode()->addUser(Op-User->op_begin(), User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004661 }
4662 }
4663
4664 // Now that we have modified User, add it back to the CSE maps. If it
4665 // already exists there, recursively merge the results together.
4666 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4667 if (!Existing) {
4668 if (UpdateListener) UpdateListener->NodeUpdated(User);
4669 continue; // Continue on to next user.
4670 }
4671
4672 // If there was already an existing matching node, use ReplaceAllUsesWith
4673 // to replace the dead one with the existing one. This can cause
4674 // recursive merging of other unrelated nodes down the line.
4675 ReplaceAllUsesWith(User, Existing, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004676
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004677 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004678 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004679 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004680 }
4681}
4682
Evan Chenge6f35d82006-08-01 08:20:41 +00004683/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004684/// based on their topological order. It returns the maximum id and a vector
4685/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00004686unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00004687
Dan Gohmanf06c8352008-09-30 18:30:35 +00004688 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004689
Dan Gohmanf06c8352008-09-30 18:30:35 +00004690 // SortedPos tracks the progress of the algorithm. Nodes before it are
4691 // sorted, nodes after it are unsorted. When the algorithm completes
4692 // it is at the end of the list.
4693 allnodes_iterator SortedPos = allnodes_begin();
4694
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004695 // Visit all the nodes. Move nodes with no operands to the front of
4696 // the list immediately. Annotate nodes that do have operands with their
Dan Gohmanf06c8352008-09-30 18:30:35 +00004697 // operand count. Before we do this, the Node Id fields of the nodes
4698 // may contain arbitrary values. After, the Node Id fields for nodes
4699 // before SortedPos will contain the topological sort index, and the
4700 // Node Id fields for nodes At SortedPos and after will contain the
4701 // count of outstanding operands.
4702 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4703 SDNode *N = I++;
4704 unsigned Degree = N->getNumOperands();
4705 if (Degree == 0) {
4706 // A node with no uses, add it to the result array immediately.
4707 N->setNodeId(DAGSize++);
4708 allnodes_iterator Q = N;
4709 if (Q != SortedPos)
4710 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4711 ++SortedPos;
4712 } else {
4713 // Temporarily use the Node Id as scratch space for the degree count.
4714 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00004715 }
4716 }
4717
Dan Gohmanf06c8352008-09-30 18:30:35 +00004718 // Visit all the nodes. As we iterate, moves nodes into sorted order,
4719 // such that by the time the end is reached all nodes will be sorted.
4720 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4721 SDNode *N = I;
4722 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4723 UI != UE; ++UI) {
4724 SDNode *P = *UI;
4725 unsigned Degree = P->getNodeId();
4726 --Degree;
4727 if (Degree == 0) {
4728 // All of P's operands are sorted, so P may sorted now.
4729 P->setNodeId(DAGSize++);
4730 if (P != SortedPos)
4731 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4732 ++SortedPos;
4733 } else {
4734 // Update P's outstanding operand count.
4735 P->setNodeId(Degree);
4736 }
4737 }
4738 }
4739
4740 assert(SortedPos == AllNodes.end() &&
4741 "Topological sort incomplete!");
4742 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4743 "First node in topological sort is not the entry token!");
4744 assert(AllNodes.front().getNodeId() == 0 &&
4745 "First node in topological sort has non-zero id!");
4746 assert(AllNodes.front().getNumOperands() == 0 &&
4747 "First node in topological sort has operands!");
4748 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4749 "Last node in topologic sort has unexpected id!");
4750 assert(AllNodes.back().use_empty() &&
4751 "Last node in topologic sort has users!");
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00004752 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohmanf06c8352008-09-30 18:30:35 +00004753 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00004754}
4755
4756
Evan Cheng091cba12006-07-27 06:39:06 +00004757
Jim Laskey58b968b2005-08-17 20:08:02 +00004758//===----------------------------------------------------------------------===//
4759// SDNode Class
4760//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004761
Chris Lattner48b85922007-02-04 02:41:42 +00004762HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00004763 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00004764}
4765
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004766GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Dan Gohman6520e202008-10-18 02:06:02 +00004767 MVT VT, int64_t o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004768 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004769 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004770 // Thread Local
4771 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4772 // Non Thread Local
4773 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4774 getSDVTList(VT)), Offset(o) {
4775 TheGlobal = const_cast<GlobalValue*>(GA);
4776}
Chris Lattner48b85922007-02-04 02:41:42 +00004777
Dan Gohman1ea58a52008-07-09 22:08:04 +00004778MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
Dan Gohman492f2762008-07-09 21:23:02 +00004779 const Value *srcValue, int SVO,
4780 unsigned alignment, bool vol)
Dan Gohman1ea58a52008-07-09 22:08:04 +00004781 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004782 Flags(encodeMemSDNodeFlags(vol, alignment)) {
Dan Gohman492f2762008-07-09 21:23:02 +00004783
4784 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4785 assert(getAlignment() == alignment && "Alignment representation error!");
4786 assert(isVolatile() == vol && "Volatile representation error!");
4787}
4788
Mon P Wangc4d10212008-10-17 18:22:58 +00004789MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4790 unsigned NumOps, MVT memvt, const Value *srcValue,
4791 int SVO, unsigned alignment, bool vol)
4792 : SDNode(Opc, VTs, Ops, NumOps),
4793 MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4794 Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4795 assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4796 assert(getAlignment() == alignment && "Alignment representation error!");
4797 assert(isVolatile() == vol && "Volatile representation error!");
4798}
4799
Dan Gohman36b5c132008-04-07 19:35:22 +00004800/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman1ea58a52008-07-09 22:08:04 +00004801/// reference performed by this memory reference.
4802MachineMemOperand MemSDNode::getMemOperand() const {
Dale Johannesenfea90882008-10-24 01:06:58 +00004803 int Flags = 0;
Dan Gohman1ea58a52008-07-09 22:08:04 +00004804 if (isa<LoadSDNode>(this))
4805 Flags = MachineMemOperand::MOLoad;
4806 else if (isa<StoreSDNode>(this))
4807 Flags = MachineMemOperand::MOStore;
Mon P Wangc4d10212008-10-17 18:22:58 +00004808 else if (isa<AtomicSDNode>(this)) {
Dan Gohman1ea58a52008-07-09 22:08:04 +00004809 Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4810 }
Mon P Wangc4d10212008-10-17 18:22:58 +00004811 else {
4812 const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4813 assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4814 if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4815 if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4816 }
Dan Gohman1ea58a52008-07-09 22:08:04 +00004817
4818 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004819 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4820
Dan Gohman1ea58a52008-07-09 22:08:04 +00004821 // Check if the memory reference references a frame index
Mon P Wang28873102008-06-25 08:15:39 +00004822 const FrameIndexSDNode *FI =
Gabor Greifba36cb52008-08-28 21:40:38 +00004823 dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
Mon P Wang28873102008-06-25 08:15:39 +00004824 if (!getSrcValue() && FI)
Dan Gohmana54cf172008-07-11 22:44:52 +00004825 return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4826 Flags, 0, Size, getAlignment());
Mon P Wang28873102008-06-25 08:15:39 +00004827 else
4828 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4829 Size, getAlignment());
4830}
4831
Jim Laskey583bd472006-10-27 23:46:08 +00004832/// Profile - Gather unique data for the node.
4833///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00004834void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00004835 AddNodeIDNode(ID, this);
4836}
4837
Chris Lattnera3255112005-11-08 23:30:28 +00004838/// getValueTypeList - Return a pointer to the specified value type.
4839///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004840const MVT *SDNode::getValueTypeList(MVT VT) {
4841 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004842 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004843 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004844 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004845 static MVT VTs[MVT::LAST_VALUETYPE];
4846 VTs[VT.getSimpleVT()] = VT;
4847 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004848 }
Chris Lattnera3255112005-11-08 23:30:28 +00004849}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004850
Chris Lattner5c884562005-01-12 18:37:47 +00004851/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4852/// indicated value. This method ignores uses of other values defined by this
4853/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004854bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004855 assert(Value < getNumValues() && "Bad value!");
4856
Roman Levensteindc1adac2008-04-07 10:06:32 +00004857 // TODO: Only iterate over uses of a given value of the node
4858 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Gabor Greif99a6cb92008-08-26 22:36:50 +00004859 if (UI.getUse().getSDValue().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004860 if (NUses == 0)
4861 return false;
4862 --NUses;
4863 }
Chris Lattner5c884562005-01-12 18:37:47 +00004864 }
4865
4866 // Found exactly the right number of uses?
4867 return NUses == 0;
4868}
4869
4870
Evan Cheng33d55952007-08-02 05:29:38 +00004871/// hasAnyUseOfValue - Return true if there are any use of the indicated
4872/// value. This method ignores uses of other values defined by this operation.
4873bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4874 assert(Value < getNumValues() && "Bad value!");
4875
Dan Gohman1373c1c2008-07-09 22:39:01 +00004876 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Gabor Greif99a6cb92008-08-26 22:36:50 +00004877 if (UI.getUse().getSDValue().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00004878 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00004879
4880 return false;
4881}
4882
4883
Dan Gohman2a629952008-07-27 18:06:42 +00004884/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004885///
Dan Gohman2a629952008-07-27 18:06:42 +00004886bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004887 bool Seen = false;
4888 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00004889 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00004890 if (User == this)
4891 Seen = true;
4892 else
4893 return false;
4894 }
4895
4896 return Seen;
4897}
4898
Evan Chenge6e97e62006-11-03 07:31:32 +00004899/// isOperand - Return true if this node is an operand of N.
4900///
Dan Gohman475871a2008-07-27 21:46:04 +00004901bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004902 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4903 if (*this == N->getOperand(i))
4904 return true;
4905 return false;
4906}
4907
Evan Cheng917be682008-03-04 00:41:45 +00004908bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004909 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004910 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004911 return true;
4912 return false;
4913}
Evan Cheng4ee62112006-02-05 06:29:23 +00004914
Chris Lattner572dee72008-01-16 05:49:24 +00004915/// reachesChainWithoutSideEffects - Return true if this operand (which must
4916/// be a chain) reaches the specified operand without crossing any
4917/// side-effecting instructions. In practice, this looks through token
4918/// factors and non-volatile loads. In order to remain efficient, this only
4919/// looks a couple of nodes in, it does not do an exhaustive search.
Dan Gohman475871a2008-07-27 21:46:04 +00004920bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004921 unsigned Depth) const {
4922 if (*this == Dest) return true;
4923
4924 // Don't search too deeply, we just want to be able to see through
4925 // TokenFactor's etc.
4926 if (Depth == 0) return false;
4927
4928 // If this is a token factor, all inputs to the TF happen in parallel. If any
4929 // of the operands of the TF reach dest, then we can do the xform.
4930 if (getOpcode() == ISD::TokenFactor) {
4931 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4932 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4933 return true;
4934 return false;
4935 }
4936
4937 // Loads don't have side effects, look through them.
4938 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4939 if (!Ld->isVolatile())
4940 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4941 }
4942 return false;
4943}
4944
4945
Evan Chengc5fc57d2006-11-03 03:05:24 +00004946static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004947 SmallPtrSet<SDNode *, 32> &Visited) {
4948 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004949 return;
4950
4951 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004952 SDNode *Op = N->getOperand(i).getNode();
Evan Chengc5fc57d2006-11-03 03:05:24 +00004953 if (Op == P) {
4954 found = true;
4955 return;
4956 }
4957 findPredecessor(Op, P, found, Visited);
4958 }
4959}
4960
Evan Cheng917be682008-03-04 00:41:45 +00004961/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004962/// is either an operand of N or it can be reached by recursively traversing
4963/// up the operands.
4964/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004965bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004966 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004967 bool found = false;
4968 findPredecessor(N, this, found, Visited);
4969 return found;
4970}
4971
Evan Chengc5484282006-10-04 00:56:09 +00004972uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4973 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004974 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00004975}
4976
Reid Spencer577cc322007-04-01 07:32:19 +00004977std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004978 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004979 default:
4980 if (getOpcode() < ISD::BUILTIN_OP_END)
4981 return "<<Unknown DAG Node>>";
Dan Gohmane8be6c62008-07-17 19:10:17 +00004982 if (isMachineOpcode()) {
4983 if (G)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004984 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Dan Gohmane8be6c62008-07-17 19:10:17 +00004985 if (getMachineOpcode() < TII->getNumOpcodes())
4986 return TII->get(getMachineOpcode()).getName();
4987 return "<<Unknown Machine Node>>";
4988 }
4989 if (G) {
Dan Gohmane9530ec2009-01-15 16:58:17 +00004990 const TargetLowering &TLI = G->getTargetLoweringInfo();
Dan Gohmane8be6c62008-07-17 19:10:17 +00004991 const char *Name = TLI.getTargetNodeName(getOpcode());
4992 if (Name) return Name;
Evan Cheng72261582005-12-20 06:22:03 +00004993 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004994 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00004995 return "<<Unknown Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004996
Dan Gohmane8be6c62008-07-17 19:10:17 +00004997#ifndef NDEBUG
4998 case ISD::DELETED_NODE:
4999 return "<<Deleted Node!>>";
5000#endif
Evan Cheng27b7db52008-03-08 00:58:38 +00005001 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00005002 case ISD::MEMBARRIER: return "MemBarrier";
Dan Gohman0b1d4a72008-12-23 21:37:04 +00005003 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
5004 case ISD::ATOMIC_SWAP: return "AtomicSwap";
5005 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
5006 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
5007 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
5008 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
5009 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
5010 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
5011 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
5012 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
5013 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
5014 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
Andrew Lenharth95762122005-03-31 21:24:06 +00005015 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00005016 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005017 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00005018 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005019 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00005020 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00005021 case ISD::AssertSext: return "AssertSext";
5022 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005023
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005024 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005025 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005026 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00005027 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005028
5029 case ISD::Constant: return "Constant";
5030 case ISD::ConstantFP: return "ConstantFP";
5031 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005032 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005033 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005034 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00005035 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Bill Wendling056292f2008-09-16 21:48:12 +00005036 case ISD::RETURNADDR: return "RETURNADDR";
5037 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005038 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00005039 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
Bill Wendling056292f2008-09-16 21:48:12 +00005040 case ISD::EHSELECTION: return "EHSELECTION";
5041 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00005042 case ISD::ConstantPool: return "ConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005043 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00005044 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005045 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
Chris Lattner48b61a72006-03-28 00:40:33 +00005046 return Intrinsic::getName((Intrinsic::ID)IID);
5047 }
5048 case ISD::INTRINSIC_VOID:
5049 case ISD::INTRINSIC_W_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005050 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00005051 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00005052 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00005053
Chris Lattnerb2827b02006-03-19 00:52:58 +00005054 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005055 case ISD::TargetConstant: return "TargetConstant";
5056 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005057 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00005058 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005059 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00005060 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00005061 case ISD::TargetConstantPool: return "TargetConstantPool";
Bill Wendling056292f2008-09-16 21:48:12 +00005062 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00005063
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005064 case ISD::CopyToReg: return "CopyToReg";
5065 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005066 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00005067 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005068 case ISD::INLINEASM: return "inlineasm";
Dan Gohman44066042008-07-01 00:05:16 +00005069 case ISD::DBG_LABEL: return "dbg_label";
5070 case ISD::EH_LABEL: return "eh_label";
Evan Chenga844bde2008-02-02 04:07:54 +00005071 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00005072 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00005073 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00005074 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00005075
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005076 // Unary operators
5077 case ISD::FABS: return "fabs";
5078 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00005079 case ISD::FSQRT: return "fsqrt";
5080 case ISD::FSIN: return "fsin";
5081 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00005082 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00005083 case ISD::FPOW: return "fpow";
Dan Gohman509e84f2008-08-21 17:55:02 +00005084 case ISD::FTRUNC: return "ftrunc";
5085 case ISD::FFLOOR: return "ffloor";
5086 case ISD::FCEIL: return "fceil";
5087 case ISD::FRINT: return "frint";
5088 case ISD::FNEARBYINT: return "fnearbyint";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00005089
5090 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005091 case ISD::ADD: return "add";
5092 case ISD::SUB: return "sub";
5093 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00005094 case ISD::MULHU: return "mulhu";
5095 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005096 case ISD::SDIV: return "sdiv";
5097 case ISD::UDIV: return "udiv";
5098 case ISD::SREM: return "srem";
5099 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00005100 case ISD::SMUL_LOHI: return "smul_lohi";
5101 case ISD::UMUL_LOHI: return "umul_lohi";
5102 case ISD::SDIVREM: return "sdivrem";
Dan Gohmana47916d2008-09-08 16:30:29 +00005103 case ISD::UDIVREM: return "udivrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005104 case ISD::AND: return "and";
5105 case ISD::OR: return "or";
5106 case ISD::XOR: return "xor";
5107 case ISD::SHL: return "shl";
5108 case ISD::SRA: return "sra";
5109 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00005110 case ISD::ROTL: return "rotl";
5111 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00005112 case ISD::FADD: return "fadd";
5113 case ISD::FSUB: return "fsub";
5114 case ISD::FMUL: return "fmul";
5115 case ISD::FDIV: return "fdiv";
5116 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00005117 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00005118 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00005119
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005120 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00005121 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005122 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00005123 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005124 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005125 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00005126 case ISD::CONCAT_VECTORS: return "concat_vectors";
5127 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005128 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005129 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00005130 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005131 case ISD::ADDC: return "addc";
5132 case ISD::ADDE: return "adde";
Bill Wendling1c55a9c2008-11-21 02:12:42 +00005133 case ISD::SADDO: return "saddo";
5134 case ISD::UADDO: return "uaddo";
Bill Wendling74c37652008-12-09 22:08:41 +00005135 case ISD::SSUBO: return "ssubo";
5136 case ISD::USUBO: return "usubo";
5137 case ISD::SMULO: return "smulo";
5138 case ISD::UMULO: return "umulo";
Nate Begeman551bf3f2006-02-17 05:43:56 +00005139 case ISD::SUBC: return "subc";
5140 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00005141 case ISD::SHL_PARTS: return "shl_parts";
5142 case ISD::SRA_PARTS: return "sra_parts";
5143 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00005144
5145 case ISD::EXTRACT_SUBREG: return "extract_subreg";
5146 case ISD::INSERT_SUBREG: return "insert_subreg";
5147
Chris Lattner7f644642005-04-28 21:44:03 +00005148 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005149 case ISD::SIGN_EXTEND: return "sign_extend";
5150 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00005151 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00005152 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005153 case ISD::TRUNCATE: return "truncate";
5154 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00005155 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00005156 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005157 case ISD::FP_EXTEND: return "fp_extend";
5158
5159 case ISD::SINT_TO_FP: return "sint_to_fp";
5160 case ISD::UINT_TO_FP: return "uint_to_fp";
5161 case ISD::FP_TO_SINT: return "fp_to_sint";
5162 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00005163 case ISD::BIT_CONVERT: return "bit_convert";
Mon P Wang77cdf302008-11-10 20:54:11 +00005164
5165 case ISD::CONVERT_RNDSAT: {
5166 switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
5167 default: assert(0 && "Unknown cvt code!");
5168 case ISD::CVT_FF: return "cvt_ff";
5169 case ISD::CVT_FS: return "cvt_fs";
5170 case ISD::CVT_FU: return "cvt_fu";
5171 case ISD::CVT_SF: return "cvt_sf";
5172 case ISD::CVT_UF: return "cvt_uf";
5173 case ISD::CVT_SS: return "cvt_ss";
5174 case ISD::CVT_SU: return "cvt_su";
5175 case ISD::CVT_US: return "cvt_us";
5176 case ISD::CVT_UU: return "cvt_uu";
5177 }
5178 }
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005179
5180 // Control flow instructions
5181 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00005182 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00005183 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005184 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00005185 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005186 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00005187 case ISD::CALLSEQ_START: return "callseq_start";
5188 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005189
5190 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00005191 case ISD::LOAD: return "load";
5192 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00005193 case ISD::VAARG: return "vaarg";
5194 case ISD::VACOPY: return "vacopy";
5195 case ISD::VAEND: return "vaend";
5196 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005197 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00005198 case ISD::EXTRACT_ELEMENT: return "extract_element";
5199 case ISD::BUILD_PAIR: return "build_pair";
5200 case ISD::STACKSAVE: return "stacksave";
5201 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00005202 case ISD::TRAP: return "trap";
5203
Nate Begeman1b5db7a2006-01-16 08:07:10 +00005204 // Bit manipulation
5205 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00005206 case ISD::CTPOP: return "ctpop";
5207 case ISD::CTTZ: return "cttz";
5208 case ISD::CTLZ: return "ctlz";
5209
Chris Lattner36ce6912005-11-29 06:21:05 +00005210 // Debug info
Dan Gohman7f460202008-06-30 20:59:49 +00005211 case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00005212 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00005213
Duncan Sands36397f52007-07-27 12:58:54 +00005214 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00005215 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00005216
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005217 case ISD::CONDCODE:
5218 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005219 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005220 case ISD::SETOEQ: return "setoeq";
5221 case ISD::SETOGT: return "setogt";
5222 case ISD::SETOGE: return "setoge";
5223 case ISD::SETOLT: return "setolt";
5224 case ISD::SETOLE: return "setole";
5225 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005226
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005227 case ISD::SETO: return "seto";
5228 case ISD::SETUO: return "setuo";
5229 case ISD::SETUEQ: return "setue";
5230 case ISD::SETUGT: return "setugt";
5231 case ISD::SETUGE: return "setuge";
5232 case ISD::SETULT: return "setult";
5233 case ISD::SETULE: return "setule";
5234 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005235
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005236 case ISD::SETEQ: return "seteq";
5237 case ISD::SETGT: return "setgt";
5238 case ISD::SETGE: return "setge";
5239 case ISD::SETLT: return "setlt";
5240 case ISD::SETLE: return "setle";
5241 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00005242 }
5243 }
5244}
Chris Lattnerc3aae252005-01-07 07:46:32 +00005245
Evan Cheng144d8f02006-11-09 17:55:04 +00005246const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00005247 switch (AM) {
5248 default:
5249 return "";
5250 case ISD::PRE_INC:
5251 return "<pre-inc>";
5252 case ISD::PRE_DEC:
5253 return "<pre-dec>";
5254 case ISD::POST_INC:
5255 return "<post-inc>";
5256 case ISD::POST_DEC:
5257 return "<post-dec>";
5258 }
5259}
5260
Duncan Sands276dcbd2008-03-21 09:14:45 +00005261std::string ISD::ArgFlagsTy::getArgFlagsString() {
5262 std::string S = "< ";
5263
5264 if (isZExt())
5265 S += "zext ";
5266 if (isSExt())
5267 S += "sext ";
5268 if (isInReg())
5269 S += "inreg ";
5270 if (isSRet())
5271 S += "sret ";
5272 if (isByVal())
5273 S += "byval ";
5274 if (isNest())
5275 S += "nest ";
5276 if (getByValAlign())
5277 S += "byval-align:" + utostr(getByValAlign()) + " ";
5278 if (getOrigAlign())
5279 S += "orig-align:" + utostr(getOrigAlign()) + " ";
5280 if (getByValSize())
5281 S += "byval-size:" + utostr(getByValSize()) + " ";
5282 return S + ">";
5283}
5284
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005285void SDNode::dump() const { dump(0); }
5286void SDNode::dump(const SelectionDAG *G) const {
Chris Lattner944fac72008-08-23 22:23:09 +00005287 print(errs(), G);
Chris Lattnerc56711c2008-08-24 18:28:30 +00005288 errs().flush();
Chris Lattner944fac72008-08-23 22:23:09 +00005289}
5290
5291void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5292 OS << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005293
5294 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005295 if (i) OS << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00005296 if (getValueType(i) == MVT::Other)
Chris Lattner944fac72008-08-23 22:23:09 +00005297 OS << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00005298 else
Chris Lattner944fac72008-08-23 22:23:09 +00005299 OS << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005300 }
Chris Lattner944fac72008-08-23 22:23:09 +00005301 OS << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005302
Chris Lattner944fac72008-08-23 22:23:09 +00005303 OS << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005304 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005305 if (i) OS << ", ";
Gabor Greifba36cb52008-08-28 21:40:38 +00005306 OS << (void*)getOperand(i).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00005307 if (unsigned RN = getOperand(i).getResNo())
Chris Lattner944fac72008-08-23 22:23:09 +00005308 OS << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00005309 }
5310
Evan Chengce254432007-12-11 02:08:35 +00005311 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005312 SDNode *Mask = getOperand(2).getNode();
Chris Lattner944fac72008-08-23 22:23:09 +00005313 OS << "<";
Evan Chengce254432007-12-11 02:08:35 +00005314 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
Chris Lattner944fac72008-08-23 22:23:09 +00005315 if (i) OS << ",";
Evan Chengce254432007-12-11 02:08:35 +00005316 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
Chris Lattner944fac72008-08-23 22:23:09 +00005317 OS << "u";
Evan Chengce254432007-12-11 02:08:35 +00005318 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005319 OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
Evan Chengce254432007-12-11 02:08:35 +00005320 }
Chris Lattner944fac72008-08-23 22:23:09 +00005321 OS << ">";
Evan Chengce254432007-12-11 02:08:35 +00005322 }
5323
Chris Lattnerc3aae252005-01-07 07:46:32 +00005324 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005325 OS << '<' << CSDN->getAPIntValue() << '>';
Chris Lattnerc3aae252005-01-07 07:46:32 +00005326 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005327 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
Chris Lattner944fac72008-08-23 22:23:09 +00005328 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005329 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
Chris Lattner944fac72008-08-23 22:23:09 +00005330 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005331 else {
Chris Lattner944fac72008-08-23 22:23:09 +00005332 OS << "<APFloat(";
Dale Johannesen23a98552008-10-09 23:00:39 +00005333 CSDN->getValueAPF().bitcastToAPInt().dump();
Chris Lattner944fac72008-08-23 22:23:09 +00005334 OS << ")>";
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005335 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00005336 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00005337 dyn_cast<GlobalAddressSDNode>(this)) {
Dan Gohman668aff62008-10-18 18:22:42 +00005338 int64_t offset = GADN->getOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005339 OS << '<';
5340 WriteAsOperand(OS, GADN->getGlobal());
5341 OS << '>';
Evan Cheng61ca74b2005-11-30 02:04:11 +00005342 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005343 OS << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00005344 else
Chris Lattner944fac72008-08-23 22:23:09 +00005345 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005346 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005347 OS << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00005348 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005349 OS << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005350 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00005351 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00005352 if (CP->isMachineConstantPoolEntry())
Chris Lattner944fac72008-08-23 22:23:09 +00005353 OS << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00005354 else
Chris Lattner944fac72008-08-23 22:23:09 +00005355 OS << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00005356 if (offset > 0)
Chris Lattner944fac72008-08-23 22:23:09 +00005357 OS << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00005358 else
Chris Lattner944fac72008-08-23 22:23:09 +00005359 OS << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00005360 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005361 OS << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005362 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5363 if (LBB)
Chris Lattner944fac72008-08-23 22:23:09 +00005364 OS << LBB->getName() << " ";
5365 OS << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00005366 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00005367 if (G && R->getReg() &&
5368 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Chris Lattner944fac72008-08-23 22:23:09 +00005369 OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00005370 } else {
Chris Lattner944fac72008-08-23 22:23:09 +00005371 OS << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00005372 }
Bill Wendling056292f2008-09-16 21:48:12 +00005373 } else if (const ExternalSymbolSDNode *ES =
5374 dyn_cast<ExternalSymbolSDNode>(this)) {
5375 OS << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005376 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5377 if (M->getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005378 OS << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00005379 else
Chris Lattner944fac72008-08-23 22:23:09 +00005380 OS << "<null>";
Dan Gohman69de1932008-02-06 22:27:42 +00005381 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5382 if (M->MO.getValue())
Chris Lattner944fac72008-08-23 22:23:09 +00005383 OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
Dan Gohman69de1932008-02-06 22:27:42 +00005384 else
Chris Lattner944fac72008-08-23 22:23:09 +00005385 OS << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00005386 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005387 OS << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00005388 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00005389 OS << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00005390 }
5391 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00005392 const Value *SrcValue = LD->getSrcValue();
5393 int SrcOffset = LD->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005394 OS << " <";
Evan Cheng81310132007-12-18 19:06:30 +00005395 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005396 OS << SrcValue;
Evan Cheng81310132007-12-18 19:06:30 +00005397 else
Chris Lattner944fac72008-08-23 22:23:09 +00005398 OS << "null";
5399 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005400
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005401 bool doExt = true;
5402 switch (LD->getExtensionType()) {
5403 default: doExt = false; break;
Chris Lattner944fac72008-08-23 22:23:09 +00005404 case ISD::EXTLOAD: OS << " <anyext "; break;
5405 case ISD::SEXTLOAD: OS << " <sext "; break;
5406 case ISD::ZEXTLOAD: OS << " <zext "; break;
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005407 }
5408 if (doExt)
Chris Lattner944fac72008-08-23 22:23:09 +00005409 OS << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00005410
Evan Cheng144d8f02006-11-09 17:55:04 +00005411 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00005412 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005413 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005414 if (LD->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005415 OS << " <volatile>";
5416 OS << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00005417 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00005418 const Value *SrcValue = ST->getSrcValue();
5419 int SrcOffset = ST->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005420 OS << " <";
Evan Cheng88ce93e2007-12-18 07:02:08 +00005421 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005422 OS << SrcValue;
Evan Cheng88ce93e2007-12-18 07:02:08 +00005423 else
Chris Lattner944fac72008-08-23 22:23:09 +00005424 OS << "null";
5425 OS << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005426
5427 if (ST->isTruncatingStore())
Chris Lattner944fac72008-08-23 22:23:09 +00005428 OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00005429
5430 const char *AM = getIndexedModeName(ST->getAddressingMode());
5431 if (*AM)
Chris Lattner944fac72008-08-23 22:23:09 +00005432 OS << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00005433 if (ST->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005434 OS << " <volatile>";
5435 OS << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00005436 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5437 const Value *SrcValue = AT->getSrcValue();
5438 int SrcOffset = AT->getSrcValueOffset();
Chris Lattner944fac72008-08-23 22:23:09 +00005439 OS << " <";
Mon P Wang28873102008-06-25 08:15:39 +00005440 if (SrcValue)
Chris Lattner944fac72008-08-23 22:23:09 +00005441 OS << SrcValue;
Mon P Wang28873102008-06-25 08:15:39 +00005442 else
Chris Lattner944fac72008-08-23 22:23:09 +00005443 OS << "null";
5444 OS << ":" << SrcOffset << ">";
Mon P Wang28873102008-06-25 08:15:39 +00005445 if (AT->isVolatile())
Chris Lattner944fac72008-08-23 22:23:09 +00005446 OS << " <volatile>";
5447 OS << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00005448 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00005449}
5450
Chris Lattnerde202b32005-11-09 23:47:37 +00005451static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00005452 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00005453 if (N->getOperand(i).getNode()->hasOneUse())
5454 DumpNodes(N->getOperand(i).getNode(), indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005455 else
Bill Wendling832171c2006-12-07 20:04:42 +00005456 cerr << "\n" << std::string(indent+2, ' ')
Gabor Greifba36cb52008-08-28 21:40:38 +00005457 << (void*)N->getOperand(i).getNode() << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00005458
Chris Lattnerea946cd2005-01-09 20:38:33 +00005459
Bill Wendling832171c2006-12-07 20:04:42 +00005460 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00005461 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005462}
5463
Chris Lattnerc3aae252005-01-07 07:46:32 +00005464void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00005465 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00005466
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005467 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5468 I != E; ++I) {
5469 const SDNode *N = I;
Gabor Greifba36cb52008-08-28 21:40:38 +00005470 if (!N->hasOneUse() && N != getRoot().getNode())
Dan Gohman90a7b8f2008-07-15 18:18:54 +00005471 DumpNodes(N, 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00005472 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00005473
Gabor Greifba36cb52008-08-28 21:40:38 +00005474 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00005475
Bill Wendling832171c2006-12-07 20:04:42 +00005476 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00005477}
5478
Evan Chengd6594ae2006-09-12 21:00:35 +00005479const Type *ConstantPoolSDNode::getType() const {
5480 if (isMachineConstantPoolEntry())
5481 return Val.MachineCPVal->getType();
5482 return Val.ConstVal->getType();
5483}