blob: 1472490cca85290c8682aa361a934984885efffa [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//===----------------------------------------------------------------------===//
Bill Wendlinge36025e2009-12-21 19:34:59 +000013
Chris Lattner78ec3112003-08-11 14:57:33 +000014#include "llvm/CodeGen/SelectionDAG.h"
Evan Chenga8efe282010-03-14 19:56:39 +000015#include "SDNodeDbgValue.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/ADT/SetVector.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallSet.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/ADT/StringExtras.h"
Chandler Carruthbe049292013-01-07 03:08:10 +000021#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/Analysis/ValueTracking.h"
23#include "llvm/Assembly/Writer.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineBasicBlock.h"
25#include "llvm/CodeGen/MachineConstantPool.h"
26#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineModuleInfo.h"
Bill Wendling0bcbd1d2012-06-28 00:05:13 +000028#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000029#include "llvm/IR/CallingConv.h"
30#include "llvm/IR/Constants.h"
31#include "llvm/IR/DataLayout.h"
32#include "llvm/IR/DerivedTypes.h"
33#include "llvm/IR/Function.h"
34#include "llvm/IR/GlobalAlias.h"
35#include "llvm/IR/GlobalVariable.h"
36#include "llvm/IR/Intrinsics.h"
Bill Wendling6f287b22008-09-30 21:22:07 +000037#include "llvm/Support/CommandLine.h"
David Greene55d146e2010-01-05 01:24:36 +000038#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000039#include "llvm/Support/ErrorHandling.h"
Owen Andersonb4459082009-06-25 17:09:00 +000040#include "llvm/Support/ManagedStatic.h"
Chris Lattner944fac72008-08-23 22:23:09 +000041#include "llvm/Support/MathExtras.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000042#include "llvm/Support/Mutex.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000043#include "llvm/Support/raw_ostream.h"
44#include "llvm/Target/TargetInstrInfo.h"
45#include "llvm/Target/TargetIntrinsicInfo.h"
46#include "llvm/Target/TargetLowering.h"
47#include "llvm/Target/TargetMachine.h"
48#include "llvm/Target/TargetOptions.h"
49#include "llvm/Target/TargetRegisterInfo.h"
50#include "llvm/Target/TargetSelectionDAGInfo.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000051#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000052#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000053using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000054
Chris Lattner0b3e5252006-08-15 19:11:05 +000055/// makeVTList - Return an instance of the SDVTList struct initialized with the
56/// specified members.
Owen Andersone50ed302009-08-10 22:56:29 +000057static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000058 SDVTList Res = {VTs, NumVTs};
59 return Res;
60}
61
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +000062// Default null implementations of the callbacks.
63void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
64void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
Chris Lattnerf8dc0612008-02-03 06:49:24 +000065
Jim Laskey58b968b2005-08-17 20:08:02 +000066//===----------------------------------------------------------------------===//
67// ConstantFPSDNode Class
68//===----------------------------------------------------------------------===//
69
70/// isExactlyValue - We don't rely on operator== working on double values, as
71/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
72/// As such, this method can be used to do an exact bit-for-bit comparison of
73/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000074bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohman4fbd7962008-09-12 18:08:03 +000075 return getValueAPF().bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000076}
77
Owen Andersone50ed302009-08-10 22:56:29 +000078bool ConstantFPSDNode::isValueValidForType(EVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000079 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000080 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Scott Michelfdc40a02009-02-17 22:15:04 +000081
Dale Johannesenf04afdb2007-08-30 00:23:21 +000082 // convert modifies in place, so make a copy.
83 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +000084 bool losesInfo;
Tim Northover0a29cb02013-01-22 09:46:31 +000085 (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT),
86 APFloat::rmNearestTiesToEven,
Dale Johannesen23a98552008-10-09 23:00:39 +000087 &losesInfo);
88 return !losesInfo;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000089}
90
Jim Laskey58b968b2005-08-17 20:08:02 +000091//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000092// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000093//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000094
Evan Chenga8df1662006-03-27 06:58:47 +000095/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000096/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000097bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000098 // Look through a bit convert.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000099 if (N->getOpcode() == ISD::BITCAST)
Gabor Greifba36cb52008-08-28 21:40:38 +0000100 N = N->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +0000101
Evan Chenga8df1662006-03-27 06:58:47 +0000102 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000103
Chris Lattner61d43992006-03-25 22:57:01 +0000104 unsigned i = 0, e = N->getNumOperands();
Scott Michelfdc40a02009-02-17 22:15:04 +0000105
Chris Lattner61d43992006-03-25 22:57:01 +0000106 // Skip over all of the undef values.
107 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
108 ++i;
Scott Michelfdc40a02009-02-17 22:15:04 +0000109
Chris Lattner61d43992006-03-25 22:57:01 +0000110 // Do not accept an all-undef vector.
111 if (i == e) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000112
Chris Lattner61d43992006-03-25 22:57:01 +0000113 // Do not accept build_vectors that aren't all constants or which have non-~0
Jim Grosbach331ff3b2012-03-21 17:48:04 +0000114 // elements. We have to be a bit careful here, as the type of the constant
115 // may not be the same as the type of the vector elements due to type
116 // legalization (the elements are promoted to a legal type for the target and
117 // a vector of a type may be legal when the base element type is not).
118 // We only want to check enough bits to cover the vector elements, because
119 // we care if the resultant vector is all ones, not whether the individual
120 // constants are.
Dan Gohman475871a2008-07-27 21:46:04 +0000121 SDValue NotZero = N->getOperand(i);
Jim Grosbach331ff3b2012-03-21 17:48:04 +0000122 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
Jakub Staszak554c6762012-09-30 21:24:57 +0000123 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) {
124 if (CN->getAPIntValue().countTrailingOnes() < EltSize)
Evan Chenga8df1662006-03-27 06:58:47 +0000125 return false;
Jakub Staszak554c6762012-09-30 21:24:57 +0000126 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) {
127 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
Dan Gohman6c231502008-02-29 01:47:35 +0000128 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000129 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000130 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000131
Chris Lattner61d43992006-03-25 22:57:01 +0000132 // Okay, we have at least one ~0 value, check to see if the rest match or are
Jim Grosbach331ff3b2012-03-21 17:48:04 +0000133 // undefs. Even with the above element type twiddling, this should be OK, as
134 // the same type legalization should have applied to all the elements.
Chris Lattner61d43992006-03-25 22:57:01 +0000135 for (++i; i != e; ++i)
136 if (N->getOperand(i) != NotZero &&
137 N->getOperand(i).getOpcode() != ISD::UNDEF)
138 return false;
139 return true;
140}
141
142
Evan Cheng4a147842006-03-26 09:50:58 +0000143/// isBuildVectorAllZeros - Return true if the specified node is a
144/// BUILD_VECTOR where all of the elements are 0 or undef.
145bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000146 // Look through a bit convert.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000147 if (N->getOpcode() == ISD::BITCAST)
Gabor Greifba36cb52008-08-28 21:40:38 +0000148 N = N->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +0000149
Evan Cheng4a147842006-03-26 09:50:58 +0000150 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000151
Evan Chenga8df1662006-03-27 06:58:47 +0000152 unsigned i = 0, e = N->getNumOperands();
Scott Michelfdc40a02009-02-17 22:15:04 +0000153
Evan Chenga8df1662006-03-27 06:58:47 +0000154 // Skip over all of the undef values.
155 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
156 ++i;
Scott Michelfdc40a02009-02-17 22:15:04 +0000157
Evan Chenga8df1662006-03-27 06:58:47 +0000158 // Do not accept an all-undef vector.
159 if (i == e) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000160
Dan Gohman68f32cb2009-06-04 16:49:15 +0000161 // Do not accept build_vectors that aren't all constants or which have non-0
Evan Chenga8df1662006-03-27 06:58:47 +0000162 // elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000163 SDValue Zero = N->getOperand(i);
Jakub Staszak554c6762012-09-30 21:24:57 +0000164 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Zero)) {
165 if (!CN->isNullValue())
Evan Chenga8df1662006-03-27 06:58:47 +0000166 return false;
Jakub Staszak554c6762012-09-30 21:24:57 +0000167 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Zero)) {
168 if (!CFPN->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000169 return false;
170 } else
171 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000172
Dan Gohman68f32cb2009-06-04 16:49:15 +0000173 // Okay, we have at least one 0 value, check to see if the rest match or are
Evan Chenga8df1662006-03-27 06:58:47 +0000174 // undefs.
175 for (++i; i != e; ++i)
176 if (N->getOperand(i) != Zero &&
177 N->getOperand(i).getOpcode() != ISD::UNDEF)
178 return false;
179 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000180}
181
Evan Chengefec7512008-02-18 23:04:32 +0000182/// isScalarToVector - Return true if the specified node is a
183/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
184/// element is not an undef.
185bool ISD::isScalarToVector(const SDNode *N) {
186 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
187 return true;
188
189 if (N->getOpcode() != ISD::BUILD_VECTOR)
190 return false;
191 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
192 return false;
193 unsigned NumElems = N->getNumOperands();
Mon P Wangcab98e32010-11-19 19:08:12 +0000194 if (NumElems == 1)
195 return false;
Evan Chengefec7512008-02-18 23:04:32 +0000196 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000197 SDValue V = N->getOperand(i);
Evan Chengefec7512008-02-18 23:04:32 +0000198 if (V.getOpcode() != ISD::UNDEF)
199 return false;
200 }
201 return true;
202}
203
Nadav Rotemb87bdac2012-07-15 08:38:23 +0000204/// allOperandsUndef - Return true if the node has at least one operand
205/// and all operands of the specified node are ISD::UNDEF.
206bool ISD::allOperandsUndef(const SDNode *N) {
207 // Return false if the node has no operands.
208 // This is "logically inconsistent" with the definition of "all" but
209 // is probably the desired behavior.
210 if (N->getNumOperands() == 0)
211 return false;
212
213 for (unsigned i = 0, e = N->getNumOperands(); i != e ; ++i)
214 if (N->getOperand(i).getOpcode() != ISD::UNDEF)
215 return false;
216
217 return true;
218}
219
Chris Lattnerc3aae252005-01-07 07:46:32 +0000220/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
221/// when given the operation for (X op Y).
222ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
223 // To perform this operation, we just need to swap the L and G bits of the
224 // operation.
225 unsigned OldL = (Operation >> 2) & 1;
226 unsigned OldG = (Operation >> 1) & 1;
227 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
228 (OldL << 1) | // New G bit
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000229 (OldG << 2)); // New L bit.
Chris Lattnerc3aae252005-01-07 07:46:32 +0000230}
231
232/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
233/// 'op' is a valid SetCC operation.
234ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
235 unsigned Operation = Op;
236 if (isInteger)
237 Operation ^= 7; // Flip L, G, E bits, but not U.
238 else
239 Operation ^= 15; // Flip all of the condition bits.
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000240
Chris Lattnerc3aae252005-01-07 07:46:32 +0000241 if (Operation > ISD::SETTRUE2)
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000242 Operation &= ~8; // Don't let N and U bits get set.
243
Chris Lattnerc3aae252005-01-07 07:46:32 +0000244 return ISD::CondCode(Operation);
245}
246
247
248/// isSignedOp - For an integer comparison, return 1 if the comparison is a
249/// signed operation and 2 if the result is an unsigned comparison. Return zero
250/// if the operation does not depend on the sign of the input (setne and seteq).
251static int isSignedOp(ISD::CondCode Opcode) {
252 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000253 default: llvm_unreachable("Illegal integer setcc operation!");
Chris Lattnerc3aae252005-01-07 07:46:32 +0000254 case ISD::SETEQ:
255 case ISD::SETNE: return 0;
256 case ISD::SETLT:
257 case ISD::SETLE:
258 case ISD::SETGT:
259 case ISD::SETGE: return 1;
260 case ISD::SETULT:
261 case ISD::SETULE:
262 case ISD::SETUGT:
263 case ISD::SETUGE: return 2;
264 }
265}
266
267/// getSetCCOrOperation - Return the result of a logical OR between different
268/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
269/// returns SETCC_INVALID if it is not possible to represent the resultant
270/// comparison.
271ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
272 bool isInteger) {
273 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
274 // Cannot fold a signed integer setcc with an unsigned integer setcc.
275 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000276
Chris Lattnerc3aae252005-01-07 07:46:32 +0000277 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000278
Chris Lattnerc3aae252005-01-07 07:46:32 +0000279 // If the N and U bits get set then the resultant comparison DOES suddenly
280 // care about orderedness, and is true when ordered.
281 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000282 Op &= ~16; // Clear the U bit if the N bit is set.
Scott Michelfdc40a02009-02-17 22:15:04 +0000283
Chris Lattnere41102b2006-05-12 17:03:46 +0000284 // Canonicalize illegal integer setcc's.
285 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
286 Op = ISD::SETNE;
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Chris Lattnerc3aae252005-01-07 07:46:32 +0000288 return ISD::CondCode(Op);
289}
290
291/// getSetCCAndOperation - Return the result of a logical AND between different
292/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
293/// function returns zero if it is not possible to represent the resultant
294/// comparison.
295ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
296 bool isInteger) {
297 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
298 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000299 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000300
301 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000302 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000303
Chris Lattnera83385f2006-04-27 05:01:07 +0000304 // Canonicalize illegal integer setcc's.
305 if (isInteger) {
306 switch (Result) {
307 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000308 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000309 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000310 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
311 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
312 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000313 }
314 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000315
Chris Lattnera83385f2006-04-27 05:01:07 +0000316 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000317}
318
Jim Laskey58b968b2005-08-17 20:08:02 +0000319//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000320// SDNode Profile Support
321//===----------------------------------------------------------------------===//
322
Jim Laskeydef69b92006-10-27 23:52:51 +0000323/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
324///
Jim Laskey583bd472006-10-27 23:46:08 +0000325static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
326 ID.AddInteger(OpC);
327}
328
329/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
330/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000331static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000332 ID.AddPointer(VTList.VTs);
Jim Laskey583bd472006-10-27 23:46:08 +0000333}
334
Jim Laskeydef69b92006-10-27 23:52:51 +0000335/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
336///
Jim Laskey583bd472006-10-27 23:46:08 +0000337static void AddNodeIDOperands(FoldingSetNodeID &ID,
Dan Gohman475871a2008-07-27 21:46:04 +0000338 const SDValue *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000339 for (; NumOps; --NumOps, ++Ops) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000340 ID.AddPointer(Ops->getNode());
Gabor Greif99a6cb92008-08-26 22:36:50 +0000341 ID.AddInteger(Ops->getResNo());
Chris Lattner63e3f142007-02-04 07:28:00 +0000342 }
Jim Laskey583bd472006-10-27 23:46:08 +0000343}
344
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000345/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
346///
347static void AddNodeIDOperands(FoldingSetNodeID &ID,
348 const SDUse *Ops, unsigned NumOps) {
349 for (; NumOps; --NumOps, ++Ops) {
Dan Gohmane7852d02009-01-26 04:35:06 +0000350 ID.AddPointer(Ops->getNode());
351 ID.AddInteger(Ops->getResNo());
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000352 }
353}
354
Jim Laskey583bd472006-10-27 23:46:08 +0000355static void AddNodeIDNode(FoldingSetNodeID &ID,
Scott Michelfdc40a02009-02-17 22:15:04 +0000356 unsigned short OpC, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +0000357 const SDValue *OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000358 AddNodeIDOpcode(ID, OpC);
359 AddNodeIDValueTypes(ID, VTList);
360 AddNodeIDOperands(ID, OpList, N);
361}
362
Duncan Sands0dc40452008-10-27 15:30:53 +0000363/// AddNodeIDCustom - If this is an SDNode with special info, add this info to
364/// the NodeID data.
365static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000366 switch (N->getOpcode()) {
Chris Lattner2a4ed822009-06-25 21:21:14 +0000367 case ISD::TargetExternalSymbol:
368 case ISD::ExternalSymbol:
Torok Edwinc23197a2009-07-14 16:55:14 +0000369 llvm_unreachable("Should only be used on nodes with operands");
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000370 default: break; // Normal nodes don't need extra info.
371 case ISD::TargetConstant:
372 case ISD::Constant:
Dan Gohman4fbd7962008-09-12 18:08:03 +0000373 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000374 break;
375 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000376 case ISD::ConstantFP: {
Dan Gohman4fbd7962008-09-12 18:08:03 +0000377 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000378 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000379 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000380 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000381 case ISD::GlobalAddress:
382 case ISD::TargetGlobalTLSAddress:
383 case ISD::GlobalTLSAddress: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000384 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000385 ID.AddPointer(GA->getGlobal());
386 ID.AddInteger(GA->getOffset());
Chris Lattner2a4ed822009-06-25 21:21:14 +0000387 ID.AddInteger(GA->getTargetFlags());
Pete Cooper32ecfb42012-07-30 20:23:19 +0000388 ID.AddInteger(GA->getAddressSpace());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000389 break;
390 }
391 case ISD::BasicBlock:
392 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
393 break;
394 case ISD::Register:
395 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
396 break;
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +0000397 case ISD::RegisterMask:
398 ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask());
399 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000400 case ISD::SRCVALUE:
401 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
402 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000403 case ISD::FrameIndex:
404 case ISD::TargetFrameIndex:
405 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
406 break;
407 case ISD::JumpTable:
408 case ISD::TargetJumpTable:
409 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
Chris Lattnerf5a55462009-06-25 21:35:31 +0000410 ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000411 break;
412 case ISD::ConstantPool:
413 case ISD::TargetConstantPool: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000414 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000415 ID.AddInteger(CP->getAlignment());
416 ID.AddInteger(CP->getOffset());
417 if (CP->isMachineConstantPoolEntry())
Jim Grosbach5405d582011-09-27 20:59:33 +0000418 CP->getMachineCPVal()->addSelectionDAGCSEId(ID);
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000419 else
420 ID.AddPointer(CP->getConstVal());
Chris Lattnerf5a55462009-06-25 21:35:31 +0000421 ID.AddInteger(CP->getTargetFlags());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000422 break;
423 }
Jakob Stoklund Olesen74500bd2012-08-07 22:37:05 +0000424 case ISD::TargetIndex: {
425 const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N);
426 ID.AddInteger(TI->getIndex());
427 ID.AddInteger(TI->getOffset());
428 ID.AddInteger(TI->getTargetFlags());
429 break;
430 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000431 case ISD::LOAD: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000432 const LoadSDNode *LD = cast<LoadSDNode>(N);
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000433 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohmana7ce7412009-02-03 00:08:45 +0000434 ID.AddInteger(LD->getRawSubclassData());
Pete Cooper32ecfb42012-07-30 20:23:19 +0000435 ID.AddInteger(LD->getPointerInfo().getAddrSpace());
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);
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000440 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmana7ce7412009-02-03 00:08:45 +0000441 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper32ecfb42012-07-30 20:23:19 +0000442 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000443 break;
444 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000445 case ISD::ATOMIC_CMP_SWAP:
446 case ISD::ATOMIC_SWAP:
447 case ISD::ATOMIC_LOAD_ADD:
448 case ISD::ATOMIC_LOAD_SUB:
449 case ISD::ATOMIC_LOAD_AND:
450 case ISD::ATOMIC_LOAD_OR:
451 case ISD::ATOMIC_LOAD_XOR:
452 case ISD::ATOMIC_LOAD_NAND:
453 case ISD::ATOMIC_LOAD_MIN:
454 case ISD::ATOMIC_LOAD_MAX:
455 case ISD::ATOMIC_LOAD_UMIN:
Eli Friedman327236c2011-08-24 20:50:09 +0000456 case ISD::ATOMIC_LOAD_UMAX:
457 case ISD::ATOMIC_LOAD:
458 case ISD::ATOMIC_STORE: {
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000459 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
Dan Gohmana7ce7412009-02-03 00:08:45 +0000460 ID.AddInteger(AT->getMemoryVT().getRawBits());
461 ID.AddInteger(AT->getRawSubclassData());
Pete Cooper32ecfb42012-07-30 20:23:19 +0000462 ID.AddInteger(AT->getPointerInfo().getAddrSpace());
463 break;
464 }
465 case ISD::PREFETCH: {
466 const MemSDNode *PF = cast<MemSDNode>(N);
467 ID.AddInteger(PF->getPointerInfo().getAddrSpace());
Mon P Wang28873102008-06-25 08:15:39 +0000468 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000469 }
Nate Begeman9008ca62009-04-27 18:41:29 +0000470 case ISD::VECTOR_SHUFFLE: {
471 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
Eric Christopher4d7c18c2009-08-22 00:40:45 +0000472 for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000473 i != e; ++i)
474 ID.AddInteger(SVN->getMaskElt(i));
475 break;
476 }
Dan Gohman8c2b5252009-10-30 01:27:03 +0000477 case ISD::TargetBlockAddress:
478 case ISD::BlockAddress: {
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000479 const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N);
480 ID.AddPointer(BA->getBlockAddress());
481 ID.AddInteger(BA->getOffset());
482 ID.AddInteger(BA->getTargetFlags());
Dan Gohman8c2b5252009-10-30 01:27:03 +0000483 break;
484 }
Mon P Wang28873102008-06-25 08:15:39 +0000485 } // end switch (N->getOpcode())
Pete Cooper32ecfb42012-07-30 20:23:19 +0000486
487 // Target specific memory nodes could also have address spaces to check.
488 if (N->isTargetMemoryOpcode())
489 ID.AddInteger(cast<MemSDNode>(N)->getPointerInfo().getAddrSpace());
Jim Laskey583bd472006-10-27 23:46:08 +0000490}
491
Duncan Sands0dc40452008-10-27 15:30:53 +0000492/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
493/// data.
494static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
495 AddNodeIDOpcode(ID, N->getOpcode());
496 // Add the return value info.
497 AddNodeIDValueTypes(ID, N->getVTList());
498 // Add the operand info.
499 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
500
501 // Handle SDNode leafs with special info.
502 AddNodeIDCustom(ID, N);
503}
504
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000505/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
David Greene1157f792010-02-17 20:21:42 +0000506/// the CSE map that carries volatility, temporalness, indexing mode, and
Dan Gohmana7ce7412009-02-03 00:08:45 +0000507/// extension/truncation information.
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000508///
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000509static inline unsigned
David Greene1157f792010-02-17 20:21:42 +0000510encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000511 bool isNonTemporal, bool isInvariant) {
Dan Gohmana7ce7412009-02-03 00:08:45 +0000512 assert((ConvType & 3) == ConvType &&
513 "ConvType may not require more than 2 bits!");
514 assert((AM & 7) == AM &&
515 "AM may not require more than 3 bits!");
516 return ConvType |
517 (AM << 2) |
David Greene1157f792010-02-17 20:21:42 +0000518 (isVolatile << 5) |
Pete Cooperd752e0f2011-11-08 18:42:53 +0000519 (isNonTemporal << 6) |
520 (isInvariant << 7);
Dan Gohmanb8d2f552008-08-20 15:58:01 +0000521}
522
Jim Laskey583bd472006-10-27 23:46:08 +0000523//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000524// SelectionDAG Class
525//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000526
Duncan Sands0dc40452008-10-27 15:30:53 +0000527/// doNotCSE - Return true if CSE should not be performed for this node.
528static bool doNotCSE(SDNode *N) {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000529 if (N->getValueType(0) == MVT::Glue)
Duncan Sands0dc40452008-10-27 15:30:53 +0000530 return true; // Never CSE anything that produces a flag.
531
532 switch (N->getOpcode()) {
533 default: break;
534 case ISD::HANDLENODE:
Duncan Sands0dc40452008-10-27 15:30:53 +0000535 case ISD::EH_LABEL:
Duncan Sands0dc40452008-10-27 15:30:53 +0000536 return true; // Never CSE these nodes.
537 }
538
539 // Check that remaining values produced are not flags.
540 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000541 if (N->getValueType(i) == MVT::Glue)
Duncan Sands0dc40452008-10-27 15:30:53 +0000542 return true; // Never CSE anything that produces a flag.
543
544 return false;
545}
546
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000547/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000548/// SelectionDAG.
549void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000550 // Create a dummy node (which is not added to allnodes), that adds a reference
551 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000552 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000553
Chris Lattner190a4182006-08-04 17:45:20 +0000554 SmallVector<SDNode*, 128> DeadNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000555
Chris Lattner190a4182006-08-04 17:45:20 +0000556 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000557 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000558 if (I->use_empty())
559 DeadNodes.push_back(I);
560
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000561 RemoveDeadNodes(DeadNodes);
Scott Michelfdc40a02009-02-17 22:15:04 +0000562
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000563 // If the root changed (e.g. it was a dead load, update the root).
564 setRoot(Dummy.getValue());
565}
566
567/// RemoveDeadNodes - This method deletes the unreachable nodes in the
568/// given list, and any nodes that become unreachable as a result.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000569void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +0000570
Chris Lattner190a4182006-08-04 17:45:20 +0000571 // Process the worklist, deleting the nodes and adding their uses to the
572 // worklist.
573 while (!DeadNodes.empty()) {
Dan Gohmane7852d02009-01-26 04:35:06 +0000574 SDNode *N = DeadNodes.pop_back_val();
Scott Michelfdc40a02009-02-17 22:15:04 +0000575
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000576 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
577 DUL->NodeDeleted(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000578
Chris Lattner190a4182006-08-04 17:45:20 +0000579 // Take the node out of the appropriate CSE map.
580 RemoveNodeFromCSEMaps(N);
581
582 // Next, brutally remove the operand list. This is safe to do, as there are
583 // no cycles in the graph.
Dan Gohmane7852d02009-01-26 04:35:06 +0000584 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
585 SDUse &Use = *I++;
586 SDNode *Operand = Use.getNode();
587 Use.set(SDValue());
588
Chris Lattner190a4182006-08-04 17:45:20 +0000589 // Now that we removed this operand, see if there are no uses of it left.
590 if (Operand->use_empty())
591 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000592 }
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000593
Dan Gohmanc5336122009-01-19 22:39:36 +0000594 DeallocateNode(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000595 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000596}
597
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000598void SelectionDAG::RemoveDeadNode(SDNode *N){
Dan Gohmane8be6c62008-07-17 19:10:17 +0000599 SmallVector<SDNode*, 16> DeadNodes(1, N);
Eli Friedman2efa35f2011-11-08 01:25:24 +0000600
601 // Create a dummy node that adds a reference to the root node, preventing
602 // it from being deleted. (This matters if the root is an operand of the
603 // dead node.)
604 HandleSDNode Dummy(getRoot());
605
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000606 RemoveDeadNodes(DeadNodes);
Evan Cheng130a6472006-10-12 20:34:05 +0000607}
608
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000609void SelectionDAG::DeleteNode(SDNode *N) {
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000610 // First take this out of the appropriate CSE map.
611 RemoveNodeFromCSEMaps(N);
612
Scott Michelfdc40a02009-02-17 22:15:04 +0000613 // Finally, remove uses due to operands of this node, remove from the
Chris Lattner1e111c72005-09-07 05:37:01 +0000614 // AllNodes list, and delete the node.
615 DeleteNodeNotInCSEMaps(N);
616}
617
618void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmane77f89d2009-01-25 16:20:37 +0000619 assert(N != AllNodes.begin() && "Cannot delete the entry node!");
620 assert(N->use_empty() && "Cannot delete a node that is not dead!");
Dan Gohmanc5336122009-01-19 22:39:36 +0000621
Dan Gohmanf06c8352008-09-30 18:30:35 +0000622 // Drop all of the operands and decrement used node's use counts.
Dan Gohmane7852d02009-01-26 04:35:06 +0000623 N->DropOperands();
Bill Wendlinga1dc6022008-10-19 20:51:12 +0000624
Dan Gohmanc5336122009-01-19 22:39:36 +0000625 DeallocateNode(N);
626}
627
628void SelectionDAG::DeallocateNode(SDNode *N) {
629 if (N->OperandsNeedDelete)
Chris Lattner63e3f142007-02-04 07:28:00 +0000630 delete[] N->OperandList;
Scott Michelfdc40a02009-02-17 22:15:04 +0000631
Dan Gohmanc5336122009-01-19 22:39:36 +0000632 // Set the opcode to DELETED_NODE to help catch bugs when node
633 // memory is reallocated.
634 N->NodeType = ISD::DELETED_NODE;
635
Dan Gohman11467282008-08-26 01:44:34 +0000636 NodeAllocator.Deallocate(AllNodes.remove(N));
Daniel Dunbar819309e2009-12-16 20:10:05 +0000637
Evan Chengbfcb3052010-03-25 01:38:16 +0000638 // If any of the SDDbgValue nodes refer to this SDNode, invalidate them.
Benjamin Kramer22a54c12011-06-18 13:13:44 +0000639 ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N);
Evan Chengbfcb3052010-03-25 01:38:16 +0000640 for (unsigned i = 0, e = DbgVals.size(); i != e; ++i)
641 DbgVals[i]->setIsInvalidated();
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000642}
643
Chris Lattner149c58c2005-08-16 18:17:10 +0000644/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
645/// correspond to it. This is useful when we're about to delete or repurpose
646/// the node. We don't want future request for structurally identical nodes
647/// to return N anymore.
Dan Gohman095cc292008-09-13 01:54:27 +0000648bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000649 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000650 switch (N->getOpcode()) {
Dan Gohman095cc292008-09-13 01:54:27 +0000651 case ISD::HANDLENODE: return false; // noop.
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000652 case ISD::CONDCODE:
653 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
654 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000655 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000656 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
657 break;
Bill Wendling056292f2008-09-16 21:48:12 +0000658 case ISD::ExternalSymbol:
659 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000660 break;
Chris Lattner1af22312009-06-25 18:45:50 +0000661 case ISD::TargetExternalSymbol: {
662 ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
663 Erased = TargetExternalSymbols.erase(
664 std::pair<std::string,unsigned char>(ESN->getSymbol(),
665 ESN->getTargetFlags()));
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000666 break;
Chris Lattner1af22312009-06-25 18:45:50 +0000667 }
Duncan Sandsf411b832007-10-17 13:49:58 +0000668 case ISD::VALUETYPE: {
Owen Andersone50ed302009-08-10 22:56:29 +0000669 EVT VT = cast<VTSDNode>(N)->getVT();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000670 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000671 Erased = ExtendedValueTypeNodes.erase(VT);
672 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000673 Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != 0;
674 ValueTypeNodes[VT.getSimpleVT().SimpleTy] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000675 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000676 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000677 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000678 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000679 // Remove it from the CSE Map.
Duncan Sandsa30b7d22010-12-12 13:22:50 +0000680 assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
681 assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
Chris Lattner4a283e92006-08-11 18:38:11 +0000682 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000683 break;
684 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000685#ifndef NDEBUG
Scott Michelfdc40a02009-02-17 22:15:04 +0000686 // Verify that the node was actually in one of the CSE maps, unless it has a
Chris Lattner6621e3b2005-09-02 19:15:44 +0000687 // flag result (which cannot be CSE'd) or is one of the special cases that are
688 // not subject to CSE.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000689 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue &&
Duncan Sands0dc40452008-10-27 15:30:53 +0000690 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000691 N->dump(this);
David Greene55d146e2010-01-05 01:24:36 +0000692 dbgs() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000693 llvm_unreachable("Node is not in map!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000694 }
695#endif
Dan Gohman095cc292008-09-13 01:54:27 +0000696 return Erased;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000697}
698
Dan Gohman39946102009-01-25 16:29:12 +0000699/// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
700/// maps and modified in place. Add it back to the CSE maps, unless an identical
701/// node already exists, in which case transfer all its users to the existing
702/// node. This transfer can potentially trigger recursive merging.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000703///
Dan Gohman39946102009-01-25 16:29:12 +0000704void
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000705SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) {
Dan Gohman39946102009-01-25 16:29:12 +0000706 // For node types that aren't CSE'd, just act as if no identical node
707 // already exists.
708 if (!doNotCSE(N)) {
709 SDNode *Existing = CSEMap.GetOrInsertNode(N);
710 if (Existing != N) {
711 // If there was already an existing matching node, use ReplaceAllUsesWith
712 // to replace the dead one with the existing one. This can cause
713 // recursive merging of other unrelated nodes down the line.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000714 ReplaceAllUsesWith(N, Existing);
Evan Cheng71e86852008-07-08 20:06:39 +0000715
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000716 // N is now dead. Inform the listeners and delete it.
717 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
718 DUL->NodeDeleted(N, Existing);
Dan Gohman39946102009-01-25 16:29:12 +0000719 DeleteNodeNotInCSEMaps(N);
720 return;
721 }
722 }
Evan Cheng71e86852008-07-08 20:06:39 +0000723
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000724 // If the node doesn't already exist, we updated it. Inform listeners.
725 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
726 DUL->NodeUpdated(N);
Chris Lattner8b8749f2005-08-17 19:00:20 +0000727}
728
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000729/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelfdc40a02009-02-17 22:15:04 +0000730/// were replaced with those specified. If this node is never memoized,
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000731/// return null, otherwise return a pointer to the slot it would take. If a
732/// node already exists with these operands, the slot will be non-null.
Dan Gohman475871a2008-07-27 21:46:04 +0000733SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattnera5682852006-08-07 23:03:03 +0000734 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000735 if (doNotCSE(N))
736 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000737
Dan Gohman475871a2008-07-27 21:46:04 +0000738 SDValue Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000739 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000740 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Duncan Sands0dc40452008-10-27 15:30:53 +0000741 AddNodeIDCustom(ID, N);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000742 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000743 return Node;
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000744}
745
746/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelfdc40a02009-02-17 22:15:04 +0000747/// were replaced with those specified. If this node is never memoized,
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000748/// return null, otherwise return a pointer to the slot it would take. If a
749/// node already exists with these operands, the slot will be non-null.
Scott Michelfdc40a02009-02-17 22:15:04 +0000750SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000751 SDValue Op1, SDValue Op2,
Chris Lattnera5682852006-08-07 23:03:03 +0000752 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000753 if (doNotCSE(N))
754 return 0;
755
Dan Gohman475871a2008-07-27 21:46:04 +0000756 SDValue Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000757 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000758 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Duncan Sands0dc40452008-10-27 15:30:53 +0000759 AddNodeIDCustom(ID, N);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000760 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000761 return Node;
Chris Lattnera5682852006-08-07 23:03:03 +0000762}
763
764
765/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelfdc40a02009-02-17 22:15:04 +0000766/// were replaced with those specified. If this node is never memoized,
Chris Lattnera5682852006-08-07 23:03:03 +0000767/// return null, otherwise return a pointer to the slot it would take. If a
768/// node already exists with these operands, the slot will be non-null.
Scott Michelfdc40a02009-02-17 22:15:04 +0000769SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000770 const SDValue *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000771 void *&InsertPos) {
Duncan Sands0dc40452008-10-27 15:30:53 +0000772 if (doNotCSE(N))
773 return 0;
Evan Cheng71e86852008-07-08 20:06:39 +0000774
Jim Laskey583bd472006-10-27 23:46:08 +0000775 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000776 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Duncan Sands0dc40452008-10-27 15:30:53 +0000777 AddNodeIDCustom(ID, N);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000778 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbar819309e2009-12-16 20:10:05 +0000779 return Node;
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000780}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000781
Benjamin Kramer3ca13632010-11-20 15:53:24 +0000782#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +0000783/// VerifyNodeCommon - Sanity check the given node. Aborts if it is invalid.
784static void VerifyNodeCommon(SDNode *N) {
Duncan Sandsd038e042008-07-21 10:20:31 +0000785 switch (N->getOpcode()) {
786 default:
787 break;
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000788 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +0000789 EVT VT = N->getValueType(0);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000790 assert(N->getNumValues() == 1 && "Too many results!");
791 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
792 "Wrong return type!");
793 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
794 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
795 "Mismatched operand types!");
796 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
797 "Wrong operand type!");
798 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
799 "Wrong return type size");
800 break;
801 }
Duncan Sandsd038e042008-07-21 10:20:31 +0000802 case ISD::BUILD_VECTOR: {
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000803 assert(N->getNumValues() == 1 && "Too many results!");
804 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsd038e042008-07-21 10:20:31 +0000805 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000806 "Wrong number of operands!");
Owen Andersone50ed302009-08-10 22:56:29 +0000807 EVT EltVT = N->getValueType(0).getVectorElementType();
Eli Friedman9db817f2011-09-09 21:04:06 +0000808 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Rafael Espindola15684b22009-04-24 12:40:33 +0000809 assert((I->getValueType() == EltVT ||
Nate Begeman9008ca62009-04-27 18:41:29 +0000810 (EltVT.isInteger() && I->getValueType().isInteger() &&
811 EltVT.bitsLE(I->getValueType()))) &&
812 "Wrong operand type!");
Eli Friedman9db817f2011-09-09 21:04:06 +0000813 assert(I->getValueType() == N->getOperand(0).getValueType() &&
814 "Operands must all have the same type");
815 }
Duncan Sandsd038e042008-07-21 10:20:31 +0000816 break;
817 }
818 }
819}
820
Duncan Sands59d2dad2010-11-20 11:25:00 +0000821/// VerifySDNode - Sanity check the given SDNode. Aborts if it is invalid.
822static void VerifySDNode(SDNode *N) {
823 // The SDNode allocators cannot be used to allocate nodes with fields that are
824 // not present in an SDNode!
825 assert(!isa<MemSDNode>(N) && "Bad MemSDNode!");
826 assert(!isa<ShuffleVectorSDNode>(N) && "Bad ShuffleVectorSDNode!");
827 assert(!isa<ConstantSDNode>(N) && "Bad ConstantSDNode!");
828 assert(!isa<ConstantFPSDNode>(N) && "Bad ConstantFPSDNode!");
829 assert(!isa<GlobalAddressSDNode>(N) && "Bad GlobalAddressSDNode!");
830 assert(!isa<FrameIndexSDNode>(N) && "Bad FrameIndexSDNode!");
831 assert(!isa<JumpTableSDNode>(N) && "Bad JumpTableSDNode!");
832 assert(!isa<ConstantPoolSDNode>(N) && "Bad ConstantPoolSDNode!");
833 assert(!isa<BasicBlockSDNode>(N) && "Bad BasicBlockSDNode!");
834 assert(!isa<SrcValueSDNode>(N) && "Bad SrcValueSDNode!");
835 assert(!isa<MDNodeSDNode>(N) && "Bad MDNodeSDNode!");
836 assert(!isa<RegisterSDNode>(N) && "Bad RegisterSDNode!");
837 assert(!isa<BlockAddressSDNode>(N) && "Bad BlockAddressSDNode!");
838 assert(!isa<EHLabelSDNode>(N) && "Bad EHLabelSDNode!");
839 assert(!isa<ExternalSymbolSDNode>(N) && "Bad ExternalSymbolSDNode!");
840 assert(!isa<CondCodeSDNode>(N) && "Bad CondCodeSDNode!");
841 assert(!isa<CvtRndSatSDNode>(N) && "Bad CvtRndSatSDNode!");
842 assert(!isa<VTSDNode>(N) && "Bad VTSDNode!");
843 assert(!isa<MachineSDNode>(N) && "Bad MachineSDNode!");
844
845 VerifyNodeCommon(N);
846}
847
848/// VerifyMachineNode - Sanity check the given MachineNode. Aborts if it is
849/// invalid.
850static void VerifyMachineNode(SDNode *N) {
851 // The MachineNode allocators cannot be used to allocate nodes with fields
852 // that are not present in a MachineNode!
853 // Currently there are no such nodes.
854
855 VerifyNodeCommon(N);
856}
Benjamin Kramer3ca13632010-11-20 15:53:24 +0000857#endif // NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +0000858
Owen Andersone50ed302009-08-10 22:56:29 +0000859/// getEVTAlignment - Compute the default alignment value for the
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000860/// given type.
861///
Owen Andersone50ed302009-08-10 22:56:29 +0000862unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000863 Type *Ty = VT == MVT::iPTR ?
Owen Anderson1d0be152009-08-13 21:58:54 +0000864 PointerType::get(Type::getInt8Ty(*getContext()), 0) :
Owen Anderson23b9b192009-08-12 00:36:31 +0000865 VT.getTypeForEVT(*getContext());
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000866
Bill Wendlingba54bca2013-06-19 21:36:55 +0000867 return TM.getTargetLowering()->getDataLayout()->getABITypeAlignment(Ty);
Dan Gohman9c6e70e2008-07-08 23:46:32 +0000868}
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000869
Dale Johannesen92570c42009-02-07 02:15:05 +0000870// EntryNode could meaningfully have debug info if we can find it...
Devang Patel0508d042011-12-15 18:21:18 +0000871SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL)
Bill Wendlingba54bca2013-06-19 21:36:55 +0000872 : TM(tm), TSI(*tm.getSelectionDAGInfo()), TTI(0), OptLevel(OL),
873 EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
Andrew Trickdd0fb012013-05-25 03:08:10 +0000874 Root(getEntryNode()), UpdateListeners(0) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000875 AllNodes.push_back(&EntryNode);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000876 DbgInfo = new SDDbgInfo();
Dan Gohman6f179662008-08-23 00:50:30 +0000877}
878
Chandler Carruthe4b4edd2013-01-05 12:32:17 +0000879void SelectionDAG::init(MachineFunction &mf, const TargetTransformInfo *tti) {
Dan Gohman7c3234c2008-08-27 23:52:12 +0000880 MF = &mf;
Chandler Carruthe4b4edd2013-01-05 12:32:17 +0000881 TTI = tti;
Eric Christopher4d7c18c2009-08-22 00:40:45 +0000882 Context = &mf.getFunction()->getContext();
Dan Gohman7c3234c2008-08-27 23:52:12 +0000883}
884
Chris Lattner78ec3112003-08-11 14:57:33 +0000885SelectionDAG::~SelectionDAG() {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000886 assert(!UpdateListeners && "Dangling registered DAGUpdateListeners");
Dan Gohmanf350b272008-08-23 02:25:05 +0000887 allnodes_clear();
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000888 delete DbgInfo;
Dan Gohmanf350b272008-08-23 02:25:05 +0000889}
890
891void SelectionDAG::allnodes_clear() {
Dan Gohman11467282008-08-26 01:44:34 +0000892 assert(&*AllNodes.begin() == &EntryNode);
893 AllNodes.remove(AllNodes.begin());
Dan Gohmanc5336122009-01-19 22:39:36 +0000894 while (!AllNodes.empty())
895 DeallocateNode(AllNodes.begin());
Chris Lattner78ec3112003-08-11 14:57:33 +0000896}
897
Dan Gohman7c3234c2008-08-27 23:52:12 +0000898void SelectionDAG::clear() {
Dan Gohmanf350b272008-08-23 02:25:05 +0000899 allnodes_clear();
900 OperandAllocator.Reset();
901 CSEMap.clear();
902
903 ExtendedValueTypeNodes.clear();
Bill Wendling056292f2008-09-16 21:48:12 +0000904 ExternalSymbols.clear();
905 TargetExternalSymbols.clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000906 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
907 static_cast<CondCodeSDNode*>(0));
908 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
909 static_cast<SDNode*>(0));
910
Dan Gohmane7852d02009-01-26 04:35:06 +0000911 EntryNode.UseList = 0;
Dan Gohmanf350b272008-08-23 02:25:05 +0000912 AllNodes.push_back(&EntryNode);
913 Root = getEntryNode();
Evan Cheng31441b72010-03-29 20:48:30 +0000914 DbgInfo->clear();
Dan Gohmanf350b272008-08-23 02:25:05 +0000915}
916
Andrew Trickac6d9be2013-05-25 02:42:55 +0000917SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Nadav Rotema3c42f32011-09-27 11:16:47 +0000918 return VT.bitsGT(Op.getValueType()) ?
919 getNode(ISD::ANY_EXTEND, DL, VT, Op) :
920 getNode(ISD::TRUNCATE, DL, VT, Op);
921}
922
Andrew Trickac6d9be2013-05-25 02:42:55 +0000923SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands3a66a682009-10-13 21:04:12 +0000924 return VT.bitsGT(Op.getValueType()) ?
925 getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
926 getNode(ISD::TRUNCATE, DL, VT, Op);
927}
928
Andrew Trickac6d9be2013-05-25 02:42:55 +0000929SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands3a66a682009-10-13 21:04:12 +0000930 return VT.bitsGT(Op.getValueType()) ?
931 getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
932 getNode(ISD::TRUNCATE, DL, VT, Op);
933}
934
Andrew Trickac6d9be2013-05-25 02:42:55 +0000935SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, SDLoc DL, EVT VT) {
Dan Gohman87862e72009-12-11 21:31:27 +0000936 assert(!VT.isVector() &&
937 "getZeroExtendInReg should use the vector element type instead of "
938 "the vector type!");
Bill Wendling6ce610f2009-01-30 22:23:15 +0000939 if (Op.getValueType() == VT) return Op;
Dan Gohman87862e72009-12-11 21:31:27 +0000940 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
941 APInt Imm = APInt::getLowBitsSet(BitWidth,
Bill Wendling6ce610f2009-01-30 22:23:15 +0000942 VT.getSizeInBits());
943 return getNode(ISD::AND, DL, Op.getValueType(), Op,
944 getConstant(Imm, Op.getValueType()));
945}
946
Bob Wilson4c245462009-01-22 17:39:32 +0000947/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
948///
Andrew Trickac6d9be2013-05-25 02:42:55 +0000949SDValue SelectionDAG::getNOT(SDLoc DL, SDValue Val, EVT VT) {
Chris Lattner5cf0b6e2010-02-24 22:44:06 +0000950 EVT EltVT = VT.getScalarType();
Dan Gohmanbd209ab2009-04-20 22:51:43 +0000951 SDValue NegOne =
952 getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
Bill Wendling41b9d272009-01-30 22:11:22 +0000953 return getNode(ISD::XOR, DL, VT, Val, NegOne);
954}
955
Owen Andersone50ed302009-08-10 22:56:29 +0000956SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT) {
Chris Lattner5cf0b6e2010-02-24 22:44:06 +0000957 EVT EltVT = VT.getScalarType();
Dan Gohmance9bc122009-01-27 20:39:34 +0000958 assert((EltVT.getSizeInBits() >= 64 ||
959 (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
960 "getConstant with a uint64_t value that doesn't fit in the type!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000961 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000962}
963
Owen Andersone50ed302009-08-10 22:56:29 +0000964SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000965 return getConstant(*ConstantInt::get(*Context, Val), VT, isT);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000966}
967
Owen Andersone50ed302009-08-10 22:56:29 +0000968SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000969 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000970
Chris Lattner5cf0b6e2010-02-24 22:44:06 +0000971 EVT EltVT = VT.getScalarType();
Duncan Sands28b77e92011-09-06 19:07:46 +0000972 const ConstantInt *Elt = &Val;
Chris Lattner61b09412006-08-11 21:01:22 +0000973
Bill Wendlingba54bca2013-06-19 21:36:55 +0000974 const TargetLowering *TLI = TM.getTargetLowering();
975
Duncan Sands28b77e92011-09-06 19:07:46 +0000976 // In some cases the vector type is legal but the element type is illegal and
977 // needs to be promoted, for example v8i8 on ARM. In this case, promote the
978 // inserted value (the type does not need to match the vector element type).
979 // Any extra bits introduced will be truncated away.
Bill Wendlingba54bca2013-06-19 21:36:55 +0000980 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
Duncan Sands28b77e92011-09-06 19:07:46 +0000981 TargetLowering::TypePromoteInteger) {
Bill Wendlingba54bca2013-06-19 21:36:55 +0000982 EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
Duncan Sands28b77e92011-09-06 19:07:46 +0000983 APInt NewVal = Elt->getValue().zext(EltVT.getSizeInBits());
984 Elt = ConstantInt::get(*getContext(), NewVal);
985 }
986
987 assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
988 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000989 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000990 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +0000991 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Duncan Sands28b77e92011-09-06 19:07:46 +0000992 ID.AddPointer(Elt);
Chris Lattner61b09412006-08-11 21:01:22 +0000993 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000994 SDNode *N = NULL;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000995 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000996 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +0000997 return SDValue(N, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +0000998
Dan Gohman89081322007-12-12 22:21:26 +0000999 if (!N) {
Duncan Sands28b77e92011-09-06 19:07:46 +00001000 N = new (NodeAllocator) ConstantSDNode(isT, Elt, EltVT);
Dan Gohman89081322007-12-12 22:21:26 +00001001 CSEMap.InsertNode(N, IP);
1002 AllNodes.push_back(N);
1003 }
1004
Dan Gohman475871a2008-07-27 21:46:04 +00001005 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001006 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001007 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001008 Ops.assign(VT.getVectorNumElements(), Result);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001009 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, &Ops[0], Ops.size());
Dan Gohman89081322007-12-12 22:21:26 +00001010 }
1011 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +00001012}
1013
Dan Gohman475871a2008-07-27 21:46:04 +00001014SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001015 return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget);
Chris Lattner0bd48932008-01-17 07:00:52 +00001016}
1017
1018
Owen Andersone50ed302009-08-10 22:56:29 +00001019SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001020 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
Dan Gohman4fbd7962008-09-12 18:08:03 +00001021}
1022
Owen Andersone50ed302009-08-10 22:56:29 +00001023SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
Duncan Sands83ec4b62008-06-06 12:08:01 +00001024 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001025
Chris Lattner5cf0b6e2010-02-24 22:44:06 +00001026 EVT EltVT = VT.getScalarType();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001027
Chris Lattnerd8658612005-02-17 20:17:32 +00001028 // Do the map lookup using the actual bit pattern for the floating point
1029 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1030 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001031 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +00001032 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001033 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Dan Gohman4fbd7962008-09-12 18:08:03 +00001034 ID.AddPointer(&V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001035 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +00001036 SDNode *N = NULL;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001037 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +00001038 if (!VT.isVector())
Dan Gohman475871a2008-07-27 21:46:04 +00001039 return SDValue(N, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001040
Evan Chengc908dcd2007-06-29 21:36:04 +00001041 if (!N) {
Dan Gohman95531882010-03-18 18:49:47 +00001042 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +00001043 CSEMap.InsertNode(N, IP);
1044 AllNodes.push_back(N);
1045 }
1046
Dan Gohman475871a2008-07-27 21:46:04 +00001047 SDValue Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001048 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001049 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001050 Ops.assign(VT.getVectorNumElements(), Result);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001051 // FIXME SDLoc info might be appropriate here
1052 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, &Ops[0], Ops.size());
Dan Gohman7f321562007-06-25 16:23:39 +00001053 }
1054 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001055}
1056
Owen Andersone50ed302009-08-10 22:56:29 +00001057SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
Chris Lattner5cf0b6e2010-02-24 22:44:06 +00001058 EVT EltVT = VT.getScalarType();
Owen Anderson825b72b2009-08-11 20:47:22 +00001059 if (EltVT==MVT::f32)
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001060 return getConstantFP(APFloat((float)Val), VT, isTarget);
Dale Johannesen0a406ae2010-05-07 21:35:53 +00001061 else if (EltVT==MVT::f64)
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001062 return getConstantFP(APFloat(Val), VT, isTarget);
Hal Finkel6eb7a422012-12-30 19:03:32 +00001063 else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 ||
1064 EltVT==MVT::f16) {
Dale Johannesen0a406ae2010-05-07 21:35:53 +00001065 bool ignored;
1066 APFloat apf = APFloat(Val);
Tim Northover0a29cb02013-01-22 09:46:31 +00001067 apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
Dale Johannesen0a406ae2010-05-07 21:35:53 +00001068 &ignored);
1069 return getConstantFP(apf, VT, isTarget);
Craig Topper5e25ee82012-02-05 08:31:47 +00001070 } else
1071 llvm_unreachable("Unsupported type in getConstantFP");
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001072}
1073
Andrew Trickac6d9be2013-05-25 02:42:55 +00001074SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
Owen Andersone50ed302009-08-10 22:56:29 +00001075 EVT VT, int64_t Offset,
Chris Lattner2a4ed822009-06-25 21:21:14 +00001076 bool isTargetGA,
1077 unsigned char TargetFlags) {
1078 assert((TargetFlags == 0 || isTargetGA) &&
1079 "Cannot set target flags on target-independent globals");
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001080
Dan Gohman6520e202008-10-18 02:06:02 +00001081 // Truncate (with sign-extension) the offset value to the pointer size.
Bill Wendlingba54bca2013-06-19 21:36:55 +00001082 unsigned BitWidth = TM.getTargetLowering()->getPointerTy().getSizeInBits();
Dan Gohman6520e202008-10-18 02:06:02 +00001083 if (BitWidth < 64)
Richard Smith1144af32012-08-24 23:29:28 +00001084 Offset = SignExtend64(Offset, BitWidth);
Dan Gohman6520e202008-10-18 02:06:02 +00001085
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +00001086 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
1087 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +00001088 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +00001089 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
Anton Korobeynikov19e861a2008-09-09 20:05:04 +00001090 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +00001091 }
1092
Chris Lattner2a4ed822009-06-25 21:21:14 +00001093 unsigned Opc;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001094 if (GVar && GVar->isThreadLocal())
1095 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1096 else
1097 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +00001098
Jim Laskey583bd472006-10-27 23:46:08 +00001099 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001100 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001101 ID.AddPointer(GV);
1102 ID.AddInteger(Offset);
Chris Lattner2a4ed822009-06-25 21:21:14 +00001103 ID.AddInteger(TargetFlags);
Pete Cooper32ecfb42012-07-30 20:23:19 +00001104 ID.AddInteger(GV->getType()->getAddressSpace());
Chris Lattner61b09412006-08-11 21:01:22 +00001105 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001106 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman74692c02009-01-25 16:21:38 +00001107 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001108
Andrew Trickac6d9be2013-05-25 02:42:55 +00001109 SDNode *N = new (NodeAllocator) GlobalAddressSDNode(Opc, DL.getIROrder(),
1110 DL.getDebugLoc(), GV, VT,
Dan Gohman95531882010-03-18 18:49:47 +00001111 Offset, TargetFlags);
Chris Lattner61b09412006-08-11 21:01:22 +00001112 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001113 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001114 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001115}
1116
Owen Andersone50ed302009-08-10 22:56:29 +00001117SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001118 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +00001119 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001120 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001121 ID.AddInteger(FI);
1122 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001123 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001124 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001125
Dan Gohman95531882010-03-18 18:49:47 +00001126 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001127 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001128 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001129 return SDValue(N, 0);
Chris Lattnerafb2dd42005-08-25 00:43:01 +00001130}
1131
Owen Andersone50ed302009-08-10 22:56:29 +00001132SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
Chris Lattnerf5a55462009-06-25 21:35:31 +00001133 unsigned char TargetFlags) {
1134 assert((TargetFlags == 0 || isTarget) &&
1135 "Cannot set target flags on target-independent jump tables");
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001136 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +00001137 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001138 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001139 ID.AddInteger(JTI);
Chris Lattnerf5a55462009-06-25 21:35:31 +00001140 ID.AddInteger(TargetFlags);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001141 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001142 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001143 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001144
Dan Gohman95531882010-03-18 18:49:47 +00001145 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1146 TargetFlags);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001147 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +00001148 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001149 return SDValue(N, 0);
Nate Begeman37efe672006-04-22 18:53:45 +00001150}
1151
Dan Gohman46510a72010-04-15 01:51:59 +00001152SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00001153 unsigned Alignment, int Offset,
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001154 bool isTarget,
Chris Lattnerf5a55462009-06-25 21:35:31 +00001155 unsigned char TargetFlags) {
1156 assert((TargetFlags == 0 || isTarget) &&
1157 "Cannot set target flags on target-independent globals");
Dan Gohman50284d82008-09-16 22:05:41 +00001158 if (Alignment == 0)
Bill Wendlingba54bca2013-06-19 21:36:55 +00001159 Alignment =
1160 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001161 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001162 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001163 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001164 ID.AddInteger(Alignment);
1165 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +00001166 ID.AddPointer(C);
Chris Lattnerf5a55462009-06-25 21:35:31 +00001167 ID.AddInteger(TargetFlags);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001168 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001169 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001170 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001171
Dan Gohman95531882010-03-18 18:49:47 +00001172 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1173 Alignment, TargetFlags);
Chris Lattnerc9f8f412006-08-11 21:55:30 +00001174 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001175 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001176 return SDValue(N, 0);
Chris Lattner4025a9c2005-08-25 05:03:06 +00001177}
1178
Chris Lattnerc3aae252005-01-07 07:46:32 +00001179
Owen Andersone50ed302009-08-10 22:56:29 +00001180SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00001181 unsigned Alignment, int Offset,
Chris Lattnerf5a55462009-06-25 21:35:31 +00001182 bool isTarget,
1183 unsigned char TargetFlags) {
1184 assert((TargetFlags == 0 || isTarget) &&
1185 "Cannot set target flags on target-independent globals");
Dan Gohman50284d82008-09-16 22:05:41 +00001186 if (Alignment == 0)
Bill Wendlingba54bca2013-06-19 21:36:55 +00001187 Alignment =
1188 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Evan Chengd6594ae2006-09-12 21:00:35 +00001189 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +00001190 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001191 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001192 ID.AddInteger(Alignment);
1193 ID.AddInteger(Offset);
Jim Grosbach5405d582011-09-27 20:59:33 +00001194 C->addSelectionDAGCSEId(ID);
Chris Lattnerf5a55462009-06-25 21:35:31 +00001195 ID.AddInteger(TargetFlags);
Evan Chengd6594ae2006-09-12 21:00:35 +00001196 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001197 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001198 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001199
Dan Gohman95531882010-03-18 18:49:47 +00001200 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1201 Alignment, TargetFlags);
Evan Chengd6594ae2006-09-12 21:00:35 +00001202 CSEMap.InsertNode(N, IP);
1203 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001204 return SDValue(N, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +00001205}
1206
Jakob Stoklund Olesen74500bd2012-08-07 22:37:05 +00001207SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1208 unsigned char TargetFlags) {
1209 FoldingSetNodeID ID;
1210 AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), 0, 0);
1211 ID.AddInteger(Index);
1212 ID.AddInteger(Offset);
1213 ID.AddInteger(TargetFlags);
1214 void *IP = 0;
1215 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1216 return SDValue(E, 0);
1217
1218 SDNode *N = new (NodeAllocator) TargetIndexSDNode(Index, VT, Offset,
1219 TargetFlags);
1220 CSEMap.InsertNode(N, IP);
1221 AllNodes.push_back(N);
1222 return SDValue(N, 0);
1223}
1224
Dan Gohman475871a2008-07-27 21:46:04 +00001225SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +00001226 FoldingSetNodeID ID;
Owen Anderson825b72b2009-08-11 20:47:22 +00001227 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001228 ID.AddPointer(MBB);
1229 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001230 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001231 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001232
Dan Gohman95531882010-03-18 18:49:47 +00001233 SDNode *N = new (NodeAllocator) BasicBlockSDNode(MBB);
Chris Lattner61b09412006-08-11 21:01:22 +00001234 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001235 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001236 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001237}
1238
Owen Andersone50ed302009-08-10 22:56:29 +00001239SDValue SelectionDAG::getValueType(EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001240 if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1241 ValueTypeNodes.size())
1242 ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
Chris Lattner15e4b012005-07-10 00:07:11 +00001243
Duncan Sands83ec4b62008-06-06 12:08:01 +00001244 SDNode *&N = VT.isExtended() ?
Owen Anderson825b72b2009-08-11 20:47:22 +00001245 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
Duncan Sandsf411b832007-10-17 13:49:58 +00001246
Dan Gohman475871a2008-07-27 21:46:04 +00001247 if (N) return SDValue(N, 0);
Dan Gohman95531882010-03-18 18:49:47 +00001248 N = new (NodeAllocator) VTSDNode(VT);
Duncan Sandsf411b832007-10-17 13:49:58 +00001249 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001250 return SDValue(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +00001251}
1252
Owen Andersone50ed302009-08-10 22:56:29 +00001253SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
Bill Wendling056292f2008-09-16 21:48:12 +00001254 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman475871a2008-07-27 21:46:04 +00001255 if (N) return SDValue(N, 0);
Dan Gohman95531882010-03-18 18:49:47 +00001256 N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001257 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001258 return SDValue(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +00001259}
1260
Owen Andersone50ed302009-08-10 22:56:29 +00001261SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
Chris Lattner1af22312009-06-25 18:45:50 +00001262 unsigned char TargetFlags) {
1263 SDNode *&N =
1264 TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1265 TargetFlags)];
Dan Gohman475871a2008-07-27 21:46:04 +00001266 if (N) return SDValue(N, 0);
Dan Gohman95531882010-03-18 18:49:47 +00001267 N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001268 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001269 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001270}
1271
Dan Gohman475871a2008-07-27 21:46:04 +00001272SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001273 if ((unsigned)Cond >= CondCodeNodes.size())
1274 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001275
Chris Lattner079a27a2005-08-09 20:40:02 +00001276 if (CondCodeNodes[Cond] == 0) {
Dan Gohman95531882010-03-18 18:49:47 +00001277 CondCodeSDNode *N = new (NodeAllocator) CondCodeSDNode(Cond);
Dan Gohman0e5f1302008-07-07 23:02:41 +00001278 CondCodeNodes[Cond] = N;
1279 AllNodes.push_back(N);
Chris Lattner079a27a2005-08-09 20:40:02 +00001280 }
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001281
Dan Gohman475871a2008-07-27 21:46:04 +00001282 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001283}
1284
Nate Begeman5a5ca152009-04-29 05:20:52 +00001285// commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1286// the shuffle mask M that point at N1 to point at N2, and indices that point
1287// N2 to point at N1.
Nate Begeman9008ca62009-04-27 18:41:29 +00001288static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) {
1289 std::swap(N1, N2);
1290 int NElts = M.size();
1291 for (int i = 0; i != NElts; ++i) {
1292 if (M[i] >= NElts)
1293 M[i] -= NElts;
1294 else if (M[i] >= 0)
1295 M[i] += NElts;
1296 }
1297}
1298
Andrew Trickac6d9be2013-05-25 02:42:55 +00001299SDValue SelectionDAG::getVectorShuffle(EVT VT, SDLoc dl, SDValue N1,
Nate Begeman9008ca62009-04-27 18:41:29 +00001300 SDValue N2, const int *Mask) {
Craig Topperad445a62013-08-09 04:37:24 +00001301 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1302 "Invalid VECTOR_SHUFFLE");
Nate Begeman9008ca62009-04-27 18:41:29 +00001303
1304 // Canonicalize shuffle undef, undef -> undef
1305 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
Dan Gohman2e4284d2009-07-09 00:46:33 +00001306 return getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00001307
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001308 // Validate that all indices in Mask are within the range of the elements
Nate Begeman9008ca62009-04-27 18:41:29 +00001309 // input to the shuffle.
Nate Begeman5a5ca152009-04-29 05:20:52 +00001310 unsigned NElts = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00001311 SmallVector<int, 8> MaskVec;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001312 for (unsigned i = 0; i != NElts; ++i) {
1313 assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
Nate Begeman9008ca62009-04-27 18:41:29 +00001314 MaskVec.push_back(Mask[i]);
1315 }
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001316
Nate Begeman9008ca62009-04-27 18:41:29 +00001317 // Canonicalize shuffle v, v -> v, undef
1318 if (N1 == N2) {
1319 N2 = getUNDEF(VT);
Nate Begeman5a5ca152009-04-29 05:20:52 +00001320 for (unsigned i = 0; i != NElts; ++i)
1321 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00001322 }
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001323
Nate Begeman9008ca62009-04-27 18:41:29 +00001324 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
1325 if (N1.getOpcode() == ISD::UNDEF)
1326 commuteShuffle(N1, N2, MaskVec);
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001327
Nate Begeman9008ca62009-04-27 18:41:29 +00001328 // Canonicalize all index into lhs, -> shuffle lhs, undef
1329 // Canonicalize all index into rhs, -> shuffle rhs, undef
1330 bool AllLHS = true, AllRHS = true;
1331 bool N2Undef = N2.getOpcode() == ISD::UNDEF;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001332 for (unsigned i = 0; i != NElts; ++i) {
1333 if (MaskVec[i] >= (int)NElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00001334 if (N2Undef)
1335 MaskVec[i] = -1;
1336 else
1337 AllLHS = false;
1338 } else if (MaskVec[i] >= 0) {
1339 AllRHS = false;
1340 }
1341 }
1342 if (AllLHS && AllRHS)
1343 return getUNDEF(VT);
Nate Begeman5a5ca152009-04-29 05:20:52 +00001344 if (AllLHS && !N2Undef)
Nate Begeman9008ca62009-04-27 18:41:29 +00001345 N2 = getUNDEF(VT);
1346 if (AllRHS) {
1347 N1 = getUNDEF(VT);
1348 commuteShuffle(N1, N2, MaskVec);
1349 }
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001350
Craig Toppereee2a112013-08-08 08:03:12 +00001351 // If Identity shuffle return that node.
Nate Begeman9008ca62009-04-27 18:41:29 +00001352 bool Identity = true;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001353 for (unsigned i = 0; i != NElts; ++i) {
1354 if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00001355 }
Craig Topperad445a62013-08-09 04:37:24 +00001356 if (Identity && NElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00001357 return N1;
Nate Begeman9008ca62009-04-27 18:41:29 +00001358
1359 FoldingSetNodeID ID;
1360 SDValue Ops[2] = { N1, N2 };
1361 AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops, 2);
Nate Begeman5a5ca152009-04-29 05:20:52 +00001362 for (unsigned i = 0; i != NElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00001363 ID.AddInteger(MaskVec[i]);
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001364
Nate Begeman9008ca62009-04-27 18:41:29 +00001365 void* IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001366 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Nate Begeman9008ca62009-04-27 18:41:29 +00001367 return SDValue(E, 0);
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001368
Nate Begeman9008ca62009-04-27 18:41:29 +00001369 // Allocate the mask array for the node out of the BumpPtrAllocator, since
1370 // SDNode doesn't have access to it. This memory will be "leaked" when
1371 // the node is deallocated, but recovered when the NodeAllocator is released.
1372 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1373 memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int));
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001374
Dan Gohman95531882010-03-18 18:49:47 +00001375 ShuffleVectorSDNode *N =
Andrew Trickac6d9be2013-05-25 02:42:55 +00001376 new (NodeAllocator) ShuffleVectorSDNode(VT, dl.getIROrder(), dl.getDebugLoc(), N1, N2, MaskAlloc);
Nate Begeman9008ca62009-04-27 18:41:29 +00001377 CSEMap.InsertNode(N, IP);
1378 AllNodes.push_back(N);
1379 return SDValue(N, 0);
1380}
1381
Andrew Trickac6d9be2013-05-25 02:42:55 +00001382SDValue SelectionDAG::getConvertRndSat(EVT VT, SDLoc dl,
Dale Johannesena04b7572009-02-03 23:04:43 +00001383 SDValue Val, SDValue DTy,
1384 SDValue STy, SDValue Rnd, SDValue Sat,
1385 ISD::CvtCode Code) {
Mon P Wangb0e341b2009-02-05 04:47:42 +00001386 // If the src and dest types are the same and the conversion is between
1387 // integer types of the same sign or two floats, no conversion is necessary.
1388 if (DTy == STy &&
1389 (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF))
Dale Johannesena04b7572009-02-03 23:04:43 +00001390 return Val;
1391
1392 FoldingSetNodeID ID;
Mon P Wangbdea3482009-11-07 04:46:25 +00001393 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1394 AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), &Ops[0], 5);
Dale Johannesena04b7572009-02-03 23:04:43 +00001395 void* IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001396 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesena04b7572009-02-03 23:04:43 +00001397 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001398
Andrew Trickac6d9be2013-05-25 02:42:55 +00001399 CvtRndSatSDNode *N = new (NodeAllocator) CvtRndSatSDNode(VT, dl.getIROrder(), dl.getDebugLoc(), Ops, 5,
Dan Gohman95531882010-03-18 18:49:47 +00001400 Code);
Dale Johannesena04b7572009-02-03 23:04:43 +00001401 CSEMap.InsertNode(N, IP);
1402 AllNodes.push_back(N);
1403 return SDValue(N, 0);
1404}
1405
Owen Andersone50ed302009-08-10 22:56:29 +00001406SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001407 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00001408 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001409 ID.AddInteger(RegNo);
1410 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001411 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001412 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001413
Dan Gohman95531882010-03-18 18:49:47 +00001414 SDNode *N = new (NodeAllocator) RegisterSDNode(RegNo, VT);
Chris Lattner61b09412006-08-11 21:01:22 +00001415 CSEMap.InsertNode(N, IP);
1416 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001417 return SDValue(N, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001418}
1419
Jakob Stoklund Olesen9cf37e82012-01-18 23:52:12 +00001420SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
1421 FoldingSetNodeID ID;
1422 AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), 0, 0);
1423 ID.AddPointer(RegMask);
1424 void *IP = 0;
1425 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1426 return SDValue(E, 0);
1427
1428 SDNode *N = new (NodeAllocator) RegisterMaskSDNode(RegMask);
1429 CSEMap.InsertNode(N, IP);
1430 AllNodes.push_back(N);
1431 return SDValue(N, 0);
1432}
1433
Andrew Trickac6d9be2013-05-25 02:42:55 +00001434SDValue SelectionDAG::getEHLabel(SDLoc dl, SDValue Root, MCSymbol *Label) {
Dale Johannesene8c17332009-01-29 00:47:48 +00001435 FoldingSetNodeID ID;
1436 SDValue Ops[] = { Root };
Chris Lattner7561d482010-03-14 02:33:54 +00001437 AddNodeIDNode(ID, ISD::EH_LABEL, getVTList(MVT::Other), &Ops[0], 1);
1438 ID.AddPointer(Label);
Dale Johannesene8c17332009-01-29 00:47:48 +00001439 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001440 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesene8c17332009-01-29 00:47:48 +00001441 return SDValue(E, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001442
Andrew Trickac6d9be2013-05-25 02:42:55 +00001443 SDNode *N = new (NodeAllocator) EHLabelSDNode(dl.getIROrder(), dl.getDebugLoc(), Root, Label);
Dale Johannesene8c17332009-01-29 00:47:48 +00001444 CSEMap.InsertNode(N, IP);
1445 AllNodes.push_back(N);
1446 return SDValue(N, 0);
1447}
1448
Chris Lattner7561d482010-03-14 02:33:54 +00001449
Dan Gohman46510a72010-04-15 01:51:59 +00001450SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
Michael Liao6c7ccaa2012-09-12 21:43:09 +00001451 int64_t Offset,
Dan Gohman29cbade2009-11-20 23:18:13 +00001452 bool isTarget,
1453 unsigned char TargetFlags) {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001454 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1455
1456 FoldingSetNodeID ID;
Dan Gohman29cbade2009-11-20 23:18:13 +00001457 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001458 ID.AddPointer(BA);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00001459 ID.AddInteger(Offset);
Dan Gohman29cbade2009-11-20 23:18:13 +00001460 ID.AddInteger(TargetFlags);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001461 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001462 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman8c2b5252009-10-30 01:27:03 +00001463 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001464
Michael Liao6c7ccaa2012-09-12 21:43:09 +00001465 SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset,
1466 TargetFlags);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001467 CSEMap.InsertNode(N, IP);
1468 AllNodes.push_back(N);
1469 return SDValue(N, 0);
1470}
1471
Dan Gohman475871a2008-07-27 21:46:04 +00001472SDValue SelectionDAG::getSrcValue(const Value *V) {
Duncan Sands1df98592010-02-16 11:11:14 +00001473 assert((!V || V->getType()->isPointerTy()) &&
Chris Lattner61b09412006-08-11 21:01:22 +00001474 "SrcValue is not a pointer?");
1475
Jim Laskey583bd472006-10-27 23:46:08 +00001476 FoldingSetNodeID ID;
Owen Anderson825b72b2009-08-11 20:47:22 +00001477 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001478 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001479
Chris Lattner61b09412006-08-11 21:01:22 +00001480 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00001481 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00001482 return SDValue(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001483
Dan Gohman95531882010-03-18 18:49:47 +00001484 SDNode *N = new (NodeAllocator) SrcValueSDNode(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001485 CSEMap.InsertNode(N, IP);
1486 AllNodes.push_back(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001487 return SDValue(N, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001488}
1489
Chris Lattnerdecc2672010-04-07 05:20:54 +00001490/// getMDNode - Return an MDNodeSDNode which holds an MDNode.
1491SDValue SelectionDAG::getMDNode(const MDNode *MD) {
1492 FoldingSetNodeID ID;
1493 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), 0, 0);
1494 ID.AddPointer(MD);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001495
Chris Lattnerdecc2672010-04-07 05:20:54 +00001496 void *IP = 0;
1497 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1498 return SDValue(E, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001499
Chris Lattnerdecc2672010-04-07 05:20:54 +00001500 SDNode *N = new (NodeAllocator) MDNodeSDNode(MD);
1501 CSEMap.InsertNode(N, IP);
1502 AllNodes.push_back(N);
1503 return SDValue(N, 0);
1504}
1505
1506
Duncan Sands92abc622009-01-31 15:50:11 +00001507/// getShiftAmountOperand - Return the specified value casted to
1508/// the target's desired shift amount type.
Owen Anderson6154f6c2011-03-07 18:29:47 +00001509SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
Owen Andersone50ed302009-08-10 22:56:29 +00001510 EVT OpTy = Op.getValueType();
Bill Wendlingba54bca2013-06-19 21:36:55 +00001511 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);
Duncan Sands92abc622009-01-31 15:50:11 +00001512 if (OpTy == ShTy || OpTy.isVector()) return Op;
1513
1514 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001515 return getNode(Opcode, SDLoc(Op), ShTy, Op);
Duncan Sands92abc622009-01-31 15:50:11 +00001516}
1517
Chris Lattner37ce9df2007-10-15 17:47:20 +00001518/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1519/// specified value type.
Owen Andersone50ed302009-08-10 22:56:29 +00001520SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001521 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Dan Gohman4e918b22009-09-23 21:07:02 +00001522 unsigned ByteSize = VT.getStoreSize();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001523 Type *Ty = VT.getTypeForEVT(*getContext());
Bill Wendlingba54bca2013-06-19 21:36:55 +00001524 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang364d73d2008-07-05 20:40:31 +00001525 unsigned StackAlign =
Bill Wendlingba54bca2013-06-19 21:36:55 +00001526 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001527
David Greene3f2bf852009-11-12 20:49:22 +00001528 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
Bill Wendlingba54bca2013-06-19 21:36:55 +00001529 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Chris Lattner37ce9df2007-10-15 17:47:20 +00001530}
1531
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001532/// CreateStackTemporary - Create a stack temporary suitable for holding
1533/// either of the specified value types.
Owen Andersone50ed302009-08-10 22:56:29 +00001534SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001535 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1536 VT2.getStoreSizeInBits())/8;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001537 Type *Ty1 = VT1.getTypeForEVT(*getContext());
1538 Type *Ty2 = VT2.getTypeForEVT(*getContext());
Bill Wendlingba54bca2013-06-19 21:36:55 +00001539 const TargetLowering *TLI = TM.getTargetLowering();
1540 const DataLayout *TD = TLI->getDataLayout();
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001541 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1542 TD->getPrefTypeAlignment(Ty2));
1543
1544 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
David Greene3f2bf852009-11-12 20:49:22 +00001545 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false);
Bill Wendlingba54bca2013-06-19 21:36:55 +00001546 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Duncan Sands47d9dcc2008-12-09 21:33:20 +00001547}
1548
Owen Andersone50ed302009-08-10 22:56:29 +00001549SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001550 SDValue N2, ISD::CondCode Cond, SDLoc dl) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001551 // These setcc operations always fold.
1552 switch (Cond) {
1553 default: break;
1554 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001555 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001556 case ISD::SETTRUE:
Tim Northovera5eeb9d2013-09-06 12:38:12 +00001557 case ISD::SETTRUE2: {
1558 const TargetLowering *TLI = TM.getTargetLowering();
1559 TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector());
1560 return getConstant(
1561 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
1562 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001563
Chris Lattnera83385f2006-04-27 05:01:07 +00001564 case ISD::SETOEQ:
1565 case ISD::SETOGT:
1566 case ISD::SETOGE:
1567 case ISD::SETOLT:
1568 case ISD::SETOLE:
1569 case ISD::SETONE:
1570 case ISD::SETO:
1571 case ISD::SETUO:
1572 case ISD::SETUEQ:
1573 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001574 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001575 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001576 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001577
Gabor Greifba36cb52008-08-28 21:40:38 +00001578 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001579 const APInt &C2 = N2C->getAPIntValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00001580 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00001581 const APInt &C1 = N1C->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001582
Chris Lattnerc3aae252005-01-07 07:46:32 +00001583 switch (Cond) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001584 default: llvm_unreachable("Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001585 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1586 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001587 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1588 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1589 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1590 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1591 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1592 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1593 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1594 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001595 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001596 }
Chris Lattner67255a12005-04-07 18:14:58 +00001597 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001598 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1599 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001600 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001601 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001602 default: break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001603 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001604 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001605 // fall through
1606 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001607 case ISD::SETNE: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001608 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001609 // fall through
1610 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001611 R==APFloat::cmpLessThan, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001612 case ISD::SETLT: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001613 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001614 // fall through
1615 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001616 case ISD::SETGT: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001617 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001618 // fall through
1619 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001620 case ISD::SETLE: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001621 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001622 // fall through
1623 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001624 R==APFloat::cmpEqual, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001625 case ISD::SETGE: if (R==APFloat::cmpUnordered)
Dale Johannesene8d72302009-02-06 23:05:02 +00001626 return getUNDEF(VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001627 // fall through
1628 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001629 R==APFloat::cmpEqual, VT);
1630 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1631 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1632 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1633 R==APFloat::cmpEqual, VT);
1634 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1635 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1636 R==APFloat::cmpLessThan, VT);
1637 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1638 R==APFloat::cmpUnordered, VT);
1639 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1640 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001641 }
1642 } else {
1643 // Ensure that the constant occurs on the RHS.
Dale Johannesenff97d4f2009-02-03 00:47:48 +00001644 return getSetCC(dl, VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001645 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001646 }
1647
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001648 // Could not fold it.
Dan Gohman475871a2008-07-27 21:46:04 +00001649 return SDValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001650}
1651
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001652/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1653/// use this predicate to simplify operations downstream.
Dan Gohman475871a2008-07-27 21:46:04 +00001654bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Chris Lattnera4f73182009-07-07 23:28:46 +00001655 // This predicate is not safe for vector operations.
1656 if (Op.getValueType().isVector())
1657 return false;
Eric Christopher4d7c18c2009-08-22 00:40:45 +00001658
Dan Gohman87862e72009-12-11 21:31:27 +00001659 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001660 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1661}
1662
Dan Gohmanea859be2007-06-22 14:59:07 +00001663/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1664/// this predicate to simplify operations downstream. Mask is known to be zero
1665/// for bits that V cannot have.
Scott Michelfdc40a02009-02-17 22:15:04 +00001666bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001667 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001668 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001669 ComputeMaskedBits(Op, KnownZero, KnownOne, Depth);
Scott Michelfdc40a02009-02-17 22:15:04 +00001670 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001671 return (KnownZero & Mask) == Mask;
1672}
1673
1674/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1675/// known to be either zero or one and return them in the KnownZero/KnownOne
1676/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1677/// processing.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001678void SelectionDAG::ComputeMaskedBits(SDValue Op, APInt &KnownZero,
1679 APInt &KnownOne, unsigned Depth) const {
Bill Wendlingba54bca2013-06-19 21:36:55 +00001680 const TargetLowering *TLI = TM.getTargetLowering();
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001681 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001682
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001683 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001684 if (Depth == 6)
Dan Gohmanea859be2007-06-22 14:59:07 +00001685 return; // Limit search depth.
Scott Michelfdc40a02009-02-17 22:15:04 +00001686
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001687 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001688
1689 switch (Op.getOpcode()) {
1690 case ISD::Constant:
1691 // We know all of the bits for a constant!
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001692 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue();
1693 KnownZero = ~KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001694 return;
1695 case ISD::AND:
1696 // If either the LHS or the RHS are Zero, the result is zero.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001697 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1698 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001699 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1700 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001701
1702 // Output known-1 bits are only known if set in both the LHS & RHS.
1703 KnownOne &= KnownOne2;
1704 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1705 KnownZero |= KnownZero2;
1706 return;
1707 case ISD::OR:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001708 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1709 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001710 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1711 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1712
Dan Gohmanea859be2007-06-22 14:59:07 +00001713 // Output known-0 bits are only known if clear in both the LHS & RHS.
1714 KnownZero &= KnownZero2;
1715 // Output known-1 are known to be set if set in either the LHS | RHS.
1716 KnownOne |= KnownOne2;
1717 return;
1718 case ISD::XOR: {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001719 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1720 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001721 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1722 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1723
Dan Gohmanea859be2007-06-22 14:59:07 +00001724 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001725 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001726 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1727 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1728 KnownZero = KnownZeroOut;
1729 return;
1730 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001731 case ISD::MUL: {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001732 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1733 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001734 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1735 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1736
1737 // If low bits are zero in either operand, output low known-0 bits.
1738 // Also compute a conserative estimate for high known-0 bits.
1739 // More trickiness is possible, but this is sufficient for the
1740 // interesting case of alignment computation.
Jay Foad7a874dd2010-12-01 08:53:58 +00001741 KnownOne.clearAllBits();
Dan Gohman23e8b712008-04-28 17:02:21 +00001742 unsigned TrailZ = KnownZero.countTrailingOnes() +
1743 KnownZero2.countTrailingOnes();
1744 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001745 KnownZero2.countLeadingOnes(),
1746 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001747
1748 TrailZ = std::min(TrailZ, BitWidth);
1749 LeadZ = std::min(LeadZ, BitWidth);
1750 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1751 APInt::getHighBitsSet(BitWidth, LeadZ);
Dan Gohman23e8b712008-04-28 17:02:21 +00001752 return;
1753 }
1754 case ISD::UDIV: {
1755 // For the purposes of computing leading zeros we can conservatively
1756 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001757 // be less than the denominator.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001758 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001759 unsigned LeadZ = KnownZero2.countLeadingOnes();
1760
Jay Foad7a874dd2010-12-01 08:53:58 +00001761 KnownOne2.clearAllBits();
1762 KnownZero2.clearAllBits();
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001763 ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001764 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1765 if (RHSUnknownLeadingOnes != BitWidth)
1766 LeadZ = std::min(BitWidth,
1767 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001768
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001769 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ);
Dan Gohman23e8b712008-04-28 17:02:21 +00001770 return;
1771 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001772 case ISD::SELECT:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001773 ComputeMaskedBits(Op.getOperand(2), KnownZero, KnownOne, Depth+1);
1774 ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001775 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1776 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1777
Dan Gohmanea859be2007-06-22 14:59:07 +00001778 // Only known if known in both the LHS and RHS.
1779 KnownOne &= KnownOne2;
1780 KnownZero &= KnownZero2;
1781 return;
1782 case ISD::SELECT_CC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001783 ComputeMaskedBits(Op.getOperand(3), KnownZero, KnownOne, Depth+1);
1784 ComputeMaskedBits(Op.getOperand(2), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001785 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1786 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1787
Dan Gohmanea859be2007-06-22 14:59:07 +00001788 // Only known if known in both the LHS and RHS.
1789 KnownOne &= KnownOne2;
1790 KnownZero &= KnownZero2;
1791 return;
Bill Wendling253174b2008-11-22 07:24:01 +00001792 case ISD::SADDO:
1793 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00001794 case ISD::SSUBO:
1795 case ISD::USUBO:
1796 case ISD::SMULO:
1797 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00001798 if (Op.getResNo() != 1)
1799 return;
Duncan Sands03228082008-11-23 15:47:28 +00001800 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00001801 case ISD::SETCC:
1802 // If we know the result of a setcc has the top bits zero, use this info.
Bill Wendlingba54bca2013-06-19 21:36:55 +00001803 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sands28b77e92011-09-06 19:07:46 +00001804 TargetLowering::ZeroOrOneBooleanContent && BitWidth > 1)
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001805 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001806 return;
1807 case ISD::SHL:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001808 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001809 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001810 unsigned ShAmt = SA->getZExtValue();
Dan Gohmand4cf9922008-02-26 18:50:50 +00001811
1812 // If the shift count is an invalid immediate, don't do anything.
1813 if (ShAmt >= BitWidth)
1814 return;
1815
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001816 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001817 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001818 KnownZero <<= ShAmt;
1819 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001820 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001821 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001822 }
1823 return;
1824 case ISD::SRL:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001825 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001826 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001827 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001828
Dan Gohmand4cf9922008-02-26 18:50:50 +00001829 // If the shift count is an invalid immediate, don't do anything.
1830 if (ShAmt >= BitWidth)
1831 return;
1832
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001833 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001834 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001835 KnownZero = KnownZero.lshr(ShAmt);
1836 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001837
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001838 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001839 KnownZero |= HighBits; // High bits known zero.
1840 }
1841 return;
1842 case ISD::SRA:
1843 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001844 unsigned ShAmt = SA->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00001845
Dan Gohmand4cf9922008-02-26 18:50:50 +00001846 // If the shift count is an invalid immediate, don't do anything.
1847 if (ShAmt >= BitWidth)
1848 return;
1849
Dan Gohmanea859be2007-06-22 14:59:07 +00001850 // If any of the demanded bits are produced by the sign extension, we also
1851 // demand the input sign bit.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001852 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00001853
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001854 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001855 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001856 KnownZero = KnownZero.lshr(ShAmt);
1857 KnownOne = KnownOne.lshr(ShAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00001858
Dan Gohmanea859be2007-06-22 14:59:07 +00001859 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001860 APInt SignBit = APInt::getSignBit(BitWidth);
1861 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Scott Michelfdc40a02009-02-17 22:15:04 +00001862
Dan Gohmanca93a432008-02-20 16:30:17 +00001863 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001864 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001865 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001866 KnownOne |= HighBits; // New bits are known one.
1867 }
1868 }
1869 return;
1870 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001871 EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmand1996362010-01-09 02:13:55 +00001872 unsigned EBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00001873
1874 // Sign extension. Compute the demanded bits in the result that are not
Dan Gohmanea859be2007-06-22 14:59:07 +00001875 // present in the input.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001876 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001877
Dan Gohman977a76f2008-02-13 22:28:48 +00001878 APInt InSignBit = APInt::getSignBit(EBits);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001879 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00001880
Dan Gohmanea859be2007-06-22 14:59:07 +00001881 // If the sign extended bits are demanded, we know that the sign
1882 // bit is demanded.
Jay Foad40f8f622010-12-07 08:25:19 +00001883 InSignBit = InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001884 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001885 InputDemandedBits |= InSignBit;
Scott Michelfdc40a02009-02-17 22:15:04 +00001886
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001887 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
1888 KnownOne &= InputDemandedBits;
1889 KnownZero &= InputDemandedBits;
Scott Michelfdc40a02009-02-17 22:15:04 +00001890 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1891
Dan Gohmanea859be2007-06-22 14:59:07 +00001892 // If the sign bit of the input is known set or clear, then we know the
1893 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001894 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001895 KnownZero |= NewBits;
1896 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001897 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001898 KnownOne |= NewBits;
1899 KnownZero &= ~NewBits;
1900 } else { // Input sign bit unknown
1901 KnownZero &= ~NewBits;
1902 KnownOne &= ~NewBits;
1903 }
1904 return;
1905 }
1906 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00001907 case ISD::CTTZ_ZERO_UNDEF:
Dan Gohmanea859be2007-06-22 14:59:07 +00001908 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00001909 case ISD::CTLZ_ZERO_UNDEF:
Dan Gohmanea859be2007-06-22 14:59:07 +00001910 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001911 unsigned LowBits = Log2_32(BitWidth)+1;
1912 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Jay Foad7a874dd2010-12-01 08:53:58 +00001913 KnownOne.clearAllBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001914 return;
1915 }
1916 case ISD::LOAD: {
Rafael Espindola95d594c2012-03-31 18:14:00 +00001917 LoadSDNode *LD = cast<LoadSDNode>(Op);
Nadav Rotem77451752013-03-20 22:53:44 +00001918 // If this is a ZEXTLoad and we are looking at the loaded value.
1919 if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00001920 EVT VT = LD->getMemoryVT();
Dan Gohmand1996362010-01-09 02:13:55 +00001921 unsigned MemBits = VT.getScalarType().getSizeInBits();
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001922 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
Rafael Espindola95d594c2012-03-31 18:14:00 +00001923 } else if (const MDNode *Ranges = LD->getRanges()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001924 computeMaskedBitsLoad(*Ranges, KnownZero);
Dan Gohmanea859be2007-06-22 14:59:07 +00001925 }
1926 return;
1927 }
1928 case ISD::ZERO_EXTEND: {
Owen Andersone50ed302009-08-10 22:56:29 +00001929 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00001930 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001931 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Jay Foad40f8f622010-12-07 08:25:19 +00001932 KnownZero = KnownZero.trunc(InBits);
1933 KnownOne = KnownOne.trunc(InBits);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001934 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad40f8f622010-12-07 08:25:19 +00001935 KnownZero = KnownZero.zext(BitWidth);
1936 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001937 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001938 return;
1939 }
1940 case ISD::SIGN_EXTEND: {
Owen Andersone50ed302009-08-10 22:56:29 +00001941 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00001942 unsigned InBits = InVT.getScalarType().getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001943 APInt InSignBit = APInt::getSignBit(InBits);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001944 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001945
Jay Foad40f8f622010-12-07 08:25:19 +00001946 KnownZero = KnownZero.trunc(InBits);
1947 KnownOne = KnownOne.trunc(InBits);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001948 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001949
1950 // Note if the sign bit is known to be zero or one.
1951 bool SignBitKnownZero = KnownZero.isNegative();
1952 bool SignBitKnownOne = KnownOne.isNegative();
1953 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1954 "Sign bit can't be known to be both zero and one!");
1955
Jay Foad40f8f622010-12-07 08:25:19 +00001956 KnownZero = KnownZero.zext(BitWidth);
1957 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001958
Dan Gohman977a76f2008-02-13 22:28:48 +00001959 // If the sign bit is known zero or one, the top bits match.
1960 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001961 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001962 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001963 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001964 return;
1965 }
1966 case ISD::ANY_EXTEND: {
Evan Cheng2766a472012-12-06 19:13:27 +00001967 EVT InVT = Op.getOperand(0).getValueType();
1968 unsigned InBits = InVT.getScalarType().getSizeInBits();
1969 KnownZero = KnownZero.trunc(InBits);
1970 KnownOne = KnownOne.trunc(InBits);
1971 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
1972 KnownZero = KnownZero.zext(BitWidth);
1973 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001974 return;
1975 }
1976 case ISD::TRUNCATE: {
Owen Andersone50ed302009-08-10 22:56:29 +00001977 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00001978 unsigned InBits = InVT.getScalarType().getSizeInBits();
Jay Foad40f8f622010-12-07 08:25:19 +00001979 KnownZero = KnownZero.zext(InBits);
1980 KnownOne = KnownOne.zext(InBits);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001981 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001982 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Jay Foad40f8f622010-12-07 08:25:19 +00001983 KnownZero = KnownZero.trunc(BitWidth);
1984 KnownOne = KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001985 break;
1986 }
1987 case ISD::AssertZext: {
Owen Andersone50ed302009-08-10 22:56:29 +00001988 EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001989 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001990 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
1991 KnownZero |= (~InMask);
Nadav Rotem7ee0e5a2012-07-16 18:34:53 +00001992 KnownOne &= (~KnownZero);
Dan Gohmanea859be2007-06-22 14:59:07 +00001993 return;
1994 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001995 case ISD::FGETSIGN:
1996 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001997 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001998 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001999
Dan Gohman23e8b712008-04-28 17:02:21 +00002000 case ISD::SUB: {
2001 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
2002 // We know that the top bits of C-X are clear if X contains less bits
2003 // than C (i.e. no wrap-around can happen). For example, 20-X is
2004 // positive if we can prove that X is >= 0 and < 16.
2005 if (CLHS->getAPIntValue().isNonNegative()) {
2006 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
2007 // NLZ can't be BitWidth with no sign bit
2008 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002009 ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman23e8b712008-04-28 17:02:21 +00002010
2011 // If all of the MaskV bits are known to be zero, then we know the
2012 // output top bits are zero, because we now know that the output is
2013 // from [0-C].
2014 if ((KnownZero2 & MaskV) == MaskV) {
2015 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
2016 // Top bits known zero.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002017 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
Dan Gohman23e8b712008-04-28 17:02:21 +00002018 }
2019 }
2020 }
2021 }
2022 // fall through
Chris Lattnerda605882010-12-19 20:38:28 +00002023 case ISD::ADD:
2024 case ISD::ADDE: {
Dan Gohmanea859be2007-06-22 14:59:07 +00002025 // Output known-0 bits are known if clear or set in both the low clear bits
2026 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
2027 // low 3 bits clear.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002028 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002029 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
Dan Gohman23e8b712008-04-28 17:02:21 +00002030 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
2031
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002032 ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002033 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
Dan Gohman23e8b712008-04-28 17:02:21 +00002034 KnownZeroOut = std::min(KnownZeroOut,
2035 KnownZero2.countTrailingOnes());
2036
Chris Lattnerda605882010-12-19 20:38:28 +00002037 if (Op.getOpcode() == ISD::ADD) {
2038 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
2039 return;
2040 }
2041
2042 // With ADDE, a carry bit may be added in, so we can only use this
2043 // information if we know (at least) that the low two bits are clear. We
2044 // then return to the caller that the low bit is unknown but that other bits
2045 // are known zero.
2046 if (KnownZeroOut >= 2) // ADDE
2047 KnownZero |= APInt::getBitsSet(BitWidth, 1, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00002048 return;
2049 }
Dan Gohman23e8b712008-04-28 17:02:21 +00002050 case ISD::SREM:
2051 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands5c2873a2010-01-29 09:45:26 +00002052 const APInt &RA = Rem->getAPIntValue().abs();
2053 if (RA.isPowerOf2()) {
2054 APInt LowBits = RA - 1;
Dan Gohman23e8b712008-04-28 17:02:21 +00002055 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002056 ComputeMaskedBits(Op.getOperand(0), KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00002057
Duncan Sands5c2873a2010-01-29 09:45:26 +00002058 // The low bits of the first operand are unchanged by the srem.
2059 KnownZero = KnownZero2 & LowBits;
2060 KnownOne = KnownOne2 & LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002061
Duncan Sands5c2873a2010-01-29 09:45:26 +00002062 // If the first operand is non-negative or has all low bits zero, then
2063 // the upper bits are all zero.
2064 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
2065 KnownZero |= ~LowBits;
2066
2067 // If the first operand is negative and not all low bits are zero, then
2068 // the upper bits are all one.
2069 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
2070 KnownOne |= ~LowBits;
Dan Gohman23e8b712008-04-28 17:02:21 +00002071 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00002072 }
2073 }
2074 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00002075 case ISD::UREM: {
2076 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman9b44c1f2008-07-03 00:52:03 +00002077 const APInt &RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00002078 if (RA.isPowerOf2()) {
2079 APInt LowBits = (RA - 1);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002080 KnownZero |= ~LowBits;
2081 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne,Depth+1);
Dan Gohman23e8b712008-04-28 17:02:21 +00002082 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
2083 break;
2084 }
2085 }
2086
2087 // Since the result is less than or equal to either operand, any leading
2088 // zero bits in either operand must also exist in the result.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002089 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
2090 ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman23e8b712008-04-28 17:02:21 +00002091
2092 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
2093 KnownZero2.countLeadingOnes());
Jay Foad7a874dd2010-12-01 08:53:58 +00002094 KnownOne.clearAllBits();
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002095 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders);
Dan Gohman23e8b712008-04-28 17:02:21 +00002096 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00002097 }
Chris Lattner0a9481f2011-02-13 22:25:43 +00002098 case ISD::FrameIndex:
2099 case ISD::TargetFrameIndex:
2100 if (unsigned Align = InferPtrAlignment(Op)) {
2101 // The low bits are known zero if the pointer is aligned.
2102 KnownZero = APInt::getLowBitsSet(BitWidth, Log2_32(Align));
2103 return;
2104 }
2105 break;
Owen Anderson95771af2011-02-25 21:41:48 +00002106
Dan Gohmanea859be2007-06-22 14:59:07 +00002107 default:
Evan Chengb5a55d92011-05-24 01:48:22 +00002108 if (Op.getOpcode() < ISD::BUILTIN_OP_END)
2109 break;
2110 // Fallthrough
Dan Gohmanea859be2007-06-22 14:59:07 +00002111 case ISD::INTRINSIC_WO_CHAIN:
2112 case ISD::INTRINSIC_W_CHAIN:
2113 case ISD::INTRINSIC_VOID:
Evan Chengb5a55d92011-05-24 01:48:22 +00002114 // Allow the target to implement this method for its nodes.
Bill Wendlingba54bca2013-06-19 21:36:55 +00002115 TLI->computeMaskedBitsForTargetNode(Op, KnownZero, KnownOne, *this, Depth);
Dan Gohmanea859be2007-06-22 14:59:07 +00002116 return;
2117 }
2118}
2119
2120/// ComputeNumSignBits - Return the number of times the sign bit of the
2121/// register is replicated into the other bits. We know that at least 1 bit
2122/// is always equal to the sign bit (itself), but other cases can give us
2123/// information. For example, immediately after an "SRA X, 2", we know that
2124/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman475871a2008-07-27 21:46:04 +00002125unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Bill Wendlingba54bca2013-06-19 21:36:55 +00002126 const TargetLowering *TLI = TM.getTargetLowering();
Owen Andersone50ed302009-08-10 22:56:29 +00002127 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002128 assert(VT.isInteger() && "Invalid VT!");
Dan Gohman87862e72009-12-11 21:31:27 +00002129 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002130 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00002131 unsigned FirstAnswer = 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00002132
Dan Gohmanea859be2007-06-22 14:59:07 +00002133 if (Depth == 6)
2134 return 1; // Limit search depth.
2135
2136 switch (Op.getOpcode()) {
2137 default: break;
2138 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002139 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002140 return VTBits-Tmp+1;
2141 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002142 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002143 return VTBits-Tmp;
Scott Michelfdc40a02009-02-17 22:15:04 +00002144
Dan Gohmanea859be2007-06-22 14:59:07 +00002145 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00002146 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
Cameron Zwarich9b6af8d2011-02-24 10:00:20 +00002147 return Val.getNumSignBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002148 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002149
Dan Gohmanea859be2007-06-22 14:59:07 +00002150 case ISD::SIGN_EXTEND:
Dan Gohman87862e72009-12-11 21:31:27 +00002151 Tmp = VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002152 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
Scott Michelfdc40a02009-02-17 22:15:04 +00002153
Dan Gohmanea859be2007-06-22 14:59:07 +00002154 case ISD::SIGN_EXTEND_INREG:
2155 // Max of the input and what this extends.
Dan Gohmand1996362010-01-09 02:13:55 +00002156 Tmp =
2157 cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002158 Tmp = VTBits-Tmp+1;
Scott Michelfdc40a02009-02-17 22:15:04 +00002159
Dan Gohmanea859be2007-06-22 14:59:07 +00002160 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2161 return std::max(Tmp, Tmp2);
2162
2163 case ISD::SRA:
2164 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2165 // SRA X, C -> adds C sign bits.
2166 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002167 Tmp += C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00002168 if (Tmp > VTBits) Tmp = VTBits;
2169 }
2170 return Tmp;
2171 case ISD::SHL:
2172 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2173 // shl destroys sign bits.
2174 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002175 if (C->getZExtValue() >= VTBits || // Bad shift.
2176 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
2177 return Tmp - C->getZExtValue();
Dan Gohmanea859be2007-06-22 14:59:07 +00002178 }
2179 break;
2180 case ISD::AND:
2181 case ISD::OR:
2182 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00002183 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00002184 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00002185 if (Tmp != 1) {
2186 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2187 FirstAnswer = std::min(Tmp, Tmp2);
2188 // We computed what we know about the sign bits as our first
2189 // answer. Now proceed to the generic code that uses
2190 // ComputeMaskedBits, and pick whichever answer is better.
2191 }
2192 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00002193
2194 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00002195 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00002196 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00002197 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00002198 return std::min(Tmp, Tmp2);
Bill Wendling253174b2008-11-22 07:24:01 +00002199
2200 case ISD::SADDO:
2201 case ISD::UADDO:
Bill Wendling74c37652008-12-09 22:08:41 +00002202 case ISD::SSUBO:
2203 case ISD::USUBO:
2204 case ISD::SMULO:
2205 case ISD::UMULO:
Bill Wendling253174b2008-11-22 07:24:01 +00002206 if (Op.getResNo() != 1)
2207 break;
Duncan Sands03228082008-11-23 15:47:28 +00002208 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohmanea859be2007-06-22 14:59:07 +00002209 case ISD::SETCC:
2210 // If setcc returns 0/-1, all bits are sign bits.
Bill Wendlingba54bca2013-06-19 21:36:55 +00002211 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sands03228082008-11-23 15:47:28 +00002212 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohmanea859be2007-06-22 14:59:07 +00002213 return VTBits;
2214 break;
2215 case ISD::ROTL:
2216 case ISD::ROTR:
2217 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002218 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002219
Dan Gohmanea859be2007-06-22 14:59:07 +00002220 // Handle rotate right by N like a rotate left by 32-N.
2221 if (Op.getOpcode() == ISD::ROTR)
2222 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2223
2224 // If we aren't rotating out all of the known-in sign bits, return the
2225 // number that are left. This handles rotl(sext(x), 1) for example.
2226 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2227 if (Tmp > RotAmt+1) return Tmp-RotAmt;
2228 }
2229 break;
2230 case ISD::ADD:
2231 // Add can have at most one carry bit. Thus we know that the output
2232 // is, at worst, one more bit than the inputs.
2233 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2234 if (Tmp == 1) return 1; // Early out.
Scott Michelfdc40a02009-02-17 22:15:04 +00002235
Dan Gohmanea859be2007-06-22 14:59:07 +00002236 // Special case decrementing a value (ADD X, -1):
Dan Gohman0001e562009-02-24 02:00:40 +00002237 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
Dan Gohmanea859be2007-06-22 14:59:07 +00002238 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002239 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002240 ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002241
Dan Gohmanea859be2007-06-22 14:59:07 +00002242 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2243 // sign bits set.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002244 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00002245 return VTBits;
Scott Michelfdc40a02009-02-17 22:15:04 +00002246
Dan Gohmanea859be2007-06-22 14:59:07 +00002247 // If we are subtracting one from a positive number, there is no carry
2248 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002249 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00002250 return Tmp;
2251 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002252
Dan Gohmanea859be2007-06-22 14:59:07 +00002253 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2254 if (Tmp2 == 1) return 1;
David Blaikie4d6ccb52012-01-20 21:51:11 +00002255 return std::min(Tmp, Tmp2)-1;
Scott Michelfdc40a02009-02-17 22:15:04 +00002256
Dan Gohmanea859be2007-06-22 14:59:07 +00002257 case ISD::SUB:
2258 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2259 if (Tmp2 == 1) return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00002260
Dan Gohmanea859be2007-06-22 14:59:07 +00002261 // Handle NEG.
2262 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002263 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002264 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002265 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00002266 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2267 // sign bits set.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002268 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00002269 return VTBits;
Scott Michelfdc40a02009-02-17 22:15:04 +00002270
Dan Gohmanea859be2007-06-22 14:59:07 +00002271 // If the input is known to be positive (the sign bit is known clear),
2272 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002273 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00002274 return Tmp2;
Scott Michelfdc40a02009-02-17 22:15:04 +00002275
Dan Gohmanea859be2007-06-22 14:59:07 +00002276 // Otherwise, we treat this like a SUB.
2277 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002278
Dan Gohmanea859be2007-06-22 14:59:07 +00002279 // Sub can have at most one carry bit. Thus we know that the output
2280 // is, at worst, one more bit than the inputs.
2281 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2282 if (Tmp == 1) return 1; // Early out.
David Blaikie4d6ccb52012-01-20 21:51:11 +00002283 return std::min(Tmp, Tmp2)-1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002284 case ISD::TRUNCATE:
2285 // FIXME: it's tricky to do anything useful for this, but it is an important
2286 // case for targets like X86.
2287 break;
2288 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002289
Nadav Rotem77451752013-03-20 22:53:44 +00002290 // If we are looking at the loaded value of the SDNode.
2291 if (Op.getResNo() == 0) {
2292 // Handle LOADX separately here. EXTLOAD case will fallthrough.
2293 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
2294 unsigned ExtType = LD->getExtensionType();
2295 switch (ExtType) {
2296 default: break;
2297 case ISD::SEXTLOAD: // '17' bits known
2298 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2299 return VTBits-Tmp+1;
2300 case ISD::ZEXTLOAD: // '16' bits known
2301 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2302 return VTBits-Tmp;
2303 }
Dan Gohmanea859be2007-06-22 14:59:07 +00002304 }
2305 }
2306
2307 // Allow the target to implement this method for its nodes.
2308 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
Scott Michelfdc40a02009-02-17 22:15:04 +00002309 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
Dan Gohmanea859be2007-06-22 14:59:07 +00002310 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2311 Op.getOpcode() == ISD::INTRINSIC_VOID) {
Bill Wendlingba54bca2013-06-19 21:36:55 +00002312 unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00002313 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00002314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002315
Dan Gohmanea859be2007-06-22 14:59:07 +00002316 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2317 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002318 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002319 ComputeMaskedBits(Op, KnownZero, KnownOne, Depth);
Scott Michelfdc40a02009-02-17 22:15:04 +00002320
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00002321 APInt Mask;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002322 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00002323 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002324 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00002325 Mask = KnownOne;
2326 } else {
2327 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00002328 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00002329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002330
Dan Gohmanea859be2007-06-22 14:59:07 +00002331 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2332 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00002333 Mask = ~Mask;
2334 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00002335 // Return # leading zeros. We use 'min' here in case Val was zero before
2336 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00002337 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00002338}
2339
Chris Lattner0a9481f2011-02-13 22:25:43 +00002340/// isBaseWithConstantOffset - Return true if the specified operand is an
2341/// ISD::ADD with a ConstantSDNode on the right-hand side, or if it is an
2342/// ISD::OR with a ConstantSDNode that is guaranteed to have the same
2343/// semantics as an ADD. This handles the equivalence:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002344/// X|Cst == X+Cst iff X&Cst = 0.
Chris Lattner0a9481f2011-02-13 22:25:43 +00002345bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
2346 if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
2347 !isa<ConstantSDNode>(Op.getOperand(1)))
2348 return false;
Owen Anderson95771af2011-02-25 21:41:48 +00002349
2350 if (Op.getOpcode() == ISD::OR &&
Chris Lattner0a9481f2011-02-13 22:25:43 +00002351 !MaskedValueIsZero(Op.getOperand(0),
2352 cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue()))
2353 return false;
Owen Anderson95771af2011-02-25 21:41:48 +00002354
Chris Lattner0a9481f2011-02-13 22:25:43 +00002355 return true;
2356}
2357
2358
Dan Gohman8d44b282009-09-03 20:34:31 +00002359bool SelectionDAG::isKnownNeverNaN(SDValue Op) const {
2360 // If we're told that NaNs won't happen, assume they won't.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002361 if (getTarget().Options.NoNaNsFPMath)
Dan Gohman8d44b282009-09-03 20:34:31 +00002362 return true;
2363
2364 // If the value is a constant, we can obviously see if it is a NaN or not.
2365 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2366 return !C->getValueAPF().isNaN();
2367
2368 // TODO: Recognize more cases here.
2369
2370 return false;
2371}
Chris Lattner51dabfb2006-10-14 00:41:01 +00002372
Dan Gohmane8326932010-02-24 06:52:40 +00002373bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
2374 // If the value is a constant, we can obviously see if it is a zero or not.
2375 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2376 return !C->isZero();
2377
2378 // TODO: Recognize more cases here.
Evan Chengb5a55d92011-05-24 01:48:22 +00002379 switch (Op.getOpcode()) {
2380 default: break;
2381 case ISD::OR:
2382 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2383 return !C->isNullValue();
2384 break;
2385 }
Dan Gohmane8326932010-02-24 06:52:40 +00002386
2387 return false;
2388}
2389
2390bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
2391 // Check the obvious case.
2392 if (A == B) return true;
2393
2394 // For for negative and positive zero.
2395 if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
2396 if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
2397 if (CA->isZero() && CB->isZero()) return true;
2398
2399 // Otherwise they may not be equal.
2400 return false;
2401}
2402
Chris Lattnerc3aae252005-01-07 07:46:32 +00002403/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00002404///
Andrew Trickac6d9be2013-05-25 02:42:55 +00002405SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00002406 FoldingSetNodeID ID;
Dan Gohman6d9cdd52008-07-07 18:26:29 +00002407 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00002408 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00002409 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002410 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00002411
Andrew Trickac6d9be2013-05-25 02:42:55 +00002412 SDNode *N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), getVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00002413 CSEMap.InsertNode(N, IP);
Scott Michelfdc40a02009-02-17 22:15:04 +00002414
Chris Lattner4a283e92006-08-11 18:38:11 +00002415 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002416#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00002417 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002418#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002419 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002420}
2421
Andrew Trickac6d9be2013-05-25 02:42:55 +00002422SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Owen Andersone50ed302009-08-10 22:56:29 +00002423 EVT VT, SDValue Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00002424 // Constant fold unary operations with an integer constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002425 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohman6c231502008-02-29 01:47:35 +00002426 const APInt &Val = C->getAPIntValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002427 switch (Opcode) {
2428 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00002429 case ISD::SIGN_EXTEND:
Jay Foad40f8f622010-12-07 08:25:19 +00002430 return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00002431 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00002432 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00002433 case ISD::TRUNCATE:
Jay Foad40f8f622010-12-07 08:25:19 +00002434 return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00002435 case ISD::UINT_TO_FP:
2436 case ISD::SINT_TO_FP: {
Tim Northover0a29cb02013-01-22 09:46:31 +00002437 APFloat apf(EVTToAPFloatSemantics(VT),
2438 APInt::getNullValue(VT.getSizeInBits()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002439 (void)apf.convertFromAPInt(Val,
Dan Gohman6c231502008-02-29 01:47:35 +00002440 Opcode==ISD::SINT_TO_FP,
2441 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00002442 return getConstantFP(apf, VT);
2443 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002444 case ISD::BITCAST:
Owen Anderson825b72b2009-08-11 20:47:22 +00002445 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Tim Northover0a29cb02013-01-22 09:46:31 +00002446 return getConstantFP(APFloat(APFloat::IEEEsingle, Val), VT);
Owen Anderson825b72b2009-08-11 20:47:22 +00002447 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Tim Northover0a29cb02013-01-22 09:46:31 +00002448 return getConstantFP(APFloat(APFloat::IEEEdouble, Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00002449 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002450 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00002451 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002452 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00002453 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002454 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002455 case ISD::CTLZ_ZERO_UNDEF:
Dan Gohman6c231502008-02-29 01:47:35 +00002456 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00002457 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002458 case ISD::CTTZ_ZERO_UNDEF:
Dan Gohman6c231502008-02-29 01:47:35 +00002459 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002460 }
2461 }
2462
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002463 // Constant fold unary operations with a floating point constant operand.
Gabor Greifba36cb52008-08-28 21:40:38 +00002464 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002465 APFloat V = C->getValueAPF(); // make copy
Ulrich Weigande669c932012-10-29 18:35:49 +00002466 switch (Opcode) {
2467 case ISD::FNEG:
2468 V.changeSign();
2469 return getConstantFP(V, VT);
2470 case ISD::FABS:
2471 V.clearSign();
2472 return getConstantFP(V, VT);
2473 case ISD::FCEIL: {
2474 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
2475 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesendb44bf82007-10-16 23:38:29 +00002476 return getConstantFP(V, VT);
Ulrich Weigande669c932012-10-29 18:35:49 +00002477 break;
2478 }
2479 case ISD::FTRUNC: {
2480 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
2481 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesendb44bf82007-10-16 23:38:29 +00002482 return getConstantFP(V, VT);
Ulrich Weigande669c932012-10-29 18:35:49 +00002483 break;
2484 }
2485 case ISD::FFLOOR: {
2486 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
2487 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesendb44bf82007-10-16 23:38:29 +00002488 return getConstantFP(V, VT);
Ulrich Weigande669c932012-10-29 18:35:49 +00002489 break;
2490 }
2491 case ISD::FP_EXTEND: {
2492 bool ignored;
2493 // This can return overflow, underflow, or inexact; we don't care.
2494 // FIXME need to be more flexible about rounding mode.
Tim Northover0a29cb02013-01-22 09:46:31 +00002495 (void)V.convert(EVTToAPFloatSemantics(VT),
Ulrich Weigande669c932012-10-29 18:35:49 +00002496 APFloat::rmNearestTiesToEven, &ignored);
2497 return getConstantFP(V, VT);
2498 }
2499 case ISD::FP_TO_SINT:
2500 case ISD::FP_TO_UINT: {
2501 integerPart x[2];
2502 bool ignored;
2503 assert(integerPartWidth >= 64);
2504 // FIXME need to be more flexible about rounding mode.
2505 APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(),
2506 Opcode==ISD::FP_TO_SINT,
2507 APFloat::rmTowardZero, &ignored);
2508 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002509 break;
Ulrich Weigande669c932012-10-29 18:35:49 +00002510 APInt api(VT.getSizeInBits(), x);
2511 return getConstant(api, VT);
2512 }
2513 case ISD::BITCAST:
2514 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2515 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2516 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2517 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2518 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002519 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002520 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002521
Gabor Greifba36cb52008-08-28 21:40:38 +00002522 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002523 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00002524 case ISD::TokenFactor:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002525 case ISD::MERGE_VALUES:
Dan Gohman7f8613e2008-08-14 20:04:46 +00002526 case ISD::CONCAT_VECTORS:
Duncan Sandsaaffa052008-12-01 11:41:29 +00002527 return Operand; // Factor, merge or concat of one node? No need.
Torok Edwinc23197a2009-07-14 16:55:14 +00002528 case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00002529 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002530 assert(VT.isFloatingPoint() &&
2531 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00002532 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Dan Gohman2e141d72009-12-14 23:40:38 +00002533 assert((!VT.isVector() ||
2534 VT.getVectorNumElements() ==
2535 Operand.getValueType().getVectorNumElements()) &&
2536 "Vector element count mismatch!");
Chris Lattner5d03f212008-03-11 06:21:08 +00002537 if (Operand.getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00002538 return getUNDEF(VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00002539 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002540 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002541 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002542 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002543 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohman2e141d72009-12-14 23:40:38 +00002544 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2545 "Invalid sext node, dst < src!");
2546 assert((!VT.isVector() ||
2547 VT.getVectorNumElements() ==
2548 Operand.getValueType().getVectorNumElements()) &&
2549 "Vector element count mismatch!");
Nadav Rotem0c8607b2013-01-20 08:35:56 +00002550 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2551 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2552 else if (OpOpcode == ISD::UNDEF)
Evan Chengbf34a5e2011-03-15 02:22:10 +00002553 // sext(undef) = 0, because the top bits will all be the same.
2554 return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002555 break;
2556 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002557 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002558 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002559 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohman2e141d72009-12-14 23:40:38 +00002560 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2561 "Invalid zext node, dst < src!");
2562 assert((!VT.isVector() ||
2563 VT.getVectorNumElements() ==
2564 Operand.getValueType().getVectorNumElements()) &&
2565 "Vector element count mismatch!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002566 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Scott Michelfdc40a02009-02-17 22:15:04 +00002567 return getNode(ISD::ZERO_EXTEND, DL, VT,
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002568 Operand.getNode()->getOperand(0));
Evan Chengbf34a5e2011-03-15 02:22:10 +00002569 else if (OpOpcode == ISD::UNDEF)
2570 // zext(undef) = 0, because the top bits will be zero.
2571 return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002572 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002573 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002574 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002575 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002576 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohman2e141d72009-12-14 23:40:38 +00002577 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2578 "Invalid anyext node, dst < src!");
2579 assert((!VT.isVector() ||
2580 VT.getVectorNumElements() ==
2581 Operand.getValueType().getVectorNumElements()) &&
2582 "Vector element count mismatch!");
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002583
Dan Gohman9e86a732010-06-18 00:08:30 +00002584 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2585 OpOpcode == ISD::ANY_EXTEND)
Chris Lattner4ed11b42005-09-02 00:17:32 +00002586 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002587 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Evan Cheng5ae1da92011-03-14 18:15:55 +00002588 else if (OpOpcode == ISD::UNDEF)
2589 return getUNDEF(VT);
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002590
2591 // (ext (trunx x)) -> x
2592 if (OpOpcode == ISD::TRUNCATE) {
2593 SDValue OpOp = Operand.getNode()->getOperand(0);
2594 if (OpOp.getValueType() == VT)
2595 return OpOp;
2596 }
Chris Lattner4ed11b42005-09-02 00:17:32 +00002597 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002598 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002599 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002600 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002601 if (Operand.getValueType() == VT) return Operand; // noop truncate
Dan Gohman2e141d72009-12-14 23:40:38 +00002602 assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) &&
2603 "Invalid truncate node, src < dst!");
2604 assert((!VT.isVector() ||
2605 VT.getVectorNumElements() ==
2606 Operand.getValueType().getVectorNumElements()) &&
2607 "Vector element count mismatch!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002608 if (OpOpcode == ISD::TRUNCATE)
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002609 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper799ea5c2012-01-15 01:05:11 +00002610 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2611 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002612 // If the source is smaller than the dest, we still need an extend.
Dan Gohman2e141d72009-12-14 23:40:38 +00002613 if (Operand.getNode()->getOperand(0).getValueType().getScalarType()
2614 .bitsLT(VT.getScalarType()))
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002615 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper799ea5c2012-01-15 01:05:11 +00002616 if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002617 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper799ea5c2012-01-15 01:05:11 +00002618 return Operand.getNode()->getOperand(0);
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002619 }
Craig Topper799ea5c2012-01-15 01:05:11 +00002620 if (OpOpcode == ISD::UNDEF)
2621 return getUNDEF(VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002622 break;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002623 case ISD::BITCAST:
Chris Lattner35481892005-12-23 00:16:34 +00002624 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002625 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002626 && "Cannot BITCAST between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002627 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002628 if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x)
2629 return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002630 if (OpOpcode == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00002631 return getUNDEF(VT);
Chris Lattner35481892005-12-23 00:16:34 +00002632 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002633 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002634 assert(VT.isVector() && !Operand.getValueType().isVector() &&
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00002635 (VT.getVectorElementType() == Operand.getValueType() ||
2636 (VT.getVectorElementType().isInteger() &&
2637 Operand.getValueType().isInteger() &&
2638 VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
Chris Lattnerce872152006-03-19 06:31:19 +00002639 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002640 if (OpOpcode == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00002641 return getUNDEF(VT);
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002642 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2643 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2644 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2645 Operand.getConstantOperandVal(1) == 0 &&
2646 Operand.getOperand(0).getValueType() == VT)
2647 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002648 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002649 case ISD::FNEG:
Mon P Wanga7b6cff2009-01-31 06:07:45 +00002650 // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002651 if (getTarget().Options.UnsafeFPMath && OpOpcode == ISD::FSUB)
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002652 return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1),
Gabor Greifba36cb52008-08-28 21:40:38 +00002653 Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002654 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greifba36cb52008-08-28 21:40:38 +00002655 return Operand.getNode()->getOperand(0);
Chris Lattner485df9b2005-04-09 03:02:46 +00002656 break;
2657 case ISD::FABS:
2658 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Dale Johannesendbfd8db2009-02-03 01:55:44 +00002659 return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0));
Chris Lattner485df9b2005-04-09 03:02:46 +00002660 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002661 }
2662
Chris Lattner43247a12005-08-25 19:12:10 +00002663 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002664 SDVTList VTs = getVTList(VT);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002665 if (VT != MVT::Glue) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002666 FoldingSetNodeID ID;
Dan Gohman475871a2008-07-27 21:46:04 +00002667 SDValue Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002668 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002669 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00002670 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00002671 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00002672
Andrew Trickac6d9be2013-05-25 02:42:55 +00002673 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002674 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002675 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00002676 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002677 }
Duncan Sandsd038e042008-07-21 10:20:31 +00002678
Chris Lattnerc3aae252005-01-07 07:46:32 +00002679 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002680#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00002681 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00002682#endif
Dan Gohman475871a2008-07-27 21:46:04 +00002683 return SDValue(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002684}
2685
Benjamin Kramer49693102013-02-04 15:19:18 +00002686SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, EVT VT,
2687 SDNode *Cst1, SDNode *Cst2) {
2688 SmallVector<std::pair<ConstantSDNode *, ConstantSDNode *>, 4> Inputs;
2689 SmallVector<SDValue, 4> Outputs;
2690 EVT SVT = VT.getScalarType();
Bill Wendling688d1c42008-09-24 10:16:24 +00002691
Benjamin Kramer49693102013-02-04 15:19:18 +00002692 ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1);
2693 ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2);
2694 if (Scalar1 && Scalar2) {
2695 // Scalar instruction.
2696 Inputs.push_back(std::make_pair(Scalar1, Scalar2));
2697 } else {
2698 // For vectors extract each constant element into Inputs so we can constant
2699 // fold them individually.
2700 BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1);
2701 BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2);
2702 if (!BV1 || !BV2)
2703 return SDValue();
2704
2705 assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!");
2706
2707 for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) {
2708 ConstantSDNode *V1 = dyn_cast<ConstantSDNode>(BV1->getOperand(I));
2709 ConstantSDNode *V2 = dyn_cast<ConstantSDNode>(BV2->getOperand(I));
2710 if (!V1 || !V2) // Not a constant, bail.
2711 return SDValue();
2712
2713 // Avoid BUILD_VECTOR nodes that perform implicit truncation.
2714 // FIXME: This is valid and could be handled by truncating the APInts.
2715 if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT)
2716 return SDValue();
2717
2718 Inputs.push_back(std::make_pair(V1, V2));
2719 }
Bill Wendling688d1c42008-09-24 10:16:24 +00002720 }
2721
Benjamin Kramer49693102013-02-04 15:19:18 +00002722 // We have a number of constant values, constant fold them element by element.
2723 for (unsigned I = 0, E = Inputs.size(); I != E; ++I) {
2724 const APInt &C1 = Inputs[I].first->getAPIntValue();
2725 const APInt &C2 = Inputs[I].second->getAPIntValue();
2726
2727 switch (Opcode) {
2728 case ISD::ADD:
2729 Outputs.push_back(getConstant(C1 + C2, SVT));
2730 break;
2731 case ISD::SUB:
2732 Outputs.push_back(getConstant(C1 - C2, SVT));
2733 break;
2734 case ISD::MUL:
2735 Outputs.push_back(getConstant(C1 * C2, SVT));
2736 break;
2737 case ISD::UDIV:
2738 if (!C2.getBoolValue())
2739 return SDValue();
2740 Outputs.push_back(getConstant(C1.udiv(C2), SVT));
2741 break;
2742 case ISD::UREM:
2743 if (!C2.getBoolValue())
2744 return SDValue();
2745 Outputs.push_back(getConstant(C1.urem(C2), SVT));
2746 break;
2747 case ISD::SDIV:
2748 if (!C2.getBoolValue())
2749 return SDValue();
2750 Outputs.push_back(getConstant(C1.sdiv(C2), SVT));
2751 break;
2752 case ISD::SREM:
2753 if (!C2.getBoolValue())
2754 return SDValue();
2755 Outputs.push_back(getConstant(C1.srem(C2), SVT));
2756 break;
2757 case ISD::AND:
2758 Outputs.push_back(getConstant(C1 & C2, SVT));
2759 break;
2760 case ISD::OR:
2761 Outputs.push_back(getConstant(C1 | C2, SVT));
2762 break;
2763 case ISD::XOR:
2764 Outputs.push_back(getConstant(C1 ^ C2, SVT));
2765 break;
2766 case ISD::SHL:
2767 Outputs.push_back(getConstant(C1 << C2, SVT));
2768 break;
2769 case ISD::SRL:
2770 Outputs.push_back(getConstant(C1.lshr(C2), SVT));
2771 break;
2772 case ISD::SRA:
2773 Outputs.push_back(getConstant(C1.ashr(C2), SVT));
2774 break;
2775 case ISD::ROTL:
2776 Outputs.push_back(getConstant(C1.rotl(C2), SVT));
2777 break;
2778 case ISD::ROTR:
2779 Outputs.push_back(getConstant(C1.rotr(C2), SVT));
2780 break;
2781 default:
2782 return SDValue();
2783 }
2784 }
2785
2786 // Handle the scalar case first.
Silviu Baranga02066832013-04-25 09:32:33 +00002787 if (Scalar1 && Scalar2)
Benjamin Kramer49693102013-02-04 15:19:18 +00002788 return Outputs.back();
2789
2790 // Otherwise build a big vector out of the scalar elements we generated.
Andrew Trickac6d9be2013-05-25 02:42:55 +00002791 return getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Outputs.data(),
Benjamin Kramer49693102013-02-04 15:19:18 +00002792 Outputs.size());
Bill Wendling688d1c42008-09-24 10:16:24 +00002793}
2794
Andrew Trickac6d9be2013-05-25 02:42:55 +00002795SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, SDValue N1,
Benjamin Kramer49693102013-02-04 15:19:18 +00002796 SDValue N2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002797 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2798 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner76365122005-01-16 02:23:22 +00002799 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002800 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002801 case ISD::TokenFactor:
Owen Anderson825b72b2009-08-11 20:47:22 +00002802 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2803 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002804 // Fold trivial token factors.
2805 if (N1.getOpcode() == ISD::EntryToken) return N2;
2806 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman38ac0622008-10-01 15:11:19 +00002807 if (N1 == N2) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002808 break;
Dan Gohman7f8613e2008-08-14 20:04:46 +00002809 case ISD::CONCAT_VECTORS:
Nadav Rotemb87bdac2012-07-15 08:38:23 +00002810 // Concat of UNDEFs is UNDEF.
2811 if (N1.getOpcode() == ISD::UNDEF &&
2812 N2.getOpcode() == ISD::UNDEF)
2813 return getUNDEF(VT);
2814
Dan Gohman7f8613e2008-08-14 20:04:46 +00002815 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2816 // one big BUILD_VECTOR.
2817 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2818 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif481c4c02010-07-22 17:18:03 +00002819 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
2820 N1.getNode()->op_end());
Dan Gohman403a8cd2010-06-21 19:47:52 +00002821 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00002822 return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size());
Dan Gohman7f8613e2008-08-14 20:04:46 +00002823 }
2824 break;
Chris Lattner76365122005-01-16 02:23:22 +00002825 case ISD::AND:
Dale Johannesen78995512010-05-15 18:38:02 +00002826 assert(VT.isInteger() && "This operator does not apply to FP types!");
2827 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002828 N1.getValueType() == VT && "Binary operator types must match!");
2829 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2830 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002831 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002832 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002833 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2834 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002835 break;
Chris Lattner76365122005-01-16 02:23:22 +00002836 case ISD::OR:
2837 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002838 case ISD::ADD:
2839 case ISD::SUB:
Dale Johannesen78995512010-05-15 18:38:02 +00002840 assert(VT.isInteger() && "This operator does not apply to FP types!");
2841 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002842 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002843 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2844 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002845 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002846 return N1;
2847 break;
Chris Lattner76365122005-01-16 02:23:22 +00002848 case ISD::UDIV:
2849 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002850 case ISD::MULHU:
2851 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00002852 case ISD::MUL:
2853 case ISD::SDIV:
2854 case ISD::SREM:
Dan Gohman760f86f2009-01-22 21:58:43 +00002855 assert(VT.isInteger() && "This operator does not apply to FP types!");
Dale Johannesen78995512010-05-15 18:38:02 +00002856 assert(N1.getValueType() == N2.getValueType() &&
2857 N1.getValueType() == VT && "Binary operator types must match!");
2858 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002859 case ISD::FADD:
2860 case ISD::FSUB:
2861 case ISD::FMUL:
2862 case ISD::FDIV:
2863 case ISD::FREM:
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002864 if (getTarget().Options.UnsafeFPMath) {
Dan Gohmana90c8e62009-01-23 19:10:37 +00002865 if (Opcode == ISD::FADD) {
2866 // 0+x --> x
2867 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
2868 if (CFP->getValueAPF().isZero())
2869 return N2;
2870 // x+0 --> x
2871 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2872 if (CFP->getValueAPF().isZero())
2873 return N1;
2874 } else if (Opcode == ISD::FSUB) {
2875 // x-0 --> x
2876 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2877 if (CFP->getValueAPF().isZero())
2878 return N1;
Michael Ilseman10def392012-09-10 17:00:37 +00002879 } else if (Opcode == ISD::FMUL) {
2880 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1);
2881 SDValue V = N2;
2882
2883 // If the first operand isn't the constant, try the second
2884 if (!CFP) {
2885 CFP = dyn_cast<ConstantFPSDNode>(N2);
2886 V = N1;
2887 }
2888
2889 if (CFP) {
2890 // 0*x --> 0
2891 if (CFP->isZero())
2892 return SDValue(CFP,0);
2893 // 1*x --> x
2894 if (CFP->isExactlyValue(1.0))
2895 return V;
2896 }
Dan Gohmana90c8e62009-01-23 19:10:37 +00002897 }
Dan Gohman760f86f2009-01-22 21:58:43 +00002898 }
Dale Johannesen78995512010-05-15 18:38:02 +00002899 assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002900 assert(N1.getValueType() == N2.getValueType() &&
2901 N1.getValueType() == VT && "Binary operator types must match!");
2902 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002903 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2904 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002905 N1.getValueType().isFloatingPoint() &&
2906 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002907 "Invalid FCOPYSIGN!");
2908 break;
Chris Lattner76365122005-01-16 02:23:22 +00002909 case ISD::SHL:
2910 case ISD::SRA:
2911 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002912 case ISD::ROTL:
2913 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002914 assert(VT == N1.getValueType() &&
2915 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002916 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner349db172008-07-02 17:01:57 +00002917 "Shifts only work on integers");
Michael Liaoa6b20ce2013-03-01 18:40:30 +00002918 assert((!VT.isVector() || VT == N2.getValueType()) &&
2919 "Vector shift amounts must be in the same as their first arg");
Chris Lattnere0751182011-02-13 19:09:16 +00002920 // Verify that the shift amount VT is bit enough to hold valid shift
2921 // amounts. This catches things like trying to shift an i1024 value by an
2922 // i8, which is easy to fall into in generic code that uses
2923 // TLI.getShiftAmount().
2924 assert(N2.getValueType().getSizeInBits() >=
Owen Anderson95771af2011-02-25 21:41:48 +00002925 Log2_32_Ceil(N1.getValueType().getSizeInBits()) &&
Chris Lattnere0751182011-02-13 19:09:16 +00002926 "Invalid use of small shift amount with oversized value!");
Chris Lattner349db172008-07-02 17:01:57 +00002927
2928 // Always fold shifts of i1 values so the code generator doesn't need to
2929 // handle them. Since we know the size of the shift has to be less than the
2930 // size of the value, the shift/rotate count is guaranteed to be zero.
Owen Anderson825b72b2009-08-11 20:47:22 +00002931 if (VT == MVT::i1)
Chris Lattner349db172008-07-02 17:01:57 +00002932 return N1;
Evan Chengd40d03e2010-01-06 19:38:29 +00002933 if (N2C && N2C->isNullValue())
2934 return N1;
Chris Lattner76365122005-01-16 02:23:22 +00002935 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002936 case ISD::FP_ROUND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00002937 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002938 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002939 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002940 "Cannot FP_ROUND_INREG integer types");
Dan Gohmand1996362010-01-09 02:13:55 +00002941 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002942 "FP_ROUND_INREG type should be vector iff the operand "
Dan Gohmand1996362010-01-09 02:13:55 +00002943 "type is vector!");
2944 assert((!EVT.isVector() ||
2945 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
2946 "Vector element counts must match in FP_ROUND_INREG");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002947 assert(EVT.bitsLE(VT) && "Not rounding down!");
Duncan Sands17001ce2011-10-18 12:44:00 +00002948 (void)EVT;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002949 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002950 break;
2951 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002952 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002953 assert(VT.isFloatingPoint() &&
2954 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002955 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002956 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002957 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002958 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002959 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002960 case ISD::AssertZext: {
Owen Andersone50ed302009-08-10 22:56:29 +00002961 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002962 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002963 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002964 "Cannot *_EXTEND_INREG FP types");
Dan Gohman87862e72009-12-11 21:31:27 +00002965 assert(!EVT.isVector() &&
2966 "AssertSExt/AssertZExt type should be the vector element type "
2967 "rather than the vector type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002968 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002969 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002970 break;
2971 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002972 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00002973 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002974 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002975 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002976 "Cannot *_EXTEND_INREG FP types");
Dan Gohmand1996362010-01-09 02:13:55 +00002977 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002978 "SIGN_EXTEND_INREG type should be vector iff the operand "
Dan Gohmand1996362010-01-09 02:13:55 +00002979 "type is vector!");
2980 assert((!EVT.isVector() ||
2981 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
2982 "Vector element counts must match in SIGN_EXTEND_INREG");
2983 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002984 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002985
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002986 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002987 APInt Val = N1C->getAPIntValue();
Dan Gohmand1996362010-01-09 02:13:55 +00002988 unsigned FromBits = EVT.getScalarType().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002989 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002990 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002991 return getConstant(Val, VT);
2992 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002993 break;
2994 }
2995 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002996 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2997 if (N1.getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00002998 return getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002999
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003000 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
3001 // expanding copies of large vectors from registers.
Dan Gohman6ab64222008-08-13 21:51:37 +00003002 if (N2C &&
3003 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003004 N1.getNumOperands() > 0) {
3005 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00003006 N1.getOperand(0).getValueType().getVectorNumElements();
Dale Johannesendbfd8db2009-02-03 01:55:44 +00003007 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003008 N1.getOperand(N2C->getZExtValue() / Factor),
3009 getConstant(N2C->getZExtValue() % Factor,
3010 N2.getValueType()));
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003011 }
3012
3013 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
3014 // expanding large vector constants.
Bob Wilsonb1303d02009-04-13 22:05:19 +00003015 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
3016 SDValue Elt = N1.getOperand(N2C->getZExtValue());
James Molloy8cd08bf2012-09-10 14:01:21 +00003017
3018 if (VT != Elt.getValueType())
Bob Wilsonb1303d02009-04-13 22:05:19 +00003019 // If the vector element type is not legal, the BUILD_VECTOR operands
James Molloy8cd08bf2012-09-10 14:01:21 +00003020 // are promoted and implicitly truncated, and the result implicitly
3021 // extended. Make that explicit here.
3022 Elt = getAnyExtOrTrunc(Elt, DL, VT);
Michael Ilseman06b96902012-09-10 16:56:31 +00003023
Bob Wilsonb1303d02009-04-13 22:05:19 +00003024 return Elt;
3025 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003026
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003027 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
3028 // operations are lowered to scalars.
Dan Gohman6ab64222008-08-13 21:51:37 +00003029 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
Mon P Wang87c46d82010-02-01 22:15:09 +00003030 // If the indices are the same, return the inserted element else
3031 // if the indices are known different, extract the element from
Dan Gohman197e88f2009-01-29 16:10:46 +00003032 // the original vector.
Bill Wendlingd71bb562010-04-30 22:19:17 +00003033 SDValue N1Op2 = N1.getOperand(2);
3034 ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2.getNode());
3035
3036 if (N1Op2C && N2C) {
3037 if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
3038 if (VT == N1.getOperand(1).getValueType())
3039 return N1.getOperand(1);
3040 else
3041 return getSExtOrTrunc(N1.getOperand(1), DL, VT);
3042 }
3043
Dale Johannesendbfd8db2009-02-03 01:55:44 +00003044 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
Bill Wendlingd71bb562010-04-30 22:19:17 +00003045 }
Dan Gohman6ab64222008-08-13 21:51:37 +00003046 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003047 break;
3048 case ISD::EXTRACT_ELEMENT:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003049 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00003050 assert(!N1.getValueType().isVector() && !VT.isVector() &&
3051 (N1.getValueType().isInteger() == VT.isInteger()) &&
Eli Friedman6cdc1f42011-08-02 18:38:35 +00003052 N1.getValueType() != VT &&
Duncan Sands041cde22008-06-25 20:24:48 +00003053 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00003054
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003055 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
3056 // 64-bit integers into 32-bit parts. Instead of building the extract of
Scott Michelfdc40a02009-02-17 22:15:04 +00003057 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003058 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003059 return N1.getOperand(N2C->getZExtValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00003060
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003061 // EXTRACT_ELEMENT of a constant int is also very common.
3062 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003063 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003064 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohman4c931fc2008-03-24 16:38:05 +00003065 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
3066 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003067 }
3068 break;
David Greene91585092011-01-26 15:38:49 +00003069 case ISD::EXTRACT_SUBVECTOR: {
3070 SDValue Index = N2;
3071 if (VT.isSimple() && N1.getValueType().isSimple()) {
3072 assert(VT.isVector() && N1.getValueType().isVector() &&
3073 "Extract subvector VTs must be a vectors!");
3074 assert(VT.getVectorElementType() == N1.getValueType().getVectorElementType() &&
3075 "Extract subvector VTs must have the same element type!");
Craig Topper0ff11902013-08-15 02:44:19 +00003076 assert(VT.getSimpleVT() <= N1.getSimpleValueType() &&
David Greene91585092011-01-26 15:38:49 +00003077 "Extract subvector must be from larger vector to smaller vector!");
3078
Matt Beaumont-Gay9a14a362011-02-01 22:12:50 +00003079 if (isa<ConstantSDNode>(Index.getNode())) {
3080 assert((VT.getVectorNumElements() +
3081 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greene91585092011-01-26 15:38:49 +00003082 <= N1.getValueType().getVectorNumElements())
3083 && "Extract subvector overflow!");
3084 }
3085
3086 // Trivial extraction.
Craig Topper0ff11902013-08-15 02:44:19 +00003087 if (VT.getSimpleVT() == N1.getSimpleValueType())
David Greene91585092011-01-26 15:38:49 +00003088 return N1;
3089 }
Duncan Sandsf83b1f62008-02-20 17:38:09 +00003090 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003091 }
David Greene91585092011-01-26 15:38:49 +00003092 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003093
Benjamin Kramer49693102013-02-04 15:19:18 +00003094 // Perform trivial constant folding.
3095 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1.getNode(), N2.getNode());
3096 if (SV.getNode()) return SV;
3097
3098 // Canonicalize constant to RHS if commutative.
3099 if (N1C && !N2C && isCommutativeBinOp(Opcode)) {
3100 std::swap(N1C, N2C);
3101 std::swap(N1, N2);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003102 }
3103
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003104 // Constant fold FP operations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003105 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
3106 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner15e4b012005-07-10 00:07:11 +00003107 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003108 if (!N2CFP && isCommutativeBinOp(Opcode)) {
Benjamin Kramer49693102013-02-04 15:19:18 +00003109 // Canonicalize constant to RHS if commutative.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003110 std::swap(N1CFP, N2CFP);
3111 std::swap(N1, N2);
Ulrich Weigande669c932012-10-29 18:35:49 +00003112 } else if (N2CFP) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003113 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
3114 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003115 switch (Opcode) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003116 case ISD::FADD:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003117 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00003118 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003119 return getConstantFP(V1, VT);
3120 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003121 case ISD::FSUB:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003122 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
3123 if (s!=APFloat::opInvalidOp)
3124 return getConstantFP(V1, VT);
3125 break;
3126 case ISD::FMUL:
3127 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
3128 if (s!=APFloat::opInvalidOp)
3129 return getConstantFP(V1, VT);
3130 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003131 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003132 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
3133 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3134 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003135 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003136 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003137 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
3138 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3139 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003140 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00003141 case ISD::FCOPYSIGN:
3142 V1.copySign(V2);
3143 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003144 default: break;
3145 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003146 }
Owen Anderson06886aa2012-04-10 22:46:53 +00003147
3148 if (Opcode == ISD::FP_ROUND) {
3149 APFloat V = N1CFP->getValueAPF(); // make copy
3150 bool ignored;
3151 // This can return overflow, underflow, or inexact; we don't care.
3152 // FIXME need to be more flexible about rounding mode.
Tim Northover0a29cb02013-01-22 09:46:31 +00003153 (void)V.convert(EVTToAPFloatSemantics(VT),
Owen Anderson06886aa2012-04-10 22:46:53 +00003154 APFloat::rmNearestTiesToEven, &ignored);
3155 return getConstantFP(V, VT);
3156 }
Chris Lattner15e4b012005-07-10 00:07:11 +00003157 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003158
Chris Lattner62b57722006-04-20 05:39:12 +00003159 // Canonicalize an UNDEF to the RHS, even over a constant.
3160 if (N1.getOpcode() == ISD::UNDEF) {
3161 if (isCommutativeBinOp(Opcode)) {
3162 std::swap(N1, N2);
3163 } else {
3164 switch (Opcode) {
3165 case ISD::FP_ROUND_INREG:
3166 case ISD::SIGN_EXTEND_INREG:
3167 case ISD::SUB:
3168 case ISD::FSUB:
3169 case ISD::FDIV:
3170 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00003171 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00003172 return N1; // fold op(undef, arg2) -> undef
3173 case ISD::UDIV:
3174 case ISD::SDIV:
3175 case ISD::UREM:
3176 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00003177 case ISD::SRL:
3178 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00003179 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00003180 return getConstant(0, VT); // fold op(undef, arg2) -> 0
3181 // For vectors, we can't easily build an all zero vector, just return
3182 // the LHS.
3183 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00003184 }
3185 }
3186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003187
3188 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00003189 if (N2.getOpcode() == ISD::UNDEF) {
3190 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00003191 case ISD::XOR:
3192 if (N1.getOpcode() == ISD::UNDEF)
3193 // Handle undef ^ undef -> 0 special case. This is a common
3194 // idiom (misuse).
3195 return getConstant(0, VT);
3196 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00003197 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00003198 case ISD::ADDC:
3199 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00003200 case ISD::SUB:
Chris Lattner62b57722006-04-20 05:39:12 +00003201 case ISD::UDIV:
3202 case ISD::SDIV:
3203 case ISD::UREM:
3204 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00003205 return N2; // fold op(arg1, undef) -> undef
Dan Gohman77b81fe2009-06-04 17:12:12 +00003206 case ISD::FADD:
3207 case ISD::FSUB:
3208 case ISD::FMUL:
3209 case ISD::FDIV:
3210 case ISD::FREM:
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003211 if (getTarget().Options.UnsafeFPMath)
Dan Gohman77b81fe2009-06-04 17:12:12 +00003212 return N2;
3213 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003214 case ISD::MUL:
Chris Lattner62b57722006-04-20 05:39:12 +00003215 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00003216 case ISD::SRL:
3217 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00003218 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00003219 return getConstant(0, VT); // fold op(arg1, undef) -> 0
3220 // For vectors, we can't easily build an all zero vector, just return
3221 // the LHS.
3222 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00003223 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00003224 if (!VT.isVector())
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003225 return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00003226 // For vectors, we can't easily build an all one vector, just return
3227 // the LHS.
3228 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00003229 case ISD::SRA:
3230 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00003231 }
3232 }
Chris Lattner15e4b012005-07-10 00:07:11 +00003233
Chris Lattner27e9b412005-05-11 18:57:39 +00003234 // Memoize this node if possible.
3235 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003236 SDVTList VTs = getVTList(VT);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003237 if (VT != MVT::Glue) {
Dan Gohman475871a2008-07-27 21:46:04 +00003238 SDValue Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00003239 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003240 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003241 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00003242 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003243 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00003244
Andrew Trickac6d9be2013-05-25 02:42:55 +00003245 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00003246 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00003247 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003248 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00003249 }
3250
Chris Lattnerc3aae252005-01-07 07:46:32 +00003251 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003252#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00003253 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003254#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003255 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003256}
3257
Andrew Trickac6d9be2013-05-25 02:42:55 +00003258SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling7ade28c2009-01-28 22:17:52 +00003259 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003260 // Perform various simplifications.
Gabor Greifba36cb52008-08-28 21:40:38 +00003261 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Chris Lattnerc3aae252005-01-07 07:46:32 +00003262 switch (Opcode) {
Owen Anderson58dcd202013-05-09 22:27:13 +00003263 case ISD::FMA: {
3264 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3265 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
3266 ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
3267 if (N1CFP && N2CFP && N3CFP) {
3268 APFloat V1 = N1CFP->getValueAPF();
3269 const APFloat &V2 = N2CFP->getValueAPF();
3270 const APFloat &V3 = N3CFP->getValueAPF();
3271 APFloat::opStatus s =
3272 V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
3273 if (s != APFloat::opInvalidOp)
3274 return getConstantFP(V1, VT);
3275 }
3276 break;
3277 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00003278 case ISD::CONCAT_VECTORS:
3279 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3280 // one big BUILD_VECTOR.
3281 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3282 N2.getOpcode() == ISD::BUILD_VECTOR &&
3283 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif481c4c02010-07-22 17:18:03 +00003284 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3285 N1.getNode()->op_end());
Dan Gohman403a8cd2010-06-21 19:47:52 +00003286 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
3287 Elts.append(N3.getNode()->op_begin(), N3.getNode()->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00003288 return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size());
Dan Gohman7f8613e2008-08-14 20:04:46 +00003289 }
3290 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003291 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00003292 // Use FoldSetCC to simplify SETCC's.
Dale Johannesenff97d4f2009-02-03 00:47:48 +00003293 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003294 if (Simp.getNode()) return Simp;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003295 break;
3296 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003297 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003298 if (N1C) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003299 if (N1C->getZExtValue())
David Blaikie4d6ccb52012-01-20 21:51:11 +00003300 return N2; // select true, X, Y -> X
3301 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003302 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00003303
3304 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00003305 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00003306 case ISD::VECTOR_SHUFFLE:
Torok Edwinc23197a2009-07-14 16:55:14 +00003307 llvm_unreachable("should use getVectorShuffle constructor!");
David Greenecfe33c42011-01-26 19:13:22 +00003308 case ISD::INSERT_SUBVECTOR: {
3309 SDValue Index = N3;
3310 if (VT.isSimple() && N1.getValueType().isSimple()
3311 && N2.getValueType().isSimple()) {
3312 assert(VT.isVector() && N1.getValueType().isVector() &&
3313 N2.getValueType().isVector() &&
3314 "Insert subvector VTs must be a vectors");
3315 assert(VT == N1.getValueType() &&
3316 "Dest and insert subvector source types must match!");
Craig Topper0ff11902013-08-15 02:44:19 +00003317 assert(N2.getSimpleValueType() <= N1.getSimpleValueType() &&
David Greenecfe33c42011-01-26 19:13:22 +00003318 "Insert subvector must be from smaller vector to larger vector!");
Matt Beaumont-Gay9a14a362011-02-01 22:12:50 +00003319 if (isa<ConstantSDNode>(Index.getNode())) {
3320 assert((N2.getValueType().getVectorNumElements() +
3321 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greenecfe33c42011-01-26 19:13:22 +00003322 <= VT.getVectorNumElements())
3323 && "Insert subvector overflow!");
3324 }
3325
3326 // Trivial insertion.
Craig Topper0ff11902013-08-15 02:44:19 +00003327 if (VT.getSimpleVT() == N2.getSimpleValueType())
David Greenecfe33c42011-01-26 19:13:22 +00003328 return N2;
3329 }
3330 break;
3331 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003332 case ISD::BITCAST:
Dan Gohman7f321562007-06-25 16:23:39 +00003333 // Fold bit_convert nodes from a type to themselves.
3334 if (N1.getValueType() == VT)
3335 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00003336 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003337 }
3338
Chris Lattner43247a12005-08-25 19:12:10 +00003339 // Memoize node if it doesn't produce a flag.
3340 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003341 SDVTList VTs = getVTList(VT);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003342 if (VT != MVT::Glue) {
Dan Gohman475871a2008-07-27 21:46:04 +00003343 SDValue Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003344 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003345 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003346 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00003347 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00003348 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00003349
Andrew Trickac6d9be2013-05-25 02:42:55 +00003350 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00003351 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003352 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00003353 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00003354 }
Daniel Dunbar819309e2009-12-16 20:10:05 +00003355
Chris Lattnerc3aae252005-01-07 07:46:32 +00003356 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003357#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00003358 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00003359#endif
Dan Gohman475871a2008-07-27 21:46:04 +00003360 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003361}
3362
Andrew Trickac6d9be2013-05-25 02:42:55 +00003363SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling7ade28c2009-01-28 22:17:52 +00003364 SDValue N1, SDValue N2, SDValue N3,
3365 SDValue N4) {
Dan Gohman475871a2008-07-27 21:46:04 +00003366 SDValue Ops[] = { N1, N2, N3, N4 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00003367 return getNode(Opcode, DL, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00003368}
3369
Andrew Trickac6d9be2013-05-25 02:42:55 +00003370SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling7ade28c2009-01-28 22:17:52 +00003371 SDValue N1, SDValue N2, SDValue N3,
3372 SDValue N4, SDValue N5) {
Dan Gohman475871a2008-07-27 21:46:04 +00003373 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00003374 return getNode(Opcode, DL, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00003375}
3376
Dan Gohman98ca4f22009-08-05 01:29:28 +00003377/// getStackArgumentTokenFactor - Compute a TokenFactor to force all
3378/// the incoming stack arguments to be loaded from the stack.
3379SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
3380 SmallVector<SDValue, 8> ArgChains;
3381
3382 // Include the original chain at the beginning of the list. When this is
3383 // used by target LowerCall hooks, this helps legalize find the
3384 // CALLSEQ_BEGIN node.
3385 ArgChains.push_back(Chain);
3386
3387 // Add a chain value for each stack argument.
3388 for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
3389 UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
3390 if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3391 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3392 if (FI->getIndex() < 0)
3393 ArgChains.push_back(SDValue(L, 1));
3394
3395 // Build a tokenfactor for all the chains.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003396 return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003397 &ArgChains[0], ArgChains.size());
3398}
3399
Dan Gohman707e0182008-04-12 04:36:06 +00003400/// getMemsetValue - Vectorized representation of the memset value
3401/// operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003402static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003403 SDLoc dl) {
Evan Chengf28f8bc2010-04-02 19:36:14 +00003404 assert(Value.getOpcode() != ISD::UNDEF);
3405
Chris Lattner5cf0b6e2010-02-24 22:44:06 +00003406 unsigned NumBits = VT.getScalarType().getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00003407 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00003408 assert(C->getAPIntValue().getBitWidth() == 8);
3409 APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
Duncan Sands83ec4b62008-06-06 12:08:01 +00003410 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00003411 return DAG.getConstant(Val, VT);
Tim Northover0a29cb02013-01-22 09:46:31 +00003412 return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00003413 }
Evan Chengf0df0312008-05-15 08:39:06 +00003414
Dale Johannesen0f502f62009-02-03 22:26:09 +00003415 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value);
Benjamin Kramer8c06aa12011-01-02 19:44:58 +00003416 if (NumBits > 8) {
3417 // Use a multiplication with 0x010101... to extend the input to the
3418 // required length.
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00003419 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
Benjamin Kramer8c06aa12011-01-02 19:44:58 +00003420 Value = DAG.getNode(ISD::MUL, dl, VT, Value, DAG.getConstant(Magic, VT));
Evan Chengf0df0312008-05-15 08:39:06 +00003421 }
3422
3423 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003424}
3425
Dan Gohman707e0182008-04-12 04:36:06 +00003426/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
3427/// used when a memcpy is turned into a memset when the source is a constant
3428/// string ptr.
Andrew Trickac6d9be2013-05-25 02:42:55 +00003429static SDValue getMemsetStringVal(EVT VT, SDLoc dl, SelectionDAG &DAG,
Chris Lattner18c7f802012-02-05 02:29:43 +00003430 const TargetLowering &TLI, StringRef Str) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00003431 // Handle vector with all elements zero.
3432 if (Str.empty()) {
3433 if (VT.isInteger())
3434 return DAG.getConstant(0, VT);
Duncan Sandscdfad362010-11-03 12:17:33 +00003435 else if (VT == MVT::f32 || VT == MVT::f64)
Evan Cheng255f20f2010-04-01 06:04:33 +00003436 return DAG.getConstantFP(0.0, VT);
3437 else if (VT.isVector()) {
3438 unsigned NumElts = VT.getVectorNumElements();
3439 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003440 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng255f20f2010-04-01 06:04:33 +00003441 DAG.getConstant(0, EVT::getVectorVT(*DAG.getContext(),
3442 EltVT, NumElts)));
3443 } else
3444 llvm_unreachable("Expected type!");
Evan Cheng0ff39b32008-06-30 07:31:25 +00003445 }
3446
Duncan Sands83ec4b62008-06-06 12:08:01 +00003447 assert(!VT.isVector() && "Can't handle vector type here!");
Evan Cheng4ff23d02013-01-10 22:13:27 +00003448 unsigned NumVTBits = VT.getSizeInBits();
3449 unsigned NumVTBytes = NumVTBits / 8;
Chris Lattner18c7f802012-02-05 02:29:43 +00003450 unsigned NumBytes = std::min(NumVTBytes, unsigned(Str.size()));
3451
Evan Cheng4ff23d02013-01-10 22:13:27 +00003452 APInt Val(NumVTBits, 0);
Chris Lattner18c7f802012-02-05 02:29:43 +00003453 if (TLI.isLittleEndian()) {
3454 for (unsigned i = 0; i != NumBytes; ++i)
3455 Val |= (uint64_t)(unsigned char)Str[i] << i*8;
3456 } else {
3457 for (unsigned i = 0; i != NumBytes; ++i)
3458 Val |= (uint64_t)(unsigned char)Str[i] << (NumVTBytes-i-1)*8;
Dan Gohman707e0182008-04-12 04:36:06 +00003459 }
Chris Lattner18c7f802012-02-05 02:29:43 +00003460
Evan Chenge07f85e2012-12-11 23:26:14 +00003461 // If the "cost" of materializing the integer immediate is 1 or free, then
3462 // it is cost effective to turn the load into the immediate.
Chandler Carruthe4b4edd2013-01-05 12:32:17 +00003463 const TargetTransformInfo *TTI = DAG.getTargetTransformInfo();
3464 if (TTI->getIntImmCost(Val, VT.getTypeForEVT(*DAG.getContext())) < 2)
Evan Cheng376642e2012-12-10 23:21:26 +00003465 return DAG.getConstant(Val, VT);
3466 return SDValue(0, 0);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00003467}
3468
Scott Michelfdc40a02009-02-17 22:15:04 +00003469/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00003470///
Andrew Trickdd0fb012013-05-25 03:08:10 +00003471static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset, SDLoc dl,
Dan Gohman707e0182008-04-12 04:36:06 +00003472 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003473 EVT VT = Base.getValueType();
Andrew Trickdd0fb012013-05-25 03:08:10 +00003474 return DAG.getNode(ISD::ADD, dl,
Dale Johannesendbfd8db2009-02-03 01:55:44 +00003475 VT, Base, DAG.getConstant(Offset, VT));
Dan Gohman707e0182008-04-12 04:36:06 +00003476}
3477
Evan Chengf0df0312008-05-15 08:39:06 +00003478/// isMemSrcFromString - Returns true if memcpy source is a string constant.
3479///
Chris Lattner18c7f802012-02-05 02:29:43 +00003480static bool isMemSrcFromString(SDValue Src, StringRef &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00003481 unsigned SrcDelta = 0;
3482 GlobalAddressSDNode *G = NULL;
3483 if (Src.getOpcode() == ISD::GlobalAddress)
3484 G = cast<GlobalAddressSDNode>(Src);
3485 else if (Src.getOpcode() == ISD::ADD &&
3486 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
3487 Src.getOperand(1).getOpcode() == ISD::Constant) {
3488 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003489 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengf0df0312008-05-15 08:39:06 +00003490 }
3491 if (!G)
3492 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00003493
Chris Lattner18c7f802012-02-05 02:29:43 +00003494 return getConstantStringInfo(G->getGlobal(), Str, SrcDelta, false);
Evan Chengf0df0312008-05-15 08:39:06 +00003495}
Dan Gohman707e0182008-04-12 04:36:06 +00003496
Evan Cheng255f20f2010-04-01 06:04:33 +00003497/// FindOptimalMemOpLowering - Determines the optimial series memory ops
3498/// to replace the memset / memcpy. Return true if the number of memory ops
3499/// is below the threshold. It returns the types of the sequence of
3500/// memory ops to perform memset / memcpy by reference.
3501static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps,
Evan Cheng255f20f2010-04-01 06:04:33 +00003502 unsigned Limit, uint64_t Size,
3503 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00003504 bool IsMemset,
3505 bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00003506 bool MemcpyStrSrc,
Evan Cheng376642e2012-12-10 23:21:26 +00003507 bool AllowOverlap,
Evan Cheng255f20f2010-04-01 06:04:33 +00003508 SelectionDAG &DAG,
3509 const TargetLowering &TLI) {
3510 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3511 "Expecting memcpy / memset source to meet alignment requirement!");
Eric Christopher882e1e12011-07-06 22:41:18 +00003512 // If 'SrcAlign' is zero, that means the memory operation does not need to
3513 // load the value, i.e. memset or memcpy from constant string. Otherwise,
3514 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3515 // is the specified alignment of the memory operation. If it is zero, that
3516 // means it's possible to change the alignment of the destination.
3517 // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does
3518 // not need to be loaded.
Evan Chengf28f8bc2010-04-02 19:36:14 +00003519 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00003520 IsMemset, ZeroMemset, MemcpyStrSrc,
Dan Gohman4bcf0a92010-04-16 20:22:43 +00003521 DAG.getMachineFunction());
Evan Chengf0df0312008-05-15 08:39:06 +00003522
Chris Lattneracee6472010-03-07 07:45:08 +00003523 if (VT == MVT::Other) {
Chandler Carruth426c2bf2012-11-01 09:14:31 +00003524 if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment() ||
Evan Cheng255f20f2010-04-01 06:04:33 +00003525 TLI.allowsUnalignedMemoryAccesses(VT)) {
Evan Cheng18141ee2010-04-05 23:33:29 +00003526 VT = TLI.getPointerTy();
Evan Chengf0df0312008-05-15 08:39:06 +00003527 } else {
Evan Cheng255f20f2010-04-01 06:04:33 +00003528 switch (DstAlign & 7) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003529 case 0: VT = MVT::i64; break;
3530 case 4: VT = MVT::i32; break;
3531 case 2: VT = MVT::i16; break;
3532 default: VT = MVT::i8; break;
Evan Chengf0df0312008-05-15 08:39:06 +00003533 }
3534 }
3535
Owen Anderson766b5ef2009-08-11 21:59:30 +00003536 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00003537 while (!TLI.isTypeLegal(LVT))
Owen Anderson766b5ef2009-08-11 21:59:30 +00003538 LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003539 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00003540
Duncan Sands8e4eb092008-06-08 20:54:56 +00003541 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00003542 VT = LVT;
3543 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003544
Dan Gohman707e0182008-04-12 04:36:06 +00003545 unsigned NumMemOps = 0;
3546 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003547 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00003548 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00003549 // For now, only use non-vector load / store's for the left-over pieces.
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003550 EVT NewVT = VT;
Evan Cheng376642e2012-12-10 23:21:26 +00003551 unsigned NewVTSize;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003552
3553 bool Found = false;
Evan Cheng255f20f2010-04-01 06:04:33 +00003554 if (VT.isVector() || VT.isFloatingPoint()) {
Evan Cheng376642e2012-12-10 23:21:26 +00003555 NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003556 if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) &&
Evan Cheng7d342672012-12-12 01:32:07 +00003557 TLI.isSafeMemOpType(NewVT.getSimpleVT()))
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003558 Found = true;
3559 else if (NewVT == MVT::i64 &&
3560 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) &&
Evan Cheng7d342672012-12-12 01:32:07 +00003561 TLI.isSafeMemOpType(MVT::f64)) {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003562 // i64 is usually not legal on 32-bit targets, but f64 may be.
3563 NewVT = MVT::f64;
3564 Found = true;
Evan Cheng376642e2012-12-10 23:21:26 +00003565 }
Evan Cheng376642e2012-12-10 23:21:26 +00003566 }
3567
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003568 if (!Found) {
3569 do {
3570 NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1);
3571 if (NewVT == MVT::i8)
3572 break;
Evan Cheng7d342672012-12-12 01:32:07 +00003573 } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT()));
Evan Cheng61f4dfe2012-12-12 00:42:09 +00003574 }
3575 NewVTSize = NewVT.getSizeInBits() / 8;
3576
Evan Cheng376642e2012-12-10 23:21:26 +00003577 // If the new VT cannot cover all of the remaining bits, then consider
3578 // issuing a (or a pair of) unaligned and overlapping load / store.
3579 // FIXME: Only does this for 64-bit or more since we don't have proper
3580 // cost model for unaligned load / store.
3581 bool Fast;
Evan Chenga16e49d2012-12-12 20:43:23 +00003582 if (NumMemOps && AllowOverlap &&
3583 VTSize >= 8 && NewVTSize < Size &&
Evan Cheng376642e2012-12-10 23:21:26 +00003584 TLI.allowsUnalignedMemoryAccesses(VT, &Fast) && Fast)
3585 VTSize = Size;
3586 else {
3587 VT = NewVT;
3588 VTSize = NewVTSize;
Evan Chengf0df0312008-05-15 08:39:06 +00003589 }
Dan Gohman707e0182008-04-12 04:36:06 +00003590 }
Dan Gohman707e0182008-04-12 04:36:06 +00003591
Evan Chenga16e49d2012-12-12 20:43:23 +00003592 if (++NumMemOps > Limit)
3593 return false;
3594
Dan Gohman707e0182008-04-12 04:36:06 +00003595 MemOps.push_back(VT);
3596 Size -= VTSize;
3597 }
3598
3599 return true;
3600}
3601
Andrew Trickac6d9be2013-05-25 02:42:55 +00003602static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng87bd1912010-03-30 18:08:53 +00003603 SDValue Chain, SDValue Dst,
3604 SDValue Src, uint64_t Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003605 unsigned Align, bool isVol,
3606 bool AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +00003607 MachinePointerInfo DstPtrInfo,
3608 MachinePointerInfo SrcPtrInfo) {
Evan Chengf28f8bc2010-04-02 19:36:14 +00003609 // Turn a memcpy of undef to nop.
3610 if (Src.getOpcode() == ISD::UNDEF)
3611 return Chain;
Dan Gohman707e0182008-04-12 04:36:06 +00003612
Dan Gohman21323f32008-05-29 19:42:22 +00003613 // Expand memcpy to a series of load and store ops if the size operand falls
3614 // below a certain threshold.
Duncan Sands69300a22010-11-05 15:20:29 +00003615 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3616 // rather than maybe a humongous number of loads and stores.
Evan Chengf28f8bc2010-04-02 19:36:14 +00003617 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00003618 std::vector<EVT> MemOps;
Evan Cheng255f20f2010-04-01 06:04:33 +00003619 bool DstAlignCanChange = false;
Evan Cheng05219282011-01-06 06:52:41 +00003620 MachineFunction &MF = DAG.getMachineFunction();
3621 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling67658342012-10-09 07:45:08 +00003622 bool OptSize =
Bill Wendling831737d2012-12-30 10:32:01 +00003623 MF.getFunction()->getAttributes().
3624 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng255f20f2010-04-01 06:04:33 +00003625 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3626 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3627 DstAlignCanChange = true;
3628 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3629 if (Align > SrcAlign)
3630 SrcAlign = Align;
Chris Lattner18c7f802012-02-05 02:29:43 +00003631 StringRef Str;
Evan Cheng255f20f2010-04-01 06:04:33 +00003632 bool CopyFromStr = isMemSrcFromString(Src, Str);
3633 bool isZeroStr = CopyFromStr && Str.empty();
Evan Cheng05219282011-01-06 06:52:41 +00003634 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003635
Evan Cheng94107ba2010-04-01 18:19:11 +00003636 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng255f20f2010-04-01 06:04:33 +00003637 (DstAlignCanChange ? 0 : Align),
Evan Chengc3b0c342010-04-08 07:37:57 +00003638 (isZeroStr ? 0 : SrcAlign),
Evan Cheng946a3a92012-12-12 02:34:41 +00003639 false, false, CopyFromStr, true, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003640 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003641
Evan Cheng255f20f2010-04-01 06:04:33 +00003642 if (DstAlignCanChange) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003643 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00003644 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Lang Hames2d95e432013-01-31 20:23:43 +00003645
3646 // Don't promote to an alignment that would require dynamic stack
Stephen Lin155615d2013-07-08 00:37:03 +00003647 // realignment.
Lang Hames2d95e432013-01-31 20:23:43 +00003648 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
3649 if (!TRI->needsStackRealignment(MF))
3650 while (NewAlign > Align &&
3651 TLI.getDataLayout()->exceedsNaturalStackAlignment(NewAlign))
3652 NewAlign /= 2;
3653
Evan Cheng255f20f2010-04-01 06:04:33 +00003654 if (NewAlign > Align) {
3655 // Give the stack frame object a larger alignment if needed.
3656 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3657 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3658 Align = NewAlign;
3659 }
3660 }
Dan Gohman707e0182008-04-12 04:36:06 +00003661
Dan Gohman475871a2008-07-27 21:46:04 +00003662 SmallVector<SDValue, 8> OutChains;
Evan Chengf0df0312008-05-15 08:39:06 +00003663 unsigned NumMemOps = MemOps.size();
Evan Cheng0ff39b32008-06-30 07:31:25 +00003664 uint64_t SrcOff = 0, DstOff = 0;
Chris Lattner7453f8a2009-09-20 17:32:21 +00003665 for (unsigned i = 0; i != NumMemOps; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00003666 EVT VT = MemOps[i];
Duncan Sands83ec4b62008-06-06 12:08:01 +00003667 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003668 SDValue Value, Store;
Dan Gohman707e0182008-04-12 04:36:06 +00003669
Evan Cheng376642e2012-12-10 23:21:26 +00003670 if (VTSize > Size) {
3671 // Issuing an unaligned load / store pair that overlaps with the previous
3672 // pair. Adjust the offset accordingly.
3673 assert(i == NumMemOps-1 && i != 0);
3674 SrcOff -= VTSize - Size;
3675 DstOff -= VTSize - Size;
3676 }
3677
Evan Cheng255f20f2010-04-01 06:04:33 +00003678 if (CopyFromStr &&
3679 (isZeroStr || (VT.isInteger() && !VT.isVector()))) {
Evan Chengf0df0312008-05-15 08:39:06 +00003680 // It's unlikely a store of a vector immediate can be done in a single
3681 // instruction. It would require a load from a constantpool first.
Evan Cheng255f20f2010-04-01 06:04:33 +00003682 // We only handle zero vectors here.
Evan Cheng0ff39b32008-06-30 07:31:25 +00003683 // FIXME: Handle other cases where store of vector immediate is done in
3684 // a single instruction.
Chris Lattner18c7f802012-02-05 02:29:43 +00003685 Value = getMemsetStringVal(VT, dl, DAG, TLI, Str.substr(SrcOff));
Evan Cheng376642e2012-12-10 23:21:26 +00003686 if (Value.getNode())
3687 Store = DAG.getStore(Chain, dl, Value,
Andrew Trickdd0fb012013-05-25 03:08:10 +00003688 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Evan Cheng376642e2012-12-10 23:21:26 +00003689 DstPtrInfo.getWithOffset(DstOff), isVol,
3690 false, Align);
3691 }
3692
3693 if (!Store.getNode()) {
Dale Johannesen08bc98e2009-06-22 20:59:07 +00003694 // The type might not be legal for the target. This should only happen
3695 // if the type is smaller than a legal type, as on PPC, so the right
Dale Johannesen8539cfd2009-06-24 17:11:31 +00003696 // thing to do is generate a LoadExt/StoreTrunc pair. These simplify
3697 // to Load/Store if NVT==VT.
Dale Johannesen08bc98e2009-06-22 20:59:07 +00003698 // FIXME does the case above also need this?
Owen Anderson23b9b192009-08-12 00:36:31 +00003699 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
Dale Johannesen8539cfd2009-06-24 17:11:31 +00003700 assert(NVT.bitsGE(VT));
Stuart Hastingsa9011292011-02-16 16:23:55 +00003701 Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
Andrew Trickdd0fb012013-05-25 03:08:10 +00003702 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattnere72f2022010-09-21 05:40:29 +00003703 SrcPtrInfo.getWithOffset(SrcOff), VT, isVol, false,
Evan Cheng255f20f2010-04-01 06:04:33 +00003704 MinAlign(SrcAlign, SrcOff));
Dale Johannesen8539cfd2009-06-24 17:11:31 +00003705 Store = DAG.getTruncStore(Chain, dl, Value,
Andrew Trickdd0fb012013-05-25 03:08:10 +00003706 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattnere72f2022010-09-21 05:40:29 +00003707 DstPtrInfo.getWithOffset(DstOff), VT, isVol,
3708 false, Align);
Dan Gohman707e0182008-04-12 04:36:06 +00003709 }
3710 OutChains.push_back(Store);
3711 SrcOff += VTSize;
3712 DstOff += VTSize;
Evan Cheng376642e2012-12-10 23:21:26 +00003713 Size -= VTSize;
Dan Gohman707e0182008-04-12 04:36:06 +00003714 }
3715
Owen Anderson825b72b2009-08-11 20:47:22 +00003716 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman707e0182008-04-12 04:36:06 +00003717 &OutChains[0], OutChains.size());
3718}
3719
Andrew Trickac6d9be2013-05-25 02:42:55 +00003720static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng255f20f2010-04-01 06:04:33 +00003721 SDValue Chain, SDValue Dst,
3722 SDValue Src, uint64_t Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003723 unsigned Align, bool isVol,
3724 bool AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +00003725 MachinePointerInfo DstPtrInfo,
3726 MachinePointerInfo SrcPtrInfo) {
Evan Chengf28f8bc2010-04-02 19:36:14 +00003727 // Turn a memmove of undef to nop.
3728 if (Src.getOpcode() == ISD::UNDEF)
3729 return Chain;
Dan Gohman21323f32008-05-29 19:42:22 +00003730
3731 // Expand memmove to a series of load and store ops if the size operand falls
3732 // below a certain threshold.
Evan Chengf28f8bc2010-04-02 19:36:14 +00003733 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00003734 std::vector<EVT> MemOps;
Evan Cheng255f20f2010-04-01 06:04:33 +00003735 bool DstAlignCanChange = false;
Evan Cheng05219282011-01-06 06:52:41 +00003736 MachineFunction &MF = DAG.getMachineFunction();
3737 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling831737d2012-12-30 10:32:01 +00003738 bool OptSize = MF.getFunction()->getAttributes().
3739 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng255f20f2010-04-01 06:04:33 +00003740 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3741 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3742 DstAlignCanChange = true;
3743 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3744 if (Align > SrcAlign)
3745 SrcAlign = Align;
Evan Cheng05219282011-01-06 06:52:41 +00003746 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
Evan Cheng255f20f2010-04-01 06:04:33 +00003747
Evan Cheng94107ba2010-04-01 18:19:11 +00003748 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng946a3a92012-12-12 02:34:41 +00003749 (DstAlignCanChange ? 0 : Align), SrcAlign,
3750 false, false, false, false, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003751 return SDValue();
Dan Gohman21323f32008-05-29 19:42:22 +00003752
Evan Cheng255f20f2010-04-01 06:04:33 +00003753 if (DstAlignCanChange) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003754 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00003755 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng255f20f2010-04-01 06:04:33 +00003756 if (NewAlign > Align) {
3757 // Give the stack frame object a larger alignment if needed.
3758 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3759 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3760 Align = NewAlign;
3761 }
3762 }
Dan Gohman21323f32008-05-29 19:42:22 +00003763
Evan Cheng255f20f2010-04-01 06:04:33 +00003764 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00003765 SmallVector<SDValue, 8> LoadValues;
3766 SmallVector<SDValue, 8> LoadChains;
3767 SmallVector<SDValue, 8> OutChains;
Dan Gohman21323f32008-05-29 19:42:22 +00003768 unsigned NumMemOps = MemOps.size();
3769 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Andersone50ed302009-08-10 22:56:29 +00003770 EVT VT = MemOps[i];
Duncan Sands83ec4b62008-06-06 12:08:01 +00003771 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003772 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003773
Dale Johannesen0f502f62009-02-03 22:26:09 +00003774 Value = DAG.getLoad(VT, dl, Chain,
Andrew Trickdd0fb012013-05-25 03:08:10 +00003775 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattnere72f2022010-09-21 05:40:29 +00003776 SrcPtrInfo.getWithOffset(SrcOff), isVol,
Pete Cooperd752e0f2011-11-08 18:42:53 +00003777 false, false, SrcAlign);
Dan Gohman21323f32008-05-29 19:42:22 +00003778 LoadValues.push_back(Value);
3779 LoadChains.push_back(Value.getValue(1));
3780 SrcOff += VTSize;
3781 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003782 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman21323f32008-05-29 19:42:22 +00003783 &LoadChains[0], LoadChains.size());
3784 OutChains.clear();
3785 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Andersone50ed302009-08-10 22:56:29 +00003786 EVT VT = MemOps[i];
Duncan Sands83ec4b62008-06-06 12:08:01 +00003787 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman475871a2008-07-27 21:46:04 +00003788 SDValue Value, Store;
Dan Gohman21323f32008-05-29 19:42:22 +00003789
Dale Johannesen0f502f62009-02-03 22:26:09 +00003790 Store = DAG.getStore(Chain, dl, LoadValues[i],
Andrew Trickdd0fb012013-05-25 03:08:10 +00003791 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattnere72f2022010-09-21 05:40:29 +00003792 DstPtrInfo.getWithOffset(DstOff), isVol, false, Align);
Dan Gohman21323f32008-05-29 19:42:22 +00003793 OutChains.push_back(Store);
3794 DstOff += VTSize;
3795 }
3796
Owen Anderson825b72b2009-08-11 20:47:22 +00003797 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman21323f32008-05-29 19:42:22 +00003798 &OutChains[0], OutChains.size());
3799}
3800
Andrew Trickac6d9be2013-05-25 02:42:55 +00003801static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng255f20f2010-04-01 06:04:33 +00003802 SDValue Chain, SDValue Dst,
3803 SDValue Src, uint64_t Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003804 unsigned Align, bool isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00003805 MachinePointerInfo DstPtrInfo) {
Evan Chengf28f8bc2010-04-02 19:36:14 +00003806 // Turn a memset of undef to nop.
3807 if (Src.getOpcode() == ISD::UNDEF)
3808 return Chain;
Dan Gohman707e0182008-04-12 04:36:06 +00003809
3810 // Expand memset to a series of load/store ops if the size operand
3811 // falls below a certain threshold.
Evan Chengf28f8bc2010-04-02 19:36:14 +00003812 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00003813 std::vector<EVT> MemOps;
Evan Cheng255f20f2010-04-01 06:04:33 +00003814 bool DstAlignCanChange = false;
Evan Cheng05219282011-01-06 06:52:41 +00003815 MachineFunction &MF = DAG.getMachineFunction();
3816 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling831737d2012-12-30 10:32:01 +00003817 bool OptSize = MF.getFunction()->getAttributes().
3818 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng255f20f2010-04-01 06:04:33 +00003819 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3820 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3821 DstAlignCanChange = true;
Lang Hames15701f82011-10-26 23:50:43 +00003822 bool IsZeroVal =
Evan Chengf28f8bc2010-04-02 19:36:14 +00003823 isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue();
Evan Cheng05219282011-01-06 06:52:41 +00003824 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
Evan Cheng255f20f2010-04-01 06:04:33 +00003825 Size, (DstAlignCanChange ? 0 : Align), 0,
Evan Cheng946a3a92012-12-12 02:34:41 +00003826 true, IsZeroVal, false, true, DAG, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00003827 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00003828
Evan Cheng255f20f2010-04-01 06:04:33 +00003829 if (DstAlignCanChange) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003830 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00003831 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng255f20f2010-04-01 06:04:33 +00003832 if (NewAlign > Align) {
3833 // Give the stack frame object a larger alignment if needed.
3834 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3835 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3836 Align = NewAlign;
3837 }
3838 }
3839
Dan Gohman475871a2008-07-27 21:46:04 +00003840 SmallVector<SDValue, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00003841 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00003842 unsigned NumMemOps = MemOps.size();
Benjamin Kramer80220362011-01-02 19:57:05 +00003843
3844 // Find the largest store and generate the bit pattern for it.
3845 EVT LargestVT = MemOps[0];
3846 for (unsigned i = 1; i < NumMemOps; i++)
3847 if (MemOps[i].bitsGT(LargestVT))
3848 LargestVT = MemOps[i];
3849 SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
3850
Dan Gohman707e0182008-04-12 04:36:06 +00003851 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Andersone50ed302009-08-10 22:56:29 +00003852 EVT VT = MemOps[i];
Evan Cheng376642e2012-12-10 23:21:26 +00003853 unsigned VTSize = VT.getSizeInBits() / 8;
3854 if (VTSize > Size) {
3855 // Issuing an unaligned load / store pair that overlaps with the previous
3856 // pair. Adjust the offset accordingly.
3857 assert(i == NumMemOps-1 && i != 0);
3858 DstOff -= VTSize - Size;
3859 }
Benjamin Kramer80220362011-01-02 19:57:05 +00003860
3861 // If this store is smaller than the largest store see whether we can get
3862 // the smaller value for free with a truncate.
3863 SDValue Value = MemSetValue;
3864 if (VT.bitsLT(LargestVT)) {
3865 if (!LargestVT.isVector() && !VT.isVector() &&
3866 TLI.isTruncateFree(LargestVT, VT))
3867 Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
3868 else
3869 Value = getMemsetValue(Src, VT, DAG, dl);
3870 }
3871 assert(Value.getValueType() == VT && "Value with wrong type.");
Dale Johannesen0f502f62009-02-03 22:26:09 +00003872 SDValue Store = DAG.getStore(Chain, dl, Value,
Andrew Trickdd0fb012013-05-25 03:08:10 +00003873 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattnere72f2022010-09-21 05:40:29 +00003874 DstPtrInfo.getWithOffset(DstOff),
Dale Johannesenb4ac2852010-11-18 01:35:23 +00003875 isVol, false, Align);
Dan Gohman707e0182008-04-12 04:36:06 +00003876 OutChains.push_back(Store);
Benjamin Kramer80220362011-01-02 19:57:05 +00003877 DstOff += VT.getSizeInBits() / 8;
Evan Cheng376642e2012-12-10 23:21:26 +00003878 Size -= VTSize;
Dan Gohman707e0182008-04-12 04:36:06 +00003879 }
3880
Owen Anderson825b72b2009-08-11 20:47:22 +00003881 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman707e0182008-04-12 04:36:06 +00003882 &OutChains[0], OutChains.size());
3883}
3884
Andrew Trickac6d9be2013-05-25 02:42:55 +00003885SDValue SelectionDAG::getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman475871a2008-07-27 21:46:04 +00003886 SDValue Src, SDValue Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003887 unsigned Align, bool isVol, bool AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +00003888 MachinePointerInfo DstPtrInfo,
3889 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth7e6ffac2013-02-25 14:29:38 +00003890 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman707e0182008-04-12 04:36:06 +00003891
3892 // Check to see if we should lower the memcpy to loads and stores first.
3893 // For cases within the target-specified limits, this is the best choice.
3894 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3895 if (ConstantSize) {
3896 // Memcpy with size zero? Just return the original chain.
3897 if (ConstantSize->isNullValue())
3898 return Chain;
3899
Evan Cheng255f20f2010-04-01 06:04:33 +00003900 SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
3901 ConstantSize->getZExtValue(),Align,
Chris Lattnere72f2022010-09-21 05:40:29 +00003902 isVol, false, DstPtrInfo, SrcPtrInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00003903 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003904 return Result;
3905 }
3906
3907 // Then check to see if we should lower the memcpy with target-specific
3908 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003909 SDValue Result =
Dan Gohmanff7a5622010-05-11 17:31:57 +00003910 TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003911 isVol, AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +00003912 DstPtrInfo, SrcPtrInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00003913 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003914 return Result;
3915
3916 // If we really need inline code and the target declined to provide it,
3917 // use a (potentially long) sequence of loads and stores.
3918 if (AlwaysInline) {
3919 assert(ConstantSize && "AlwaysInline requires a constant size!");
Dale Johannesen0f502f62009-02-03 22:26:09 +00003920 return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003921 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00003922 true, DstPtrInfo, SrcPtrInfo);
Dan Gohman707e0182008-04-12 04:36:06 +00003923 }
3924
Dan Gohman7b55d362010-04-05 20:24:08 +00003925 // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
3926 // memcpy is not guaranteed to be safe. libc memcpys aren't required to
3927 // respect volatile, so they may do things like read or write memory
3928 // beyond the given memory regions. But fixing this isn't easy, and most
3929 // people don't care.
3930
Bill Wendlingba54bca2013-06-19 21:36:55 +00003931 const TargetLowering *TLI = TM.getTargetLowering();
3932
Dan Gohman707e0182008-04-12 04:36:06 +00003933 // Emit a library call.
3934 TargetLowering::ArgListTy Args;
3935 TargetLowering::ArgListEntry Entry;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003936 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman707e0182008-04-12 04:36:06 +00003937 Entry.Node = Dst; Args.push_back(Entry);
3938 Entry.Node = Src; Args.push_back(Entry);
3939 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003940 // FIXME: pass in SDLoc
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003941 TargetLowering::
3942 CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()),
Anton Korobeynikov72977a42009-08-14 20:10:52 +00003943 false, false, false, false, 0,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003944 TLI->getLibcallCallingConv(RTLIB::MEMCPY),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003945 /*isTailCall=*/false,
3946 /*doesNotReturn=*/false, /*isReturnValueUsed=*/false,
Bill Wendlingba54bca2013-06-19 21:36:55 +00003947 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
3948 TLI->getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00003949 Args, *this, dl);
Bill Wendlingba54bca2013-06-19 21:36:55 +00003950 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003951
Dan Gohman707e0182008-04-12 04:36:06 +00003952 return CallResult.second;
3953}
3954
Andrew Trickac6d9be2013-05-25 02:42:55 +00003955SDValue SelectionDAG::getMemmove(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman475871a2008-07-27 21:46:04 +00003956 SDValue Src, SDValue Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003957 unsigned Align, bool isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00003958 MachinePointerInfo DstPtrInfo,
3959 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth7e6ffac2013-02-25 14:29:38 +00003960 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman707e0182008-04-12 04:36:06 +00003961
Dan Gohman21323f32008-05-29 19:42:22 +00003962 // Check to see if we should lower the memmove to loads and stores first.
3963 // For cases within the target-specified limits, this is the best choice.
3964 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3965 if (ConstantSize) {
3966 // Memmove with size zero? Just return the original chain.
3967 if (ConstantSize->isNullValue())
3968 return Chain;
3969
Dan Gohman475871a2008-07-27 21:46:04 +00003970 SDValue Result =
Dale Johannesen0f502f62009-02-03 22:26:09 +00003971 getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wang20adc9d2010-04-04 03:10:48 +00003972 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00003973 false, DstPtrInfo, SrcPtrInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00003974 if (Result.getNode())
Dan Gohman21323f32008-05-29 19:42:22 +00003975 return Result;
3976 }
Dan Gohman707e0182008-04-12 04:36:06 +00003977
3978 // Then check to see if we should lower the memmove with target-specific
3979 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00003980 SDValue Result =
Dan Gohmanff7a5622010-05-11 17:31:57 +00003981 TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00003982 DstPtrInfo, SrcPtrInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00003983 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00003984 return Result;
3985
Mon P Wang01f0e852010-04-06 08:27:51 +00003986 // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
3987 // not be safe. See memcpy above for more details.
3988
Bill Wendlingba54bca2013-06-19 21:36:55 +00003989 const TargetLowering *TLI = TM.getTargetLowering();
3990
Dan Gohman707e0182008-04-12 04:36:06 +00003991 // Emit a library call.
3992 TargetLowering::ArgListTy Args;
3993 TargetLowering::ArgListEntry Entry;
Bill Wendlingba54bca2013-06-19 21:36:55 +00003994 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman707e0182008-04-12 04:36:06 +00003995 Entry.Node = Dst; Args.push_back(Entry);
3996 Entry.Node = Src; Args.push_back(Entry);
3997 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003998 // FIXME: pass in SDLoc
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003999 TargetLowering::
4000 CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()),
Anton Korobeynikov72977a42009-08-14 20:10:52 +00004001 false, false, false, false, 0,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004002 TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00004003 /*isTailCall=*/false,
4004 /*doesNotReturn=*/false, /*isReturnValueUsed=*/false,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004005 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
4006 TLI->getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00004007 Args, *this, dl);
Bill Wendlingba54bca2013-06-19 21:36:55 +00004008 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00004009
Dan Gohman707e0182008-04-12 04:36:06 +00004010 return CallResult.second;
4011}
4012
Andrew Trickac6d9be2013-05-25 02:42:55 +00004013SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman475871a2008-07-27 21:46:04 +00004014 SDValue Src, SDValue Size,
Mon P Wang20adc9d2010-04-04 03:10:48 +00004015 unsigned Align, bool isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00004016 MachinePointerInfo DstPtrInfo) {
Chandler Carruth7e6ffac2013-02-25 14:29:38 +00004017 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman707e0182008-04-12 04:36:06 +00004018
4019 // Check to see if we should lower the memset to stores first.
4020 // For cases within the target-specified limits, this is the best choice.
4021 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4022 if (ConstantSize) {
4023 // Memset with size zero? Just return the original chain.
4024 if (ConstantSize->isNullValue())
4025 return Chain;
4026
Mon P Wang20adc9d2010-04-04 03:10:48 +00004027 SDValue Result =
4028 getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
Chris Lattnere72f2022010-09-21 05:40:29 +00004029 Align, isVol, DstPtrInfo);
Mon P Wang20adc9d2010-04-04 03:10:48 +00004030
Gabor Greifba36cb52008-08-28 21:40:38 +00004031 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00004032 return Result;
4033 }
4034
4035 // Then check to see if we should lower the memset with target-specific
4036 // code. If the target chooses to do this, this is the next best.
Dan Gohman475871a2008-07-27 21:46:04 +00004037 SDValue Result =
Dan Gohmanff7a5622010-05-11 17:31:57 +00004038 TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattnere72f2022010-09-21 05:40:29 +00004039 DstPtrInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004040 if (Result.getNode())
Dan Gohman707e0182008-04-12 04:36:06 +00004041 return Result;
4042
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004043 // Emit a library call.
Bill Wendlingba54bca2013-06-19 21:36:55 +00004044 const TargetLowering *TLI = TM.getTargetLowering();
4045 Type *IntPtrTy = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman707e0182008-04-12 04:36:06 +00004046 TargetLowering::ArgListTy Args;
4047 TargetLowering::ArgListEntry Entry;
4048 Entry.Node = Dst; Entry.Ty = IntPtrTy;
4049 Args.push_back(Entry);
4050 // Extend or truncate the argument to be an i32 value for the call.
Owen Anderson825b72b2009-08-11 20:47:22 +00004051 if (Src.getValueType().bitsGT(MVT::i32))
4052 Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
Dan Gohman707e0182008-04-12 04:36:06 +00004053 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004054 Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
Owen Anderson1d0be152009-08-13 21:58:54 +00004055 Entry.Node = Src;
4056 Entry.Ty = Type::getInt32Ty(*getContext());
4057 Entry.isSExt = true;
Dan Gohman707e0182008-04-12 04:36:06 +00004058 Args.push_back(Entry);
Owen Anderson1d0be152009-08-13 21:58:54 +00004059 Entry.Node = Size;
4060 Entry.Ty = IntPtrTy;
4061 Entry.isSExt = false;
Dan Gohman707e0182008-04-12 04:36:06 +00004062 Args.push_back(Entry);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004063 // FIXME: pass in SDLoc
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00004064 TargetLowering::
4065 CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()),
Anton Korobeynikov72977a42009-08-14 20:10:52 +00004066 false, false, false, false, 0,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004067 TLI->getLibcallCallingConv(RTLIB::MEMSET),
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00004068 /*isTailCall=*/false,
4069 /*doesNotReturn*/false, /*isReturnValueUsed=*/false,
Bill Wendlingba54bca2013-06-19 21:36:55 +00004070 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
4071 TLI->getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00004072 Args, *this, dl);
Bill Wendlingba54bca2013-06-19 21:36:55 +00004073 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00004074
Dan Gohman707e0182008-04-12 04:36:06 +00004075 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00004076}
4077
Andrew Trickac6d9be2013-05-25 02:42:55 +00004078SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Chris Lattner60bddc82010-09-21 04:53:42 +00004079 SDValue Chain, SDValue Ptr, SDValue Cmp,
4080 SDValue Swp, MachinePointerInfo PtrInfo,
Eli Friedman55ba8162011-07-29 03:05:32 +00004081 unsigned Alignment,
4082 AtomicOrdering Ordering,
Michael Ilseman06b96902012-09-10 16:56:31 +00004083 SynchronizationScope SynchScope) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00004084 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4085 Alignment = getEVTAlignment(MemVT);
4086
Evan Chengff89dcb2009-10-18 18:16:27 +00004087 MachineFunction &MF = getMachineFunction();
Dan Gohmanc76909a2009-09-25 20:36:54 +00004088
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004089 // All atomics are load and store, except for ATMOIC_LOAD and ATOMIC_STORE.
Dan Gohmanc76909a2009-09-25 20:36:54 +00004090 // For now, atomics are considered to be volatile always.
Eli Friedman981a0102011-09-07 02:23:42 +00004091 // FIXME: Volatile isn't really correct; we should keep track of atomic
4092 // orderings in the memoperand.
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004093 unsigned Flags = MachineMemOperand::MOVolatile;
4094 if (Opcode != ISD::ATOMIC_STORE)
4095 Flags |= MachineMemOperand::MOLoad;
4096 if (Opcode != ISD::ATOMIC_LOAD)
4097 Flags |= MachineMemOperand::MOStore;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004098
4099 MachineMemOperand *MMO =
Chris Lattner60bddc82010-09-21 04:53:42 +00004100 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004101
Eli Friedman55ba8162011-07-29 03:05:32 +00004102 return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Cmp, Swp, MMO,
4103 Ordering, SynchScope);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004104}
4105
Andrew Trickac6d9be2013-05-25 02:42:55 +00004106SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004107 SDValue Chain,
4108 SDValue Ptr, SDValue Cmp,
Eli Friedman55ba8162011-07-29 03:05:32 +00004109 SDValue Swp, MachineMemOperand *MMO,
4110 AtomicOrdering Ordering,
4111 SynchronizationScope SynchScope) {
Dale Johannesene8c17332009-01-29 00:47:48 +00004112 assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
4113 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4114
Owen Andersone50ed302009-08-10 22:56:29 +00004115 EVT VT = Cmp.getValueType();
Dale Johannesene8c17332009-01-29 00:47:48 +00004116
Owen Anderson825b72b2009-08-11 20:47:22 +00004117 SDVTList VTs = getVTList(VT, MVT::Other);
Dale Johannesene8c17332009-01-29 00:47:48 +00004118 FoldingSetNodeID ID;
Dan Gohmana7ce7412009-02-03 00:08:45 +00004119 ID.AddInteger(MemVT.getRawBits());
Dale Johannesene8c17332009-01-29 00:47:48 +00004120 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
4121 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Pete Cooper32ecfb42012-07-30 20:23:19 +00004122 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004123 void* IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004124 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4125 cast<AtomicSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004126 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004127 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004128 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(), dl.getDebugLoc(), VTs, MemVT, Chain,
Eli Friedman55ba8162011-07-29 03:05:32 +00004129 Ptr, Cmp, Swp, MMO, Ordering,
4130 SynchScope);
Dale Johannesene8c17332009-01-29 00:47:48 +00004131 CSEMap.InsertNode(N, IP);
4132 AllNodes.push_back(N);
4133 return SDValue(N, 0);
4134}
4135
Andrew Trickac6d9be2013-05-25 02:42:55 +00004136SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dale Johannesene8c17332009-01-29 00:47:48 +00004137 SDValue Chain,
Scott Michelfdc40a02009-02-17 22:15:04 +00004138 SDValue Ptr, SDValue Val,
Dale Johannesene8c17332009-01-29 00:47:48 +00004139 const Value* PtrVal,
Eli Friedman55ba8162011-07-29 03:05:32 +00004140 unsigned Alignment,
4141 AtomicOrdering Ordering,
4142 SynchronizationScope SynchScope) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00004143 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4144 Alignment = getEVTAlignment(MemVT);
4145
Evan Chengff89dcb2009-10-18 18:16:27 +00004146 MachineFunction &MF = getMachineFunction();
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004147 // An atomic store does not load. An atomic load does not store.
Eli Friedman981a0102011-09-07 02:23:42 +00004148 // (An atomicrmw obviously both loads and stores.)
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004149 // For now, atomics are considered to be volatile always, and they are
4150 // chained as such.
Eli Friedman981a0102011-09-07 02:23:42 +00004151 // FIXME: Volatile isn't really correct; we should keep track of atomic
4152 // orderings in the memoperand.
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004153 unsigned Flags = MachineMemOperand::MOVolatile;
4154 if (Opcode != ISD::ATOMIC_STORE)
4155 Flags |= MachineMemOperand::MOLoad;
4156 if (Opcode != ISD::ATOMIC_LOAD)
4157 Flags |= MachineMemOperand::MOStore;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004158
4159 MachineMemOperand *MMO =
Chris Lattner93a95ae2010-09-21 04:46:39 +00004160 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004161 MemVT.getStoreSize(), Alignment);
4162
Eli Friedman55ba8162011-07-29 03:05:32 +00004163 return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO,
4164 Ordering, SynchScope);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004165}
4166
Andrew Trickac6d9be2013-05-25 02:42:55 +00004167SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004168 SDValue Chain,
4169 SDValue Ptr, SDValue Val,
Eli Friedman55ba8162011-07-29 03:05:32 +00004170 MachineMemOperand *MMO,
4171 AtomicOrdering Ordering,
4172 SynchronizationScope SynchScope) {
Dale Johannesene8c17332009-01-29 00:47:48 +00004173 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
4174 Opcode == ISD::ATOMIC_LOAD_SUB ||
4175 Opcode == ISD::ATOMIC_LOAD_AND ||
4176 Opcode == ISD::ATOMIC_LOAD_OR ||
4177 Opcode == ISD::ATOMIC_LOAD_XOR ||
4178 Opcode == ISD::ATOMIC_LOAD_NAND ||
Scott Michelfdc40a02009-02-17 22:15:04 +00004179 Opcode == ISD::ATOMIC_LOAD_MIN ||
Dale Johannesene8c17332009-01-29 00:47:48 +00004180 Opcode == ISD::ATOMIC_LOAD_MAX ||
Scott Michelfdc40a02009-02-17 22:15:04 +00004181 Opcode == ISD::ATOMIC_LOAD_UMIN ||
Dale Johannesene8c17332009-01-29 00:47:48 +00004182 Opcode == ISD::ATOMIC_LOAD_UMAX ||
Eli Friedman327236c2011-08-24 20:50:09 +00004183 Opcode == ISD::ATOMIC_SWAP ||
4184 Opcode == ISD::ATOMIC_STORE) &&
Dale Johannesene8c17332009-01-29 00:47:48 +00004185 "Invalid Atomic Op");
4186
Owen Andersone50ed302009-08-10 22:56:29 +00004187 EVT VT = Val.getValueType();
Dale Johannesene8c17332009-01-29 00:47:48 +00004188
Eli Friedman327236c2011-08-24 20:50:09 +00004189 SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
4190 getVTList(VT, MVT::Other);
Dale Johannesene8c17332009-01-29 00:47:48 +00004191 FoldingSetNodeID ID;
Dan Gohmana7ce7412009-02-03 00:08:45 +00004192 ID.AddInteger(MemVT.getRawBits());
Dale Johannesene8c17332009-01-29 00:47:48 +00004193 SDValue Ops[] = {Chain, Ptr, Val};
4194 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Pete Cooper32ecfb42012-07-30 20:23:19 +00004195 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004196 void* IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004197 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4198 cast<AtomicSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004199 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004200 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004201 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(), dl.getDebugLoc(), VTs, MemVT, Chain,
Eli Friedman55ba8162011-07-29 03:05:32 +00004202 Ptr, Val, MMO,
4203 Ordering, SynchScope);
Dale Johannesene8c17332009-01-29 00:47:48 +00004204 CSEMap.InsertNode(N, IP);
4205 AllNodes.push_back(N);
4206 return SDValue(N, 0);
4207}
4208
Andrew Trickac6d9be2013-05-25 02:42:55 +00004209SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Eli Friedman327236c2011-08-24 20:50:09 +00004210 EVT VT, SDValue Chain,
4211 SDValue Ptr,
4212 const Value* PtrVal,
4213 unsigned Alignment,
4214 AtomicOrdering Ordering,
4215 SynchronizationScope SynchScope) {
4216 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4217 Alignment = getEVTAlignment(MemVT);
4218
4219 MachineFunction &MF = getMachineFunction();
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004220 // An atomic store does not load. An atomic load does not store.
4221 // (An atomicrmw obviously both loads and stores.)
4222 // For now, atomics are considered to be volatile always, and they are
4223 // chained as such.
Eli Friedman981a0102011-09-07 02:23:42 +00004224 // FIXME: Volatile isn't really correct; we should keep track of atomic
4225 // orderings in the memoperand.
Jakob Stoklund Olesen36d29bc2012-08-28 03:11:32 +00004226 unsigned Flags = MachineMemOperand::MOVolatile;
4227 if (Opcode != ISD::ATOMIC_STORE)
4228 Flags |= MachineMemOperand::MOLoad;
4229 if (Opcode != ISD::ATOMIC_LOAD)
4230 Flags |= MachineMemOperand::MOStore;
Eli Friedman327236c2011-08-24 20:50:09 +00004231
4232 MachineMemOperand *MMO =
4233 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
4234 MemVT.getStoreSize(), Alignment);
4235
4236 return getAtomic(Opcode, dl, MemVT, VT, Chain, Ptr, MMO,
4237 Ordering, SynchScope);
4238}
4239
Andrew Trickac6d9be2013-05-25 02:42:55 +00004240SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Eli Friedman327236c2011-08-24 20:50:09 +00004241 EVT VT, SDValue Chain,
4242 SDValue Ptr,
4243 MachineMemOperand *MMO,
4244 AtomicOrdering Ordering,
4245 SynchronizationScope SynchScope) {
4246 assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
4247
4248 SDVTList VTs = getVTList(VT, MVT::Other);
4249 FoldingSetNodeID ID;
4250 ID.AddInteger(MemVT.getRawBits());
4251 SDValue Ops[] = {Chain, Ptr};
4252 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Pete Cooper32ecfb42012-07-30 20:23:19 +00004253 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Eli Friedman327236c2011-08-24 20:50:09 +00004254 void* IP = 0;
4255 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4256 cast<AtomicSDNode>(E)->refineAlignment(MMO);
4257 return SDValue(E, 0);
4258 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004259 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(), dl.getDebugLoc(), VTs, MemVT, Chain,
Eli Friedman327236c2011-08-24 20:50:09 +00004260 Ptr, MMO, Ordering, SynchScope);
4261 CSEMap.InsertNode(N, IP);
4262 AllNodes.push_back(N);
4263 return SDValue(N, 0);
4264}
4265
Duncan Sands4bdcb612008-07-02 17:40:58 +00004266/// getMergeValues - Create a MERGE_VALUES node from the given operands.
Dale Johannesen54c94522009-02-02 20:47:48 +00004267SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004268 SDLoc dl) {
Dale Johannesen54c94522009-02-02 20:47:48 +00004269 if (NumOps == 1)
4270 return Ops[0];
4271
Owen Andersone50ed302009-08-10 22:56:29 +00004272 SmallVector<EVT, 4> VTs;
Dale Johannesen54c94522009-02-02 20:47:48 +00004273 VTs.reserve(NumOps);
4274 for (unsigned i = 0; i < NumOps; ++i)
4275 VTs.push_back(Ops[i].getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00004276 return getNode(ISD::MERGE_VALUES, dl, getVTList(&VTs[0], NumOps),
Dale Johannesen54c94522009-02-02 20:47:48 +00004277 Ops, NumOps);
4278}
4279
Dan Gohman475871a2008-07-27 21:46:04 +00004280SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00004281SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl,
Owen Andersone50ed302009-08-10 22:56:29 +00004282 const EVT *VTs, unsigned NumVTs,
Dale Johannesene8c17332009-01-29 00:47:48 +00004283 const SDValue *Ops, unsigned NumOps,
Chris Lattnere9ba5dd2010-09-21 04:57:15 +00004284 EVT MemVT, MachinePointerInfo PtrInfo,
Dale Johannesene8c17332009-01-29 00:47:48 +00004285 unsigned Align, bool Vol,
4286 bool ReadMem, bool WriteMem) {
4287 return getMemIntrinsicNode(Opcode, dl, makeVTList(VTs, NumVTs), Ops, NumOps,
Chris Lattnere9ba5dd2010-09-21 04:57:15 +00004288 MemVT, PtrInfo, Align, Vol,
Dale Johannesene8c17332009-01-29 00:47:48 +00004289 ReadMem, WriteMem);
4290}
4291
4292SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00004293SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Dale Johannesene8c17332009-01-29 00:47:48 +00004294 const SDValue *Ops, unsigned NumOps,
Chris Lattnere9ba5dd2010-09-21 04:57:15 +00004295 EVT MemVT, MachinePointerInfo PtrInfo,
Dale Johannesene8c17332009-01-29 00:47:48 +00004296 unsigned Align, bool Vol,
4297 bool ReadMem, bool WriteMem) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00004298 if (Align == 0) // Ensure that codegen never sees alignment 0
4299 Align = getEVTAlignment(MemVT);
4300
4301 MachineFunction &MF = getMachineFunction();
4302 unsigned Flags = 0;
4303 if (WriteMem)
4304 Flags |= MachineMemOperand::MOStore;
4305 if (ReadMem)
4306 Flags |= MachineMemOperand::MOLoad;
4307 if (Vol)
4308 Flags |= MachineMemOperand::MOVolatile;
4309 MachineMemOperand *MMO =
Chris Lattnere9ba5dd2010-09-21 04:57:15 +00004310 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004311
4312 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, NumOps, MemVT, MMO);
4313}
4314
4315SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00004316SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004317 const SDValue *Ops, unsigned NumOps,
4318 EVT MemVT, MachineMemOperand *MMO) {
4319 assert((Opcode == ISD::INTRINSIC_VOID ||
4320 Opcode == ISD::INTRINSIC_W_CHAIN ||
Dale Johannesen1de4aa92010-10-26 23:11:10 +00004321 Opcode == ISD::PREFETCH ||
Nadav Rotemc05d3062012-09-06 09:17:37 +00004322 Opcode == ISD::LIFETIME_START ||
4323 Opcode == ISD::LIFETIME_END ||
Dan Gohmanc76909a2009-09-25 20:36:54 +00004324 (Opcode <= INT_MAX &&
4325 (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
4326 "Opcode is not a memory-accessing opcode!");
4327
Dale Johannesene8c17332009-01-29 00:47:48 +00004328 // Memoize the node unless it returns a flag.
4329 MemIntrinsicSDNode *N;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00004330 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Dale Johannesene8c17332009-01-29 00:47:48 +00004331 FoldingSetNodeID ID;
4332 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Pete Cooper32ecfb42012-07-30 20:23:19 +00004333 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004334 void *IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004335 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4336 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004337 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004339
Andrew Trickac6d9be2013-05-25 02:42:55 +00004340 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(), dl.getDebugLoc(), VTList, Ops, NumOps,
Dan Gohman95531882010-03-18 18:49:47 +00004341 MemVT, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004342 CSEMap.InsertNode(N, IP);
4343 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004344 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(), dl.getDebugLoc(), VTList, Ops, NumOps,
Dan Gohman95531882010-03-18 18:49:47 +00004345 MemVT, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004346 }
4347 AllNodes.push_back(N);
4348 return SDValue(N, 0);
4349}
4350
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004351/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4352/// MachinePointerInfo record from it. This is particularly useful because the
4353/// code generator has many cases where it doesn't bother passing in a
4354/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4355static MachinePointerInfo InferPointerInfo(SDValue Ptr, int64_t Offset = 0) {
4356 // If this is FI+Offset, we can model it.
4357 if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
4358 return MachinePointerInfo::getFixedStack(FI->getIndex(), Offset);
4359
4360 // If this is (FI+Offset1)+Offset2, we can model it.
4361 if (Ptr.getOpcode() != ISD::ADD ||
4362 !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
4363 !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
4364 return MachinePointerInfo();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004365
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004366 int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4367 return MachinePointerInfo::getFixedStack(FI, Offset+
4368 cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
4369}
4370
4371/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4372/// MachinePointerInfo record from it. This is particularly useful because the
4373/// code generator has many cases where it doesn't bother passing in a
4374/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4375static MachinePointerInfo InferPointerInfo(SDValue Ptr, SDValue OffsetOp) {
4376 // If the 'Offset' value isn't a constant, we can't handle this.
4377 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
4378 return InferPointerInfo(Ptr, OffsetNode->getSExtValue());
4379 if (OffsetOp.getOpcode() == ISD::UNDEF)
4380 return InferPointerInfo(Ptr);
4381 return MachinePointerInfo();
4382}
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004383
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004384
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004385SDValue
4386SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004387 EVT VT, SDLoc dl, SDValue Chain,
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004388 SDValue Ptr, SDValue Offset,
4389 MachinePointerInfo PtrInfo, EVT MemVT,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004390 bool isVolatile, bool isNonTemporal, bool isInvariant,
Rafael Espindola95d594c2012-03-31 18:14:00 +00004391 unsigned Alignment, const MDNode *TBAAInfo,
4392 const MDNode *Ranges) {
Michael Ilseman06b96902012-09-10 16:56:31 +00004393 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemaeb86fa2011-07-14 10:37:54 +00004394 "Invalid chain type");
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004395 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4396 Alignment = getEVTAlignment(VT);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004397
Dan Gohmanc76909a2009-09-25 20:36:54 +00004398 unsigned Flags = MachineMemOperand::MOLoad;
4399 if (isVolatile)
4400 Flags |= MachineMemOperand::MOVolatile;
David Greene1e559442010-02-15 17:00:31 +00004401 if (isNonTemporal)
4402 Flags |= MachineMemOperand::MONonTemporal;
Pete Cooperd752e0f2011-11-08 18:42:53 +00004403 if (isInvariant)
4404 Flags |= MachineMemOperand::MOInvariant;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004405
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004406 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4407 // clients.
4408 if (PtrInfo.V == 0)
4409 PtrInfo = InferPointerInfo(Ptr, Offset);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004410
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004411 MachineFunction &MF = getMachineFunction();
Dan Gohmanc76909a2009-09-25 20:36:54 +00004412 MachineMemOperand *MMO =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004413 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment,
Rafael Espindola95d594c2012-03-31 18:14:00 +00004414 TBAAInfo, Ranges);
Evan Chengbcc80172010-07-07 22:15:37 +00004415 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004416}
4417
4418SDValue
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004419SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004420 EVT VT, SDLoc dl, SDValue Chain,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004421 SDValue Ptr, SDValue Offset, EVT MemVT,
4422 MachineMemOperand *MMO) {
Dan Gohman8a55ce42009-09-23 21:02:20 +00004423 if (VT == MemVT) {
Dale Johannesene8c17332009-01-29 00:47:48 +00004424 ExtType = ISD::NON_EXTLOAD;
4425 } else if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman8a55ce42009-09-23 21:02:20 +00004426 assert(VT == MemVT && "Non-extending load from different memory type!");
Dale Johannesene8c17332009-01-29 00:47:48 +00004427 } else {
4428 // Extending load.
Dan Gohman2e141d72009-12-14 23:40:38 +00004429 assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
4430 "Should only be an extending load, not truncating!");
Dan Gohman8a55ce42009-09-23 21:02:20 +00004431 assert(VT.isInteger() == MemVT.isInteger() &&
Dale Johannesene8c17332009-01-29 00:47:48 +00004432 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman2e141d72009-12-14 23:40:38 +00004433 assert(VT.isVector() == MemVT.isVector() &&
4434 "Cannot use trunc store to convert to or from a vector!");
4435 assert((!VT.isVector() ||
4436 VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
4437 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesene8c17332009-01-29 00:47:48 +00004438 }
4439
4440 bool Indexed = AM != ISD::UNINDEXED;
4441 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
4442 "Unindexed load with an offset!");
4443
4444 SDVTList VTs = Indexed ?
Owen Anderson825b72b2009-08-11 20:47:22 +00004445 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dale Johannesene8c17332009-01-29 00:47:48 +00004446 SDValue Ops[] = { Chain, Ptr, Offset };
4447 FoldingSetNodeID ID;
4448 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004449 ID.AddInteger(MemVT.getRawBits());
David Greene1157f792010-02-17 20:21:42 +00004450 ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile(),
Michael Ilseman06b96902012-09-10 16:56:31 +00004451 MMO->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004452 MMO->isInvariant()));
Pete Cooper32ecfb42012-07-30 20:23:19 +00004453 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004454 void *IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004455 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4456 cast<LoadSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004457 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004458 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004459 SDNode *N = new (NodeAllocator) LoadSDNode(Ops, dl.getIROrder(), dl.getDebugLoc(), VTs, AM, ExtType,
Dan Gohman95531882010-03-18 18:49:47 +00004460 MemVT, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004461 CSEMap.InsertNode(N, IP);
4462 AllNodes.push_back(N);
4463 return SDValue(N, 0);
4464}
4465
Andrew Trickac6d9be2013-05-25 02:42:55 +00004466SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
Dale Johannesene8c17332009-01-29 00:47:48 +00004467 SDValue Chain, SDValue Ptr,
Chris Lattnere72f2022010-09-21 05:40:29 +00004468 MachinePointerInfo PtrInfo,
4469 bool isVolatile, bool isNonTemporal,
Michael Ilseman06b96902012-09-10 16:56:31 +00004470 bool isInvariant, unsigned Alignment,
Rafael Espindola95d594c2012-03-31 18:14:00 +00004471 const MDNode *TBAAInfo,
4472 const MDNode *Ranges) {
Chris Lattnere72f2022010-09-21 05:40:29 +00004473 SDValue Undef = getUNDEF(Ptr.getValueType());
4474 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
Rafael Espindola95d594c2012-03-31 18:14:00 +00004475 PtrInfo, VT, isVolatile, isNonTemporal, isInvariant, Alignment,
4476 TBAAInfo, Ranges);
Chris Lattnere72f2022010-09-21 05:40:29 +00004477}
Dale Johannesene8c17332009-01-29 00:47:48 +00004478
Andrew Trickac6d9be2013-05-25 02:42:55 +00004479SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
Chris Lattnere72f2022010-09-21 05:40:29 +00004480 SDValue Chain, SDValue Ptr,
4481 MachinePointerInfo PtrInfo, EVT MemVT,
4482 bool isVolatile, bool isNonTemporal,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004483 unsigned Alignment, const MDNode *TBAAInfo) {
Chris Lattnere72f2022010-09-21 05:40:29 +00004484 SDValue Undef = getUNDEF(Ptr.getValueType());
4485 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004486 PtrInfo, MemVT, isVolatile, isNonTemporal, false, Alignment,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004487 TBAAInfo);
Chris Lattnere72f2022010-09-21 05:40:29 +00004488}
4489
4490
Dan Gohman475871a2008-07-27 21:46:04 +00004491SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00004492SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base,
Dale Johannesene8c17332009-01-29 00:47:48 +00004493 SDValue Offset, ISD::MemIndexedMode AM) {
4494 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
4495 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
4496 "Load is already a indexed load!");
Evan Chengbcc80172010-07-07 22:15:37 +00004497 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004498 LD->getChain(), Base, Offset, LD->getPointerInfo(),
Michael Ilseman06b96902012-09-10 16:56:31 +00004499 LD->getMemoryVT(), LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004500 false, LD->getAlignment());
Dale Johannesene8c17332009-01-29 00:47:48 +00004501}
4502
Andrew Trickac6d9be2013-05-25 02:42:55 +00004503SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004504 SDValue Ptr, MachinePointerInfo PtrInfo,
David Greene1e559442010-02-15 17:00:31 +00004505 bool isVolatile, bool isNonTemporal,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004506 unsigned Alignment, const MDNode *TBAAInfo) {
Michael Ilseman06b96902012-09-10 16:56:31 +00004507 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemaeb86fa2011-07-14 10:37:54 +00004508 "Invalid chain type");
Dale Johannesene8c17332009-01-29 00:47:48 +00004509 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohmanc76909a2009-09-25 20:36:54 +00004510 Alignment = getEVTAlignment(Val.getValueType());
Dale Johannesene8c17332009-01-29 00:47:48 +00004511
Dan Gohmanc76909a2009-09-25 20:36:54 +00004512 unsigned Flags = MachineMemOperand::MOStore;
4513 if (isVolatile)
4514 Flags |= MachineMemOperand::MOVolatile;
David Greene1e559442010-02-15 17:00:31 +00004515 if (isNonTemporal)
4516 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004517
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004518 if (PtrInfo.V == 0)
4519 PtrInfo = InferPointerInfo(Ptr);
4520
4521 MachineFunction &MF = getMachineFunction();
Dan Gohmanc76909a2009-09-25 20:36:54 +00004522 MachineMemOperand *MMO =
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004523 MF.getMachineMemOperand(PtrInfo, Flags,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004524 Val.getValueType().getStoreSize(), Alignment,
4525 TBAAInfo);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004526
4527 return getStore(Chain, dl, Val, Ptr, MMO);
4528}
4529
Andrew Trickac6d9be2013-05-25 02:42:55 +00004530SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004531 SDValue Ptr, MachineMemOperand *MMO) {
Michael Ilseman06b96902012-09-10 16:56:31 +00004532 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemaeb86fa2011-07-14 10:37:54 +00004533 "Invalid chain type");
Dan Gohmanc76909a2009-09-25 20:36:54 +00004534 EVT VT = Val.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00004535 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesene8d72302009-02-06 23:05:02 +00004536 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesene8c17332009-01-29 00:47:48 +00004537 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4538 FoldingSetNodeID ID;
4539 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Dale Johannesene8c17332009-01-29 00:47:48 +00004540 ID.AddInteger(VT.getRawBits());
David Greene1157f792010-02-17 20:21:42 +00004541 ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004542 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper32ecfb42012-07-30 20:23:19 +00004543 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004544 void *IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004545 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4546 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004547 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004548 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004549 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), dl.getDebugLoc(), VTs, ISD::UNINDEXED,
Dan Gohman95531882010-03-18 18:49:47 +00004550 false, VT, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004551 CSEMap.InsertNode(N, IP);
4552 AllNodes.push_back(N);
4553 return SDValue(N, 0);
4554}
4555
Andrew Trickac6d9be2013-05-25 02:42:55 +00004556SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004557 SDValue Ptr, MachinePointerInfo PtrInfo,
4558 EVT SVT,bool isVolatile, bool isNonTemporal,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004559 unsigned Alignment,
4560 const MDNode *TBAAInfo) {
Michael Ilseman06b96902012-09-10 16:56:31 +00004561 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemaeb86fa2011-07-14 10:37:54 +00004562 "Invalid chain type");
Chris Lattner5c5cb2a2010-09-21 05:10:45 +00004563 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4564 Alignment = getEVTAlignment(SVT);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004565
Dan Gohmanc76909a2009-09-25 20:36:54 +00004566 unsigned Flags = MachineMemOperand::MOStore;
4567 if (isVolatile)
4568 Flags |= MachineMemOperand::MOVolatile;
David Greene1e559442010-02-15 17:00:31 +00004569 if (isNonTemporal)
4570 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004571
Chris Lattnerd0e139f2010-09-21 17:24:05 +00004572 if (PtrInfo.V == 0)
4573 PtrInfo = InferPointerInfo(Ptr);
4574
4575 MachineFunction &MF = getMachineFunction();
Dan Gohmanc76909a2009-09-25 20:36:54 +00004576 MachineMemOperand *MMO =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00004577 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment,
4578 TBAAInfo);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004579
4580 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
4581}
4582
Andrew Trickac6d9be2013-05-25 02:42:55 +00004583SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohmanc76909a2009-09-25 20:36:54 +00004584 SDValue Ptr, EVT SVT,
4585 MachineMemOperand *MMO) {
Owen Andersone50ed302009-08-10 22:56:29 +00004586 EVT VT = Val.getValueType();
Dale Johannesene8c17332009-01-29 00:47:48 +00004587
Michael Ilseman06b96902012-09-10 16:56:31 +00004588 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemaeb86fa2011-07-14 10:37:54 +00004589 "Invalid chain type");
Dale Johannesene8c17332009-01-29 00:47:48 +00004590 if (VT == SVT)
Dan Gohmanc76909a2009-09-25 20:36:54 +00004591 return getStore(Chain, dl, Val, Ptr, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004592
Dan Gohman2e141d72009-12-14 23:40:38 +00004593 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
4594 "Should only be a truncating store, not extending!");
Dale Johannesene8c17332009-01-29 00:47:48 +00004595 assert(VT.isInteger() == SVT.isInteger() &&
4596 "Can't do FP-INT conversion!");
Dan Gohman2e141d72009-12-14 23:40:38 +00004597 assert(VT.isVector() == SVT.isVector() &&
4598 "Cannot use trunc store to convert to or from a vector!");
4599 assert((!VT.isVector() ||
4600 VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
4601 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesene8c17332009-01-29 00:47:48 +00004602
Owen Anderson825b72b2009-08-11 20:47:22 +00004603 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesene8d72302009-02-06 23:05:02 +00004604 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesene8c17332009-01-29 00:47:48 +00004605 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4606 FoldingSetNodeID ID;
4607 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Dale Johannesene8c17332009-01-29 00:47:48 +00004608 ID.AddInteger(SVT.getRawBits());
David Greene1157f792010-02-17 20:21:42 +00004609 ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004610 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper32ecfb42012-07-30 20:23:19 +00004611 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004612 void *IP = 0;
Dan Gohmanc76909a2009-09-25 20:36:54 +00004613 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4614 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004615 return SDValue(E, 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00004616 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004617 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), dl.getDebugLoc(), VTs, ISD::UNINDEXED,
Dan Gohman95531882010-03-18 18:49:47 +00004618 true, SVT, MMO);
Dale Johannesene8c17332009-01-29 00:47:48 +00004619 CSEMap.InsertNode(N, IP);
4620 AllNodes.push_back(N);
4621 return SDValue(N, 0);
4622}
4623
Dan Gohman475871a2008-07-27 21:46:04 +00004624SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00004625SelectionDAG::getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base,
Dale Johannesene8c17332009-01-29 00:47:48 +00004626 SDValue Offset, ISD::MemIndexedMode AM) {
4627 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
4628 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
4629 "Store is already a indexed store!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004630 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dale Johannesene8c17332009-01-29 00:47:48 +00004631 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
4632 FoldingSetNodeID ID;
4633 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Dale Johannesene8c17332009-01-29 00:47:48 +00004634 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohmana7ce7412009-02-03 00:08:45 +00004635 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper32ecfb42012-07-30 20:23:19 +00004636 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Dale Johannesene8c17332009-01-29 00:47:48 +00004637 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00004638 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesene8c17332009-01-29 00:47:48 +00004639 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00004640
Andrew Trickac6d9be2013-05-25 02:42:55 +00004641 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
Dan Gohman95531882010-03-18 18:49:47 +00004642 ST->isTruncatingStore(),
4643 ST->getMemoryVT(),
4644 ST->getMemOperand());
Dale Johannesene8c17332009-01-29 00:47:48 +00004645 CSEMap.InsertNode(N, IP);
4646 AllNodes.push_back(N);
4647 return SDValue(N, 0);
4648}
4649
Andrew Trickac6d9be2013-05-25 02:42:55 +00004650SDValue SelectionDAG::getVAArg(EVT VT, SDLoc dl,
Dale Johannesen0f502f62009-02-03 22:26:09 +00004651 SDValue Chain, SDValue Ptr,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00004652 SDValue SV,
4653 unsigned Align) {
4654 SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, MVT::i32) };
4655 return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops, 4);
Dale Johannesen0f502f62009-02-03 22:26:09 +00004656}
4657
Andrew Trickac6d9be2013-05-25 02:42:55 +00004658SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004659 const SDUse *Ops, unsigned NumOps) {
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004660 switch (NumOps) {
Bill Wendling7ade28c2009-01-28 22:17:52 +00004661 case 0: return getNode(Opcode, DL, VT);
4662 case 1: return getNode(Opcode, DL, VT, Ops[0]);
4663 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4664 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004665 default: break;
4666 }
4667
Dan Gohman475871a2008-07-27 21:46:04 +00004668 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004669 // the regular getNode logic.
Dan Gohman475871a2008-07-27 21:46:04 +00004670 SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
Bill Wendling7ade28c2009-01-28 22:17:52 +00004671 return getNode(Opcode, DL, VT, &NewOps[0], NumOps);
Dan Gohman6d9cdd52008-07-07 18:26:29 +00004672}
4673
Andrew Trickac6d9be2013-05-25 02:42:55 +00004674SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004675 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004676 switch (NumOps) {
Bill Wendling7ade28c2009-01-28 22:17:52 +00004677 case 0: return getNode(Opcode, DL, VT);
4678 case 1: return getNode(Opcode, DL, VT, Ops[0]);
4679 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4680 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00004681 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004682 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004683
Chris Lattneref847df2005-04-09 03:27:28 +00004684 switch (Opcode) {
4685 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00004686 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004687 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00004688 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
4689 "LHS and RHS of condition must have same type!");
4690 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4691 "True and False arms of SelectCC must have same type!");
4692 assert(Ops[2].getValueType() == VT &&
4693 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00004694 break;
4695 }
4696 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004697 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00004698 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4699 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00004700 break;
4701 }
Chris Lattneref847df2005-04-09 03:27:28 +00004702 }
4703
Chris Lattner385328c2005-05-14 07:42:29 +00004704 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00004705 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00004706 SDVTList VTs = getVTList(VT);
Bill Wendling7ade28c2009-01-28 22:17:52 +00004707
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00004708 if (VT != MVT::Glue) {
Jim Laskey583bd472006-10-27 23:46:08 +00004709 FoldingSetNodeID ID;
4710 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00004711 void *IP = 0;
Bill Wendling7ade28c2009-01-28 22:17:52 +00004712
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00004713 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00004714 return SDValue(E, 0);
Bill Wendling7ade28c2009-01-28 22:17:52 +00004715
Andrew Trickac6d9be2013-05-25 02:42:55 +00004716 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00004717 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00004718 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004719 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00004720 }
Bill Wendling7ade28c2009-01-28 22:17:52 +00004721
Chris Lattneref847df2005-04-09 03:27:28 +00004722 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00004723#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00004724 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00004725#endif
Dan Gohman475871a2008-07-27 21:46:04 +00004726 return SDValue(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004727}
4728
Andrew Trickac6d9be2013-05-25 02:42:55 +00004729SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Benjamin Kramer3853f742013-03-07 20:33:29 +00004730 ArrayRef<EVT> ResultTys,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004731 const SDValue *Ops, unsigned NumOps) {
Dan Gohmanfc166572009-04-09 23:54:40 +00004732 return getNode(Opcode, DL, getVTList(&ResultTys[0], ResultTys.size()),
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00004733 Ops, NumOps);
4734}
4735
Andrew Trickac6d9be2013-05-25 02:42:55 +00004736SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Owen Andersone50ed302009-08-10 22:56:29 +00004737 const EVT *VTs, unsigned NumVTs,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004738 const SDValue *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00004739 if (NumVTs == 1)
Bill Wendling7ade28c2009-01-28 22:17:52 +00004740 return getNode(Opcode, DL, VTs[0], Ops, NumOps);
4741 return getNode(Opcode, DL, makeVTList(VTs, NumVTs), Ops, NumOps);
Scott Michelfdc40a02009-02-17 22:15:04 +00004742}
4743
Andrew Trickac6d9be2013-05-25 02:42:55 +00004744SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004745 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00004746 if (VTList.NumVTs == 1)
Bill Wendling7ade28c2009-01-28 22:17:52 +00004747 return getNode(Opcode, DL, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00004748
Daniel Dunbarcfb8a1b2009-07-19 01:38:38 +00004749#if 0
Chris Lattner5f056bf2005-07-10 01:55:33 +00004750 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00004751 // FIXME: figure out how to safely handle things like
4752 // int foo(int x) { return 1 << (x & 255); }
4753 // int bar() { return foo(256); }
Chris Lattnere89083a2005-05-14 07:25:05 +00004754 case ISD::SRA_PARTS:
4755 case ISD::SRL_PARTS:
4756 case ISD::SHL_PARTS:
4757 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004758 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Bill Wendling7ade28c2009-01-28 22:17:52 +00004759 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattnere89083a2005-05-14 07:25:05 +00004760 else if (N3.getOpcode() == ISD::AND)
4761 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
4762 // If the and is only masking out bits that cannot effect the shift,
4763 // eliminate the and.
Dan Gohmand1996362010-01-09 02:13:55 +00004764 unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00004765 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
Bill Wendling7ade28c2009-01-28 22:17:52 +00004766 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattnere89083a2005-05-14 07:25:05 +00004767 }
4768 break;
Chris Lattner5f056bf2005-07-10 01:55:33 +00004769 }
Daniel Dunbarcfb8a1b2009-07-19 01:38:38 +00004770#endif
Chris Lattner89c34632005-05-14 06:20:26 +00004771
Chris Lattner43247a12005-08-25 19:12:10 +00004772 // Memoize the node unless it returns a flag.
4773 SDNode *N;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00004774 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Jim Laskey583bd472006-10-27 23:46:08 +00004775 FoldingSetNodeID ID;
4776 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00004777 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00004778 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman475871a2008-07-27 21:46:04 +00004779 return SDValue(E, 0);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00004780
Dan Gohman0e5f1302008-07-07 23:02:41 +00004781 if (NumOps == 1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004782 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004783 } else if (NumOps == 2) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004784 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0], Ops[1]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004785 } else if (NumOps == 3) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004786 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0], Ops[1],
Dan Gohman95531882010-03-18 18:49:47 +00004787 Ops[2]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004788 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004789 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops, NumOps);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004790 }
Chris Lattnera5682852006-08-07 23:03:03 +00004791 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00004792 } else {
Dan Gohman0e5f1302008-07-07 23:02:41 +00004793 if (NumOps == 1) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004794 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004795 } else if (NumOps == 2) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004796 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0], Ops[1]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004797 } else if (NumOps == 3) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004798 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops[0], Ops[1],
Dan Gohman95531882010-03-18 18:49:47 +00004799 Ops[2]);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004800 } else {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004801 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList, Ops, NumOps);
Dan Gohman0e5f1302008-07-07 23:02:41 +00004802 }
Chris Lattner43247a12005-08-25 19:12:10 +00004803 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00004804 AllNodes.push_back(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00004805#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00004806 VerifySDNode(N);
Duncan Sandsd038e042008-07-21 10:20:31 +00004807#endif
Dan Gohman475871a2008-07-27 21:46:04 +00004808 return SDValue(N, 0);
Chris Lattner89c34632005-05-14 06:20:26 +00004809}
4810
Andrew Trickac6d9be2013-05-25 02:42:55 +00004811SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList) {
Bill Wendling7ade28c2009-01-28 22:17:52 +00004812 return getNode(Opcode, DL, VTList, 0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00004813}
4814
Andrew Trickac6d9be2013-05-25 02:42:55 +00004815SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004816 SDValue N1) {
Dan Gohman475871a2008-07-27 21:46:04 +00004817 SDValue Ops[] = { N1 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00004818 return getNode(Opcode, DL, VTList, Ops, 1);
Dan Gohman08ce9762007-10-08 15:49:58 +00004819}
4820
Andrew Trickac6d9be2013-05-25 02:42:55 +00004821SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004822 SDValue N1, SDValue N2) {
Dan Gohman475871a2008-07-27 21:46:04 +00004823 SDValue Ops[] = { N1, N2 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00004824 return getNode(Opcode, DL, VTList, Ops, 2);
Dan Gohman08ce9762007-10-08 15:49:58 +00004825}
4826
Andrew Trickac6d9be2013-05-25 02:42:55 +00004827SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004828 SDValue N1, SDValue N2, SDValue N3) {
Dan Gohman475871a2008-07-27 21:46:04 +00004829 SDValue Ops[] = { N1, N2, N3 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00004830 return getNode(Opcode, DL, VTList, Ops, 3);
Dan Gohman08ce9762007-10-08 15:49:58 +00004831}
4832
Andrew Trickac6d9be2013-05-25 02:42:55 +00004833SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004834 SDValue N1, SDValue N2, SDValue N3,
4835 SDValue N4) {
Dan Gohman475871a2008-07-27 21:46:04 +00004836 SDValue Ops[] = { N1, N2, N3, N4 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00004837 return getNode(Opcode, DL, VTList, Ops, 4);
Dan Gohman08ce9762007-10-08 15:49:58 +00004838}
4839
Andrew Trickac6d9be2013-05-25 02:42:55 +00004840SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling7ade28c2009-01-28 22:17:52 +00004841 SDValue N1, SDValue N2, SDValue N3,
4842 SDValue N4, SDValue N5) {
Dan Gohman475871a2008-07-27 21:46:04 +00004843 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Bill Wendling7ade28c2009-01-28 22:17:52 +00004844 return getNode(Opcode, DL, VTList, Ops, 5);
Dan Gohman08ce9762007-10-08 15:49:58 +00004845}
4846
Owen Andersone50ed302009-08-10 22:56:29 +00004847SDVTList SelectionDAG::getVTList(EVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00004848 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00004849}
4850
Owen Andersone50ed302009-08-10 22:56:29 +00004851SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004852 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4853 E = VTList.rend(); I != E; ++I)
4854 if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
4855 return *I;
4856
Owen Andersone50ed302009-08-10 22:56:29 +00004857 EVT *Array = Allocator.Allocate<EVT>(2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004858 Array[0] = VT1;
4859 Array[1] = VT2;
4860 SDVTList Result = makeVTList(Array, 2);
4861 VTList.push_back(Result);
4862 return Result;
Chris Lattnera3255112005-11-08 23:30:28 +00004863}
Dan Gohmane8be6c62008-07-17 19:10:17 +00004864
Owen Andersone50ed302009-08-10 22:56:29 +00004865SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00004866 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4867 E = VTList.rend(); I != E; ++I)
4868 if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4869 I->VTs[2] == VT3)
4870 return *I;
4871
Owen Andersone50ed302009-08-10 22:56:29 +00004872 EVT *Array = Allocator.Allocate<EVT>(3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004873 Array[0] = VT1;
4874 Array[1] = VT2;
4875 Array[2] = VT3;
4876 SDVTList Result = makeVTList(Array, 3);
4877 VTList.push_back(Result);
4878 return Result;
Chris Lattner70046e92006-08-15 17:46:01 +00004879}
4880
Owen Andersone50ed302009-08-10 22:56:29 +00004881SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
Bill Wendling13d6d442008-12-01 23:28:22 +00004882 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4883 E = VTList.rend(); I != E; ++I)
4884 if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4885 I->VTs[2] == VT3 && I->VTs[3] == VT4)
4886 return *I;
4887
Anton Korobeynikov60283f92009-12-13 01:00:59 +00004888 EVT *Array = Allocator.Allocate<EVT>(4);
Bill Wendling13d6d442008-12-01 23:28:22 +00004889 Array[0] = VT1;
4890 Array[1] = VT2;
4891 Array[2] = VT3;
4892 Array[3] = VT4;
4893 SDVTList Result = makeVTList(Array, 4);
4894 VTList.push_back(Result);
4895 return Result;
4896}
4897
Owen Andersone50ed302009-08-10 22:56:29 +00004898SDVTList SelectionDAG::getVTList(const EVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00004899 switch (NumVTs) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004900 case 0: llvm_unreachable("Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00004901 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00004902 case 2: return getVTList(VTs[0], VTs[1]);
4903 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
Anton Korobeynikovcc62c3c2009-12-19 02:04:00 +00004904 case 4: return getVTList(VTs[0], VTs[1], VTs[2], VTs[3]);
Chris Lattner70046e92006-08-15 17:46:01 +00004905 default: break;
4906 }
4907
Dan Gohmane8be6c62008-07-17 19:10:17 +00004908 for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4909 E = VTList.rend(); I != E; ++I) {
4910 if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
4911 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00004912
Benjamin Kramerb26e2912012-07-19 10:46:05 +00004913 if (std::equal(&VTs[2], &VTs[NumVTs], &I->VTs[2]))
Dan Gohmane8be6c62008-07-17 19:10:17 +00004914 return *I;
Chris Lattner70046e92006-08-15 17:46:01 +00004915 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004916
Owen Andersone50ed302009-08-10 22:56:29 +00004917 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
Dan Gohmane8be6c62008-07-17 19:10:17 +00004918 std::copy(VTs, VTs+NumVTs, Array);
4919 SDVTList Result = makeVTList(Array, NumVTs);
4920 VTList.push_back(Result);
4921 return Result;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00004922}
4923
4924
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004925/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
4926/// specified operands. If the resultant node already exists in the DAG,
4927/// this does not modify the specified node, instead it returns the node that
4928/// already exists. If the resultant node does not exist in the DAG, the
4929/// input node is returned. As a degenerate case, if you specify the same
4930/// input operands as the node already has, the input node is returned.
Dan Gohman027657d2010-06-18 15:30:29 +00004931SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004932 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
Scott Michelfdc40a02009-02-17 22:15:04 +00004933
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004934 // Check to see if there is no change.
Dan Gohman027657d2010-06-18 15:30:29 +00004935 if (Op == N->getOperand(0)) return N;
Scott Michelfdc40a02009-02-17 22:15:04 +00004936
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004937 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00004938 void *InsertPos = 0;
4939 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Dan Gohman027657d2010-06-18 15:30:29 +00004940 return Existing;
Scott Michelfdc40a02009-02-17 22:15:04 +00004941
Dan Gohman79acd2b2008-07-21 22:38:59 +00004942 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00004943 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00004944 if (!RemoveNodeFromCSEMaps(N))
4945 InsertPos = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004946
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004947 // Now we update the operands.
Dan Gohmane7852d02009-01-26 04:35:06 +00004948 N->OperandList[0].set(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004949
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004950 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00004951 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman027657d2010-06-18 15:30:29 +00004952 return N;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004953}
4954
Dan Gohman027657d2010-06-18 15:30:29 +00004955SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004956 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
Scott Michelfdc40a02009-02-17 22:15:04 +00004957
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004958 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004959 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
Dan Gohman027657d2010-06-18 15:30:29 +00004960 return N; // No operands changed, just return the input node.
Scott Michelfdc40a02009-02-17 22:15:04 +00004961
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004962 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00004963 void *InsertPos = 0;
4964 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Dan Gohman027657d2010-06-18 15:30:29 +00004965 return Existing;
Scott Michelfdc40a02009-02-17 22:15:04 +00004966
Dan Gohman79acd2b2008-07-21 22:38:59 +00004967 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00004968 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00004969 if (!RemoveNodeFromCSEMaps(N))
4970 InsertPos = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004971
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004972 // Now we update the operands.
Dan Gohmane7852d02009-01-26 04:35:06 +00004973 if (N->OperandList[0] != Op1)
4974 N->OperandList[0].set(Op1);
4975 if (N->OperandList[1] != Op2)
4976 N->OperandList[1].set(Op2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004977
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004978 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00004979 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman027657d2010-06-18 15:30:29 +00004980 return N;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004981}
4982
Dan Gohman027657d2010-06-18 15:30:29 +00004983SDNode *SelectionDAG::
4984UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman475871a2008-07-27 21:46:04 +00004985 SDValue Ops[] = { Op1, Op2, Op3 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004986 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004987}
4988
Dan Gohman027657d2010-06-18 15:30:29 +00004989SDNode *SelectionDAG::
4990UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman475871a2008-07-27 21:46:04 +00004991 SDValue Op3, SDValue Op4) {
4992 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00004993 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00004994}
4995
Dan Gohman027657d2010-06-18 15:30:29 +00004996SDNode *SelectionDAG::
4997UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman475871a2008-07-27 21:46:04 +00004998 SDValue Op3, SDValue Op4, SDValue Op5) {
4999 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Chris Lattnerf06f35e2006-08-08 01:09:31 +00005000 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00005001}
5002
Dan Gohman027657d2010-06-18 15:30:29 +00005003SDNode *SelectionDAG::
5004UpdateNodeOperands(SDNode *N, const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00005005 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005006 "Update with wrong number of operands");
Scott Michelfdc40a02009-02-17 22:15:04 +00005007
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005008 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005009 bool AnyChange = false;
5010 for (unsigned i = 0; i != NumOps; ++i) {
5011 if (Ops[i] != N->getOperand(i)) {
5012 AnyChange = true;
5013 break;
5014 }
5015 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005016
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005017 // No operands changed, just return the input node.
Dan Gohman027657d2010-06-18 15:30:29 +00005018 if (!AnyChange) return N;
Scott Michelfdc40a02009-02-17 22:15:04 +00005019
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005020 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00005021 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00005022 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Dan Gohman027657d2010-06-18 15:30:29 +00005023 return Existing;
Scott Michelfdc40a02009-02-17 22:15:04 +00005024
Dan Gohman7ceda162008-05-02 00:05:03 +00005025 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00005026 if (InsertPos)
Dan Gohman095cc292008-09-13 01:54:27 +00005027 if (!RemoveNodeFromCSEMaps(N))
5028 InsertPos = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005029
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005030 // Now we update the operands.
Dan Gohmane7852d02009-01-26 04:35:06 +00005031 for (unsigned i = 0; i != NumOps; ++i)
5032 if (N->OperandList[i] != Ops[i])
5033 N->OperandList[i].set(Ops[i]);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005034
5035 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00005036 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman027657d2010-06-18 15:30:29 +00005037 return N;
Chris Lattnerdf6eb302006-01-28 09:32:45 +00005038}
5039
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00005040/// DropOperands - Release the operands and set this node to have
Dan Gohmane8be6c62008-07-17 19:10:17 +00005041/// zero operands.
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00005042void SDNode::DropOperands() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00005043 // Unlike the code in MorphNodeTo that does this, we don't need to
5044 // watch for dead nodes here.
Dan Gohmane7852d02009-01-26 04:35:06 +00005045 for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
5046 SDUse &Use = *I++;
5047 Use.set(SDValue());
5048 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00005049}
Chris Lattner149c58c2005-08-16 18:17:10 +00005050
Dan Gohmane8be6c62008-07-17 19:10:17 +00005051/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
5052/// machine opcode.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00005053///
Dan Gohmane8be6c62008-07-17 19:10:17 +00005054SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005055 EVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005056 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005057 return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
Chris Lattner7651fa42005-08-24 23:00:29 +00005058}
Chris Lattner0fb094f2005-11-19 01:44:53 +00005059
Dan Gohmane8be6c62008-07-17 19:10:17 +00005060SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005061 EVT VT, SDValue Op1) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005062 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00005063 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005064 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Chris Lattner149c58c2005-08-16 18:17:10 +00005065}
Chris Lattner0fb094f2005-11-19 01:44:53 +00005066
Dan Gohmane8be6c62008-07-17 19:10:17 +00005067SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005068 EVT VT, SDValue Op1,
Dan Gohman475871a2008-07-27 21:46:04 +00005069 SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005070 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00005071 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005072 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner149c58c2005-08-16 18:17:10 +00005073}
Chris Lattner0fb094f2005-11-19 01:44:53 +00005074
Dan Gohmane8be6c62008-07-17 19:10:17 +00005075SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005076 EVT VT, SDValue Op1,
Dan Gohman475871a2008-07-27 21:46:04 +00005077 SDValue Op2, SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005078 SDVTList VTs = getVTList(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00005079 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005080 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Chris Lattner149c58c2005-08-16 18:17:10 +00005081}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00005082
Dan Gohmane8be6c62008-07-17 19:10:17 +00005083SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005084 EVT VT, const SDValue *Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00005085 unsigned NumOps) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005086 SDVTList VTs = getVTList(VT);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005087 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00005088}
5089
Dan Gohmane8be6c62008-07-17 19:10:17 +00005090SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005091 EVT VT1, EVT VT2, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00005092 unsigned NumOps) {
5093 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005094 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00005095}
5096
Dan Gohmane8be6c62008-07-17 19:10:17 +00005097SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005098 EVT VT1, EVT VT2) {
Dan Gohmancd920d92008-07-02 23:23:19 +00005099 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00005100 return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
Dan Gohmancd920d92008-07-02 23:23:19 +00005101}
5102
Dan Gohmane8be6c62008-07-17 19:10:17 +00005103SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005104 EVT VT1, EVT VT2, EVT VT3,
Dan Gohman475871a2008-07-27 21:46:04 +00005105 const SDValue *Ops, unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00005106 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005107 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
Dan Gohmancd920d92008-07-02 23:23:19 +00005108}
5109
Bill Wendling13d6d442008-12-01 23:28:22 +00005110SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005111 EVT VT1, EVT VT2, EVT VT3, EVT VT4,
Bill Wendling13d6d442008-12-01 23:28:22 +00005112 const SDValue *Ops, unsigned NumOps) {
5113 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
5114 return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
5115}
5116
Scott Michelfdc40a02009-02-17 22:15:04 +00005117SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005118 EVT VT1, EVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00005119 SDValue Op1) {
Dan Gohmancd920d92008-07-02 23:23:19 +00005120 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00005121 SDValue Ops[] = { Op1 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005122 return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00005123}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00005124
Scott Michelfdc40a02009-02-17 22:15:04 +00005125SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005126 EVT VT1, EVT VT2,
Dan Gohman475871a2008-07-27 21:46:04 +00005127 SDValue Op1, SDValue Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005128 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00005129 SDValue Ops[] = { Op1, Op2 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005130 return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
Chris Lattner0fb094f2005-11-19 01:44:53 +00005131}
5132
Dan Gohmane8be6c62008-07-17 19:10:17 +00005133SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005134 EVT VT1, EVT VT2,
Scott Michelfdc40a02009-02-17 22:15:04 +00005135 SDValue Op1, SDValue Op2,
Dan Gohman475871a2008-07-27 21:46:04 +00005136 SDValue Op3) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00005137 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman475871a2008-07-27 21:46:04 +00005138 SDValue Ops[] = { Op1, Op2, Op3 };
Dan Gohmane8be6c62008-07-17 19:10:17 +00005139 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
Dan Gohmancd920d92008-07-02 23:23:19 +00005140}
5141
Dan Gohmane8be6c62008-07-17 19:10:17 +00005142SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Andersone50ed302009-08-10 22:56:29 +00005143 EVT VT1, EVT VT2, EVT VT3,
Scott Michelfdc40a02009-02-17 22:15:04 +00005144 SDValue Op1, SDValue Op2,
Bill Wendling13d6d442008-12-01 23:28:22 +00005145 SDValue Op3) {
5146 SDVTList VTs = getVTList(VT1, VT2, VT3);
5147 SDValue Ops[] = { Op1, Op2, Op3 };
5148 return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
5149}
5150
5151SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Dan Gohman475871a2008-07-27 21:46:04 +00005152 SDVTList VTs, const SDValue *Ops,
Dan Gohmancd920d92008-07-02 23:23:19 +00005153 unsigned NumOps) {
Chris Lattner5857e0a2010-02-23 23:01:35 +00005154 N = MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
5155 // Reset the NodeID to -1.
5156 N->setNodeId(-1);
5157 return N;
Dan Gohmane8be6c62008-07-17 19:10:17 +00005158}
5159
Andrew Trickac6d9be2013-05-25 02:42:55 +00005160/// UpdadeSDLocOnMergedSDNode - If the opt level is -O0 then it throws away
Devang Patel0508d042011-12-15 18:21:18 +00005161/// the line number information on the merged node since it is not possible to
5162/// preserve the information that operation is associated with multiple lines.
5163/// This will make the debugger working better at -O0, were there is a higher
5164/// probability having other instructions associated with that line.
5165///
Andrew Trickac6d9be2013-05-25 02:42:55 +00005166/// For IROrder, we keep the smaller of the two
5167SDNode *SelectionDAG::UpdadeSDLocOnMergedSDNode(SDNode *N, SDLoc OLoc) {
Devang Patel0508d042011-12-15 18:21:18 +00005168 DebugLoc NLoc = N->getDebugLoc();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005169 if (!(NLoc.isUnknown()) && (OptLevel == CodeGenOpt::None) &&
5170 (OLoc.getDebugLoc() != NLoc)) {
Devang Patel0508d042011-12-15 18:21:18 +00005171 N->setDebugLoc(DebugLoc());
5172 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00005173 unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
5174 N->setIROrder(Order);
Devang Patel0508d042011-12-15 18:21:18 +00005175 return N;
5176}
5177
Chris Lattner21221e32010-02-28 21:36:14 +00005178/// MorphNodeTo - This *mutates* the specified node to have the specified
Dan Gohmane8be6c62008-07-17 19:10:17 +00005179/// return type, opcode, and operands.
5180///
5181/// Note that MorphNodeTo returns the resultant node. If there is already a
5182/// node of the specified opcode and operands, it returns that node instead of
Andrew Trickac6d9be2013-05-25 02:42:55 +00005183/// the current one. Note that the SDLoc need not be the same.
Dan Gohmane8be6c62008-07-17 19:10:17 +00005184///
5185/// Using MorphNodeTo is faster than creating a new node and swapping it in
5186/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greifdc715632008-08-30 22:16:05 +00005187/// node, and because it doesn't require CSE recalculation for any of
Dan Gohmane8be6c62008-07-17 19:10:17 +00005188/// the node's users.
5189///
5190SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Dan Gohman475871a2008-07-27 21:46:04 +00005191 SDVTList VTs, const SDValue *Ops,
Dan Gohmane8be6c62008-07-17 19:10:17 +00005192 unsigned NumOps) {
Dan Gohmancd920d92008-07-02 23:23:19 +00005193 // If an identical node already exists, use it.
Chris Lattnera5682852006-08-07 23:03:03 +00005194 void *IP = 0;
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00005195 if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00005196 FoldingSetNodeID ID;
5197 AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00005198 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Andrew Trickac6d9be2013-05-25 02:42:55 +00005199 return UpdadeSDLocOnMergedSDNode(ON, SDLoc(N));
Dan Gohmane8be6c62008-07-17 19:10:17 +00005200 }
Chris Lattnerc5e6c642005-12-01 18:00:57 +00005201
Dan Gohman095cc292008-09-13 01:54:27 +00005202 if (!RemoveNodeFromCSEMaps(N))
5203 IP = 0;
Chris Lattner67612a12007-02-04 02:32:44 +00005204
Dan Gohmane8be6c62008-07-17 19:10:17 +00005205 // Start the morphing.
5206 N->NodeType = Opc;
5207 N->ValueList = VTs.VTs;
5208 N->NumValues = VTs.NumVTs;
Scott Michelfdc40a02009-02-17 22:15:04 +00005209
Dan Gohmane8be6c62008-07-17 19:10:17 +00005210 // Clear the operands list, updating used nodes to remove this from their
5211 // use list. Keep track of any operands that become dead as a result.
5212 SmallPtrSet<SDNode*, 16> DeadNodeSet;
Dan Gohmane7852d02009-01-26 04:35:06 +00005213 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
5214 SDUse &Use = *I++;
5215 SDNode *Used = Use.getNode();
5216 Use.set(SDValue());
Dan Gohmane8be6c62008-07-17 19:10:17 +00005217 if (Used->use_empty())
5218 DeadNodeSet.insert(Used);
5219 }
5220
Dan Gohmanc76909a2009-09-25 20:36:54 +00005221 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
5222 // Initialize the memory references information.
5223 MN->setMemRefs(0, 0);
5224 // If NumOps is larger than the # of operands we can have in a
5225 // MachineSDNode, reallocate the operand list.
5226 if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
5227 if (MN->OperandsNeedDelete)
5228 delete[] MN->OperandList;
5229 if (NumOps > array_lengthof(MN->LocalOperands))
5230 // We're creating a final node that will live unmorphed for the
5231 // remainder of the current SelectionDAG iteration, so we can allocate
5232 // the operands directly out of a pool with no recycling metadata.
5233 MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
Dan Gohman95531882010-03-18 18:49:47 +00005234 Ops, NumOps);
Dan Gohmanc76909a2009-09-25 20:36:54 +00005235 else
5236 MN->InitOperands(MN->LocalOperands, Ops, NumOps);
5237 MN->OperandsNeedDelete = false;
5238 } else
5239 MN->InitOperands(MN->OperandList, Ops, NumOps);
5240 } else {
5241 // If NumOps is larger than the # of operands we currently have, reallocate
5242 // the operand list.
5243 if (NumOps > N->NumOperands) {
5244 if (N->OperandsNeedDelete)
5245 delete[] N->OperandList;
5246 N->InitOperands(new SDUse[NumOps], Ops, NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005247 N->OperandsNeedDelete = true;
Dan Gohmanc76909a2009-09-25 20:36:54 +00005248 } else
Anton Korobeynikov443b2152009-10-22 00:15:17 +00005249 N->InitOperands(N->OperandList, Ops, NumOps);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005250 }
5251
5252 // Delete any nodes that are still dead after adding the uses for the
5253 // new operands.
Chris Lattner7d892d62010-03-01 07:43:08 +00005254 if (!DeadNodeSet.empty()) {
5255 SmallVector<SDNode *, 16> DeadNodes;
5256 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
5257 E = DeadNodeSet.end(); I != E; ++I)
5258 if ((*I)->use_empty())
5259 DeadNodes.push_back(*I);
5260 RemoveDeadNodes(DeadNodes);
5261 }
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00005262
Dan Gohmane8be6c62008-07-17 19:10:17 +00005263 if (IP)
5264 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00005265 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00005266}
5267
Chris Lattner0fb094f2005-11-19 01:44:53 +00005268
Dan Gohman602b0c82009-09-25 18:54:59 +00005269/// getMachineNode - These are used for target selectors to create a new node
5270/// with specified return type(s), MachineInstr opcode, and operands.
Evan Cheng6ae46c42006-02-09 07:15:23 +00005271///
Dan Gohman602b0c82009-09-25 18:54:59 +00005272/// Note that getMachineNode returns the resultant node. If there is already a
Evan Cheng6ae46c42006-02-09 07:15:23 +00005273/// node of the specified opcode and operands, it returns that node instead of
5274/// the current one.
Dan Gohmanc81b7832009-10-10 01:29:16 +00005275MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005276SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005277 SDVTList VTs = getVTList(VT);
Dmitri Gribenko5c332db2013-05-05 00:40:33 +00005278 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesene8c17332009-01-29 00:47:48 +00005279}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005280
Dan Gohmanc81b7832009-10-10 01:29:16 +00005281MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005282SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, SDValue Op1) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005283 SDVTList VTs = getVTList(VT);
5284 SDValue Ops[] = { Op1 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005285 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005286}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005287
Dan Gohmanc81b7832009-10-10 01:29:16 +00005288MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005289SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005290 SDValue Op1, SDValue Op2) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005291 SDVTList VTs = getVTList(VT);
5292 SDValue Ops[] = { Op1, Op2 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005293 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005294}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005295
Dan Gohmanc81b7832009-10-10 01:29:16 +00005296MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005297SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005298 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005299 SDVTList VTs = getVTList(VT);
5300 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005301 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005302}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005303
Dan Gohmanc81b7832009-10-10 01:29:16 +00005304MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005305SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Michael Liao2a8bea72013-04-19 22:22:57 +00005306 ArrayRef<SDValue> Ops) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005307 SDVTList VTs = getVTList(VT);
Michael Liao2a8bea72013-04-19 22:22:57 +00005308 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005309}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005310
Dan Gohmanc81b7832009-10-10 01:29:16 +00005311MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005312SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, EVT VT2) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005313 SDVTList VTs = getVTList(VT1, VT2);
Dmitri Gribenko5c332db2013-05-05 00:40:33 +00005314 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesene8c17332009-01-29 00:47:48 +00005315}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005316
Dan Gohmanc81b7832009-10-10 01:29:16 +00005317MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005318SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005319 EVT VT1, EVT VT2, SDValue Op1) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005320 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohmanc76909a2009-09-25 20:36:54 +00005321 SDValue Ops[] = { Op1 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005322 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005323}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005324
Dan Gohmanc81b7832009-10-10 01:29:16 +00005325MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005326SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005327 EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005328 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005329 SDValue Ops[] = { Op1, Op2 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005330 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005331}
5332
Dan Gohmanc81b7832009-10-10 01:29:16 +00005333MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005334SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005335 EVT VT1, EVT VT2, SDValue Op1,
5336 SDValue Op2, SDValue Op3) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005337 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005338 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005339 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005340}
5341
Dan Gohmanc81b7832009-10-10 01:29:16 +00005342MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005343SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005344 EVT VT1, EVT VT2,
Michael Liao2a8bea72013-04-19 22:22:57 +00005345 ArrayRef<SDValue> Ops) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005346 SDVTList VTs = getVTList(VT1, VT2);
Michael Liao2a8bea72013-04-19 22:22:57 +00005347 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005348}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005349
Dan Gohmanc81b7832009-10-10 01:29:16 +00005350MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005351SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005352 EVT VT1, EVT VT2, EVT VT3,
5353 SDValue Op1, SDValue Op2) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005354 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dale Johannesene8c17332009-01-29 00:47:48 +00005355 SDValue Ops[] = { Op1, Op2 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005356 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005357}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005358
Dan Gohmanc81b7832009-10-10 01:29:16 +00005359MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005360SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005361 EVT VT1, EVT VT2, EVT VT3,
5362 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005363 SDVTList VTs = getVTList(VT1, VT2, VT3);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005364 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liao2a8bea72013-04-19 22:22:57 +00005365 return getMachineNode(Opcode, dl, VTs, Ops);
Evan Cheng6ae46c42006-02-09 07:15:23 +00005366}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005367
Dan Gohmanc81b7832009-10-10 01:29:16 +00005368MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005369SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005370 EVT VT1, EVT VT2, EVT VT3,
Michael Liao2a8bea72013-04-19 22:22:57 +00005371 ArrayRef<SDValue> Ops) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005372 SDVTList VTs = getVTList(VT1, VT2, VT3);
Michael Liao2a8bea72013-04-19 22:22:57 +00005373 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesene8c17332009-01-29 00:47:48 +00005374}
Bill Wendling56ab1a22009-01-29 09:01:55 +00005375
Dan Gohmanc81b7832009-10-10 01:29:16 +00005376MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005377SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1,
Dan Gohmanc81b7832009-10-10 01:29:16 +00005378 EVT VT2, EVT VT3, EVT VT4,
Michael Liao2a8bea72013-04-19 22:22:57 +00005379 ArrayRef<SDValue> Ops) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005380 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Michael Liao2a8bea72013-04-19 22:22:57 +00005381 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendling56ab1a22009-01-29 09:01:55 +00005382}
5383
Dan Gohmanc81b7832009-10-10 01:29:16 +00005384MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005385SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Benjamin Kramer3853f742013-03-07 20:33:29 +00005386 ArrayRef<EVT> ResultTys,
Michael Liao2a8bea72013-04-19 22:22:57 +00005387 ArrayRef<SDValue> Ops) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00005388 SDVTList VTs = getVTList(&ResultTys[0], ResultTys.size());
Michael Liao2a8bea72013-04-19 22:22:57 +00005389 return getMachineNode(Opcode, dl, VTs, Ops);
Dan Gohmanc76909a2009-09-25 20:36:54 +00005390}
5391
Dan Gohmanc81b7832009-10-10 01:29:16 +00005392MachineSDNode *
Andrew Trickac6d9be2013-05-25 02:42:55 +00005393SelectionDAG::getMachineNode(unsigned Opcode, SDLoc DL, SDVTList VTs,
Michael Liao2a8bea72013-04-19 22:22:57 +00005394 ArrayRef<SDValue> OpsArray) {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00005395 bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
Dan Gohmanc76909a2009-09-25 20:36:54 +00005396 MachineSDNode *N;
Ted Kremenek584520e2011-01-23 17:05:06 +00005397 void *IP = 0;
Michael Liao2a8bea72013-04-19 22:22:57 +00005398 const SDValue *Ops = OpsArray.data();
5399 unsigned NumOps = OpsArray.size();
Dan Gohmanc76909a2009-09-25 20:36:54 +00005400
5401 if (DoCSE) {
5402 FoldingSetNodeID ID;
5403 AddNodeIDNode(ID, ~Opcode, VTs, Ops, NumOps);
5404 IP = 0;
Devang Patel0508d042011-12-15 18:21:18 +00005405 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005406 return cast<MachineSDNode>(UpdadeSDLocOnMergedSDNode(E, DL));
Devang Patel0508d042011-12-15 18:21:18 +00005407 }
Dan Gohmanc76909a2009-09-25 20:36:54 +00005408 }
5409
5410 // Allocate a new MachineSDNode.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005411 N = new (NodeAllocator) MachineSDNode(~Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
Dan Gohmanc76909a2009-09-25 20:36:54 +00005412
5413 // Initialize the operands list.
5414 if (NumOps > array_lengthof(N->LocalOperands))
5415 // We're creating a final node that will live unmorphed for the
5416 // remainder of the current SelectionDAG iteration, so we can allocate
5417 // the operands directly out of a pool with no recycling metadata.
5418 N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
5419 Ops, NumOps);
5420 else
5421 N->InitOperands(N->LocalOperands, Ops, NumOps);
5422 N->OperandsNeedDelete = false;
5423
5424 if (DoCSE)
5425 CSEMap.InsertNode(N, IP);
5426
5427 AllNodes.push_back(N);
5428#ifndef NDEBUG
Duncan Sands59d2dad2010-11-20 11:25:00 +00005429 VerifyMachineNode(N);
Dan Gohmanc76909a2009-09-25 20:36:54 +00005430#endif
5431 return N;
Dale Johannesene8c17332009-01-29 00:47:48 +00005432}
Evan Cheng6ae46c42006-02-09 07:15:23 +00005433
Dan Gohman6a402dc2009-08-19 18:16:17 +00005434/// getTargetExtractSubreg - A convenience function for creating
Chris Lattner518bb532010-02-09 19:54:29 +00005435/// TargetOpcode::EXTRACT_SUBREG nodes.
Dan Gohman6a402dc2009-08-19 18:16:17 +00005436SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00005437SelectionDAG::getTargetExtractSubreg(int SRIdx, SDLoc DL, EVT VT,
Dan Gohman6a402dc2009-08-19 18:16:17 +00005438 SDValue Operand) {
5439 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattner518bb532010-02-09 19:54:29 +00005440 SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
Dan Gohman602b0c82009-09-25 18:54:59 +00005441 VT, Operand, SRIdxVal);
Dan Gohman6a402dc2009-08-19 18:16:17 +00005442 return SDValue(Subreg, 0);
5443}
5444
Bob Wilson5fcbf0d2009-10-08 18:49:46 +00005445/// getTargetInsertSubreg - A convenience function for creating
Chris Lattner518bb532010-02-09 19:54:29 +00005446/// TargetOpcode::INSERT_SUBREG nodes.
Bob Wilson5fcbf0d2009-10-08 18:49:46 +00005447SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00005448SelectionDAG::getTargetInsertSubreg(int SRIdx, SDLoc DL, EVT VT,
Bob Wilson5fcbf0d2009-10-08 18:49:46 +00005449 SDValue Operand, SDValue Subreg) {
5450 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattner518bb532010-02-09 19:54:29 +00005451 SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
Bob Wilson5fcbf0d2009-10-08 18:49:46 +00005452 VT, Operand, Subreg, SRIdxVal);
5453 return SDValue(Result, 0);
5454}
5455
Evan Cheng08b11732008-03-22 01:55:50 +00005456/// getNodeIfExists - Get the specified node if it's already available, or
5457/// else return NULL.
5458SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Dan Gohman475871a2008-07-27 21:46:04 +00005459 const SDValue *Ops, unsigned NumOps) {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00005460 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Evan Cheng08b11732008-03-22 01:55:50 +00005461 FoldingSetNodeID ID;
5462 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
5463 void *IP = 0;
Bill Wendlingb4e6a5d2009-12-18 23:32:53 +00005464 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng08b11732008-03-22 01:55:50 +00005465 return E;
5466 }
5467 return NULL;
5468}
5469
Evan Cheng31441b72010-03-29 20:48:30 +00005470/// getDbgValue - Creates a SDDbgValue node.
5471///
5472SDDbgValue *
5473SelectionDAG::getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R, uint64_t Off,
5474 DebugLoc DL, unsigned O) {
5475 return new (Allocator) SDDbgValue(MDPtr, N, R, Off, DL, O);
5476}
5477
5478SDDbgValue *
Dan Gohman46510a72010-04-15 01:51:59 +00005479SelectionDAG::getDbgValue(MDNode *MDPtr, const Value *C, uint64_t Off,
Evan Cheng31441b72010-03-29 20:48:30 +00005480 DebugLoc DL, unsigned O) {
5481 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O);
5482}
5483
5484SDDbgValue *
5485SelectionDAG::getDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off,
5486 DebugLoc DL, unsigned O) {
5487 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O);
5488}
5489
Dan Gohmana72d2a22010-03-03 21:33:37 +00005490namespace {
5491
Dan Gohmanba72b0c2010-03-04 19:11:28 +00005492/// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
Dan Gohmana72d2a22010-03-03 21:33:37 +00005493/// pointed to by a use iterator is deleted, increment the use iterator
5494/// so that it doesn't dangle.
5495///
Dan Gohmana72d2a22010-03-03 21:33:37 +00005496class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
Dan Gohmana72d2a22010-03-03 21:33:37 +00005497 SDNode::use_iterator &UI;
5498 SDNode::use_iterator &UE;
5499
5500 virtual void NodeDeleted(SDNode *N, SDNode *E) {
5501 // Increment the iterator as needed.
5502 while (UI != UE && N == *UI)
5503 ++UI;
Dan Gohmana72d2a22010-03-03 21:33:37 +00005504 }
5505
5506public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005507 RAUWUpdateListener(SelectionDAG &d,
Dan Gohmana72d2a22010-03-03 21:33:37 +00005508 SDNode::use_iterator &ui,
5509 SDNode::use_iterator &ue)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005510 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
Dan Gohmana72d2a22010-03-03 21:33:37 +00005511};
5512
5513}
5514
Evan Cheng99157a02006-08-07 22:13:29 +00005515/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00005516/// This can cause recursive merging of nodes in the DAG.
5517///
Chris Lattner11d049c2008-02-03 03:35:22 +00005518/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00005519///
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005520void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005521 SDNode *From = FromN.getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005522 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00005523 "Cannot replace with this method!");
Gabor Greifba36cb52008-08-28 21:40:38 +00005524 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00005525
Dan Gohman39946102009-01-25 16:29:12 +00005526 // Iterate over all the existing uses of From. New uses will be added
5527 // to the beginning of the use list, which we avoid visiting.
5528 // This specifically avoids visiting uses of From that arise while the
5529 // replacement is happening, because any such uses would be the result
5530 // of CSE: If an existing node looks like From after one of its operands
5531 // is replaced by To, we don't want to replace of all its users with To
5532 // too. See PR3018 for more info.
Dan Gohmandbe664a2009-01-19 21:44:21 +00005533 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005534 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmandbe664a2009-01-19 21:44:21 +00005535 while (UI != UE) {
Dan Gohman39946102009-01-25 16:29:12 +00005536 SDNode *User = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00005537
Chris Lattner8b8749f2005-08-17 19:00:20 +00005538 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman39946102009-01-25 16:29:12 +00005539 RemoveNodeFromCSEMaps(User);
Chris Lattner8b52f212005-08-26 18:36:28 +00005540
Dan Gohman39946102009-01-25 16:29:12 +00005541 // A user can appear in a use list multiple times, and when this
5542 // happens the uses are usually next to each other in the list.
5543 // To help reduce the number of CSE recomputations, process all
5544 // the uses of this user that we can find this way.
5545 do {
Dan Gohmane7852d02009-01-26 04:35:06 +00005546 SDUse &Use = UI.getUse();
Dan Gohman39946102009-01-25 16:29:12 +00005547 ++UI;
Dan Gohmane7852d02009-01-26 04:35:06 +00005548 Use.set(To);
Dan Gohman39946102009-01-25 16:29:12 +00005549 } while (UI != UE && *UI == User);
5550
5551 // Now that we have modified User, add it back to the CSE maps. If it
5552 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005553 AddModifiedNodeToCSEMaps(User);
Chris Lattner8b52f212005-08-26 18:36:28 +00005554 }
Dan Gohman65fd6562011-11-03 21:49:52 +00005555
5556 // If we just RAUW'd the root, take note.
5557 if (FromN == getRoot())
5558 setRoot(To);
Chris Lattner8b52f212005-08-26 18:36:28 +00005559}
5560
5561/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5562/// This can cause recursive merging of nodes in the DAG.
5563///
Dan Gohmanc23e4962009-04-15 20:06:30 +00005564/// This version assumes that for each value of From, there is a
5565/// corresponding value in To in the same position with the same type.
Chris Lattner8b52f212005-08-26 18:36:28 +00005566///
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005567void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
Dan Gohmanc23e4962009-04-15 20:06:30 +00005568#ifndef NDEBUG
5569 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
5570 assert((!From->hasAnyUseOfValue(i) ||
5571 From->getValueType(i) == To->getValueType(i)) &&
5572 "Cannot use this version of ReplaceAllUsesWith!");
5573#endif
Dan Gohmane8be6c62008-07-17 19:10:17 +00005574
5575 // Handle the trivial case.
5576 if (From == To)
5577 return;
5578
Dan Gohmandbe664a2009-01-19 21:44:21 +00005579 // Iterate over just the existing users of From. See the comments in
5580 // the ReplaceAllUsesWith above.
5581 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005582 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmandbe664a2009-01-19 21:44:21 +00005583 while (UI != UE) {
Dan Gohman39946102009-01-25 16:29:12 +00005584 SDNode *User = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00005585
Chris Lattner8b52f212005-08-26 18:36:28 +00005586 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman39946102009-01-25 16:29:12 +00005587 RemoveNodeFromCSEMaps(User);
Roman Levensteindc1adac2008-04-07 10:06:32 +00005588
Dan Gohman39946102009-01-25 16:29:12 +00005589 // A user can appear in a use list multiple times, and when this
5590 // happens the uses are usually next to each other in the list.
5591 // To help reduce the number of CSE recomputations, process all
5592 // the uses of this user that we can find this way.
5593 do {
Dan Gohmane7852d02009-01-26 04:35:06 +00005594 SDUse &Use = UI.getUse();
Dan Gohman39946102009-01-25 16:29:12 +00005595 ++UI;
Dan Gohmane7852d02009-01-26 04:35:06 +00005596 Use.setNode(To);
Dan Gohman39946102009-01-25 16:29:12 +00005597 } while (UI != UE && *UI == User);
5598
5599 // Now that we have modified User, add it back to the CSE maps. If it
5600 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005601 AddModifiedNodeToCSEMaps(User);
Chris Lattner8b8749f2005-08-17 19:00:20 +00005602 }
Dan Gohman65fd6562011-11-03 21:49:52 +00005603
5604 // If we just RAUW'd the root, take note.
5605 if (From == getRoot().getNode())
5606 setRoot(SDValue(To, getRoot().getResNo()));
Chris Lattner8b8749f2005-08-17 19:00:20 +00005607}
5608
Chris Lattner8b52f212005-08-26 18:36:28 +00005609/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5610/// This can cause recursive merging of nodes in the DAG.
5611///
5612/// This version can replace From with any result values. To must match the
5613/// number and types of values returned by From.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005614void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
Chris Lattner11d049c2008-02-03 03:35:22 +00005615 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005616 return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
Chris Lattner7b2880c2005-08-24 22:44:39 +00005617
Dan Gohmandbe664a2009-01-19 21:44:21 +00005618 // Iterate over just the existing users of From. See the comments in
5619 // the ReplaceAllUsesWith above.
5620 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005621 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmandbe664a2009-01-19 21:44:21 +00005622 while (UI != UE) {
Dan Gohman39946102009-01-25 16:29:12 +00005623 SDNode *User = *UI;
Roman Levensteindc1adac2008-04-07 10:06:32 +00005624
Chris Lattner7b2880c2005-08-24 22:44:39 +00005625 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman39946102009-01-25 16:29:12 +00005626 RemoveNodeFromCSEMaps(User);
Roman Levensteindc1adac2008-04-07 10:06:32 +00005627
Dan Gohman39946102009-01-25 16:29:12 +00005628 // A user can appear in a use list multiple times, and when this
5629 // happens the uses are usually next to each other in the list.
5630 // To help reduce the number of CSE recomputations, process all
5631 // the uses of this user that we can find this way.
5632 do {
Dan Gohmane7852d02009-01-26 04:35:06 +00005633 SDUse &Use = UI.getUse();
5634 const SDValue &ToOp = To[Use.getResNo()];
Dan Gohman39946102009-01-25 16:29:12 +00005635 ++UI;
Dan Gohmane7852d02009-01-26 04:35:06 +00005636 Use.set(ToOp);
Dan Gohman39946102009-01-25 16:29:12 +00005637 } while (UI != UE && *UI == User);
5638
5639 // Now that we have modified User, add it back to the CSE maps. If it
5640 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005641 AddModifiedNodeToCSEMaps(User);
Chris Lattner7b2880c2005-08-24 22:44:39 +00005642 }
Dan Gohman65fd6562011-11-03 21:49:52 +00005643
5644 // If we just RAUW'd the root, take note.
5645 if (From == getRoot().getNode())
5646 setRoot(SDValue(To[getRoot().getResNo()]));
Chris Lattner7b2880c2005-08-24 22:44:39 +00005647}
5648
Chris Lattner012f2412006-02-17 21:58:01 +00005649/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Dan Gohmane7852d02009-01-26 04:35:06 +00005650/// uses of other values produced by From.getNode() alone. The Deleted
5651/// vector is handled the same way as for ReplaceAllUsesWith.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005652void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
Dan Gohmane8be6c62008-07-17 19:10:17 +00005653 // Handle the really simple, really trivial case efficiently.
5654 if (From == To) return;
5655
Chris Lattner012f2412006-02-17 21:58:01 +00005656 // Handle the simple, trivial, case efficiently.
Gabor Greifba36cb52008-08-28 21:40:38 +00005657 if (From.getNode()->getNumValues() == 1) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005658 ReplaceAllUsesWith(From, To);
Chris Lattner012f2412006-02-17 21:58:01 +00005659 return;
5660 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00005661
Dan Gohman39946102009-01-25 16:29:12 +00005662 // Iterate over just the existing users of From. See the comments in
5663 // the ReplaceAllUsesWith above.
5664 SDNode::use_iterator UI = From.getNode()->use_begin(),
5665 UE = From.getNode()->use_end();
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005666 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohman39946102009-01-25 16:29:12 +00005667 while (UI != UE) {
5668 SDNode *User = *UI;
5669 bool UserRemovedFromCSEMaps = false;
Chris Lattner012f2412006-02-17 21:58:01 +00005670
Dan Gohman39946102009-01-25 16:29:12 +00005671 // A user can appear in a use list multiple times, and when this
5672 // happens the uses are usually next to each other in the list.
5673 // To help reduce the number of CSE recomputations, process all
5674 // the uses of this user that we can find this way.
5675 do {
Dan Gohmane7852d02009-01-26 04:35:06 +00005676 SDUse &Use = UI.getUse();
Dan Gohman39946102009-01-25 16:29:12 +00005677
5678 // Skip uses of different values from the same node.
Dan Gohmane7852d02009-01-26 04:35:06 +00005679 if (Use.getResNo() != From.getResNo()) {
Dan Gohman39946102009-01-25 16:29:12 +00005680 ++UI;
5681 continue;
Chris Lattner012f2412006-02-17 21:58:01 +00005682 }
Dan Gohman39946102009-01-25 16:29:12 +00005683
5684 // If this node hasn't been modified yet, it's still in the CSE maps,
5685 // so remove its old self from the CSE maps.
5686 if (!UserRemovedFromCSEMaps) {
5687 RemoveNodeFromCSEMaps(User);
5688 UserRemovedFromCSEMaps = true;
5689 }
5690
5691 ++UI;
Dan Gohmane7852d02009-01-26 04:35:06 +00005692 Use.set(To);
Dan Gohman39946102009-01-25 16:29:12 +00005693 } while (UI != UE && *UI == User);
5694
5695 // We are iterating over all uses of the From node, so if a use
5696 // doesn't use the specific value, no changes are made.
5697 if (!UserRemovedFromCSEMaps)
5698 continue;
5699
Chris Lattner01d029b2007-10-15 06:10:22 +00005700 // Now that we have modified User, add it back to the CSE maps. If it
5701 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005702 AddModifiedNodeToCSEMaps(User);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005703 }
Dan Gohman65fd6562011-11-03 21:49:52 +00005704
5705 // If we just RAUW'd the root, take note.
5706 if (From == getRoot())
5707 setRoot(To);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005708}
5709
Dan Gohman39946102009-01-25 16:29:12 +00005710namespace {
5711 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
5712 /// to record information about a use.
5713 struct UseMemo {
5714 SDNode *User;
5715 unsigned Index;
Dan Gohmane7852d02009-01-26 04:35:06 +00005716 SDUse *Use;
Dan Gohman39946102009-01-25 16:29:12 +00005717 };
Dan Gohmane7852d02009-01-26 04:35:06 +00005718
5719 /// operator< - Sort Memos by User.
5720 bool operator<(const UseMemo &L, const UseMemo &R) {
5721 return (intptr_t)L.User < (intptr_t)R.User;
5722 }
Dan Gohman39946102009-01-25 16:29:12 +00005723}
5724
Dan Gohmane8be6c62008-07-17 19:10:17 +00005725/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Dan Gohmane7852d02009-01-26 04:35:06 +00005726/// uses of other values produced by From.getNode() alone. The same value
5727/// may appear in both the From and To list. The Deleted vector is
Dan Gohmane8be6c62008-07-17 19:10:17 +00005728/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman475871a2008-07-27 21:46:04 +00005729void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
5730 const SDValue *To,
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005731 unsigned Num){
Dan Gohmane8be6c62008-07-17 19:10:17 +00005732 // Handle the simple, trivial case efficiently.
5733 if (Num == 1)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005734 return ReplaceAllUsesOfValueWith(*From, *To);
Dan Gohmane8be6c62008-07-17 19:10:17 +00005735
Dan Gohman39946102009-01-25 16:29:12 +00005736 // Read up all the uses and make records of them. This helps
5737 // processing new uses that are introduced during the
5738 // replacement process.
5739 SmallVector<UseMemo, 4> Uses;
5740 for (unsigned i = 0; i != Num; ++i) {
5741 unsigned FromResNo = From[i].getResNo();
5742 SDNode *FromNode = From[i].getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005743 for (SDNode::use_iterator UI = FromNode->use_begin(),
Dan Gohmane7852d02009-01-26 04:35:06 +00005744 E = FromNode->use_end(); UI != E; ++UI) {
5745 SDUse &Use = UI.getUse();
5746 if (Use.getResNo() == FromResNo) {
5747 UseMemo Memo = { *UI, i, &Use };
Dan Gohman39946102009-01-25 16:29:12 +00005748 Uses.push_back(Memo);
5749 }
Dan Gohmane7852d02009-01-26 04:35:06 +00005750 }
Dan Gohman39946102009-01-25 16:29:12 +00005751 }
Dan Gohmane8be6c62008-07-17 19:10:17 +00005752
Dan Gohmane7852d02009-01-26 04:35:06 +00005753 // Sort the uses, so that all the uses from a given User are together.
5754 std::sort(Uses.begin(), Uses.end());
5755
Dan Gohman39946102009-01-25 16:29:12 +00005756 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
5757 UseIndex != UseIndexEnd; ) {
Dan Gohmane8be6c62008-07-17 19:10:17 +00005758 // We know that this user uses some value of From. If it is the right
5759 // value, update it.
Dan Gohman39946102009-01-25 16:29:12 +00005760 SDNode *User = Uses[UseIndex].User;
5761
5762 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmane8be6c62008-07-17 19:10:17 +00005763 RemoveNodeFromCSEMaps(User);
Dan Gohman39946102009-01-25 16:29:12 +00005764
Dan Gohmane7852d02009-01-26 04:35:06 +00005765 // The Uses array is sorted, so all the uses for a given User
5766 // are next to each other in the list.
Dan Gohman39946102009-01-25 16:29:12 +00005767 // To help reduce the number of CSE recomputations, process all
5768 // the uses of this user that we can find this way.
5769 do {
5770 unsigned i = Uses[UseIndex].Index;
Dan Gohmane7852d02009-01-26 04:35:06 +00005771 SDUse &Use = *Uses[UseIndex].Use;
Dan Gohman39946102009-01-25 16:29:12 +00005772 ++UseIndex;
5773
Dan Gohmane7852d02009-01-26 04:35:06 +00005774 Use.set(To[i]);
Dan Gohman39946102009-01-25 16:29:12 +00005775 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
5776
Dan Gohmane8be6c62008-07-17 19:10:17 +00005777 // Now that we have modified User, add it back to the CSE maps. If it
5778 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005779 AddModifiedNodeToCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00005780 }
5781}
5782
Evan Chenge6f35d82006-08-01 08:20:41 +00005783/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00005784/// based on their topological order. It returns the maximum id and a vector
5785/// of the SDNodes* in assigned order by reference.
Dan Gohmanf06c8352008-09-30 18:30:35 +00005786unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengc384d6c2006-08-02 22:00:34 +00005787
Dan Gohmanf06c8352008-09-30 18:30:35 +00005788 unsigned DAGSize = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00005789
Dan Gohmanf06c8352008-09-30 18:30:35 +00005790 // SortedPos tracks the progress of the algorithm. Nodes before it are
5791 // sorted, nodes after it are unsorted. When the algorithm completes
5792 // it is at the end of the list.
5793 allnodes_iterator SortedPos = allnodes_begin();
5794
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00005795 // Visit all the nodes. Move nodes with no operands to the front of
5796 // the list immediately. Annotate nodes that do have operands with their
Dan Gohmanf06c8352008-09-30 18:30:35 +00005797 // operand count. Before we do this, the Node Id fields of the nodes
5798 // may contain arbitrary values. After, the Node Id fields for nodes
5799 // before SortedPos will contain the topological sort index, and the
5800 // Node Id fields for nodes At SortedPos and after will contain the
5801 // count of outstanding operands.
5802 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
5803 SDNode *N = I++;
David Greenecf495bc2010-01-20 20:13:31 +00005804 checkForCycles(N);
Dan Gohmanf06c8352008-09-30 18:30:35 +00005805 unsigned Degree = N->getNumOperands();
5806 if (Degree == 0) {
5807 // A node with no uses, add it to the result array immediately.
5808 N->setNodeId(DAGSize++);
5809 allnodes_iterator Q = N;
5810 if (Q != SortedPos)
5811 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
David Greene221925e2010-01-20 00:59:23 +00005812 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohmanf06c8352008-09-30 18:30:35 +00005813 ++SortedPos;
5814 } else {
5815 // Temporarily use the Node Id as scratch space for the degree count.
5816 N->setNodeId(Degree);
Evan Chenge6f35d82006-08-01 08:20:41 +00005817 }
5818 }
5819
Chad Rosierf496dea2012-05-21 17:13:41 +00005820 // Visit all the nodes. As we iterate, move nodes into sorted order,
Dan Gohmanf06c8352008-09-30 18:30:35 +00005821 // such that by the time the end is reached all nodes will be sorted.
5822 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
5823 SDNode *N = I;
David Greenecf495bc2010-01-20 20:13:31 +00005824 checkForCycles(N);
David Greene221925e2010-01-20 00:59:23 +00005825 // N is in sorted position, so all its uses have one less operand
5826 // that needs to be sorted.
Dan Gohmanf06c8352008-09-30 18:30:35 +00005827 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
5828 UI != UE; ++UI) {
5829 SDNode *P = *UI;
5830 unsigned Degree = P->getNodeId();
David Greene221925e2010-01-20 00:59:23 +00005831 assert(Degree != 0 && "Invalid node degree");
Dan Gohmanf06c8352008-09-30 18:30:35 +00005832 --Degree;
5833 if (Degree == 0) {
5834 // All of P's operands are sorted, so P may sorted now.
5835 P->setNodeId(DAGSize++);
5836 if (P != SortedPos)
5837 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
David Greene221925e2010-01-20 00:59:23 +00005838 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohmanf06c8352008-09-30 18:30:35 +00005839 ++SortedPos;
5840 } else {
5841 // Update P's outstanding operand count.
5842 P->setNodeId(Degree);
5843 }
5844 }
David Greene221925e2010-01-20 00:59:23 +00005845 if (I == SortedPos) {
David Greene39143702010-02-09 23:03:05 +00005846#ifndef NDEBUG
5847 SDNode *S = ++I;
5848 dbgs() << "Overran sorted position:\n";
David Greene221925e2010-01-20 00:59:23 +00005849 S->dumprFull();
David Greene39143702010-02-09 23:03:05 +00005850#endif
5851 llvm_unreachable(0);
David Greene221925e2010-01-20 00:59:23 +00005852 }
Dan Gohmanf06c8352008-09-30 18:30:35 +00005853 }
5854
5855 assert(SortedPos == AllNodes.end() &&
5856 "Topological sort incomplete!");
5857 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
5858 "First node in topological sort is not the entry token!");
5859 assert(AllNodes.front().getNodeId() == 0 &&
5860 "First node in topological sort has non-zero id!");
5861 assert(AllNodes.front().getNumOperands() == 0 &&
5862 "First node in topological sort has operands!");
5863 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
5864 "Last node in topologic sort has unexpected id!");
5865 assert(AllNodes.back().use_empty() &&
5866 "Last node in topologic sort has users!");
Dan Gohman3ebd0ee2008-11-21 19:10:41 +00005867 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohmanf06c8352008-09-30 18:30:35 +00005868 return DAGSize;
Evan Chenge6f35d82006-08-01 08:20:41 +00005869}
5870
Evan Chengbfcb3052010-03-25 01:38:16 +00005871/// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
5872/// value is produced by SD.
Dale Johannesenfdb42fa2010-04-26 20:06:49 +00005873void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) {
5874 DbgInfo->add(DB, SD, isParameter);
Evan Chengbfcb3052010-03-25 01:38:16 +00005875 if (SD)
5876 SD->setHasDebugValue(true);
Dale Johannesenbfdf7f32010-03-10 22:13:47 +00005877}
Evan Cheng091cba12006-07-27 06:39:06 +00005878
Devang Patela2e868d2011-01-25 23:27:42 +00005879/// TransferDbgValues - Transfer SDDbgValues.
5880void SelectionDAG::TransferDbgValues(SDValue From, SDValue To) {
5881 if (From == To || !From.getNode()->getHasDebugValue())
5882 return;
5883 SDNode *FromNode = From.getNode();
5884 SDNode *ToNode = To.getNode();
Benjamin Kramer22a54c12011-06-18 13:13:44 +00005885 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode);
Devang Patela778f5c2011-02-18 22:43:42 +00005886 SmallVector<SDDbgValue *, 2> ClonedDVs;
Benjamin Kramer22a54c12011-06-18 13:13:44 +00005887 for (ArrayRef<SDDbgValue *>::iterator I = DVs.begin(), E = DVs.end();
Devang Patela2e868d2011-01-25 23:27:42 +00005888 I != E; ++I) {
Devang Patela778f5c2011-02-18 22:43:42 +00005889 SDDbgValue *Dbg = *I;
5890 if (Dbg->getKind() == SDDbgValue::SDNODE) {
5891 SDDbgValue *Clone = getDbgValue(Dbg->getMDPtr(), ToNode, To.getResNo(),
5892 Dbg->getOffset(), Dbg->getDebugLoc(),
5893 Dbg->getOrder());
5894 ClonedDVs.push_back(Clone);
Devang Patela2e868d2011-01-25 23:27:42 +00005895 }
5896 }
Craig Topperf22fd3f2013-07-03 05:11:49 +00005897 for (SmallVectorImpl<SDDbgValue *>::iterator I = ClonedDVs.begin(),
Devang Patela778f5c2011-02-18 22:43:42 +00005898 E = ClonedDVs.end(); I != E; ++I)
5899 AddDbgValue(*I, ToNode, false);
Devang Patela2e868d2011-01-25 23:27:42 +00005900}
5901
Jim Laskey58b968b2005-08-17 20:08:02 +00005902//===----------------------------------------------------------------------===//
5903// SDNode Class
5904//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00005905
Chris Lattner48b85922007-02-04 02:41:42 +00005906HandleSDNode::~HandleSDNode() {
Dan Gohman0fe9c6e2008-07-07 20:57:48 +00005907 DropOperands();
Chris Lattner48b85922007-02-04 02:41:42 +00005908}
5909
Andrew Trickac6d9be2013-05-25 02:42:55 +00005910GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
5911 DebugLoc DL, const GlobalValue *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00005912 EVT VT, int64_t o, unsigned char TF)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005913 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
Dan Gohman383b5f62010-04-17 15:32:28 +00005914 TheGlobal = GA;
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00005915}
Chris Lattner48b85922007-02-04 02:41:42 +00005916
Andrew Trickac6d9be2013-05-25 02:42:55 +00005917MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
5918 EVT memvt, MachineMemOperand *mmo)
5919 : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
David Greene1157f792010-02-17 20:21:42 +00005920 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005921 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohmanc76909a2009-09-25 20:36:54 +00005922 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
David Greene1157f792010-02-17 20:21:42 +00005923 assert(isNonTemporal() == MMO->isNonTemporal() &&
5924 "Non-temporal encoding error!");
Dan Gohmanc76909a2009-09-25 20:36:54 +00005925 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Dale Johannesen3edb43e2009-01-28 21:18:29 +00005926}
5927
Andrew Trickac6d9be2013-05-25 02:42:55 +00005928MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005929 const SDValue *Ops, unsigned NumOps, EVT memvt,
Dan Gohmanc76909a2009-09-25 20:36:54 +00005930 MachineMemOperand *mmo)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005931 : SDNode(Opc, Order, dl, VTs, Ops, NumOps),
Dan Gohmanc76909a2009-09-25 20:36:54 +00005932 MemoryVT(memvt), MMO(mmo) {
David Greene1157f792010-02-17 20:21:42 +00005933 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005934 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohmanc76909a2009-09-25 20:36:54 +00005935 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
5936 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Mon P Wang28873102008-06-25 08:15:39 +00005937}
5938
Jim Laskey583bd472006-10-27 23:46:08 +00005939/// Profile - Gather unique data for the node.
5940///
Dan Gohmanb8d2f552008-08-20 15:58:01 +00005941void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskey583bd472006-10-27 23:46:08 +00005942 AddNodeIDNode(ID, this);
5943}
5944
Owen Andersond8110fb2009-08-25 22:27:22 +00005945namespace {
5946 struct EVTArray {
5947 std::vector<EVT> VTs;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005948
Owen Andersond8110fb2009-08-25 22:27:22 +00005949 EVTArray() {
5950 VTs.reserve(MVT::LAST_VALUETYPE);
5951 for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
5952 VTs.push_back(MVT((MVT::SimpleValueType)i));
5953 }
5954 };
5955}
5956
Owen Andersone50ed302009-08-10 22:56:29 +00005957static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs;
Owen Andersond8110fb2009-08-25 22:27:22 +00005958static ManagedStatic<EVTArray> SimpleVTArray;
Chris Lattner895a55e2009-08-22 04:07:34 +00005959static ManagedStatic<sys::SmartMutex<true> > VTMutex;
Owen Andersonb4459082009-06-25 17:09:00 +00005960
Chris Lattnera3255112005-11-08 23:30:28 +00005961/// getValueTypeList - Return a pointer to the specified value type.
5962///
Owen Andersone50ed302009-08-10 22:56:29 +00005963const EVT *SDNode::getValueTypeList(EVT VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005964 if (VT.isExtended()) {
Owen Anderson02b10342009-08-22 06:32:36 +00005965 sys::SmartScopedLock<true> Lock(*VTMutex);
Owen Andersonb4459082009-06-25 17:09:00 +00005966 return &(*EVTs->insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00005967 } else {
Duncan Sandscdfad362010-11-03 12:17:33 +00005968 assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE &&
Duncan Sandsad017dc2010-05-10 04:54:28 +00005969 "Value type out of range!");
Owen Andersond8110fb2009-08-25 22:27:22 +00005970 return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
Duncan Sandsaf47b112007-10-16 09:56:48 +00005971 }
Chris Lattnera3255112005-11-08 23:30:28 +00005972}
Duncan Sandsaf47b112007-10-16 09:56:48 +00005973
Chris Lattner5c884562005-01-12 18:37:47 +00005974/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
5975/// indicated value. This method ignores uses of other values defined by this
5976/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00005977bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00005978 assert(Value < getNumValues() && "Bad value!");
5979
Roman Levensteindc1adac2008-04-07 10:06:32 +00005980 // TODO: Only iterate over uses of a given value of the node
5981 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Dan Gohmane7852d02009-01-26 04:35:06 +00005982 if (UI.getUse().getResNo() == Value) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00005983 if (NUses == 0)
5984 return false;
5985 --NUses;
5986 }
Chris Lattner5c884562005-01-12 18:37:47 +00005987 }
5988
5989 // Found exactly the right number of uses?
5990 return NUses == 0;
5991}
5992
5993
Evan Cheng33d55952007-08-02 05:29:38 +00005994/// hasAnyUseOfValue - Return true if there are any use of the indicated
5995/// value. This method ignores uses of other values defined by this operation.
5996bool SDNode::hasAnyUseOfValue(unsigned Value) const {
5997 assert(Value < getNumValues() && "Bad value!");
5998
Dan Gohman1373c1c2008-07-09 22:39:01 +00005999 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Dan Gohmane7852d02009-01-26 04:35:06 +00006000 if (UI.getUse().getResNo() == Value)
Dan Gohman1373c1c2008-07-09 22:39:01 +00006001 return true;
Evan Cheng33d55952007-08-02 05:29:38 +00006002
6003 return false;
6004}
6005
6006
Dan Gohman2a629952008-07-27 18:06:42 +00006007/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00006008///
Dan Gohman2a629952008-07-27 18:06:42 +00006009bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00006010 bool Seen = false;
6011 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006012 SDNode *User = *I;
Evan Cheng4ee62112006-02-05 06:29:23 +00006013 if (User == this)
6014 Seen = true;
6015 else
6016 return false;
6017 }
6018
6019 return Seen;
6020}
6021
Evan Chenge6e97e62006-11-03 07:31:32 +00006022/// isOperand - Return true if this node is an operand of N.
6023///
Dan Gohman475871a2008-07-27 21:46:04 +00006024bool SDValue::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00006025 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
6026 if (*this == N->getOperand(i))
6027 return true;
6028 return false;
6029}
6030
Evan Cheng917be682008-03-04 00:41:45 +00006031bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00006032 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Dan Gohmane7852d02009-01-26 04:35:06 +00006033 if (this == N->OperandList[i].getNode())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00006034 return true;
6035 return false;
6036}
Evan Cheng4ee62112006-02-05 06:29:23 +00006037
Chris Lattner572dee72008-01-16 05:49:24 +00006038/// reachesChainWithoutSideEffects - Return true if this operand (which must
Scott Michelfdc40a02009-02-17 22:15:04 +00006039/// be a chain) reaches the specified operand without crossing any
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006040/// side-effecting instructions on any chain path. In practice, this looks
6041/// through token factors and non-volatile loads. In order to remain efficient,
Owen Anderson14ac1dd2010-09-18 04:45:14 +00006042/// this only looks a couple of nodes in, it does not do an exhaustive search.
Scott Michelfdc40a02009-02-17 22:15:04 +00006043bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00006044 unsigned Depth) const {
6045 if (*this == Dest) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00006046
Chris Lattner572dee72008-01-16 05:49:24 +00006047 // Don't search too deeply, we just want to be able to see through
6048 // TokenFactor's etc.
6049 if (Depth == 0) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006050
Chris Lattner572dee72008-01-16 05:49:24 +00006051 // If this is a token factor, all inputs to the TF happen in parallel. If any
Owen Anderson14ac1dd2010-09-18 04:45:14 +00006052 // of the operands of the TF does not reach dest, then we cannot do the xform.
Chris Lattner572dee72008-01-16 05:49:24 +00006053 if (getOpcode() == ISD::TokenFactor) {
6054 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Anderson14ac1dd2010-09-18 04:45:14 +00006055 if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
6056 return false;
6057 return true;
Chris Lattner572dee72008-01-16 05:49:24 +00006058 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006059
Chris Lattner572dee72008-01-16 05:49:24 +00006060 // Loads don't have side effects, look through them.
6061 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
6062 if (!Ld->isVolatile())
6063 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
6064 }
6065 return false;
6066}
6067
Lang Hames944520f2011-07-07 04:31:51 +00006068/// hasPredecessor - Return true if N is a predecessor of this node.
6069/// N is either an operand of this node, or can be reached by recursively
6070/// traversing up the operands.
6071/// NOTE: This is an expensive method. Use it carefully.
6072bool SDNode::hasPredecessor(const SDNode *N) const {
6073 SmallPtrSet<const SDNode *, 32> Visited;
6074 SmallVector<const SDNode *, 16> Worklist;
6075 return hasPredecessorHelper(N, Visited, Worklist);
6076}
Dan Gohman6688d612009-10-28 03:44:30 +00006077
Craig Toppera0ec3f92013-07-14 04:42:23 +00006078bool
6079SDNode::hasPredecessorHelper(const SDNode *N,
6080 SmallPtrSet<const SDNode *, 32> &Visited,
6081 SmallVectorImpl<const SDNode *> &Worklist) const {
Lang Hames944520f2011-07-07 04:31:51 +00006082 if (Visited.empty()) {
6083 Worklist.push_back(this);
6084 } else {
6085 // Take a look in the visited set. If we've already encountered this node
6086 // we needn't search further.
6087 if (Visited.count(N))
6088 return true;
6089 }
6090
6091 // Haven't visited N yet. Continue the search.
6092 while (!Worklist.empty()) {
6093 const SDNode *M = Worklist.pop_back_val();
6094 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
6095 SDNode *Op = M->getOperand(i).getNode();
Dan Gohman6688d612009-10-28 03:44:30 +00006096 if (Visited.insert(Op))
6097 Worklist.push_back(Op);
Lang Hames944520f2011-07-07 04:31:51 +00006098 if (Op == N)
6099 return true;
Dan Gohman6688d612009-10-28 03:44:30 +00006100 }
Lang Hames944520f2011-07-07 04:31:51 +00006101 }
Dan Gohman6688d612009-10-28 03:44:30 +00006102
6103 return false;
Evan Chengc5fc57d2006-11-03 03:05:24 +00006104}
6105
Evan Chengc5484282006-10-04 00:56:09 +00006106uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
6107 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006108 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Chengc5484282006-10-04 00:56:09 +00006109}
6110
Mon P Wangcd6e7252009-11-30 02:42:02 +00006111SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
6112 assert(N->getNumValues() == 1 &&
6113 "Can't unroll a vector with multiple results!");
6114
6115 EVT VT = N->getValueType(0);
6116 unsigned NE = VT.getVectorNumElements();
6117 EVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00006118 SDLoc dl(N);
Mon P Wangcd6e7252009-11-30 02:42:02 +00006119
6120 SmallVector<SDValue, 8> Scalars;
6121 SmallVector<SDValue, 4> Operands(N->getNumOperands());
6122
6123 // If ResNE is 0, fully unroll the vector op.
6124 if (ResNE == 0)
6125 ResNE = NE;
6126 else if (NE > ResNE)
6127 NE = ResNE;
6128
6129 unsigned i;
6130 for (i= 0; i != NE; ++i) {
Bill Wendlingd71bb562010-04-30 22:19:17 +00006131 for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
Mon P Wangcd6e7252009-11-30 02:42:02 +00006132 SDValue Operand = N->getOperand(j);
6133 EVT OperandVT = Operand.getValueType();
6134 if (OperandVT.isVector()) {
6135 // A vector operand; extract a single element.
Bill Wendlingba54bca2013-06-19 21:36:55 +00006136 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wangcd6e7252009-11-30 02:42:02 +00006137 EVT OperandEltVT = OperandVT.getVectorElementType();
6138 Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl,
6139 OperandEltVT,
6140 Operand,
Tom Stellard425b76c2013-08-05 22:22:01 +00006141 getConstant(i, TLI->getVectorIdxTy()));
Mon P Wangcd6e7252009-11-30 02:42:02 +00006142 } else {
6143 // A scalar operand; just use it as is.
6144 Operands[j] = Operand;
6145 }
6146 }
6147
6148 switch (N->getOpcode()) {
6149 default:
6150 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6151 &Operands[0], Operands.size()));
6152 break;
Nadav Rotemaec58612011-09-13 19:17:42 +00006153 case ISD::VSELECT:
6154 Scalars.push_back(getNode(ISD::SELECT, dl, EltVT,
6155 &Operands[0], Operands.size()));
6156 break;
Mon P Wangcd6e7252009-11-30 02:42:02 +00006157 case ISD::SHL:
6158 case ISD::SRA:
6159 case ISD::SRL:
6160 case ISD::ROTL:
6161 case ISD::ROTR:
6162 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
Owen Anderson6154f6c2011-03-07 18:29:47 +00006163 getShiftAmountOperand(Operands[0].getValueType(),
6164 Operands[1])));
Mon P Wangcd6e7252009-11-30 02:42:02 +00006165 break;
Dan Gohmand1996362010-01-09 02:13:55 +00006166 case ISD::SIGN_EXTEND_INREG:
6167 case ISD::FP_ROUND_INREG: {
6168 EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
6169 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6170 Operands[0],
6171 getValueType(ExtVT)));
6172 }
Mon P Wangcd6e7252009-11-30 02:42:02 +00006173 }
6174 }
6175
6176 for (; i < ResNE; ++i)
6177 Scalars.push_back(getUNDEF(EltVT));
6178
6179 return getNode(ISD::BUILD_VECTOR, dl,
6180 EVT::getVectorVT(*getContext(), EltVT, ResNE),
6181 &Scalars[0], Scalars.size());
6182}
6183
Evan Cheng64fa4a92009-12-09 01:36:00 +00006184
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006185/// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a
6186/// location that is 'Dist' units away from the location that the 'Base' load
Evan Cheng64fa4a92009-12-09 01:36:00 +00006187/// is loading from.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006188bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base,
Evan Cheng64fa4a92009-12-09 01:36:00 +00006189 unsigned Bytes, int Dist) const {
6190 if (LD->getChain() != Base->getChain())
6191 return false;
6192 EVT VT = LD->getValueType(0);
6193 if (VT.getSizeInBits() / 8 != Bytes)
6194 return false;
6195
6196 SDValue Loc = LD->getOperand(1);
6197 SDValue BaseLoc = Base->getOperand(1);
6198 if (Loc.getOpcode() == ISD::FrameIndex) {
6199 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6200 return false;
6201 const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo();
6202 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6203 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6204 int FS = MFI->getObjectSize(FI);
6205 int BFS = MFI->getObjectSize(BFI);
6206 if (FS != BFS || FS != (int)Bytes) return false;
6207 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6208 }
Chris Lattner0a9481f2011-02-13 22:25:43 +00006209
6210 // Handle X+C
6211 if (isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6212 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6213 return true;
Evan Cheng64fa4a92009-12-09 01:36:00 +00006214
Dan Gohman46510a72010-04-15 01:51:59 +00006215 const GlobalValue *GV1 = NULL;
6216 const GlobalValue *GV2 = NULL;
Evan Cheng64fa4a92009-12-09 01:36:00 +00006217 int64_t Offset1 = 0;
6218 int64_t Offset2 = 0;
Bill Wendlingba54bca2013-06-19 21:36:55 +00006219 const TargetLowering *TLI = TM.getTargetLowering();
6220 bool isGA1 = TLI->isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6221 bool isGA2 = TLI->isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
Evan Cheng64fa4a92009-12-09 01:36:00 +00006222 if (isGA1 && isGA2 && GV1 == GV2)
6223 return Offset1 == (Offset2 + Dist*Bytes);
6224 return false;
6225}
6226
6227
Evan Chengf2dc5c72009-12-09 01:04:59 +00006228/// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
6229/// it cannot be inferred.
Evan Cheng7ced2e02009-12-09 01:10:37 +00006230unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
Evan Cheng7bd64782009-12-09 01:53:58 +00006231 // If this is a GlobalAddress + cst, return the alignment.
Dan Gohman46510a72010-04-15 01:51:59 +00006232 const GlobalValue *GV;
Evan Cheng7bd64782009-12-09 01:53:58 +00006233 int64_t GVOffset = 0;
Bill Wendlingba54bca2013-06-19 21:36:55 +00006234 const TargetLowering *TLI = TM.getTargetLowering();
6235 if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
6236 unsigned PtrWidth = TLI->getPointerTy().getSizeInBits();
Eli Friedmanc4c2a022011-11-28 22:48:22 +00006237 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00006238 llvm::ComputeMaskedBits(const_cast<GlobalValue*>(GV), KnownZero, KnownOne,
Bill Wendlingba54bca2013-06-19 21:36:55 +00006239 TLI->getDataLayout());
Eli Friedmanc4c2a022011-11-28 22:48:22 +00006240 unsigned AlignBits = KnownZero.countTrailingOnes();
6241 unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0;
6242 if (Align)
6243 return MinAlign(Align, GVOffset);
Evan Cheng255f20f2010-04-01 06:04:33 +00006244 }
Evan Cheng7bd64782009-12-09 01:53:58 +00006245
Evan Chengf2dc5c72009-12-09 01:04:59 +00006246 // If this is a direct reference to a stack slot, use information about the
6247 // stack slot's alignment.
6248 int FrameIdx = 1 << 31;
6249 int64_t FrameOffset = 0;
6250 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
6251 FrameIdx = FI->getIndex();
Chris Lattner0a9481f2011-02-13 22:25:43 +00006252 } else if (isBaseWithConstantOffset(Ptr) &&
Evan Chengf2dc5c72009-12-09 01:04:59 +00006253 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
Chris Lattner0a9481f2011-02-13 22:25:43 +00006254 // Handle FI+Cst
Evan Chengf2dc5c72009-12-09 01:04:59 +00006255 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6256 FrameOffset = Ptr.getConstantOperandVal(1);
6257 }
6258
6259 if (FrameIdx != (1 << 31)) {
Evan Chengf2dc5c72009-12-09 01:04:59 +00006260 const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo();
Evan Chengde2ace12009-12-09 01:17:24 +00006261 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
6262 FrameOffset);
Evan Chengde2ace12009-12-09 01:17:24 +00006263 return FIInfoAlign;
Evan Chengf2dc5c72009-12-09 01:04:59 +00006264 }
6265
6266 return 0;
6267}
6268
Sanjiv Guptaa3518a12009-04-29 04:43:24 +00006269// getAddressSpace - Return the address space this GlobalAddress belongs to.
6270unsigned GlobalAddressSDNode::getAddressSpace() const {
6271 return getGlobal()->getType()->getAddressSpace();
6272}
6273
6274
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006275Type *ConstantPoolSDNode::getType() const {
Evan Chengd6594ae2006-09-12 21:00:35 +00006276 if (isMachineConstantPoolEntry())
6277 return Val.MachineCPVal->getType();
6278 return Val.ConstVal->getType();
6279}
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006280
Bob Wilson24e338e2009-03-02 23:24:16 +00006281bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
6282 APInt &SplatUndef,
6283 unsigned &SplatBitSize,
6284 bool &HasAnyUndefs,
Dale Johannesen1e608812009-11-13 01:45:18 +00006285 unsigned MinSplatBits,
6286 bool isBigEndian) {
Owen Andersone50ed302009-08-10 22:56:29 +00006287 EVT VT = getValueType(0);
Bob Wilson24e338e2009-03-02 23:24:16 +00006288 assert(VT.isVector() && "Expected a vector type");
6289 unsigned sz = VT.getSizeInBits();
6290 if (MinSplatBits > sz)
6291 return false;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006292
Bob Wilson24e338e2009-03-02 23:24:16 +00006293 SplatValue = APInt(sz, 0);
6294 SplatUndef = APInt(sz, 0);
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006295
Bob Wilson24e338e2009-03-02 23:24:16 +00006296 // Get the bits. Bits with undefined values (when the corresponding element
6297 // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
6298 // in SplatValue. If any of the values are not constant, give up and return
6299 // false.
6300 unsigned int nOps = getNumOperands();
6301 assert(nOps > 0 && "isConstantSplat has 0-size build vector");
6302 unsigned EltBitSize = VT.getVectorElementType().getSizeInBits();
Dale Johannesen1e608812009-11-13 01:45:18 +00006303
6304 for (unsigned j = 0; j < nOps; ++j) {
6305 unsigned i = isBigEndian ? nOps-1-j : j;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006306 SDValue OpVal = getOperand(i);
Dale Johannesen1e608812009-11-13 01:45:18 +00006307 unsigned BitPos = j * EltBitSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006308
Bob Wilson24e338e2009-03-02 23:24:16 +00006309 if (OpVal.getOpcode() == ISD::UNDEF)
Dale Johannesen1e608812009-11-13 01:45:18 +00006310 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
Bob Wilson24e338e2009-03-02 23:24:16 +00006311 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
Jay Foad40f8f622010-12-07 08:25:19 +00006312 SplatValue |= CN->getAPIntValue().zextOrTrunc(EltBitSize).
Dan Gohman58c25872010-04-12 02:24:01 +00006313 zextOrTrunc(sz) << BitPos;
Bob Wilson24e338e2009-03-02 23:24:16 +00006314 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
Bob Wilsond344b882009-03-04 17:47:01 +00006315 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;
Bob Wilson24e338e2009-03-02 23:24:16 +00006316 else
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006317 return false;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006318 }
6319
Bob Wilson24e338e2009-03-02 23:24:16 +00006320 // The build_vector is all constants or undefs. Find the smallest element
6321 // size that splats the vector.
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006322
Bob Wilson24e338e2009-03-02 23:24:16 +00006323 HasAnyUndefs = (SplatUndef != 0);
6324 while (sz > 8) {
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006325
Bob Wilson24e338e2009-03-02 23:24:16 +00006326 unsigned HalfSize = sz / 2;
Jay Foad40f8f622010-12-07 08:25:19 +00006327 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
6328 APInt LowValue = SplatValue.trunc(HalfSize);
6329 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
6330 APInt LowUndef = SplatUndef.trunc(HalfSize);
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006331
Bob Wilson24e338e2009-03-02 23:24:16 +00006332 // If the two halves do not match (ignoring undef bits), stop here.
6333 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
6334 MinSplatBits > HalfSize)
6335 break;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006336
Bob Wilson24e338e2009-03-02 23:24:16 +00006337 SplatValue = HighValue | LowValue;
6338 SplatUndef = HighUndef & LowUndef;
Eric Christopher4d7c18c2009-08-22 00:40:45 +00006339
Bob Wilson24e338e2009-03-02 23:24:16 +00006340 sz = HalfSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006341 }
6342
Bob Wilson24e338e2009-03-02 23:24:16 +00006343 SplatBitSize = sz;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00006344 return true;
6345}
Nate Begeman9008ca62009-04-27 18:41:29 +00006346
Owen Andersone50ed302009-08-10 22:56:29 +00006347bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00006348 // Find the first non-undef value in the shuffle mask.
6349 unsigned i, e;
6350 for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
6351 /* search */;
6352
Nate Begemana6415752009-04-29 18:13:31 +00006353 assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
Eric Christopher4d7c18c2009-08-22 00:40:45 +00006354
Nate Begeman5a5ca152009-04-29 05:20:52 +00006355 // Make sure all remaining elements are either undef or the same as the first
6356 // non-undef value.
6357 for (int Idx = Mask[i]; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00006358 if (Mask[i] >= 0 && Mask[i] != Idx)
6359 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00006360 return true;
6361}
David Greenecf495bc2010-01-20 20:13:31 +00006362
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006363#ifdef XDEBUG
David Greenecf495bc2010-01-20 20:13:31 +00006364static void checkForCyclesHelper(const SDNode *N,
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006365 SmallPtrSet<const SDNode*, 32> &Visited,
6366 SmallPtrSet<const SDNode*, 32> &Checked) {
6367 // If this node has already been checked, don't check it again.
6368 if (Checked.count(N))
David Greenee3d97c72010-02-23 17:37:50 +00006369 return;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006370
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006371 // If a node has already been visited on this depth-first walk, reject it as
6372 // a cycle.
6373 if (!Visited.insert(N)) {
David Greenecf495bc2010-01-20 20:13:31 +00006374 dbgs() << "Offending node:\n";
6375 N->dumprFull();
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006376 errs() << "Detected cycle in SelectionDAG\n";
6377 abort();
David Greenecf495bc2010-01-20 20:13:31 +00006378 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006379
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006380 for(unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
6381 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006382
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006383 Checked.insert(N);
6384 Visited.erase(N);
David Greenecf495bc2010-01-20 20:13:31 +00006385}
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006386#endif
David Greenecf495bc2010-01-20 20:13:31 +00006387
6388void llvm::checkForCycles(const llvm::SDNode *N) {
6389#ifdef XDEBUG
6390 assert(N && "Checking nonexistant SDNode");
Chris Lattner46ca5ef2010-02-24 21:34:04 +00006391 SmallPtrSet<const SDNode*, 32> visited;
6392 SmallPtrSet<const SDNode*, 32> checked;
David Greenee3d97c72010-02-23 17:37:50 +00006393 checkForCyclesHelper(N, visited, checked);
David Greenecf495bc2010-01-20 20:13:31 +00006394#endif
6395}
6396
6397void llvm::checkForCycles(const llvm::SelectionDAG *DAG) {
6398 checkForCycles(DAG->getRoot().getNode());
6399}