blob: e41d459f39d2bd4039c71ad3c3fcec3d6618127f [file] [log] [blame]
Chris Lattner061a1ea2005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner600d3082003-08-11 14:57:33 +00009//
Chris Lattner061a1ea2005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner600d3082003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
Bill Wendling6de55a02009-12-21 19:34:59 +000013
Chris Lattner600d3082003-08-11 14:57:33 +000014#include "llvm/CodeGen/SelectionDAG.h"
Evan Cheng00fd0b62010-03-14 19:56:39 +000015#include "SDNodeDbgValue.h"
Chandler Carruthed0881b2012-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"
21#include "llvm/Analysis/ValueTracking.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
23#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/CallingConv.h"
27#include "llvm/IR/Constants.h"
28#include "llvm/IR/DataLayout.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000029#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/DerivedTypes.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/GlobalAlias.h"
33#include "llvm/IR/GlobalVariable.h"
34#include "llvm/IR/Intrinsics.h"
Bill Wendlingbd092622008-09-30 21:22:07 +000035#include "llvm/Support/CommandLine.h"
David Greened93137d2010-01-05 01:24:36 +000036#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000037#include "llvm/Support/ErrorHandling.h"
Owen Anderson5defd562009-06-25 17:09:00 +000038#include "llvm/Support/ManagedStatic.h"
Chris Lattner0c19df42008-08-23 22:23:09 +000039#include "llvm/Support/MathExtras.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000040#include "llvm/Support/Mutex.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000041#include "llvm/Support/raw_ostream.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetIntrinsicInfo.h"
44#include "llvm/Target/TargetLowering.h"
45#include "llvm/Target/TargetMachine.h"
46#include "llvm/Target/TargetOptions.h"
47#include "llvm/Target/TargetRegisterInfo.h"
48#include "llvm/Target/TargetSelectionDAGInfo.h"
Jeff Cohen7d1670da2005-01-09 20:41:56 +000049#include <algorithm>
Jeff Cohencc08c832006-12-02 02:22:01 +000050#include <cmath>
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +000051
Chris Lattner560b5e42004-06-02 04:28:06 +000052using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000053
Chris Lattnera5a3eaf2006-08-15 19:11:05 +000054/// makeVTList - Return an instance of the SDVTList struct initialized with the
55/// specified members.
Owen Anderson53aa7a92009-08-10 22:56:29 +000056static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +000057 SDVTList Res = {VTs, NumVTs};
58 return Res;
59}
60
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +000061// Default null implementations of the callbacks.
62void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
63void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +000064
Jim Laskeyd66e6162005-08-17 20:08:02 +000065//===----------------------------------------------------------------------===//
66// ConstantFPSDNode Class
67//===----------------------------------------------------------------------===//
68
69/// isExactlyValue - We don't rely on operator== working on double values, as
70/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
71/// As such, this method can be used to do an exact bit-for-bit comparison of
72/// two floating point values.
Dale Johannesenb6d2bec2007-08-26 01:18:27 +000073bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dan Gohmanec270fb2008-09-12 18:08:03 +000074 return getValueAPF().bitwiseIsEqual(V);
Jim Laskeyd66e6162005-08-17 20:08:02 +000075}
76
Owen Anderson53aa7a92009-08-10 22:56:29 +000077bool ConstantFPSDNode::isValueValidForType(EVT VT,
Dale Johannesend246b2c2007-08-30 00:23:21 +000078 const APFloat& Val) {
Duncan Sands13237ac2008-06-06 12:08:01 +000079 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Scott Michelcf0da6c2009-02-17 22:15:04 +000080
Dale Johannesend246b2c2007-08-30 00:23:21 +000081 // convert modifies in place, so make a copy.
82 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +000083 bool losesInfo;
Tim Northover29178a32013-01-22 09:46:31 +000084 (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT),
85 APFloat::rmNearestTiesToEven,
Dale Johannesen4f0bd682008-10-09 23:00:39 +000086 &losesInfo);
87 return !losesInfo;
Dale Johannesend246b2c2007-08-30 00:23:21 +000088}
89
Jim Laskeyd66e6162005-08-17 20:08:02 +000090//===----------------------------------------------------------------------===//
Chris Lattnerc2d28112006-03-25 22:57:01 +000091// ISD Namespace
Jim Laskeyd66e6162005-08-17 20:08:02 +000092//===----------------------------------------------------------------------===//
Chris Lattnerfde3a212005-01-09 20:52:51 +000093
Evan Chengc70e33c2006-03-27 06:58:47 +000094/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattnerc2d28112006-03-25 22:57:01 +000095/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chengc70e33c2006-03-27 06:58:47 +000096bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner7e7ad592006-04-15 23:38:00 +000097 // Look through a bit convert.
Wesley Peck527da1b2010-11-23 03:31:01 +000098 if (N->getOpcode() == ISD::BITCAST)
Gabor Greiff304a7a2008-08-28 21:40:38 +000099 N = N->getOperand(0).getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000100
Evan Chengc70e33c2006-03-27 06:58:47 +0000101 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000102
Chris Lattnerc2d28112006-03-25 22:57:01 +0000103 unsigned i = 0, e = N->getNumOperands();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000104
Chris Lattnerc2d28112006-03-25 22:57:01 +0000105 // Skip over all of the undef values.
106 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
107 ++i;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000108
Chris Lattnerc2d28112006-03-25 22:57:01 +0000109 // Do not accept an all-undef vector.
110 if (i == e) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000111
Chris Lattnerc2d28112006-03-25 22:57:01 +0000112 // Do not accept build_vectors that aren't all constants or which have non-~0
Jim Grosbache13adc32012-03-21 17:48:04 +0000113 // elements. We have to be a bit careful here, as the type of the constant
114 // may not be the same as the type of the vector elements due to type
115 // legalization (the elements are promoted to a legal type for the target and
116 // a vector of a type may be legal when the base element type is not).
117 // We only want to check enough bits to cover the vector elements, because
118 // we care if the resultant vector is all ones, not whether the individual
119 // constants are.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000120 SDValue NotZero = N->getOperand(i);
Jim Grosbache13adc32012-03-21 17:48:04 +0000121 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
Jakub Staszakec5a2f22012-09-30 21:24:57 +0000122 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) {
123 if (CN->getAPIntValue().countTrailingOnes() < EltSize)
Evan Chengc70e33c2006-03-27 06:58:47 +0000124 return false;
Jakub Staszakec5a2f22012-09-30 21:24:57 +0000125 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) {
126 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
Dan Gohmanbd2fa562008-02-29 01:47:35 +0000127 return false;
Evan Chengc70e33c2006-03-27 06:58:47 +0000128 } else
Chris Lattnerc2d28112006-03-25 22:57:01 +0000129 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000130
Chris Lattnerc2d28112006-03-25 22:57:01 +0000131 // Okay, we have at least one ~0 value, check to see if the rest match or are
Jim Grosbache13adc32012-03-21 17:48:04 +0000132 // undefs. Even with the above element type twiddling, this should be OK, as
133 // the same type legalization should have applied to all the elements.
Chris Lattnerc2d28112006-03-25 22:57:01 +0000134 for (++i; i != e; ++i)
135 if (N->getOperand(i) != NotZero &&
136 N->getOperand(i).getOpcode() != ISD::UNDEF)
137 return false;
138 return true;
139}
140
141
Evan Chenga6789912006-03-26 09:50:58 +0000142/// isBuildVectorAllZeros - Return true if the specified node is a
143/// BUILD_VECTOR where all of the elements are 0 or undef.
144bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner7e7ad592006-04-15 23:38:00 +0000145 // Look through a bit convert.
Wesley Peck527da1b2010-11-23 03:31:01 +0000146 if (N->getOpcode() == ISD::BITCAST)
Gabor Greiff304a7a2008-08-28 21:40:38 +0000147 N = N->getOperand(0).getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000148
Evan Chenga6789912006-03-26 09:50:58 +0000149 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000150
Kevin Qin93d45ec2014-06-24 05:37:27 +0000151 bool IsAllUndef = true;
152 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i) {
153 if (N->getOperand(i).getOpcode() == ISD::UNDEF)
154 continue;
155 IsAllUndef = false;
156 // Do not accept build_vectors that aren't all constants or which have non-0
157 // elements. We have to be a bit careful here, as the type of the constant
158 // may not be the same as the type of the vector elements due to type
159 // legalization (the elements are promoted to a legal type for the target
160 // and a vector of a type may be legal when the base element type is not).
161 // We only want to check enough bits to cover the vector elements, because
162 // we care if the resultant vector is all zeros, not whether the individual
163 // constants are.
164 SDValue Zero = N->getOperand(i);
165 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
166 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Zero)) {
167 if (CN->getAPIntValue().countTrailingZeros() < EltSize)
168 return false;
169 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Zero)) {
170 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize)
171 return false;
172 } else
173 return false;
174 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000175
Evan Chengc70e33c2006-03-27 06:58:47 +0000176 // Do not accept an all-undef vector.
Kevin Qin93d45ec2014-06-24 05:37:27 +0000177 if (IsAllUndef)
Evan Chengc70e33c2006-03-27 06:58:47 +0000178 return false;
Evan Chengc70e33c2006-03-27 06:58:47 +0000179 return true;
Evan Chenga6789912006-03-26 09:50:58 +0000180}
181
Andrea Di Biagio46dcddb2013-12-27 20:20:28 +0000182/// \brief Return true if the specified node is a BUILD_VECTOR node of
183/// all ConstantSDNode or undef.
184bool ISD::isBuildVectorOfConstantSDNodes(const SDNode *N) {
185 if (N->getOpcode() != ISD::BUILD_VECTOR)
186 return false;
187
188 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
189 SDValue Op = N->getOperand(i);
190 if (Op.getOpcode() == ISD::UNDEF)
191 continue;
192 if (!isa<ConstantSDNode>(Op))
193 return false;
194 }
195 return true;
196}
197
Evan Cheng6200c222008-02-18 23:04:32 +0000198/// isScalarToVector - Return true if the specified node is a
199/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
200/// element is not an undef.
201bool ISD::isScalarToVector(const SDNode *N) {
202 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
203 return true;
204
205 if (N->getOpcode() != ISD::BUILD_VECTOR)
206 return false;
207 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
208 return false;
209 unsigned NumElems = N->getNumOperands();
Mon P Wang88ff56c2010-11-19 19:08:12 +0000210 if (NumElems == 1)
211 return false;
Evan Cheng6200c222008-02-18 23:04:32 +0000212 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000213 SDValue V = N->getOperand(i);
Evan Cheng6200c222008-02-18 23:04:32 +0000214 if (V.getOpcode() != ISD::UNDEF)
215 return false;
216 }
217 return true;
218}
219
Nadav Rotema62368c2012-07-15 08:38:23 +0000220/// allOperandsUndef - Return true if the node has at least one operand
221/// and all operands of the specified node are ISD::UNDEF.
222bool ISD::allOperandsUndef(const SDNode *N) {
223 // Return false if the node has no operands.
224 // This is "logically inconsistent" with the definition of "all" but
225 // is probably the desired behavior.
226 if (N->getNumOperands() == 0)
227 return false;
228
229 for (unsigned i = 0, e = N->getNumOperands(); i != e ; ++i)
230 if (N->getOperand(i).getOpcode() != ISD::UNDEF)
231 return false;
232
233 return true;
234}
235
Matt Arsenaultf9a995d2014-03-06 17:34:12 +0000236ISD::NodeType ISD::getExtForLoadExtType(ISD::LoadExtType ExtType) {
237 switch (ExtType) {
238 case ISD::EXTLOAD:
239 return ISD::ANY_EXTEND;
240 case ISD::SEXTLOAD:
241 return ISD::SIGN_EXTEND;
242 case ISD::ZEXTLOAD:
243 return ISD::ZERO_EXTEND;
244 default:
245 break;
246 }
247
248 llvm_unreachable("Invalid LoadExtType");
249}
250
Chris Lattner061a1ea2005-01-07 07:46:32 +0000251/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
252/// when given the operation for (X op Y).
253ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
254 // To perform this operation, we just need to swap the L and G bits of the
255 // operation.
256 unsigned OldL = (Operation >> 2) & 1;
257 unsigned OldG = (Operation >> 1) & 1;
258 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
259 (OldL << 1) | // New G bit
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000260 (OldG << 2)); // New L bit.
Chris Lattner061a1ea2005-01-07 07:46:32 +0000261}
262
263/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
264/// 'op' is a valid SetCC operation.
265ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
266 unsigned Operation = Op;
267 if (isInteger)
268 Operation ^= 7; // Flip L, G, E bits, but not U.
269 else
270 Operation ^= 15; // Flip all of the condition bits.
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000271
Chris Lattner061a1ea2005-01-07 07:46:32 +0000272 if (Operation > ISD::SETTRUE2)
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000273 Operation &= ~8; // Don't let N and U bits get set.
274
Chris Lattner061a1ea2005-01-07 07:46:32 +0000275 return ISD::CondCode(Operation);
276}
277
278
279/// isSignedOp - For an integer comparison, return 1 if the comparison is a
280/// signed operation and 2 if the result is an unsigned comparison. Return zero
281/// if the operation does not depend on the sign of the input (setne and seteq).
282static int isSignedOp(ISD::CondCode Opcode) {
283 switch (Opcode) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000284 default: llvm_unreachable("Illegal integer setcc operation!");
Chris Lattner061a1ea2005-01-07 07:46:32 +0000285 case ISD::SETEQ:
286 case ISD::SETNE: return 0;
287 case ISD::SETLT:
288 case ISD::SETLE:
289 case ISD::SETGT:
290 case ISD::SETGE: return 1;
291 case ISD::SETULT:
292 case ISD::SETULE:
293 case ISD::SETUGT:
294 case ISD::SETUGE: return 2;
295 }
296}
297
298/// getSetCCOrOperation - Return the result of a logical OR between different
299/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
300/// returns SETCC_INVALID if it is not possible to represent the resultant
301/// comparison.
302ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
303 bool isInteger) {
304 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
305 // Cannot fold a signed integer setcc with an unsigned integer setcc.
306 return ISD::SETCC_INVALID;
Misha Brukman835702a2005-04-21 22:36:52 +0000307
Chris Lattner061a1ea2005-01-07 07:46:32 +0000308 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukman835702a2005-04-21 22:36:52 +0000309
Chris Lattner061a1ea2005-01-07 07:46:32 +0000310 // If the N and U bits get set then the resultant comparison DOES suddenly
311 // care about orderedness, and is true when ordered.
312 if (Op > ISD::SETTRUE2)
Chris Lattner8c02c3f2006-05-12 17:03:46 +0000313 Op &= ~16; // Clear the U bit if the N bit is set.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000314
Chris Lattner8c02c3f2006-05-12 17:03:46 +0000315 // Canonicalize illegal integer setcc's.
316 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
317 Op = ISD::SETNE;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000318
Chris Lattner061a1ea2005-01-07 07:46:32 +0000319 return ISD::CondCode(Op);
320}
321
322/// getSetCCAndOperation - Return the result of a logical AND between different
323/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
324/// function returns zero if it is not possible to represent the resultant
325/// comparison.
326ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
327 bool isInteger) {
328 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
329 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukman835702a2005-04-21 22:36:52 +0000330 return ISD::SETCC_INVALID;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000331
332 // Combine all of the condition bits.
Chris Lattner393d96a2006-04-27 05:01:07 +0000333 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000334
Chris Lattner393d96a2006-04-27 05:01:07 +0000335 // Canonicalize illegal integer setcc's.
336 if (isInteger) {
337 switch (Result) {
338 default: break;
Chris Lattner710b3d52006-06-28 18:29:47 +0000339 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohman3ab94df2008-05-14 18:17:09 +0000340 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner710b3d52006-06-28 18:29:47 +0000341 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
342 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
343 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattner393d96a2006-04-27 05:01:07 +0000344 }
345 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000346
Chris Lattner393d96a2006-04-27 05:01:07 +0000347 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +0000348}
349
Jim Laskeyd66e6162005-08-17 20:08:02 +0000350//===----------------------------------------------------------------------===//
Jim Laskeyf576b422006-10-27 23:46:08 +0000351// SDNode Profile Support
352//===----------------------------------------------------------------------===//
353
Jim Laskeybd0f0882006-10-27 23:52:51 +0000354/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
355///
Jim Laskeyf576b422006-10-27 23:46:08 +0000356static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
357 ID.AddInteger(OpC);
358}
359
360/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
361/// solely with their pointer.
Dan Gohmand78c4002008-05-13 00:00:25 +0000362static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Scott Michelcf0da6c2009-02-17 22:15:04 +0000363 ID.AddPointer(VTList.VTs);
Jim Laskeyf576b422006-10-27 23:46:08 +0000364}
365
Jim Laskeybd0f0882006-10-27 23:52:51 +0000366/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
367///
Jim Laskeyf576b422006-10-27 23:46:08 +0000368static void AddNodeIDOperands(FoldingSetNodeID &ID,
Craig Topper8c0b4d02014-04-28 05:57:50 +0000369 ArrayRef<SDValue> Ops) {
370 for (auto& Op : Ops) {
371 ID.AddPointer(Op.getNode());
372 ID.AddInteger(Op.getResNo());
Chris Lattnerf17b4222007-02-04 07:28:00 +0000373 }
Jim Laskeyf576b422006-10-27 23:46:08 +0000374}
375
Dan Gohman768f2c92008-07-07 18:26:29 +0000376/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
377///
378static void AddNodeIDOperands(FoldingSetNodeID &ID,
Craig Topper8c0b4d02014-04-28 05:57:50 +0000379 ArrayRef<SDUse> Ops) {
380 for (auto& Op : Ops) {
381 ID.AddPointer(Op.getNode());
382 ID.AddInteger(Op.getResNo());
Dan Gohman768f2c92008-07-07 18:26:29 +0000383 }
384}
385
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +0000386static void AddBinaryNodeIDCustom(FoldingSetNodeID &ID, bool nuw, bool nsw,
387 bool exact) {
388 ID.AddBoolean(nuw);
389 ID.AddBoolean(nsw);
390 ID.AddBoolean(exact);
391}
392
393/// AddBinaryNodeIDCustom - Add BinarySDNodes special infos
394static void AddBinaryNodeIDCustom(FoldingSetNodeID &ID, unsigned Opcode,
395 bool nuw, bool nsw, bool exact) {
396 if (isBinOpWithFlags(Opcode))
397 AddBinaryNodeIDCustom(ID, nuw, nsw, exact);
398}
399
Craig Topper633d99b2014-04-27 23:22:43 +0000400static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned short OpC,
401 SDVTList VTList, ArrayRef<SDValue> OpList) {
Jim Laskeyf576b422006-10-27 23:46:08 +0000402 AddNodeIDOpcode(ID, OpC);
403 AddNodeIDValueTypes(ID, VTList);
Craig Topper8c0b4d02014-04-28 05:57:50 +0000404 AddNodeIDOperands(ID, OpList);
Jim Laskeyf576b422006-10-27 23:46:08 +0000405}
406
Duncan Sands835bdca2008-10-27 15:30:53 +0000407/// AddNodeIDCustom - If this is an SDNode with special info, add this info to
408/// the NodeID data.
409static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000410 switch (N->getOpcode()) {
Chris Lattner8e34f982009-06-25 21:21:14 +0000411 case ISD::TargetExternalSymbol:
412 case ISD::ExternalSymbol:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000413 llvm_unreachable("Should only be used on nodes with operands");
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000414 default: break; // Normal nodes don't need extra info.
415 case ISD::TargetConstant:
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000416 case ISD::Constant: {
417 const ConstantSDNode *C = cast<ConstantSDNode>(N);
418 ID.AddPointer(C->getConstantIntValue());
419 ID.AddBoolean(C->isOpaque());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000420 break;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000421 }
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000422 case ISD::TargetConstantFP:
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000423 case ISD::ConstantFP: {
Dan Gohmanec270fb2008-09-12 18:08:03 +0000424 ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000425 break;
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000426 }
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000427 case ISD::TargetGlobalAddress:
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000428 case ISD::GlobalAddress:
429 case ISD::TargetGlobalTLSAddress:
430 case ISD::GlobalTLSAddress: {
Dan Gohman2da2bed2008-08-20 15:58:01 +0000431 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000432 ID.AddPointer(GA->getGlobal());
433 ID.AddInteger(GA->getOffset());
Chris Lattner8e34f982009-06-25 21:21:14 +0000434 ID.AddInteger(GA->getTargetFlags());
Pete Cooper91244262012-07-30 20:23:19 +0000435 ID.AddInteger(GA->getAddressSpace());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000436 break;
437 }
438 case ISD::BasicBlock:
439 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
440 break;
441 case ISD::Register:
442 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
443 break;
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +0000444 case ISD::RegisterMask:
445 ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask());
446 break;
Dan Gohman2d489b52008-02-06 22:27:42 +0000447 case ISD::SRCVALUE:
448 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
449 break;
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000450 case ISD::FrameIndex:
451 case ISD::TargetFrameIndex:
452 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
453 break;
454 case ISD::JumpTable:
455 case ISD::TargetJumpTable:
456 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
Chris Lattnerb3586b62009-06-25 21:35:31 +0000457 ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000458 break;
459 case ISD::ConstantPool:
460 case ISD::TargetConstantPool: {
Dan Gohman2da2bed2008-08-20 15:58:01 +0000461 const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000462 ID.AddInteger(CP->getAlignment());
463 ID.AddInteger(CP->getOffset());
464 if (CP->isMachineConstantPoolEntry())
Jim Grosbachaf136f72011-09-27 20:59:33 +0000465 CP->getMachineCPVal()->addSelectionDAGCSEId(ID);
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000466 else
467 ID.AddPointer(CP->getConstVal());
Chris Lattnerb3586b62009-06-25 21:35:31 +0000468 ID.AddInteger(CP->getTargetFlags());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000469 break;
470 }
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +0000471 case ISD::TargetIndex: {
472 const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N);
473 ID.AddInteger(TI->getIndex());
474 ID.AddInteger(TI->getOffset());
475 ID.AddInteger(TI->getTargetFlags());
476 break;
477 }
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000478 case ISD::LOAD: {
Dan Gohman2da2bed2008-08-20 15:58:01 +0000479 const LoadSDNode *LD = cast<LoadSDNode>(N);
Duncan Sandsf1123e52008-06-06 12:49:32 +0000480 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dan Gohman76a07f52009-02-03 00:08:45 +0000481 ID.AddInteger(LD->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +0000482 ID.AddInteger(LD->getPointerInfo().getAddrSpace());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000483 break;
484 }
485 case ISD::STORE: {
Dan Gohman2da2bed2008-08-20 15:58:01 +0000486 const StoreSDNode *ST = cast<StoreSDNode>(N);
Duncan Sandsf1123e52008-06-06 12:49:32 +0000487 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohman76a07f52009-02-03 00:08:45 +0000488 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +0000489 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Dale Johannesen4bbd2ee2007-03-30 21:38:07 +0000490 break;
491 }
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +0000492 case ISD::SDIV:
493 case ISD::UDIV:
494 case ISD::SRA:
495 case ISD::SRL:
496 case ISD::MUL:
497 case ISD::ADD:
498 case ISD::SUB:
499 case ISD::SHL: {
500 const BinaryWithFlagsSDNode *BinNode = cast<BinaryWithFlagsSDNode>(N);
501 AddBinaryNodeIDCustom(ID, N->getOpcode(), BinNode->hasNoUnsignedWrap(),
502 BinNode->hasNoSignedWrap(), BinNode->isExact());
503 break;
504 }
Dan Gohman12f24902008-12-23 21:37:04 +0000505 case ISD::ATOMIC_CMP_SWAP:
Tim Northover420a2162014-06-13 14:24:07 +0000506 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
Dan Gohman12f24902008-12-23 21:37:04 +0000507 case ISD::ATOMIC_SWAP:
508 case ISD::ATOMIC_LOAD_ADD:
509 case ISD::ATOMIC_LOAD_SUB:
510 case ISD::ATOMIC_LOAD_AND:
511 case ISD::ATOMIC_LOAD_OR:
512 case ISD::ATOMIC_LOAD_XOR:
513 case ISD::ATOMIC_LOAD_NAND:
514 case ISD::ATOMIC_LOAD_MIN:
515 case ISD::ATOMIC_LOAD_MAX:
516 case ISD::ATOMIC_LOAD_UMIN:
Eli Friedman342e8df2011-08-24 20:50:09 +0000517 case ISD::ATOMIC_LOAD_UMAX:
518 case ISD::ATOMIC_LOAD:
519 case ISD::ATOMIC_STORE: {
Dan Gohman2da2bed2008-08-20 15:58:01 +0000520 const AtomicSDNode *AT = cast<AtomicSDNode>(N);
Dan Gohman76a07f52009-02-03 00:08:45 +0000521 ID.AddInteger(AT->getMemoryVT().getRawBits());
522 ID.AddInteger(AT->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +0000523 ID.AddInteger(AT->getPointerInfo().getAddrSpace());
524 break;
525 }
526 case ISD::PREFETCH: {
527 const MemSDNode *PF = cast<MemSDNode>(N);
528 ID.AddInteger(PF->getPointerInfo().getAddrSpace());
Mon P Wang6a490372008-06-25 08:15:39 +0000529 break;
Jim Laskeyf576b422006-10-27 23:46:08 +0000530 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000531 case ISD::VECTOR_SHUFFLE: {
532 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
Eric Christopherdfda92b2009-08-22 00:40:45 +0000533 for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000534 i != e; ++i)
535 ID.AddInteger(SVN->getMaskElt(i));
536 break;
537 }
Dan Gohman6c938802009-10-30 01:27:03 +0000538 case ISD::TargetBlockAddress:
539 case ISD::BlockAddress: {
Michael Liaoabb87d42012-09-12 21:43:09 +0000540 const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N);
541 ID.AddPointer(BA->getBlockAddress());
542 ID.AddInteger(BA->getOffset());
543 ID.AddInteger(BA->getTargetFlags());
Dan Gohman6c938802009-10-30 01:27:03 +0000544 break;
545 }
Mon P Wang6a490372008-06-25 08:15:39 +0000546 } // end switch (N->getOpcode())
Pete Cooper91244262012-07-30 20:23:19 +0000547
548 // Target specific memory nodes could also have address spaces to check.
549 if (N->isTargetMemoryOpcode())
550 ID.AddInteger(cast<MemSDNode>(N)->getPointerInfo().getAddrSpace());
Jim Laskeyf576b422006-10-27 23:46:08 +0000551}
552
Duncan Sands835bdca2008-10-27 15:30:53 +0000553/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
554/// data.
555static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
556 AddNodeIDOpcode(ID, N->getOpcode());
557 // Add the return value info.
558 AddNodeIDValueTypes(ID, N->getVTList());
559 // Add the operand info.
Craig Topper66e588b2014-06-29 00:40:57 +0000560 AddNodeIDOperands(ID, N->ops());
Duncan Sands835bdca2008-10-27 15:30:53 +0000561
562 // Handle SDNode leafs with special info.
563 AddNodeIDCustom(ID, N);
564}
565
Dan Gohman2da2bed2008-08-20 15:58:01 +0000566/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
David Greeneb7941b02010-02-17 20:21:42 +0000567/// the CSE map that carries volatility, temporalness, indexing mode, and
Dan Gohman76a07f52009-02-03 00:08:45 +0000568/// extension/truncation information.
Dan Gohman2da2bed2008-08-20 15:58:01 +0000569///
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000570static inline unsigned
David Greeneb7941b02010-02-17 20:21:42 +0000571encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000572 bool isNonTemporal, bool isInvariant) {
Dan Gohman76a07f52009-02-03 00:08:45 +0000573 assert((ConvType & 3) == ConvType &&
574 "ConvType may not require more than 2 bits!");
575 assert((AM & 7) == AM &&
576 "AM may not require more than 3 bits!");
577 return ConvType |
578 (AM << 2) |
David Greeneb7941b02010-02-17 20:21:42 +0000579 (isVolatile << 5) |
Pete Cooper82cd9e82011-11-08 18:42:53 +0000580 (isNonTemporal << 6) |
581 (isInvariant << 7);
Dan Gohman2da2bed2008-08-20 15:58:01 +0000582}
583
Jim Laskeyf576b422006-10-27 23:46:08 +0000584//===----------------------------------------------------------------------===//
Jim Laskeyd66e6162005-08-17 20:08:02 +0000585// SelectionDAG Class
586//===----------------------------------------------------------------------===//
Chris Lattner90b7c132005-01-23 04:39:44 +0000587
Duncan Sands835bdca2008-10-27 15:30:53 +0000588/// doNotCSE - Return true if CSE should not be performed for this node.
589static bool doNotCSE(SDNode *N) {
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000590 if (N->getValueType(0) == MVT::Glue)
Duncan Sands835bdca2008-10-27 15:30:53 +0000591 return true; // Never CSE anything that produces a flag.
592
593 switch (N->getOpcode()) {
594 default: break;
595 case ISD::HANDLENODE:
Duncan Sands835bdca2008-10-27 15:30:53 +0000596 case ISD::EH_LABEL:
Duncan Sands835bdca2008-10-27 15:30:53 +0000597 return true; // Never CSE these nodes.
598 }
599
600 // Check that remaining values produced are not flags.
601 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000602 if (N->getValueType(i) == MVT::Glue)
Duncan Sands835bdca2008-10-27 15:30:53 +0000603 return true; // Never CSE anything that produces a flag.
604
605 return false;
606}
607
Chris Lattner9c667932005-01-07 21:09:16 +0000608/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner8927c872006-08-04 17:45:20 +0000609/// SelectionDAG.
610void SelectionDAG::RemoveDeadNodes() {
Chris Lattner9c667932005-01-07 21:09:16 +0000611 // Create a dummy node (which is not added to allnodes), that adds a reference
612 // to the root node, preventing it from being deleted.
Chris Lattner06f1d0f2005-10-05 06:35:28 +0000613 HandleSDNode Dummy(getRoot());
Chris Lattner9c667932005-01-07 21:09:16 +0000614
Chris Lattner8927c872006-08-04 17:45:20 +0000615 SmallVector<SDNode*, 128> DeadNodes;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000616
Chris Lattner8927c872006-08-04 17:45:20 +0000617 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000618 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner8927c872006-08-04 17:45:20 +0000619 if (I->use_empty())
620 DeadNodes.push_back(I);
621
Dan Gohman91697632008-07-07 20:57:48 +0000622 RemoveDeadNodes(DeadNodes);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000623
Dan Gohman91697632008-07-07 20:57:48 +0000624 // If the root changed (e.g. it was a dead load, update the root).
625 setRoot(Dummy.getValue());
626}
627
628/// RemoveDeadNodes - This method deletes the unreachable nodes in the
629/// given list, and any nodes that become unreachable as a result.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000630void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) {
Dan Gohman91697632008-07-07 20:57:48 +0000631
Chris Lattner8927c872006-08-04 17:45:20 +0000632 // Process the worklist, deleting the nodes and adding their uses to the
633 // worklist.
634 while (!DeadNodes.empty()) {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000635 SDNode *N = DeadNodes.pop_back_val();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000636
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000637 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
Craig Topperc0196b12014-04-14 00:51:57 +0000638 DUL->NodeDeleted(N, nullptr);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000639
Chris Lattner8927c872006-08-04 17:45:20 +0000640 // Take the node out of the appropriate CSE map.
641 RemoveNodeFromCSEMaps(N);
642
643 // Next, brutally remove the operand list. This is safe to do, as there are
644 // no cycles in the graph.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000645 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
646 SDUse &Use = *I++;
647 SDNode *Operand = Use.getNode();
648 Use.set(SDValue());
649
Chris Lattner8927c872006-08-04 17:45:20 +0000650 // Now that we removed this operand, see if there are no uses of it left.
651 if (Operand->use_empty())
652 DeadNodes.push_back(Operand);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000653 }
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000654
Dan Gohman534c8a22009-01-19 22:39:36 +0000655 DeallocateNode(N);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000656 }
Chris Lattner9c667932005-01-07 21:09:16 +0000657}
658
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000659void SelectionDAG::RemoveDeadNode(SDNode *N){
Dan Gohman17059682008-07-17 19:10:17 +0000660 SmallVector<SDNode*, 16> DeadNodes(1, N);
Eli Friedmanf2a9bd42011-11-08 01:25:24 +0000661
662 // Create a dummy node that adds a reference to the root node, preventing
663 // it from being deleted. (This matters if the root is an operand of the
664 // dead node.)
665 HandleSDNode Dummy(getRoot());
666
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000667 RemoveDeadNodes(DeadNodes);
Evan Chenga731cb62006-10-12 20:34:05 +0000668}
669
Chris Lattnerc738d002005-08-29 21:59:31 +0000670void SelectionDAG::DeleteNode(SDNode *N) {
Chris Lattnerc738d002005-08-29 21:59:31 +0000671 // First take this out of the appropriate CSE map.
672 RemoveNodeFromCSEMaps(N);
673
Scott Michelcf0da6c2009-02-17 22:15:04 +0000674 // Finally, remove uses due to operands of this node, remove from the
Chris Lattnerfe883ad2005-09-07 05:37:01 +0000675 // AllNodes list, and delete the node.
676 DeleteNodeNotInCSEMaps(N);
677}
678
679void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmane7b0dde2009-01-25 16:20:37 +0000680 assert(N != AllNodes.begin() && "Cannot delete the entry node!");
681 assert(N->use_empty() && "Cannot delete a node that is not dead!");
Dan Gohman534c8a22009-01-19 22:39:36 +0000682
Dan Gohman86aa16a2008-09-30 18:30:35 +0000683 // Drop all of the operands and decrement used node's use counts.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000684 N->DropOperands();
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000685
Dan Gohman534c8a22009-01-19 22:39:36 +0000686 DeallocateNode(N);
687}
688
689void SelectionDAG::DeallocateNode(SDNode *N) {
690 if (N->OperandsNeedDelete)
Chris Lattnerf17b4222007-02-04 07:28:00 +0000691 delete[] N->OperandList;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000692
Dan Gohman534c8a22009-01-19 22:39:36 +0000693 // Set the opcode to DELETED_NODE to help catch bugs when node
694 // memory is reallocated.
695 N->NodeType = ISD::DELETED_NODE;
696
Dan Gohman2e834902008-08-26 01:44:34 +0000697 NodeAllocator.Deallocate(AllNodes.remove(N));
Daniel Dunbarb827e522009-12-16 20:10:05 +0000698
Evan Cheng563fe3c2010-03-25 01:38:16 +0000699 // If any of the SDDbgValue nodes refer to this SDNode, invalidate them.
Benjamin Kramere1fc29b2011-06-18 13:13:44 +0000700 ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000701 for (unsigned i = 0, e = DbgVals.size(); i != e; ++i)
702 DbgVals[i]->setIsInvalidated();
Chris Lattnerc738d002005-08-29 21:59:31 +0000703}
704
Chris Lattner19732782005-08-16 18:17:10 +0000705/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
706/// correspond to it. This is useful when we're about to delete or repurpose
707/// the node. We don't want future request for structurally identical nodes
708/// to return N anymore.
Dan Gohmand3fe1742008-09-13 01:54:27 +0000709bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner1e89e362005-09-02 19:15:44 +0000710 bool Erased = false;
Chris Lattner9c667932005-01-07 21:09:16 +0000711 switch (N->getOpcode()) {
Dan Gohmand3fe1742008-09-13 01:54:27 +0000712 case ISD::HANDLENODE: return false; // noop.
Chris Lattnerd47675e2005-08-09 20:20:18 +0000713 case ISD::CONDCODE:
714 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
715 "Cond code doesn't exist!");
Craig Topperc0196b12014-04-14 00:51:57 +0000716 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != nullptr;
717 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = nullptr;
Chris Lattnerd47675e2005-08-09 20:20:18 +0000718 break;
Bill Wendling24c79f22008-09-16 21:48:12 +0000719 case ISD::ExternalSymbol:
720 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner9c667932005-01-07 21:09:16 +0000721 break;
Chris Lattneraf5dbfc2009-06-25 18:45:50 +0000722 case ISD::TargetExternalSymbol: {
723 ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
724 Erased = TargetExternalSymbols.erase(
725 std::pair<std::string,unsigned char>(ESN->getSymbol(),
726 ESN->getTargetFlags()));
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000727 break;
Chris Lattneraf5dbfc2009-06-25 18:45:50 +0000728 }
Duncan Sandsd42c8122007-10-17 13:49:58 +0000729 case ISD::VALUETYPE: {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000730 EVT VT = cast<VTSDNode>(N)->getVT();
Duncan Sands13237ac2008-06-06 12:08:01 +0000731 if (VT.isExtended()) {
Duncan Sandsd42c8122007-10-17 13:49:58 +0000732 Erased = ExtendedValueTypeNodes.erase(VT);
733 } else {
Craig Topperc0196b12014-04-14 00:51:57 +0000734 Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != nullptr;
735 ValueTypeNodes[VT.getSimpleVT().SimpleTy] = nullptr;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000736 }
Chris Lattner0b6ba902005-07-10 00:07:11 +0000737 break;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000738 }
Chris Lattner9c667932005-01-07 21:09:16 +0000739 default:
Chris Lattnerfcb16472006-08-11 18:38:11 +0000740 // Remove it from the CSE Map.
Duncan Sandsd2e70b52010-12-12 13:22:50 +0000741 assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
742 assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
Chris Lattnerfcb16472006-08-11 18:38:11 +0000743 Erased = CSEMap.RemoveNode(N);
Chris Lattner9c667932005-01-07 21:09:16 +0000744 break;
745 }
Chris Lattner1e89e362005-09-02 19:15:44 +0000746#ifndef NDEBUG
Scott Michelcf0da6c2009-02-17 22:15:04 +0000747 // Verify that the node was actually in one of the CSE maps, unless it has a
Chris Lattner1e89e362005-09-02 19:15:44 +0000748 // flag result (which cannot be CSE'd) or is one of the special cases that are
749 // not subject to CSE.
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000750 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue &&
Duncan Sands835bdca2008-10-27 15:30:53 +0000751 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmana7644dd2007-06-19 14:13:56 +0000752 N->dump(this);
David Greened93137d2010-01-05 01:24:36 +0000753 dbgs() << "\n";
Torok Edwinfbcc6632009-07-14 16:55:14 +0000754 llvm_unreachable("Node is not in map!");
Chris Lattner1e89e362005-09-02 19:15:44 +0000755 }
756#endif
Dan Gohmand3fe1742008-09-13 01:54:27 +0000757 return Erased;
Chris Lattner9c667932005-01-07 21:09:16 +0000758}
759
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000760/// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
761/// maps and modified in place. Add it back to the CSE maps, unless an identical
762/// node already exists, in which case transfer all its users to the existing
763/// node. This transfer can potentially trigger recursive merging.
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000764///
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000765void
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000766SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000767 // For node types that aren't CSE'd, just act as if no identical node
768 // already exists.
769 if (!doNotCSE(N)) {
770 SDNode *Existing = CSEMap.GetOrInsertNode(N);
771 if (Existing != N) {
772 // If there was already an existing matching node, use ReplaceAllUsesWith
773 // to replace the dead one with the existing one. This can cause
774 // recursive merging of other unrelated nodes down the line.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000775 ReplaceAllUsesWith(N, Existing);
Evan Cheng34ef1db2008-07-08 20:06:39 +0000776
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000777 // N is now dead. Inform the listeners and delete it.
778 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
779 DUL->NodeDeleted(N, Existing);
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000780 DeleteNodeNotInCSEMaps(N);
781 return;
782 }
783 }
Evan Cheng34ef1db2008-07-08 20:06:39 +0000784
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000785 // If the node doesn't already exist, we updated it. Inform listeners.
786 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
787 DUL->NodeUpdated(N);
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000788}
789
Chris Lattnerf34156e2006-01-28 09:32:45 +0000790/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000791/// were replaced with those specified. If this node is never memoized,
Chris Lattnerf34156e2006-01-28 09:32:45 +0000792/// return null, otherwise return a pointer to the slot it would take. If a
793/// node already exists with these operands, the slot will be non-null.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000794SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000795 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000796 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000797 return nullptr;
Evan Cheng34ef1db2008-07-08 20:06:39 +0000798
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000799 SDValue Ops[] = { Op };
Jim Laskeyf576b422006-10-27 23:46:08 +0000800 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +0000801 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000802 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000803 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000804 return Node;
Chris Lattnerf34156e2006-01-28 09:32:45 +0000805}
806
807/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000808/// were replaced with those specified. If this node is never memoized,
Chris Lattnerf34156e2006-01-28 09:32:45 +0000809/// return null, otherwise return a pointer to the slot it would take. If a
810/// node already exists with these operands, the slot will be non-null.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000811SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000812 SDValue Op1, SDValue Op2,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000813 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000814 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000815 return nullptr;
Duncan Sands835bdca2008-10-27 15:30:53 +0000816
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000817 SDValue Ops[] = { Op1, Op2 };
Jim Laskeyf576b422006-10-27 23:46:08 +0000818 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +0000819 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000820 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000821 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000822 return Node;
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000823}
824
825
826/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000827/// were replaced with those specified. If this node is never memoized,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000828/// return null, otherwise return a pointer to the slot it would take. If a
829/// node already exists with these operands, the slot will be non-null.
Craig Topper8c0b4d02014-04-28 05:57:50 +0000830SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000831 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000832 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000833 return nullptr;
Evan Cheng34ef1db2008-07-08 20:06:39 +0000834
Jim Laskeyf576b422006-10-27 23:46:08 +0000835 FoldingSetNodeID ID;
Craig Topper8c0b4d02014-04-28 05:57:50 +0000836 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000837 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000838 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000839 return Node;
Chris Lattnerf34156e2006-01-28 09:32:45 +0000840}
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000841
Benjamin Kramerf6fb58a2010-11-20 15:53:24 +0000842#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +0000843/// VerifyNodeCommon - Sanity check the given node. Aborts if it is invalid.
844static void VerifyNodeCommon(SDNode *N) {
Duncan Sandsb0e39382008-07-21 10:20:31 +0000845 switch (N->getOpcode()) {
846 default:
847 break;
Duncan Sands17e678b2008-10-29 14:22:20 +0000848 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000849 EVT VT = N->getValueType(0);
Duncan Sands17e678b2008-10-29 14:22:20 +0000850 assert(N->getNumValues() == 1 && "Too many results!");
851 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
852 "Wrong return type!");
853 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
854 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
855 "Mismatched operand types!");
856 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
857 "Wrong operand type!");
858 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
859 "Wrong return type size");
860 break;
861 }
Duncan Sandsb0e39382008-07-21 10:20:31 +0000862 case ISD::BUILD_VECTOR: {
Duncan Sands17e678b2008-10-29 14:22:20 +0000863 assert(N->getNumValues() == 1 && "Too many results!");
864 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsb0e39382008-07-21 10:20:31 +0000865 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sands17e678b2008-10-29 14:22:20 +0000866 "Wrong number of operands!");
Owen Anderson53aa7a92009-08-10 22:56:29 +0000867 EVT EltVT = N->getValueType(0).getVectorElementType();
Eli Friedmanb7910b72011-09-09 21:04:06 +0000868 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Rafael Espindolab93db662009-04-24 12:40:33 +0000869 assert((I->getValueType() == EltVT ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000870 (EltVT.isInteger() && I->getValueType().isInteger() &&
871 EltVT.bitsLE(I->getValueType()))) &&
872 "Wrong operand type!");
Eli Friedmanb7910b72011-09-09 21:04:06 +0000873 assert(I->getValueType() == N->getOperand(0).getValueType() &&
874 "Operands must all have the same type");
875 }
Duncan Sandsb0e39382008-07-21 10:20:31 +0000876 break;
877 }
878 }
879}
880
Duncan Sands7c601de2010-11-20 11:25:00 +0000881/// VerifySDNode - Sanity check the given SDNode. Aborts if it is invalid.
882static void VerifySDNode(SDNode *N) {
883 // The SDNode allocators cannot be used to allocate nodes with fields that are
884 // not present in an SDNode!
885 assert(!isa<MemSDNode>(N) && "Bad MemSDNode!");
886 assert(!isa<ShuffleVectorSDNode>(N) && "Bad ShuffleVectorSDNode!");
887 assert(!isa<ConstantSDNode>(N) && "Bad ConstantSDNode!");
888 assert(!isa<ConstantFPSDNode>(N) && "Bad ConstantFPSDNode!");
889 assert(!isa<GlobalAddressSDNode>(N) && "Bad GlobalAddressSDNode!");
890 assert(!isa<FrameIndexSDNode>(N) && "Bad FrameIndexSDNode!");
891 assert(!isa<JumpTableSDNode>(N) && "Bad JumpTableSDNode!");
892 assert(!isa<ConstantPoolSDNode>(N) && "Bad ConstantPoolSDNode!");
893 assert(!isa<BasicBlockSDNode>(N) && "Bad BasicBlockSDNode!");
894 assert(!isa<SrcValueSDNode>(N) && "Bad SrcValueSDNode!");
895 assert(!isa<MDNodeSDNode>(N) && "Bad MDNodeSDNode!");
896 assert(!isa<RegisterSDNode>(N) && "Bad RegisterSDNode!");
897 assert(!isa<BlockAddressSDNode>(N) && "Bad BlockAddressSDNode!");
898 assert(!isa<EHLabelSDNode>(N) && "Bad EHLabelSDNode!");
899 assert(!isa<ExternalSymbolSDNode>(N) && "Bad ExternalSymbolSDNode!");
900 assert(!isa<CondCodeSDNode>(N) && "Bad CondCodeSDNode!");
901 assert(!isa<CvtRndSatSDNode>(N) && "Bad CvtRndSatSDNode!");
902 assert(!isa<VTSDNode>(N) && "Bad VTSDNode!");
903 assert(!isa<MachineSDNode>(N) && "Bad MachineSDNode!");
904
905 VerifyNodeCommon(N);
906}
907
908/// VerifyMachineNode - Sanity check the given MachineNode. Aborts if it is
909/// invalid.
910static void VerifyMachineNode(SDNode *N) {
911 // The MachineNode allocators cannot be used to allocate nodes with fields
912 // that are not present in a MachineNode!
913 // Currently there are no such nodes.
914
915 VerifyNodeCommon(N);
916}
Benjamin Kramerf6fb58a2010-11-20 15:53:24 +0000917#endif // NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +0000918
Owen Anderson53aa7a92009-08-10 22:56:29 +0000919/// getEVTAlignment - Compute the default alignment value for the
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000920/// given type.
921///
Owen Anderson53aa7a92009-08-10 22:56:29 +0000922unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
Chris Lattner229907c2011-07-18 04:54:35 +0000923 Type *Ty = VT == MVT::iPTR ?
Owen Anderson55f1c092009-08-13 21:58:54 +0000924 PointerType::get(Type::getInt8Ty(*getContext()), 0) :
Owen Anderson117c9e82009-08-12 00:36:31 +0000925 VT.getTypeForEVT(*getContext());
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000926
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000927 return TM.getTargetLowering()->getDataLayout()->getABITypeAlignment(Ty);
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000928}
Chris Lattner9c667932005-01-07 21:09:16 +0000929
Dale Johannesen8ba713212009-02-07 02:15:05 +0000930// EntryNode could meaningfully have debug info if we can find it...
Devang Patel7bbc1e52011-12-15 18:21:18 +0000931SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL)
Craig Topperc0196b12014-04-14 00:51:57 +0000932 : TM(tm), TSI(*tm.getSelectionDAGInfo()), TLI(nullptr), OptLevel(OL),
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000933 EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
Daniel Sanders50b80412013-11-15 12:56:49 +0000934 Root(getEntryNode()), NewNodesMustHaveLegalTypes(false),
Craig Topperc0196b12014-04-14 00:51:57 +0000935 UpdateListeners(nullptr) {
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000936 AllNodes.push_back(&EntryNode);
Dale Johannesen49de0602010-03-10 22:13:47 +0000937 DbgInfo = new SDDbgInfo();
Dan Gohmanac37f9a2008-08-23 00:50:30 +0000938}
939
Juergen Ributzka659ce002014-01-28 01:20:14 +0000940void SelectionDAG::init(MachineFunction &mf, const TargetLowering *tli) {
Dan Gohmane1a9a782008-08-27 23:52:12 +0000941 MF = &mf;
Juergen Ributzkab3487102013-11-19 21:20:17 +0000942 TLI = tli;
Eric Christopherdfda92b2009-08-22 00:40:45 +0000943 Context = &mf.getFunction()->getContext();
Dan Gohmane1a9a782008-08-27 23:52:12 +0000944}
945
Chris Lattner600d3082003-08-11 14:57:33 +0000946SelectionDAG::~SelectionDAG() {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000947 assert(!UpdateListeners && "Dangling registered DAGUpdateListeners");
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000948 allnodes_clear();
Dale Johannesen49de0602010-03-10 22:13:47 +0000949 delete DbgInfo;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000950}
951
952void SelectionDAG::allnodes_clear() {
Dan Gohman2e834902008-08-26 01:44:34 +0000953 assert(&*AllNodes.begin() == &EntryNode);
954 AllNodes.remove(AllNodes.begin());
Dan Gohman534c8a22009-01-19 22:39:36 +0000955 while (!AllNodes.empty())
956 DeallocateNode(AllNodes.begin());
Chris Lattner600d3082003-08-11 14:57:33 +0000957}
958
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +0000959BinarySDNode *SelectionDAG::GetBinarySDNode(unsigned Opcode, SDLoc DL,
960 SDVTList VTs, SDValue N1,
961 SDValue N2, bool nuw, bool nsw,
962 bool exact) {
963 if (isBinOpWithFlags(Opcode)) {
964 BinaryWithFlagsSDNode *FN = new (NodeAllocator) BinaryWithFlagsSDNode(
965 Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
966 FN->setHasNoUnsignedWrap(nuw);
967 FN->setHasNoSignedWrap(nsw);
968 FN->setIsExact(exact);
969
970 return FN;
971 }
972
973 BinarySDNode *N = new (NodeAllocator)
974 BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
975 return N;
976}
977
Dan Gohmane1a9a782008-08-27 23:52:12 +0000978void SelectionDAG::clear() {
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000979 allnodes_clear();
980 OperandAllocator.Reset();
981 CSEMap.clear();
982
983 ExtendedValueTypeNodes.clear();
Bill Wendling24c79f22008-09-16 21:48:12 +0000984 ExternalSymbols.clear();
985 TargetExternalSymbols.clear();
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000986 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
Craig Topperc0196b12014-04-14 00:51:57 +0000987 static_cast<CondCodeSDNode*>(nullptr));
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000988 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
Craig Topperc0196b12014-04-14 00:51:57 +0000989 static_cast<SDNode*>(nullptr));
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000990
Craig Topperc0196b12014-04-14 00:51:57 +0000991 EntryNode.UseList = nullptr;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000992 AllNodes.push_back(&EntryNode);
993 Root = getEntryNode();
Evan Cheng4d1aa2a2010-03-29 20:48:30 +0000994 DbgInfo->clear();
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000995}
996
Andrew Trickef9de2a2013-05-25 02:42:55 +0000997SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Nadav Rotem38b3b832011-09-27 11:16:47 +0000998 return VT.bitsGT(Op.getValueType()) ?
999 getNode(ISD::ANY_EXTEND, DL, VT, Op) :
1000 getNode(ISD::TRUNCATE, DL, VT, Op);
1001}
1002
Andrew Trickef9de2a2013-05-25 02:42:55 +00001003SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands18a956c2009-10-13 21:04:12 +00001004 return VT.bitsGT(Op.getValueType()) ?
1005 getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
1006 getNode(ISD::TRUNCATE, DL, VT, Op);
1007}
1008
Andrew Trickef9de2a2013-05-25 02:42:55 +00001009SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands18a956c2009-10-13 21:04:12 +00001010 return VT.bitsGT(Op.getValueType()) ?
1011 getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
1012 getNode(ISD::TRUNCATE, DL, VT, Op);
1013}
1014
Matt Arsenault5f2fd4b2014-05-07 18:26:58 +00001015SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, SDLoc SL, EVT VT) {
1016 if (VT.bitsLE(Op.getValueType()))
1017 return getNode(ISD::TRUNCATE, SL, VT, Op);
1018
1019 TargetLowering::BooleanContent BType = TLI->getBooleanContents(VT.isVector());
1020 return getNode(TLI->getExtendForContent(BType), SL, VT, Op);
1021}
1022
Andrew Trickef9de2a2013-05-25 02:42:55 +00001023SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, SDLoc DL, EVT VT) {
Dan Gohman1d459e42009-12-11 21:31:27 +00001024 assert(!VT.isVector() &&
1025 "getZeroExtendInReg should use the vector element type instead of "
1026 "the vector type!");
Bill Wendlingc4093182009-01-30 22:23:15 +00001027 if (Op.getValueType() == VT) return Op;
Dan Gohman1d459e42009-12-11 21:31:27 +00001028 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
1029 APInt Imm = APInt::getLowBitsSet(BitWidth,
Bill Wendlingc4093182009-01-30 22:23:15 +00001030 VT.getSizeInBits());
1031 return getNode(ISD::AND, DL, Op.getValueType(), Op,
1032 getConstant(Imm, Op.getValueType()));
1033}
1034
Bob Wilsonc5890052009-01-22 17:39:32 +00001035/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
1036///
Andrew Trickef9de2a2013-05-25 02:42:55 +00001037SDValue SelectionDAG::getNOT(SDLoc DL, SDValue Val, EVT VT) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001038 EVT EltVT = VT.getScalarType();
Dan Gohmane014b692009-04-20 22:51:43 +00001039 SDValue NegOne =
1040 getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
Bill Wendlingcab9a2e2009-01-30 22:11:22 +00001041 return getNode(ISD::XOR, DL, VT, Val, NegOne);
1042}
1043
Pete Cooper7fd1d722014-05-12 23:26:58 +00001044SDValue SelectionDAG::getLogicalNOT(SDLoc DL, SDValue Val, EVT VT) {
1045 EVT EltVT = VT.getScalarType();
1046 SDValue TrueValue;
1047 switch (TLI->getBooleanContents(VT.isVector())) {
1048 case TargetLowering::ZeroOrOneBooleanContent:
1049 case TargetLowering::UndefinedBooleanContent:
1050 TrueValue = getConstant(1, VT);
1051 break;
1052 case TargetLowering::ZeroOrNegativeOneBooleanContent:
1053 TrueValue = getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()),
1054 VT);
1055 break;
1056 }
1057 return getNode(ISD::XOR, DL, VT, Val, TrueValue);
1058}
1059
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001060SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT, bool isO) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001061 EVT EltVT = VT.getScalarType();
Dan Gohmanfb58faf2009-01-27 20:39:34 +00001062 assert((EltVT.getSizeInBits() >= 64 ||
1063 (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
1064 "getConstant with a uint64_t value that doesn't fit in the type!");
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001065 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT, isO);
Dan Gohman65f63eb2008-02-08 22:59:30 +00001066}
1067
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001068SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT, bool isO)
1069{
1070 return getConstant(*ConstantInt::get(*Context, Val), VT, isT, isO);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001071}
1072
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001073SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT,
1074 bool isO) {
Duncan Sands13237ac2008-06-06 12:08:01 +00001075 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman7a7742c2007-12-12 22:21:26 +00001076
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001077 EVT EltVT = VT.getScalarType();
Duncan Sandsf2641e12011-09-06 19:07:46 +00001078 const ConstantInt *Elt = &Val;
Chris Lattner3f16b202006-08-11 21:01:22 +00001079
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001080 const TargetLowering *TLI = TM.getTargetLowering();
1081
Duncan Sandsf2641e12011-09-06 19:07:46 +00001082 // In some cases the vector type is legal but the element type is illegal and
1083 // needs to be promoted, for example v8i8 on ARM. In this case, promote the
1084 // inserted value (the type does not need to match the vector element type).
1085 // Any extra bits introduced will be truncated away.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001086 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00001087 TargetLowering::TypePromoteInteger) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001088 EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001089 APInt NewVal = Elt->getValue().zext(EltVT.getSizeInBits());
1090 Elt = ConstantInt::get(*getContext(), NewVal);
1091 }
Daniel Sanders50b80412013-11-15 12:56:49 +00001092 // In other cases the element type is illegal and needs to be expanded, for
1093 // example v2i64 on MIPS32. In this case, find the nearest legal type, split
1094 // the value into n parts and use a vector type with n-times the elements.
1095 // Then bitcast to the type requested.
1096 // Legalizing constants too early makes the DAGCombiner's job harder so we
1097 // only legalize if the DAG tells us we must produce legal types.
1098 else if (NewNodesMustHaveLegalTypes && VT.isVector() &&
1099 TLI->getTypeAction(*getContext(), EltVT) ==
1100 TargetLowering::TypeExpandInteger) {
1101 APInt NewVal = Elt->getValue();
1102 EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1103 unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits();
1104 unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits;
1105 EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts);
1106
1107 // Check the temporary vector is the correct size. If this fails then
1108 // getTypeToTransformTo() probably returned a type whose size (in bits)
1109 // isn't a power-of-2 factor of the requested type size.
1110 assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits());
1111
1112 SmallVector<SDValue, 2> EltParts;
1113 for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i) {
1114 EltParts.push_back(getConstant(NewVal.lshr(i * ViaEltSizeInBits)
1115 .trunc(ViaEltSizeInBits),
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001116 ViaEltVT, isT, isO));
Daniel Sanders50b80412013-11-15 12:56:49 +00001117 }
1118
1119 // EltParts is currently in little endian order. If we actually want
1120 // big-endian order then reverse it now.
1121 if (TLI->isBigEndian())
1122 std::reverse(EltParts.begin(), EltParts.end());
1123
1124 // The elements must be reversed when the element order is different
1125 // to the endianness of the elements (because the BITCAST is itself a
1126 // vector shuffle in this situation). However, we do not need any code to
1127 // perform this reversal because getConstant() is producing a vector
1128 // splat.
1129 // This situation occurs in MIPS MSA.
1130
1131 SmallVector<SDValue, 8> Ops;
1132 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i)
1133 Ops.insert(Ops.end(), EltParts.begin(), EltParts.end());
1134
1135 SDValue Result = getNode(ISD::BITCAST, SDLoc(), VT,
1136 getNode(ISD::BUILD_VECTOR, SDLoc(), ViaVecVT,
Craig Topper48d114b2014-04-26 18:35:24 +00001137 Ops));
Daniel Sanders50b80412013-11-15 12:56:49 +00001138 return Result;
1139 }
Duncan Sandsf2641e12011-09-06 19:07:46 +00001140
1141 assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
1142 "APInt size does not match type size!");
Chris Lattner3f16b202006-08-11 21:01:22 +00001143 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskeyf576b422006-10-27 23:46:08 +00001144 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001145 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001146 ID.AddPointer(Elt);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001147 ID.AddBoolean(isO);
Craig Topperc0196b12014-04-14 00:51:57 +00001148 void *IP = nullptr;
1149 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001150 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001151 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001152 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001153
Dan Gohman7a7742c2007-12-12 22:21:26 +00001154 if (!N) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001155 N = new (NodeAllocator) ConstantSDNode(isT, isO, Elt, EltVT);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001156 CSEMap.InsertNode(N, IP);
1157 AllNodes.push_back(N);
1158 }
1159
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001160 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001161 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001162 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001163 Ops.assign(VT.getVectorNumElements(), Result);
Craig Topper48d114b2014-04-26 18:35:24 +00001164 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001165 }
1166 return Result;
Chris Lattner600d3082003-08-11 14:57:33 +00001167}
1168
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001169SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001170 return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget);
Chris Lattner72733e52008-01-17 07:00:52 +00001171}
1172
1173
Owen Anderson53aa7a92009-08-10 22:56:29 +00001174SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001175 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001176}
1177
Owen Anderson53aa7a92009-08-10 22:56:29 +00001178SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
Duncan Sands13237ac2008-06-06 12:08:01 +00001179 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001180
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001181 EVT EltVT = VT.getScalarType();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001182
Chris Lattner381dddc2005-02-17 20:17:32 +00001183 // Do the map lookup using the actual bit pattern for the floating point
1184 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1185 // we don't have issues with SNANs.
Chris Lattner0c2e5412006-08-11 21:55:30 +00001186 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskeyf576b422006-10-27 23:46:08 +00001187 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001188 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001189 ID.AddPointer(&V);
Craig Topperc0196b12014-04-14 00:51:57 +00001190 void *IP = nullptr;
1191 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001192 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001193 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001194 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001195
Evan Cheng9458e6a2007-06-29 21:36:04 +00001196 if (!N) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001197 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Cheng9458e6a2007-06-29 21:36:04 +00001198 CSEMap.InsertNode(N, IP);
1199 AllNodes.push_back(N);
1200 }
1201
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001202 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001203 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001204 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001205 Ops.assign(VT.getVectorNumElements(), Result);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001206 // FIXME SDLoc info might be appropriate here
Craig Topper48d114b2014-04-26 18:35:24 +00001207 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohmana8665142007-06-25 16:23:39 +00001208 }
1209 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001210}
1211
Owen Anderson53aa7a92009-08-10 22:56:29 +00001212SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001213 EVT EltVT = VT.getScalarType();
Owen Anderson9f944592009-08-11 20:47:22 +00001214 if (EltVT==MVT::f32)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001215 return getConstantFP(APFloat((float)Val), VT, isTarget);
Dale Johannesen51c16952010-05-07 21:35:53 +00001216 else if (EltVT==MVT::f64)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001217 return getConstantFP(APFloat(Val), VT, isTarget);
Hal Finkel6dbdd432012-12-30 19:03:32 +00001218 else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 ||
1219 EltVT==MVT::f16) {
Dale Johannesen51c16952010-05-07 21:35:53 +00001220 bool ignored;
1221 APFloat apf = APFloat(Val);
Tim Northover29178a32013-01-22 09:46:31 +00001222 apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
Dale Johannesen51c16952010-05-07 21:35:53 +00001223 &ignored);
1224 return getConstantFP(apf, VT, isTarget);
Craig Topperee4dab52012-02-05 08:31:47 +00001225 } else
1226 llvm_unreachable("Unsupported type in getConstantFP");
Dale Johannesend246b2c2007-08-30 00:23:21 +00001227}
1228
Andrew Trickef9de2a2013-05-25 02:42:55 +00001229SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001230 EVT VT, int64_t Offset,
Chris Lattner8e34f982009-06-25 21:21:14 +00001231 bool isTargetGA,
1232 unsigned char TargetFlags) {
1233 assert((TargetFlags == 0 || isTargetGA) &&
1234 "Cannot set target flags on target-independent globals");
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001235 const TargetLowering *TLI = TM.getTargetLowering();
Eric Christopherdfda92b2009-08-22 00:40:45 +00001236
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001237 // Truncate (with sign-extension) the offset value to the pointer size.
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001238 unsigned BitWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001239 if (BitWidth < 64)
Richard Smith228e6d42012-08-24 23:29:28 +00001240 Offset = SignExtend64(Offset, BitWidth);
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001241
Chris Lattner8e34f982009-06-25 21:21:14 +00001242 unsigned Opc;
Rafael Espindola59f7eba2014-05-28 18:15:43 +00001243 if (GV->isThreadLocal())
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00001244 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1245 else
1246 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikove8fa50f2008-03-11 22:38:53 +00001247
Jim Laskeyf576b422006-10-27 23:46:08 +00001248 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001249 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001250 ID.AddPointer(GV);
1251 ID.AddInteger(Offset);
Chris Lattner8e34f982009-06-25 21:21:14 +00001252 ID.AddInteger(TargetFlags);
Pete Cooper91244262012-07-30 20:23:19 +00001253 ID.AddInteger(GV->getType()->getAddressSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00001254 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001255 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman3a113ec2009-01-25 16:21:38 +00001256 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001257
Andrew Trickef9de2a2013-05-25 02:42:55 +00001258 SDNode *N = new (NodeAllocator) GlobalAddressSDNode(Opc, DL.getIROrder(),
1259 DL.getDebugLoc(), GV, VT,
Dan Gohman01c65a22010-03-18 18:49:47 +00001260 Offset, TargetFlags);
Chris Lattner3f16b202006-08-11 21:01:22 +00001261 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001262 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001263 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001264}
1265
Owen Anderson53aa7a92009-08-10 22:56:29 +00001266SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
Chris Lattner0c2e5412006-08-11 21:55:30 +00001267 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskeyf576b422006-10-27 23:46:08 +00001268 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001269 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001270 ID.AddInteger(FI);
Craig Topperc0196b12014-04-14 00:51:57 +00001271 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001272 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001273 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001274
Dan Gohman01c65a22010-03-18 18:49:47 +00001275 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001276 CSEMap.InsertNode(N, IP);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001277 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001278 return SDValue(N, 0);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001279}
1280
Owen Anderson53aa7a92009-08-10 22:56:29 +00001281SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001282 unsigned char TargetFlags) {
1283 assert((TargetFlags == 0 || isTarget) &&
1284 "Cannot set target flags on target-independent jump tables");
Chris Lattner0c2e5412006-08-11 21:55:30 +00001285 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskeyf576b422006-10-27 23:46:08 +00001286 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001287 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001288 ID.AddInteger(JTI);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001289 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001290 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001291 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001292 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001293
Dan Gohman01c65a22010-03-18 18:49:47 +00001294 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1295 TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001296 CSEMap.InsertNode(N, IP);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001297 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001298 return SDValue(N, 0);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001299}
1300
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001301SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001302 unsigned Alignment, int Offset,
Eric Christopherdfda92b2009-08-22 00:40:45 +00001303 bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001304 unsigned char TargetFlags) {
1305 assert((TargetFlags == 0 || isTarget) &&
1306 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001307 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001308 Alignment =
1309 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Chris Lattner0c2e5412006-08-11 21:55:30 +00001310 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001311 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001312 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001313 ID.AddInteger(Alignment);
1314 ID.AddInteger(Offset);
Chris Lattner8e372832006-08-14 20:12:44 +00001315 ID.AddPointer(C);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001316 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001317 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001318 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001319 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001320
Dan Gohman01c65a22010-03-18 18:49:47 +00001321 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1322 Alignment, TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001323 CSEMap.InsertNode(N, IP);
Chris Lattner407c6412005-08-25 05:03:06 +00001324 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001325 return SDValue(N, 0);
Chris Lattner407c6412005-08-25 05:03:06 +00001326}
1327
Chris Lattner061a1ea2005-01-07 07:46:32 +00001328
Owen Anderson53aa7a92009-08-10 22:56:29 +00001329SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001330 unsigned Alignment, int Offset,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001331 bool isTarget,
1332 unsigned char TargetFlags) {
1333 assert((TargetFlags == 0 || isTarget) &&
1334 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001335 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001336 Alignment =
1337 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001338 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001339 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001340 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001341 ID.AddInteger(Alignment);
1342 ID.AddInteger(Offset);
Jim Grosbachaf136f72011-09-27 20:59:33 +00001343 C->addSelectionDAGCSEId(ID);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001344 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001345 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001346 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001347 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001348
Dan Gohman01c65a22010-03-18 18:49:47 +00001349 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1350 Alignment, TargetFlags);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001351 CSEMap.InsertNode(N, IP);
1352 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001353 return SDValue(N, 0);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001354}
1355
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001356SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1357 unsigned char TargetFlags) {
1358 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001359 AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None);
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001360 ID.AddInteger(Index);
1361 ID.AddInteger(Offset);
1362 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001363 void *IP = nullptr;
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001364 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1365 return SDValue(E, 0);
1366
1367 SDNode *N = new (NodeAllocator) TargetIndexSDNode(Index, VT, Offset,
1368 TargetFlags);
1369 CSEMap.InsertNode(N, IP);
1370 AllNodes.push_back(N);
1371 return SDValue(N, 0);
1372}
1373
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001374SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001375 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001376 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001377 ID.AddPointer(MBB);
Craig Topperc0196b12014-04-14 00:51:57 +00001378 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001379 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001380 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001381
Dan Gohman01c65a22010-03-18 18:49:47 +00001382 SDNode *N = new (NodeAllocator) BasicBlockSDNode(MBB);
Chris Lattner3f16b202006-08-11 21:01:22 +00001383 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001384 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001385 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001386}
1387
Owen Anderson53aa7a92009-08-10 22:56:29 +00001388SDValue SelectionDAG::getValueType(EVT VT) {
Owen Anderson9f944592009-08-11 20:47:22 +00001389 if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1390 ValueTypeNodes.size())
1391 ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001392
Duncan Sands13237ac2008-06-06 12:08:01 +00001393 SDNode *&N = VT.isExtended() ?
Owen Anderson9f944592009-08-11 20:47:22 +00001394 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
Duncan Sandsd42c8122007-10-17 13:49:58 +00001395
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001396 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001397 N = new (NodeAllocator) VTSDNode(VT);
Duncan Sandsd42c8122007-10-17 13:49:58 +00001398 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001399 return SDValue(N, 0);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001400}
1401
Owen Anderson53aa7a92009-08-10 22:56:29 +00001402SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
Bill Wendling24c79f22008-09-16 21:48:12 +00001403 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001404 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001405 N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001406 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001407 return SDValue(N, 0);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001408}
1409
Owen Anderson53aa7a92009-08-10 22:56:29 +00001410SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
Chris Lattneraf5dbfc2009-06-25 18:45:50 +00001411 unsigned char TargetFlags) {
1412 SDNode *&N =
1413 TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1414 TargetFlags)];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001415 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001416 N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001417 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001418 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001419}
1420
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001421SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattnerd47675e2005-08-09 20:20:18 +00001422 if ((unsigned)Cond >= CondCodeNodes.size())
1423 CondCodeNodes.resize(Cond+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00001424
Craig Topperc0196b12014-04-14 00:51:57 +00001425 if (!CondCodeNodes[Cond]) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001426 CondCodeSDNode *N = new (NodeAllocator) CondCodeSDNode(Cond);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00001427 CondCodeNodes[Cond] = N;
1428 AllNodes.push_back(N);
Chris Lattner14e060f2005-08-09 20:40:02 +00001429 }
Bill Wendling022d18f2009-12-18 23:32:53 +00001430
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001431 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattnerd47675e2005-08-09 20:20:18 +00001432}
1433
Nate Begeman5f829d82009-04-29 05:20:52 +00001434// commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1435// the shuffle mask M that point at N1 to point at N2, and indices that point
1436// N2 to point at N1.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001437static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) {
1438 std::swap(N1, N2);
1439 int NElts = M.size();
1440 for (int i = 0; i != NElts; ++i) {
1441 if (M[i] >= NElts)
1442 M[i] -= NElts;
1443 else if (M[i] >= 0)
1444 M[i] += NElts;
1445 }
1446}
1447
Andrew Trickef9de2a2013-05-25 02:42:55 +00001448SDValue SelectionDAG::getVectorShuffle(EVT VT, SDLoc dl, SDValue N1,
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001449 SDValue N2, const int *Mask) {
Craig Topper0ecb26a2013-08-09 04:37:24 +00001450 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1451 "Invalid VECTOR_SHUFFLE");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001452
1453 // Canonicalize shuffle undef, undef -> undef
1454 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
Dan Gohman6b041362009-07-09 00:46:33 +00001455 return getUNDEF(VT);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001456
Eric Christopherdfda92b2009-08-22 00:40:45 +00001457 // Validate that all indices in Mask are within the range of the elements
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001458 // input to the shuffle.
Nate Begeman5f829d82009-04-29 05:20:52 +00001459 unsigned NElts = VT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001460 SmallVector<int, 8> MaskVec;
Nate Begeman5f829d82009-04-29 05:20:52 +00001461 for (unsigned i = 0; i != NElts; ++i) {
1462 assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001463 MaskVec.push_back(Mask[i]);
1464 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001465
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001466 // Canonicalize shuffle v, v -> v, undef
1467 if (N1 == N2) {
1468 N2 = getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001469 for (unsigned i = 0; i != NElts; ++i)
1470 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001471 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001472
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001473 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
1474 if (N1.getOpcode() == ISD::UNDEF)
1475 commuteShuffle(N1, N2, MaskVec);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001476
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001477 // Canonicalize all index into lhs, -> shuffle lhs, undef
1478 // Canonicalize all index into rhs, -> shuffle rhs, undef
1479 bool AllLHS = true, AllRHS = true;
1480 bool N2Undef = N2.getOpcode() == ISD::UNDEF;
Nate Begeman5f829d82009-04-29 05:20:52 +00001481 for (unsigned i = 0; i != NElts; ++i) {
1482 if (MaskVec[i] >= (int)NElts) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001483 if (N2Undef)
1484 MaskVec[i] = -1;
1485 else
1486 AllLHS = false;
1487 } else if (MaskVec[i] >= 0) {
1488 AllRHS = false;
1489 }
1490 }
1491 if (AllLHS && AllRHS)
1492 return getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001493 if (AllLHS && !N2Undef)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001494 N2 = getUNDEF(VT);
1495 if (AllRHS) {
1496 N1 = getUNDEF(VT);
1497 commuteShuffle(N1, N2, MaskVec);
1498 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001499
Craig Topper9a39b072013-08-08 08:03:12 +00001500 // If Identity shuffle return that node.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001501 bool Identity = true;
Nate Begeman5f829d82009-04-29 05:20:52 +00001502 for (unsigned i = 0; i != NElts; ++i) {
1503 if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001504 }
Craig Topper0ecb26a2013-08-09 04:37:24 +00001505 if (Identity && NElts)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001506 return N1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001507
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001508 // Shuffling a constant splat doesn't change the result.
Chandler Carruthb844e722014-07-08 07:19:55 +00001509 bool SplatHasUndefs;
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001510 if (N2Undef && N1.getOpcode() == ISD::BUILD_VECTOR)
Chandler Carruthb844e722014-07-08 07:19:55 +00001511 if (cast<BuildVectorSDNode>(N1)->getConstantSplatNode(SplatHasUndefs) &&
1512 !SplatHasUndefs)
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001513 return N1;
1514
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001515 FoldingSetNodeID ID;
1516 SDValue Ops[2] = { N1, N2 };
Craig Topper633d99b2014-04-27 23:22:43 +00001517 AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops);
Nate Begeman5f829d82009-04-29 05:20:52 +00001518 for (unsigned i = 0; i != NElts; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001519 ID.AddInteger(MaskVec[i]);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001520
Craig Topperc0196b12014-04-14 00:51:57 +00001521 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001522 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001523 return SDValue(E, 0);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001524
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001525 // Allocate the mask array for the node out of the BumpPtrAllocator, since
1526 // SDNode doesn't have access to it. This memory will be "leaked" when
1527 // the node is deallocated, but recovered when the NodeAllocator is released.
1528 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1529 memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int));
Eric Christopherdfda92b2009-08-22 00:40:45 +00001530
Dan Gohman01c65a22010-03-18 18:49:47 +00001531 ShuffleVectorSDNode *N =
Jack Carter170a5f22013-09-09 22:02:08 +00001532 new (NodeAllocator) ShuffleVectorSDNode(VT, dl.getIROrder(),
1533 dl.getDebugLoc(), N1, N2,
1534 MaskAlloc);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001535 CSEMap.InsertNode(N, IP);
1536 AllNodes.push_back(N);
1537 return SDValue(N, 0);
1538}
1539
Andrew Trickef9de2a2013-05-25 02:42:55 +00001540SDValue SelectionDAG::getConvertRndSat(EVT VT, SDLoc dl,
Dale Johannesen3a09f552009-02-03 23:04:43 +00001541 SDValue Val, SDValue DTy,
1542 SDValue STy, SDValue Rnd, SDValue Sat,
1543 ISD::CvtCode Code) {
Mon P Wang3f0e0a62009-02-05 04:47:42 +00001544 // If the src and dest types are the same and the conversion is between
1545 // integer types of the same sign or two floats, no conversion is necessary.
1546 if (DTy == STy &&
1547 (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001548 return Val;
1549
1550 FoldingSetNodeID ID;
Mon P Wangfc032ce2009-11-07 04:46:25 +00001551 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
Craig Topper633d99b2014-04-27 23:22:43 +00001552 AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00001553 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001554 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001555 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001556
Jack Carter170a5f22013-09-09 22:02:08 +00001557 CvtRndSatSDNode *N = new (NodeAllocator) CvtRndSatSDNode(VT, dl.getIROrder(),
1558 dl.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00001559 Ops, Code);
Dale Johannesen3a09f552009-02-03 23:04:43 +00001560 CSEMap.InsertNode(N, IP);
1561 AllNodes.push_back(N);
1562 return SDValue(N, 0);
1563}
1564
Owen Anderson53aa7a92009-08-10 22:56:29 +00001565SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001566 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001567 AddNodeIDNode(ID, ISD::Register, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001568 ID.AddInteger(RegNo);
Craig Topperc0196b12014-04-14 00:51:57 +00001569 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001570 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001571 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001572
Dan Gohman01c65a22010-03-18 18:49:47 +00001573 SDNode *N = new (NodeAllocator) RegisterSDNode(RegNo, VT);
Chris Lattner3f16b202006-08-11 21:01:22 +00001574 CSEMap.InsertNode(N, IP);
1575 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001576 return SDValue(N, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +00001577}
1578
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001579SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
1580 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001581 AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None);
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001582 ID.AddPointer(RegMask);
Craig Topperc0196b12014-04-14 00:51:57 +00001583 void *IP = nullptr;
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001584 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1585 return SDValue(E, 0);
1586
1587 SDNode *N = new (NodeAllocator) RegisterMaskSDNode(RegMask);
1588 CSEMap.InsertNode(N, IP);
1589 AllNodes.push_back(N);
1590 return SDValue(N, 0);
1591}
1592
Andrew Trickef9de2a2013-05-25 02:42:55 +00001593SDValue SelectionDAG::getEHLabel(SDLoc dl, SDValue Root, MCSymbol *Label) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00001594 FoldingSetNodeID ID;
1595 SDValue Ops[] = { Root };
Craig Topper633d99b2014-04-27 23:22:43 +00001596 AddNodeIDNode(ID, ISD::EH_LABEL, getVTList(MVT::Other), Ops);
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001597 ID.AddPointer(Label);
Craig Topperc0196b12014-04-14 00:51:57 +00001598 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001599 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00001600 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001601
Jack Carter170a5f22013-09-09 22:02:08 +00001602 SDNode *N = new (NodeAllocator) EHLabelSDNode(dl.getIROrder(),
1603 dl.getDebugLoc(), Root, Label);
Dale Johannesen839acbb2009-01-29 00:47:48 +00001604 CSEMap.InsertNode(N, IP);
1605 AllNodes.push_back(N);
1606 return SDValue(N, 0);
1607}
1608
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001609
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001610SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
Michael Liaoabb87d42012-09-12 21:43:09 +00001611 int64_t Offset,
Dan Gohman7a6611792009-11-20 23:18:13 +00001612 bool isTarget,
1613 unsigned char TargetFlags) {
Dan Gohman6c938802009-10-30 01:27:03 +00001614 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1615
1616 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001617 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Dan Gohman6c938802009-10-30 01:27:03 +00001618 ID.AddPointer(BA);
Michael Liaoabb87d42012-09-12 21:43:09 +00001619 ID.AddInteger(Offset);
Dan Gohman7a6611792009-11-20 23:18:13 +00001620 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001621 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001622 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman6c938802009-10-30 01:27:03 +00001623 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001624
Michael Liaoabb87d42012-09-12 21:43:09 +00001625 SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset,
1626 TargetFlags);
Dan Gohman6c938802009-10-30 01:27:03 +00001627 CSEMap.InsertNode(N, IP);
1628 AllNodes.push_back(N);
1629 return SDValue(N, 0);
1630}
1631
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001632SDValue SelectionDAG::getSrcValue(const Value *V) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001633 assert((!V || V->getType()->isPointerTy()) &&
Chris Lattner3f16b202006-08-11 21:01:22 +00001634 "SrcValue is not a pointer?");
1635
Jim Laskeyf576b422006-10-27 23:46:08 +00001636 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001637 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001638 ID.AddPointer(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001639
Craig Topperc0196b12014-04-14 00:51:57 +00001640 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001641 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001642 return SDValue(E, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001643
Dan Gohman01c65a22010-03-18 18:49:47 +00001644 SDNode *N = new (NodeAllocator) SrcValueSDNode(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001645 CSEMap.InsertNode(N, IP);
1646 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001647 return SDValue(N, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001648}
1649
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001650/// getMDNode - Return an MDNodeSDNode which holds an MDNode.
1651SDValue SelectionDAG::getMDNode(const MDNode *MD) {
1652 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001653 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001654 ID.AddPointer(MD);
Wesley Peck527da1b2010-11-23 03:31:01 +00001655
Craig Topperc0196b12014-04-14 00:51:57 +00001656 void *IP = nullptr;
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001657 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1658 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001659
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001660 SDNode *N = new (NodeAllocator) MDNodeSDNode(MD);
1661 CSEMap.InsertNode(N, IP);
1662 AllNodes.push_back(N);
1663 return SDValue(N, 0);
1664}
1665
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001666/// getAddrSpaceCast - Return an AddrSpaceCastSDNode.
1667SDValue SelectionDAG::getAddrSpaceCast(SDLoc dl, EVT VT, SDValue Ptr,
1668 unsigned SrcAS, unsigned DestAS) {
1669 SDValue Ops[] = {Ptr};
1670 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001671 AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001672 ID.AddInteger(SrcAS);
1673 ID.AddInteger(DestAS);
1674
Craig Topperc0196b12014-04-14 00:51:57 +00001675 void *IP = nullptr;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001676 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1677 return SDValue(E, 0);
1678
1679 SDNode *N = new (NodeAllocator) AddrSpaceCastSDNode(dl.getIROrder(),
1680 dl.getDebugLoc(),
1681 VT, Ptr, SrcAS, DestAS);
1682 CSEMap.InsertNode(N, IP);
1683 AllNodes.push_back(N);
1684 return SDValue(N, 0);
1685}
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001686
Duncan Sands41826032009-01-31 15:50:11 +00001687/// getShiftAmountOperand - Return the specified value casted to
1688/// the target's desired shift amount type.
Owen Andersoncd526fa2011-03-07 18:29:47 +00001689SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001690 EVT OpTy = Op.getValueType();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001691 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);
Duncan Sands41826032009-01-31 15:50:11 +00001692 if (OpTy == ShTy || OpTy.isVector()) return Op;
1693
1694 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001695 return getNode(Opcode, SDLoc(Op), ShTy, Op);
Duncan Sands41826032009-01-31 15:50:11 +00001696}
1697
Chris Lattner9eb7a822007-10-15 17:47:20 +00001698/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1699/// specified value type.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001700SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
Chris Lattner9eb7a822007-10-15 17:47:20 +00001701 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Dan Gohman203d53e2009-09-23 21:07:02 +00001702 unsigned ByteSize = VT.getStoreSize();
Chris Lattner229907c2011-07-18 04:54:35 +00001703 Type *Ty = VT.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001704 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang5c755ff2008-07-05 20:40:31 +00001705 unsigned StackAlign =
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001706 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001707
David Greene1fbe0542009-11-12 20:49:22 +00001708 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001709 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Chris Lattner9eb7a822007-10-15 17:47:20 +00001710}
1711
Duncan Sands445071c2008-12-09 21:33:20 +00001712/// CreateStackTemporary - Create a stack temporary suitable for holding
1713/// either of the specified value types.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001714SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
Duncan Sands445071c2008-12-09 21:33:20 +00001715 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1716 VT2.getStoreSizeInBits())/8;
Chris Lattner229907c2011-07-18 04:54:35 +00001717 Type *Ty1 = VT1.getTypeForEVT(*getContext());
1718 Type *Ty2 = VT2.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001719 const TargetLowering *TLI = TM.getTargetLowering();
1720 const DataLayout *TD = TLI->getDataLayout();
Duncan Sands445071c2008-12-09 21:33:20 +00001721 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1722 TD->getPrefTypeAlignment(Ty2));
1723
1724 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00001725 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001726 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Duncan Sands445071c2008-12-09 21:33:20 +00001727}
1728
Owen Anderson53aa7a92009-08-10 22:56:29 +00001729SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001730 SDValue N2, ISD::CondCode Cond, SDLoc dl) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00001731 // These setcc operations always fold.
1732 switch (Cond) {
1733 default: break;
1734 case ISD::SETFALSE:
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001735 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001736 case ISD::SETTRUE:
Tim Northover950fcc02013-09-06 12:38:12 +00001737 case ISD::SETTRUE2: {
1738 const TargetLowering *TLI = TM.getTargetLowering();
1739 TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector());
1740 return getConstant(
1741 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
1742 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001743
Chris Lattner393d96a2006-04-27 05:01:07 +00001744 case ISD::SETOEQ:
1745 case ISD::SETOGT:
1746 case ISD::SETOGE:
1747 case ISD::SETOLT:
1748 case ISD::SETOLE:
1749 case ISD::SETONE:
1750 case ISD::SETO:
1751 case ISD::SETUO:
1752 case ISD::SETUEQ:
1753 case ISD::SETUNE:
Duncan Sands13237ac2008-06-06 12:08:01 +00001754 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattner393d96a2006-04-27 05:01:07 +00001755 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001756 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001757
Gabor Greiff304a7a2008-08-28 21:40:38 +00001758 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001759 const APInt &C2 = N2C->getAPIntValue();
Gabor Greiff304a7a2008-08-28 21:40:38 +00001760 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001761 const APInt &C1 = N1C->getAPIntValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001762
Chris Lattner061a1ea2005-01-07 07:46:32 +00001763 switch (Cond) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001764 default: llvm_unreachable("Unknown integer setcc!");
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001765 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1766 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001767 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1768 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1769 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1770 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1771 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1772 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1773 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1774 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001775 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001776 }
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001777 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00001778 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1779 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001780 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattner061a1ea2005-01-07 07:46:32 +00001781 switch (Cond) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001782 default: break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001783 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001784 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001785 // fall through
1786 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001787 case ISD::SETNE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001788 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001789 // fall through
1790 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001791 R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001792 case ISD::SETLT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001793 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001794 // fall through
1795 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001796 case ISD::SETGT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001797 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001798 // fall through
1799 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001800 case ISD::SETLE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001801 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001802 // fall through
1803 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001804 R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001805 case ISD::SETGE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001806 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001807 // fall through
1808 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001809 R==APFloat::cmpEqual, VT);
1810 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1811 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1812 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1813 R==APFloat::cmpEqual, VT);
1814 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1815 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1816 R==APFloat::cmpLessThan, VT);
1817 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1818 R==APFloat::cmpUnordered, VT);
1819 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1820 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001821 }
1822 } else {
1823 // Ensure that the constant occurs on the RHS.
Tom Stellardcd428182013-09-28 02:50:38 +00001824 ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond);
1825 MVT CompVT = N1.getValueType().getSimpleVT();
1826 if (!TM.getTargetLowering()->isCondCodeLegal(SwappedCond, CompVT))
1827 return SDValue();
1828
1829 return getSetCC(dl, VT, N2, N1, SwappedCond);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001830 }
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001831 }
1832
Chris Lattnerd47675e2005-08-09 20:20:18 +00001833 // Could not fold it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001834 return SDValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001835}
1836
Dan Gohman1f372ed2008-02-25 21:11:39 +00001837/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1838/// use this predicate to simplify operations downstream.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001839bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Chris Lattnerf3989ab2009-07-07 23:28:46 +00001840 // This predicate is not safe for vector operations.
1841 if (Op.getValueType().isVector())
1842 return false;
Eric Christopherdfda92b2009-08-22 00:40:45 +00001843
Dan Gohman1d459e42009-12-11 21:31:27 +00001844 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman1f372ed2008-02-25 21:11:39 +00001845 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1846}
1847
Dan Gohman309d3d52007-06-22 14:59:07 +00001848/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1849/// this predicate to simplify operations downstream. Mask is known to be zero
1850/// for bits that V cannot have.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001851bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohman309d3d52007-06-22 14:59:07 +00001852 unsigned Depth) const {
Dan Gohman1f372ed2008-02-25 21:11:39 +00001853 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001854 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001855 return (KnownZero & Mask) == Mask;
1856}
1857
Jay Foada0653a32014-05-14 21:14:37 +00001858/// Determine which bits of Op are known to be either zero or one and return
1859/// them in the KnownZero/KnownOne bitsets.
1860void SelectionDAG::computeKnownBits(SDValue Op, APInt &KnownZero,
1861 APInt &KnownOne, unsigned Depth) const {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001862 const TargetLowering *TLI = TM.getTargetLowering();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001863 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman7e22a5d2008-02-13 23:13:32 +00001864
Dan Gohmanf990faf2008-02-13 00:35:47 +00001865 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001866 if (Depth == 6)
Dan Gohman309d3d52007-06-22 14:59:07 +00001867 return; // Limit search depth.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001868
Dan Gohmanf990faf2008-02-13 00:35:47 +00001869 APInt KnownZero2, KnownOne2;
Dan Gohman309d3d52007-06-22 14:59:07 +00001870
1871 switch (Op.getOpcode()) {
1872 case ISD::Constant:
1873 // We know all of the bits for a constant!
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001874 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue();
1875 KnownZero = ~KnownOne;
Jay Foad5a29c362014-05-15 12:12:55 +00001876 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001877 case ISD::AND:
1878 // If either the LHS or the RHS are Zero, the result is zero.
Jay Foada0653a32014-05-14 21:14:37 +00001879 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1880 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001881
1882 // Output known-1 bits are only known if set in both the LHS & RHS.
1883 KnownOne &= KnownOne2;
1884 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1885 KnownZero |= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001886 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001887 case ISD::OR:
Jay Foada0653a32014-05-14 21:14:37 +00001888 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1889 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001890
Dan Gohman309d3d52007-06-22 14:59:07 +00001891 // Output known-0 bits are only known if clear in both the LHS & RHS.
1892 KnownZero &= KnownZero2;
1893 // Output known-1 are known to be set if set in either the LHS | RHS.
1894 KnownOne |= KnownOne2;
Jay Foad5a29c362014-05-15 12:12:55 +00001895 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001896 case ISD::XOR: {
Jay Foada0653a32014-05-14 21:14:37 +00001897 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1898 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001899
Dan Gohman309d3d52007-06-22 14:59:07 +00001900 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001901 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohman309d3d52007-06-22 14:59:07 +00001902 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1903 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1904 KnownZero = KnownZeroOut;
Jay Foad5a29c362014-05-15 12:12:55 +00001905 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001906 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00001907 case ISD::MUL: {
Jay Foada0653a32014-05-14 21:14:37 +00001908 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1909 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001910
1911 // If low bits are zero in either operand, output low known-0 bits.
1912 // Also compute a conserative estimate for high known-0 bits.
1913 // More trickiness is possible, but this is sufficient for the
1914 // interesting case of alignment computation.
Jay Foad25a5e4c2010-12-01 08:53:58 +00001915 KnownOne.clearAllBits();
Dan Gohman72ec3f42008-04-28 17:02:21 +00001916 unsigned TrailZ = KnownZero.countTrailingOnes() +
1917 KnownZero2.countTrailingOnes();
1918 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman5a3eecd2008-05-07 00:35:55 +00001919 KnownZero2.countLeadingOnes(),
1920 BitWidth) - BitWidth;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001921
1922 TrailZ = std::min(TrailZ, BitWidth);
1923 LeadZ = std::min(LeadZ, BitWidth);
1924 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1925 APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001926 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001927 }
1928 case ISD::UDIV: {
1929 // For the purposes of computing leading zeros we can conservatively
1930 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1962c2b2008-05-02 21:30:02 +00001931 // be less than the denominator.
Jay Foada0653a32014-05-14 21:14:37 +00001932 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001933 unsigned LeadZ = KnownZero2.countLeadingOnes();
1934
Jay Foad25a5e4c2010-12-01 08:53:58 +00001935 KnownOne2.clearAllBits();
1936 KnownZero2.clearAllBits();
Jay Foada0653a32014-05-14 21:14:37 +00001937 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman1962c2b2008-05-02 21:30:02 +00001938 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1939 if (RHSUnknownLeadingOnes != BitWidth)
1940 LeadZ = std::min(BitWidth,
1941 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001942
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001943 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001944 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001945 }
Dan Gohman309d3d52007-06-22 14:59:07 +00001946 case ISD::SELECT:
Jay Foada0653a32014-05-14 21:14:37 +00001947 computeKnownBits(Op.getOperand(2), KnownZero, KnownOne, Depth+1);
1948 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001949
Dan Gohman309d3d52007-06-22 14:59:07 +00001950 // Only known if known in both the LHS and RHS.
1951 KnownOne &= KnownOne2;
1952 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001953 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001954 case ISD::SELECT_CC:
Jay Foada0653a32014-05-14 21:14:37 +00001955 computeKnownBits(Op.getOperand(3), KnownZero, KnownOne, Depth+1);
1956 computeKnownBits(Op.getOperand(2), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001957
Dan Gohman309d3d52007-06-22 14:59:07 +00001958 // Only known if known in both the LHS and RHS.
1959 KnownOne &= KnownOne2;
1960 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001961 break;
Bill Wendling5424e6d2008-11-22 07:24:01 +00001962 case ISD::SADDO:
1963 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00001964 case ISD::SSUBO:
1965 case ISD::USUBO:
1966 case ISD::SMULO:
1967 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00001968 if (Op.getResNo() != 1)
Jay Foad5a29c362014-05-15 12:12:55 +00001969 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00001970 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00001971 case ISD::SETCC:
1972 // If we know the result of a setcc has the top bits zero, use this info.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001973 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00001974 TargetLowering::ZeroOrOneBooleanContent && BitWidth > 1)
Dan Gohmanf990faf2008-02-13 00:35:47 +00001975 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00001976 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001977 case ISD::SHL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001978 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00001979 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001980 unsigned ShAmt = SA->getZExtValue();
Dan Gohman9db0aa82008-02-26 18:50:50 +00001981
1982 // If the shift count is an invalid immediate, don't do anything.
1983 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00001984 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00001985
Jay Foada0653a32014-05-14 21:14:37 +00001986 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohman9db0aa82008-02-26 18:50:50 +00001987 KnownZero <<= ShAmt;
1988 KnownOne <<= ShAmt;
Dan Gohmanf990faf2008-02-13 00:35:47 +00001989 // low bits known zero.
Dan Gohman9db0aa82008-02-26 18:50:50 +00001990 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001991 }
Jay Foad5a29c362014-05-15 12:12:55 +00001992 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001993 case ISD::SRL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001994 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00001995 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001996 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00001997
Dan Gohman9db0aa82008-02-26 18:50:50 +00001998 // If the shift count is an invalid immediate, don't do anything.
1999 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002000 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002001
Jay Foada0653a32014-05-14 21:14:37 +00002002 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002003 KnownZero = KnownZero.lshr(ShAmt);
2004 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002005
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002006 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002007 KnownZero |= HighBits; // High bits known zero.
2008 }
Jay Foad5a29c362014-05-15 12:12:55 +00002009 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002010 case ISD::SRA:
2011 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002012 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002013
Dan Gohman9db0aa82008-02-26 18:50:50 +00002014 // If the shift count is an invalid immediate, don't do anything.
2015 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002016 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002017
Dan Gohman309d3d52007-06-22 14:59:07 +00002018 // If any of the demanded bits are produced by the sign extension, we also
2019 // demand the input sign bit.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002020 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002021
Jay Foada0653a32014-05-14 21:14:37 +00002022 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002023 KnownZero = KnownZero.lshr(ShAmt);
2024 KnownOne = KnownOne.lshr(ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002025
Dan Gohman309d3d52007-06-22 14:59:07 +00002026 // Handle the sign bits.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002027 APInt SignBit = APInt::getSignBit(BitWidth);
2028 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002029
Dan Gohmanb717fda2008-02-20 16:30:17 +00002030 if (KnownZero.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002031 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002032 } else if (KnownOne.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002033 KnownOne |= HighBits; // New bits are known one.
2034 }
2035 }
Jay Foad5a29c362014-05-15 12:12:55 +00002036 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002037 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002038 EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002039 unsigned EBits = EVT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002040
2041 // Sign extension. Compute the demanded bits in the result that are not
Dan Gohman309d3d52007-06-22 14:59:07 +00002042 // present in the input.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002043 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002044
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002045 APInt InSignBit = APInt::getSignBit(EBits);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002046 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002047
Dan Gohman309d3d52007-06-22 14:59:07 +00002048 // If the sign extended bits are demanded, we know that the sign
2049 // bit is demanded.
Jay Foad583abbc2010-12-07 08:25:19 +00002050 InSignBit = InSignBit.zext(BitWidth);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002051 if (NewBits.getBoolValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002052 InputDemandedBits |= InSignBit;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002053
Jay Foada0653a32014-05-14 21:14:37 +00002054 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002055 KnownOne &= InputDemandedBits;
2056 KnownZero &= InputDemandedBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002057
Dan Gohman309d3d52007-06-22 14:59:07 +00002058 // If the sign bit of the input is known set or clear, then we know the
2059 // top bits of the result.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002060 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohman309d3d52007-06-22 14:59:07 +00002061 KnownZero |= NewBits;
2062 KnownOne &= ~NewBits;
Dan Gohmanb717fda2008-02-20 16:30:17 +00002063 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohman309d3d52007-06-22 14:59:07 +00002064 KnownOne |= NewBits;
2065 KnownZero &= ~NewBits;
2066 } else { // Input sign bit unknown
2067 KnownZero &= ~NewBits;
2068 KnownOne &= ~NewBits;
2069 }
Jay Foad5a29c362014-05-15 12:12:55 +00002070 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002071 }
2072 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002073 case ISD::CTTZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002074 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002075 case ISD::CTLZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002076 case ISD::CTPOP: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00002077 unsigned LowBits = Log2_32(BitWidth)+1;
2078 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Jay Foad25a5e4c2010-12-01 08:53:58 +00002079 KnownOne.clearAllBits();
Jay Foad5a29c362014-05-15 12:12:55 +00002080 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002081 }
2082 case ISD::LOAD: {
Rafael Espindola80c540e2012-03-31 18:14:00 +00002083 LoadSDNode *LD = cast<LoadSDNode>(Op);
Nadav Rotem4536d582013-03-20 22:53:44 +00002084 // If this is a ZEXTLoad and we are looking at the loaded value.
2085 if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002086 EVT VT = LD->getMemoryVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002087 unsigned MemBits = VT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002088 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
Rafael Espindola80c540e2012-03-31 18:14:00 +00002089 } else if (const MDNode *Ranges = LD->getRanges()) {
Jingyue Wu37fcb592014-06-19 16:50:16 +00002090 computeKnownBitsFromRangeMetadata(*Ranges, KnownZero);
Dan Gohman309d3d52007-06-22 14:59:07 +00002091 }
Jay Foad5a29c362014-05-15 12:12:55 +00002092 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002093 }
2094 case ISD::ZERO_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002095 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002096 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002097 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Jay Foad583abbc2010-12-07 08:25:19 +00002098 KnownZero = KnownZero.trunc(InBits);
2099 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002100 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002101 KnownZero = KnownZero.zext(BitWidth);
2102 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002103 KnownZero |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002104 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002105 }
2106 case ISD::SIGN_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002107 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002108 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002109 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002110
Jay Foad583abbc2010-12-07 08:25:19 +00002111 KnownZero = KnownZero.trunc(InBits);
2112 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002113 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002114
2115 // Note if the sign bit is known to be zero or one.
2116 bool SignBitKnownZero = KnownZero.isNegative();
2117 bool SignBitKnownOne = KnownOne.isNegative();
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002118
Jay Foad583abbc2010-12-07 08:25:19 +00002119 KnownZero = KnownZero.zext(BitWidth);
2120 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002121
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002122 // If the sign bit is known zero or one, the top bits match.
2123 if (SignBitKnownZero)
Dan Gohman309d3d52007-06-22 14:59:07 +00002124 KnownZero |= NewBits;
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002125 else if (SignBitKnownOne)
Dan Gohman309d3d52007-06-22 14:59:07 +00002126 KnownOne |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002127 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002128 }
2129 case ISD::ANY_EXTEND: {
Evan Cheng9ec512d2012-12-06 19:13:27 +00002130 EVT InVT = Op.getOperand(0).getValueType();
2131 unsigned InBits = InVT.getScalarType().getSizeInBits();
2132 KnownZero = KnownZero.trunc(InBits);
2133 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002134 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Evan Cheng9ec512d2012-12-06 19:13:27 +00002135 KnownZero = KnownZero.zext(BitWidth);
2136 KnownOne = KnownOne.zext(BitWidth);
Jay Foad5a29c362014-05-15 12:12:55 +00002137 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002138 }
2139 case ISD::TRUNCATE: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002140 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002141 unsigned InBits = InVT.getScalarType().getSizeInBits();
Jay Foad583abbc2010-12-07 08:25:19 +00002142 KnownZero = KnownZero.zext(InBits);
2143 KnownOne = KnownOne.zext(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002144 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002145 KnownZero = KnownZero.trunc(BitWidth);
2146 KnownOne = KnownOne.trunc(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00002147 break;
2148 }
2149 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002150 EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Duncan Sands13237ac2008-06-06 12:08:01 +00002151 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Jay Foada0653a32014-05-14 21:14:37 +00002152 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002153 KnownZero |= (~InMask);
Nadav Rotem839a06e2012-07-16 18:34:53 +00002154 KnownOne &= (~KnownZero);
Jay Foad5a29c362014-05-15 12:12:55 +00002155 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002156 }
Chris Lattnerafc8f132007-12-22 21:26:52 +00002157 case ISD::FGETSIGN:
2158 // All bits are zero except the low bit.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002159 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00002160 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002161
Dan Gohman72ec3f42008-04-28 17:02:21 +00002162 case ISD::SUB: {
2163 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
2164 // We know that the top bits of C-X are clear if X contains less bits
2165 // than C (i.e. no wrap-around can happen). For example, 20-X is
2166 // positive if we can prove that X is >= 0 and < 16.
2167 if (CLHS->getAPIntValue().isNonNegative()) {
2168 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
2169 // NLZ can't be BitWidth with no sign bit
2170 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Jay Foada0653a32014-05-14 21:14:37 +00002171 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002172
2173 // If all of the MaskV bits are known to be zero, then we know the
2174 // output top bits are zero, because we now know that the output is
2175 // from [0-C].
2176 if ((KnownZero2 & MaskV) == MaskV) {
2177 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
2178 // Top bits known zero.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002179 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002180 }
2181 }
2182 }
2183 }
2184 // fall through
Chris Lattner440b2802010-12-19 20:38:28 +00002185 case ISD::ADD:
2186 case ISD::ADDE: {
Dan Gohman309d3d52007-06-22 14:59:07 +00002187 // Output known-0 bits are known if clear or set in both the low clear bits
2188 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
2189 // low 3 bits clear.
Jay Foada0653a32014-05-14 21:14:37 +00002190 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002191 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
2192
Jay Foada0653a32014-05-14 21:14:37 +00002193 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002194 KnownZeroOut = std::min(KnownZeroOut,
2195 KnownZero2.countTrailingOnes());
2196
Chris Lattner440b2802010-12-19 20:38:28 +00002197 if (Op.getOpcode() == ISD::ADD) {
2198 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002199 break;
Chris Lattner440b2802010-12-19 20:38:28 +00002200 }
2201
2202 // With ADDE, a carry bit may be added in, so we can only use this
2203 // information if we know (at least) that the low two bits are clear. We
2204 // then return to the caller that the low bit is unknown but that other bits
2205 // are known zero.
2206 if (KnownZeroOut >= 2) // ADDE
2207 KnownZero |= APInt::getBitsSet(BitWidth, 1, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002208 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002209 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00002210 case ISD::SREM:
2211 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands33274982010-01-29 09:45:26 +00002212 const APInt &RA = Rem->getAPIntValue().abs();
2213 if (RA.isPowerOf2()) {
2214 APInt LowBits = RA - 1;
Jay Foada0653a32014-05-14 21:14:37 +00002215 computeKnownBits(Op.getOperand(0), KnownZero2,KnownOne2,Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002216
Duncan Sands33274982010-01-29 09:45:26 +00002217 // The low bits of the first operand are unchanged by the srem.
2218 KnownZero = KnownZero2 & LowBits;
2219 KnownOne = KnownOne2 & LowBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002220
Duncan Sands33274982010-01-29 09:45:26 +00002221 // If the first operand is non-negative or has all low bits zero, then
2222 // the upper bits are all zero.
2223 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
2224 KnownZero |= ~LowBits;
2225
2226 // If the first operand is negative and not all low bits are zero, then
2227 // the upper bits are all one.
2228 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
2229 KnownOne |= ~LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002230 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002231 }
2232 }
Jay Foad5a29c362014-05-15 12:12:55 +00002233 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002234 case ISD::UREM: {
2235 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf3c4d7f2008-07-03 00:52:03 +00002236 const APInt &RA = Rem->getAPIntValue();
Dan Gohmancf0e3ac2008-05-06 00:51:48 +00002237 if (RA.isPowerOf2()) {
2238 APInt LowBits = (RA - 1);
Rafael Espindola92945ee2014-05-30 15:00:45 +00002239 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth + 1);
2240
2241 // The upper bits are all zero, the lower ones are unchanged.
2242 KnownZero = KnownZero2 | ~LowBits;
2243 KnownOne = KnownOne2 & LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002244 break;
2245 }
2246 }
2247
2248 // Since the result is less than or equal to either operand, any leading
2249 // zero bits in either operand must also exist in the result.
Jay Foada0653a32014-05-14 21:14:37 +00002250 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
2251 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002252
2253 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
2254 KnownZero2.countLeadingOnes());
Jay Foad25a5e4c2010-12-01 08:53:58 +00002255 KnownOne.clearAllBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002256 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders);
Jay Foad5a29c362014-05-15 12:12:55 +00002257 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002258 }
Chris Lattner46c01a32011-02-13 22:25:43 +00002259 case ISD::FrameIndex:
2260 case ISD::TargetFrameIndex:
2261 if (unsigned Align = InferPtrAlignment(Op)) {
2262 // The low bits are known zero if the pointer is aligned.
2263 KnownZero = APInt::getLowBitsSet(BitWidth, Log2_32(Align));
Jay Foad5a29c362014-05-15 12:12:55 +00002264 break;
Chris Lattner46c01a32011-02-13 22:25:43 +00002265 }
2266 break;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002267
Dan Gohman309d3d52007-06-22 14:59:07 +00002268 default:
Evan Cheng88f91372011-05-24 01:48:22 +00002269 if (Op.getOpcode() < ISD::BUILTIN_OP_END)
2270 break;
2271 // Fallthrough
Dan Gohman309d3d52007-06-22 14:59:07 +00002272 case ISD::INTRINSIC_WO_CHAIN:
2273 case ISD::INTRINSIC_W_CHAIN:
2274 case ISD::INTRINSIC_VOID:
Evan Cheng88f91372011-05-24 01:48:22 +00002275 // Allow the target to implement this method for its nodes.
Jay Foada0653a32014-05-14 21:14:37 +00002276 TLI->computeKnownBitsForTargetNode(Op, KnownZero, KnownOne, *this, Depth);
Jay Foad5a29c362014-05-15 12:12:55 +00002277 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002278 }
Jay Foad5a29c362014-05-15 12:12:55 +00002279
2280 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002281}
2282
2283/// ComputeNumSignBits - Return the number of times the sign bit of the
2284/// register is replicated into the other bits. We know that at least 1 bit
2285/// is always equal to the sign bit (itself), but other cases can give us
2286/// information. For example, immediately after an "SRA X, 2", we know that
2287/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002288unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002289 const TargetLowering *TLI = TM.getTargetLowering();
Owen Anderson53aa7a92009-08-10 22:56:29 +00002290 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00002291 assert(VT.isInteger() && "Invalid VT!");
Dan Gohman1d459e42009-12-11 21:31:27 +00002292 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002293 unsigned Tmp, Tmp2;
Dan Gohman6d5f1202008-05-23 02:28:01 +00002294 unsigned FirstAnswer = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002295
Dan Gohman309d3d52007-06-22 14:59:07 +00002296 if (Depth == 6)
2297 return 1; // Limit search depth.
2298
2299 switch (Op.getOpcode()) {
2300 default: break;
2301 case ISD::AssertSext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002302 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002303 return VTBits-Tmp+1;
2304 case ISD::AssertZext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002305 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002306 return VTBits-Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002307
Dan Gohman309d3d52007-06-22 14:59:07 +00002308 case ISD::Constant: {
Dan Gohman10f34072008-03-03 23:35:36 +00002309 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
Cameron Zwarich3cf92802011-02-24 10:00:20 +00002310 return Val.getNumSignBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002311 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002312
Dan Gohman309d3d52007-06-22 14:59:07 +00002313 case ISD::SIGN_EXTEND:
Jack Carter170a5f22013-09-09 22:02:08 +00002314 Tmp =
2315 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002316 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002317
Dan Gohman309d3d52007-06-22 14:59:07 +00002318 case ISD::SIGN_EXTEND_INREG:
2319 // Max of the input and what this extends.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002320 Tmp =
2321 cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002322 Tmp = VTBits-Tmp+1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002323
Dan Gohman309d3d52007-06-22 14:59:07 +00002324 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2325 return std::max(Tmp, Tmp2);
2326
2327 case ISD::SRA:
2328 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2329 // SRA X, C -> adds C sign bits.
2330 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002331 Tmp += C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002332 if (Tmp > VTBits) Tmp = VTBits;
2333 }
2334 return Tmp;
2335 case ISD::SHL:
2336 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2337 // shl destroys sign bits.
2338 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmaneffb8942008-09-12 16:56:44 +00002339 if (C->getZExtValue() >= VTBits || // Bad shift.
2340 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
2341 return Tmp - C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002342 }
2343 break;
2344 case ISD::AND:
2345 case ISD::OR:
2346 case ISD::XOR: // NOT is handled here.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002347 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohman309d3d52007-06-22 14:59:07 +00002348 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002349 if (Tmp != 1) {
2350 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2351 FirstAnswer = std::min(Tmp, Tmp2);
2352 // We computed what we know about the sign bits as our first
2353 // answer. Now proceed to the generic code that uses
Jay Foada0653a32014-05-14 21:14:37 +00002354 // computeKnownBits, and pick whichever answer is better.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002355 }
2356 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002357
2358 case ISD::SELECT:
Dan Gohmanfe136182008-05-20 20:59:51 +00002359 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002360 if (Tmp == 1) return 1; // Early out.
Dan Gohmanfe136182008-05-20 20:59:51 +00002361 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002362 return std::min(Tmp, Tmp2);
Bill Wendling5424e6d2008-11-22 07:24:01 +00002363
2364 case ISD::SADDO:
2365 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00002366 case ISD::SSUBO:
2367 case ISD::USUBO:
2368 case ISD::SMULO:
2369 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00002370 if (Op.getResNo() != 1)
2371 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002372 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00002373 case ISD::SETCC:
2374 // If setcc returns 0/-1, all bits are sign bits.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002375 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002376 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohman309d3d52007-06-22 14:59:07 +00002377 return VTBits;
2378 break;
2379 case ISD::ROTL:
2380 case ISD::ROTR:
2381 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002382 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002383
Dan Gohman309d3d52007-06-22 14:59:07 +00002384 // Handle rotate right by N like a rotate left by 32-N.
2385 if (Op.getOpcode() == ISD::ROTR)
2386 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2387
2388 // If we aren't rotating out all of the known-in sign bits, return the
2389 // number that are left. This handles rotl(sext(x), 1) for example.
2390 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2391 if (Tmp > RotAmt+1) return Tmp-RotAmt;
2392 }
2393 break;
2394 case ISD::ADD:
2395 // Add can have at most one carry bit. Thus we know that the output
2396 // is, at worst, one more bit than the inputs.
2397 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2398 if (Tmp == 1) return 1; // Early out.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002399
Dan Gohman309d3d52007-06-22 14:59:07 +00002400 // Special case decrementing a value (ADD X, -1):
Dan Gohman4f356bb2009-02-24 02:00:40 +00002401 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman309d3d52007-06-22 14:59:07 +00002402 if (CRHS->isAllOnesValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002403 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002404 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002405
Dan Gohman309d3d52007-06-22 14:59:07 +00002406 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2407 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002408 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002409 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002410
Dan Gohman309d3d52007-06-22 14:59:07 +00002411 // If we are subtracting one from a positive number, there is no carry
2412 // out of the result.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002413 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002414 return Tmp;
2415 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002416
Dan Gohman309d3d52007-06-22 14:59:07 +00002417 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2418 if (Tmp2 == 1) return 1;
David Blaikie46a9f012012-01-20 21:51:11 +00002419 return std::min(Tmp, Tmp2)-1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002420
Dan Gohman309d3d52007-06-22 14:59:07 +00002421 case ISD::SUB:
2422 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2423 if (Tmp2 == 1) return 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002424
Dan Gohman309d3d52007-06-22 14:59:07 +00002425 // Handle NEG.
2426 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohmanb72127a2008-03-13 22:13:53 +00002427 if (CLHS->isNullValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002428 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002429 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002430 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2431 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002432 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002433 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002434
Dan Gohman309d3d52007-06-22 14:59:07 +00002435 // If the input is known to be positive (the sign bit is known clear),
2436 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002437 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002438 return Tmp2;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002439
Dan Gohman309d3d52007-06-22 14:59:07 +00002440 // Otherwise, we treat this like a SUB.
2441 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002442
Dan Gohman309d3d52007-06-22 14:59:07 +00002443 // Sub can have at most one carry bit. Thus we know that the output
2444 // is, at worst, one more bit than the inputs.
2445 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2446 if (Tmp == 1) return 1; // Early out.
David Blaikie46a9f012012-01-20 21:51:11 +00002447 return std::min(Tmp, Tmp2)-1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002448 case ISD::TRUNCATE:
2449 // FIXME: it's tricky to do anything useful for this, but it is an important
2450 // case for targets like X86.
2451 break;
2452 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002453
Nadav Rotem4536d582013-03-20 22:53:44 +00002454 // If we are looking at the loaded value of the SDNode.
2455 if (Op.getResNo() == 0) {
2456 // Handle LOADX separately here. EXTLOAD case will fallthrough.
2457 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
2458 unsigned ExtType = LD->getExtensionType();
2459 switch (ExtType) {
2460 default: break;
2461 case ISD::SEXTLOAD: // '17' bits known
2462 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2463 return VTBits-Tmp+1;
2464 case ISD::ZEXTLOAD: // '16' bits known
2465 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2466 return VTBits-Tmp;
2467 }
Dan Gohman309d3d52007-06-22 14:59:07 +00002468 }
2469 }
2470
2471 // Allow the target to implement this method for its nodes.
2472 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00002473 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
Dan Gohman309d3d52007-06-22 14:59:07 +00002474 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2475 Op.getOpcode() == ISD::INTRINSIC_VOID) {
Matt Arsenaultcf6f6882014-04-04 20:13:13 +00002476 unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, *this, Depth);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002477 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002478 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002479
Dan Gohman309d3d52007-06-22 14:59:07 +00002480 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2481 // use this information.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002482 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002483 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002484
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002485 APInt Mask;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002486 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohman309d3d52007-06-22 14:59:07 +00002487 Mask = KnownZero;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002488 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002489 Mask = KnownOne;
2490 } else {
2491 // Nothing known.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002492 return FirstAnswer;
Dan Gohman309d3d52007-06-22 14:59:07 +00002493 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002494
Dan Gohman309d3d52007-06-22 14:59:07 +00002495 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2496 // the number of identical bits in the top of the input value.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002497 Mask = ~Mask;
2498 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002499 // Return # leading zeros. We use 'min' here in case Val was zero before
2500 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohman6d5f1202008-05-23 02:28:01 +00002501 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohman309d3d52007-06-22 14:59:07 +00002502}
2503
Chris Lattner46c01a32011-02-13 22:25:43 +00002504/// isBaseWithConstantOffset - Return true if the specified operand is an
2505/// ISD::ADD with a ConstantSDNode on the right-hand side, or if it is an
2506/// ISD::OR with a ConstantSDNode that is guaranteed to have the same
2507/// semantics as an ADD. This handles the equivalence:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002508/// X|Cst == X+Cst iff X&Cst = 0.
Chris Lattner46c01a32011-02-13 22:25:43 +00002509bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
2510 if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
2511 !isa<ConstantSDNode>(Op.getOperand(1)))
2512 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002513
2514 if (Op.getOpcode() == ISD::OR &&
Chris Lattner46c01a32011-02-13 22:25:43 +00002515 !MaskedValueIsZero(Op.getOperand(0),
2516 cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue()))
2517 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002518
Chris Lattner46c01a32011-02-13 22:25:43 +00002519 return true;
2520}
2521
2522
Dan Gohmand0d5e682009-09-03 20:34:31 +00002523bool SelectionDAG::isKnownNeverNaN(SDValue Op) const {
2524 // If we're told that NaNs won't happen, assume they won't.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002525 if (getTarget().Options.NoNaNsFPMath)
Dan Gohmand0d5e682009-09-03 20:34:31 +00002526 return true;
2527
2528 // If the value is a constant, we can obviously see if it is a NaN or not.
2529 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2530 return !C->getValueAPF().isNaN();
2531
2532 // TODO: Recognize more cases here.
2533
2534 return false;
2535}
Chris Lattnerbd9acad2006-10-14 00:41:01 +00002536
Dan Gohman38605212010-02-24 06:52:40 +00002537bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
2538 // If the value is a constant, we can obviously see if it is a zero or not.
2539 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2540 return !C->isZero();
2541
2542 // TODO: Recognize more cases here.
Evan Cheng88f91372011-05-24 01:48:22 +00002543 switch (Op.getOpcode()) {
2544 default: break;
2545 case ISD::OR:
2546 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2547 return !C->isNullValue();
2548 break;
2549 }
Dan Gohman38605212010-02-24 06:52:40 +00002550
2551 return false;
2552}
2553
2554bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
2555 // Check the obvious case.
2556 if (A == B) return true;
2557
2558 // For for negative and positive zero.
2559 if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
2560 if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
2561 if (CA->isZero() && CB->isZero()) return true;
2562
2563 // Otherwise they may not be equal.
2564 return false;
2565}
2566
Chris Lattner061a1ea2005-01-07 07:46:32 +00002567/// getNode - Gets or creates the specified node.
Chris Lattner600d3082003-08-11 14:57:33 +00002568///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002569SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00002570 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00002571 AddNodeIDNode(ID, Opcode, getVTList(VT), None);
Craig Topperc0196b12014-04-14 00:51:57 +00002572 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002573 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002574 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002575
Jack Carter170a5f22013-09-09 22:02:08 +00002576 SDNode *N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(),
2577 DL.getDebugLoc(), getVTList(VT));
Chris Lattnerfcb16472006-08-11 18:38:11 +00002578 CSEMap.InsertNode(N, IP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002579
Chris Lattnerfcb16472006-08-11 18:38:11 +00002580 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002581#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002582 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002583#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002584 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002585}
2586
Andrew Trickef9de2a2013-05-25 02:42:55 +00002587SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002588 EVT VT, SDValue Operand) {
Juergen Ributzkafcd2e942014-04-02 22:21:01 +00002589 // Constant fold unary operations with an integer constant operand. Even
2590 // opaque constant will be folded, because the folding of unary operations
2591 // doesn't create new constants with different values. Nevertheless, the
2592 // opaque flag is preserved during folding to prevent future folding with
2593 // other constants.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002594 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002595 const APInt &Val = C->getAPIntValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002596 switch (Opcode) {
2597 default: break;
Evan Cheng34173f02008-03-06 17:42:34 +00002598 case ISD::SIGN_EXTEND:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002599 return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), VT,
2600 C->isTargetOpcode(), C->isOpaque());
Chris Lattner8c393c22005-09-02 00:17:32 +00002601 case ISD::ANY_EXTEND:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002602 case ISD::ZERO_EXTEND:
Evan Cheng34173f02008-03-06 17:42:34 +00002603 case ISD::TRUNCATE:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002604 return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), VT,
2605 C->isTargetOpcode(), C->isOpaque());
Dale Johannesen7d67e542007-09-19 23:55:34 +00002606 case ISD::UINT_TO_FP:
2607 case ISD::SINT_TO_FP: {
Tim Northover29178a32013-01-22 09:46:31 +00002608 APFloat apf(EVTToAPFloatSemantics(VT),
2609 APInt::getNullValue(VT.getSizeInBits()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00002610 (void)apf.convertFromAPInt(Val,
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002611 Opcode==ISD::SINT_TO_FP,
2612 APFloat::rmNearestTiesToEven);
Dale Johannesen7d67e542007-09-19 23:55:34 +00002613 return getConstantFP(apf, VT);
2614 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002615 case ISD::BITCAST:
Owen Anderson9f944592009-08-11 20:47:22 +00002616 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Tim Northover29178a32013-01-22 09:46:31 +00002617 return getConstantFP(APFloat(APFloat::IEEEsingle, Val), VT);
Owen Anderson9f944592009-08-11 20:47:22 +00002618 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Tim Northover29178a32013-01-22 09:46:31 +00002619 return getConstantFP(APFloat(APFloat::IEEEdouble, Val), VT);
Chris Lattnera1874602005-12-23 05:30:37 +00002620 break;
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002621 case ISD::BSWAP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002622 return getConstant(Val.byteSwap(), VT, C->isTargetOpcode(),
2623 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002624 case ISD::CTPOP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002625 return getConstant(Val.countPopulation(), VT, C->isTargetOpcode(),
2626 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002627 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002628 case ISD::CTLZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002629 return getConstant(Val.countLeadingZeros(), VT, C->isTargetOpcode(),
2630 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002631 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002632 case ISD::CTTZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002633 return getConstant(Val.countTrailingZeros(), VT, C->isTargetOpcode(),
2634 C->isOpaque());
Chris Lattner061a1ea2005-01-07 07:46:32 +00002635 }
2636 }
2637
Dale Johannesen446b9002007-08-31 23:34:27 +00002638 // Constant fold unary operations with a floating point constant operand.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002639 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesen446b9002007-08-31 23:34:27 +00002640 APFloat V = C->getValueAPF(); // make copy
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002641 switch (Opcode) {
2642 case ISD::FNEG:
2643 V.changeSign();
2644 return getConstantFP(V, VT);
2645 case ISD::FABS:
2646 V.clearSign();
2647 return getConstantFP(V, VT);
2648 case ISD::FCEIL: {
2649 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
2650 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002651 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002652 break;
2653 }
2654 case ISD::FTRUNC: {
2655 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
2656 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002657 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002658 break;
2659 }
2660 case ISD::FFLOOR: {
2661 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
2662 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002663 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002664 break;
2665 }
2666 case ISD::FP_EXTEND: {
2667 bool ignored;
2668 // This can return overflow, underflow, or inexact; we don't care.
2669 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00002670 (void)V.convert(EVTToAPFloatSemantics(VT),
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002671 APFloat::rmNearestTiesToEven, &ignored);
2672 return getConstantFP(V, VT);
2673 }
2674 case ISD::FP_TO_SINT:
2675 case ISD::FP_TO_UINT: {
2676 integerPart x[2];
2677 bool ignored;
2678 assert(integerPartWidth >= 64);
2679 // FIXME need to be more flexible about rounding mode.
2680 APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(),
2681 Opcode==ISD::FP_TO_SINT,
2682 APFloat::rmTowardZero, &ignored);
2683 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
Dale Johannesen446b9002007-08-31 23:34:27 +00002684 break;
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002685 APInt api(VT.getSizeInBits(), x);
2686 return getConstant(api, VT);
2687 }
2688 case ISD::BITCAST:
2689 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2690 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2691 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2692 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2693 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002694 }
Dale Johannesen446b9002007-08-31 23:34:27 +00002695 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002696
Gabor Greiff304a7a2008-08-28 21:40:38 +00002697 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002698 switch (Opcode) {
Chris Lattner96e809c2005-01-21 18:01:22 +00002699 case ISD::TokenFactor:
Duncan Sands3d960942008-12-01 11:41:29 +00002700 case ISD::MERGE_VALUES:
Dan Gohman550c9af2008-08-14 20:04:46 +00002701 case ISD::CONCAT_VECTORS:
Duncan Sands3d960942008-12-01 11:41:29 +00002702 return Operand; // Factor, merge or concat of one node? No need.
Torok Edwinfbcc6632009-07-14 16:55:14 +00002703 case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
Chris Lattner18d67182007-04-09 05:23:13 +00002704 case ISD::FP_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002705 assert(VT.isFloatingPoint() &&
2706 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner52188502008-01-16 17:59:31 +00002707 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Dan Gohmancecad352009-12-14 23:40:38 +00002708 assert((!VT.isVector() ||
2709 VT.getVectorNumElements() ==
2710 Operand.getValueType().getVectorNumElements()) &&
2711 "Vector element count mismatch!");
Chris Lattner5c7bda42008-03-11 06:21:08 +00002712 if (Operand.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002713 return getUNDEF(VT);
Chris Lattner18d67182007-04-09 05:23:13 +00002714 break;
Chris Lattner5c7bda42008-03-11 06:21:08 +00002715 case ISD::SIGN_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002716 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002717 "Invalid SIGN_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002718 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002719 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2720 "Invalid sext node, dst < src!");
2721 assert((!VT.isVector() ||
2722 VT.getVectorNumElements() ==
2723 Operand.getValueType().getVectorNumElements()) &&
2724 "Vector element count mismatch!");
Nadav Rotem9450fcf2013-01-20 08:35:56 +00002725 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2726 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2727 else if (OpOpcode == ISD::UNDEF)
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002728 // sext(undef) = 0, because the top bits will all be the same.
2729 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002730 break;
2731 case ISD::ZERO_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002732 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002733 "Invalid ZERO_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002734 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002735 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2736 "Invalid zext node, dst < src!");
2737 assert((!VT.isVector() ||
2738 VT.getVectorNumElements() ==
2739 Operand.getValueType().getVectorNumElements()) &&
2740 "Vector element count mismatch!");
Chris Lattnerb32d9312005-04-07 19:43:53 +00002741 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Scott Michelcf0da6c2009-02-17 22:15:04 +00002742 return getNode(ISD::ZERO_EXTEND, DL, VT,
Dale Johannesendb393622009-02-03 01:55:44 +00002743 Operand.getNode()->getOperand(0));
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002744 else if (OpOpcode == ISD::UNDEF)
2745 // zext(undef) = 0, because the top bits will be zero.
2746 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002747 break;
Chris Lattner8c393c22005-09-02 00:17:32 +00002748 case ISD::ANY_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002749 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002750 "Invalid ANY_EXTEND!");
Chris Lattner8c393c22005-09-02 00:17:32 +00002751 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002752 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2753 "Invalid anyext node, dst < src!");
2754 assert((!VT.isVector() ||
2755 VT.getVectorNumElements() ==
2756 Operand.getValueType().getVectorNumElements()) &&
2757 "Vector element count mismatch!");
Dan Gohman600f62b2010-06-24 14:30:44 +00002758
Dan Gohman08837892010-06-18 00:08:30 +00002759 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2760 OpOpcode == ISD::ANY_EXTEND)
Chris Lattner8c393c22005-09-02 00:17:32 +00002761 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Dale Johannesendb393622009-02-03 01:55:44 +00002762 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Evan Chengd2f3b012011-03-14 18:15:55 +00002763 else if (OpOpcode == ISD::UNDEF)
2764 return getUNDEF(VT);
Dan Gohman600f62b2010-06-24 14:30:44 +00002765
2766 // (ext (trunx x)) -> x
2767 if (OpOpcode == ISD::TRUNCATE) {
2768 SDValue OpOp = Operand.getNode()->getOperand(0);
2769 if (OpOp.getValueType() == VT)
2770 return OpOp;
2771 }
Chris Lattner8c393c22005-09-02 00:17:32 +00002772 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002773 case ISD::TRUNCATE:
Duncan Sands13237ac2008-06-06 12:08:01 +00002774 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002775 "Invalid TRUNCATE!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002776 if (Operand.getValueType() == VT) return Operand; // noop truncate
Dan Gohmancecad352009-12-14 23:40:38 +00002777 assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) &&
2778 "Invalid truncate node, src < dst!");
2779 assert((!VT.isVector() ||
2780 VT.getVectorNumElements() ==
2781 Operand.getValueType().getVectorNumElements()) &&
2782 "Vector element count mismatch!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002783 if (OpOpcode == ISD::TRUNCATE)
Dale Johannesendb393622009-02-03 01:55:44 +00002784 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002785 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2786 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattner4d5ba992005-01-07 21:56:24 +00002787 // If the source is smaller than the dest, we still need an extend.
Dan Gohmancecad352009-12-14 23:40:38 +00002788 if (Operand.getNode()->getOperand(0).getValueType().getScalarType()
2789 .bitsLT(VT.getScalarType()))
Dale Johannesendb393622009-02-03 01:55:44 +00002790 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002791 if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
Dale Johannesendb393622009-02-03 01:55:44 +00002792 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002793 return Operand.getNode()->getOperand(0);
Chris Lattner4d5ba992005-01-07 21:56:24 +00002794 }
Craig Topper201c1a32012-01-15 01:05:11 +00002795 if (OpOpcode == ISD::UNDEF)
2796 return getUNDEF(VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002797 break;
Wesley Peck527da1b2010-11-23 03:31:01 +00002798 case ISD::BITCAST:
Chris Lattner36e663d2005-12-23 00:16:34 +00002799 // Basic sanity checking.
Duncan Sands13237ac2008-06-06 12:08:01 +00002800 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Wesley Peck527da1b2010-11-23 03:31:01 +00002801 && "Cannot BITCAST between types of different sizes!");
Chris Lattner36e663d2005-12-23 00:16:34 +00002802 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002803 if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x)
2804 return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
Chris Lattnera9e77d12006-04-04 01:02:22 +00002805 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002806 return getUNDEF(VT);
Chris Lattner36e663d2005-12-23 00:16:34 +00002807 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002808 case ISD::SCALAR_TO_VECTOR:
Duncan Sands13237ac2008-06-06 12:08:01 +00002809 assert(VT.isVector() && !Operand.getValueType().isVector() &&
Duncan Sandse4ff21b2009-04-18 20:16:54 +00002810 (VT.getVectorElementType() == Operand.getValueType() ||
2811 (VT.getVectorElementType().isInteger() &&
2812 Operand.getValueType().isInteger() &&
2813 VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002814 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnera1f25b02008-03-08 23:43:36 +00002815 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002816 return getUNDEF(VT);
Chris Lattnera1f25b02008-03-08 23:43:36 +00002817 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2818 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2819 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2820 Operand.getConstantOperandVal(1) == 0 &&
2821 Operand.getOperand(0).getValueType() == VT)
2822 return Operand.getOperand(0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002823 break;
Chris Lattner0ea81f92005-04-09 03:02:46 +00002824 case ISD::FNEG:
Mon P Wangcf9ba822009-01-31 06:07:45 +00002825 // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002826 if (getTarget().Options.UnsafeFPMath && OpOpcode == ISD::FSUB)
Dale Johannesendb393622009-02-03 01:55:44 +00002827 return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1),
Gabor Greiff304a7a2008-08-28 21:40:38 +00002828 Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002829 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greiff304a7a2008-08-28 21:40:38 +00002830 return Operand.getNode()->getOperand(0);
Chris Lattner0ea81f92005-04-09 03:02:46 +00002831 break;
2832 case ISD::FABS:
2833 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Dale Johannesendb393622009-02-03 01:55:44 +00002834 return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002835 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002836 }
2837
Chris Lattnerf9c19152005-08-25 19:12:10 +00002838 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002839 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002840 if (VT != MVT::Glue) { // Don't CSE flag producing nodes
Jim Laskeyf576b422006-10-27 23:46:08 +00002841 FoldingSetNodeID ID;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002842 SDValue Ops[1] = { Operand };
Craig Topper633d99b2014-04-27 23:22:43 +00002843 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00002844 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002845 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002846 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002847
Jack Carter170a5f22013-09-09 22:02:08 +00002848 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2849 DL.getDebugLoc(), VTs, Operand);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002850 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002851 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00002852 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2853 DL.getDebugLoc(), VTs, Operand);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002854 }
Duncan Sandsb0e39382008-07-21 10:20:31 +00002855
Chris Lattner061a1ea2005-01-07 07:46:32 +00002856 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002857#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002858 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002859#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002860 return SDValue(N, 0);
Chris Lattner600d3082003-08-11 14:57:33 +00002861}
2862
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002863SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, EVT VT,
2864 SDNode *Cst1, SDNode *Cst2) {
Jim Grosbachcad4cd62014-04-09 23:28:11 +00002865 // If the opcode is a target-specific ISD node, there's nothing we can
2866 // do here and the operand rules may not line up with the below, so
2867 // bail early.
2868 if (Opcode >= ISD::BUILTIN_OP_END)
2869 return SDValue();
2870
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002871 SmallVector<std::pair<ConstantSDNode *, ConstantSDNode *>, 4> Inputs;
2872 SmallVector<SDValue, 4> Outputs;
2873 EVT SVT = VT.getScalarType();
Bill Wendling162c26d2008-09-24 10:16:24 +00002874
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002875 ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1);
2876 ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002877 if (Scalar1 && Scalar2 && (Scalar1->isOpaque() || Scalar2->isOpaque()))
2878 return SDValue();
2879
2880 if (Scalar1 && Scalar2)
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002881 // Scalar instruction.
2882 Inputs.push_back(std::make_pair(Scalar1, Scalar2));
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002883 else {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002884 // For vectors extract each constant element into Inputs so we can constant
2885 // fold them individually.
2886 BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1);
2887 BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2);
2888 if (!BV1 || !BV2)
2889 return SDValue();
2890
2891 assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!");
2892
2893 for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) {
2894 ConstantSDNode *V1 = dyn_cast<ConstantSDNode>(BV1->getOperand(I));
2895 ConstantSDNode *V2 = dyn_cast<ConstantSDNode>(BV2->getOperand(I));
2896 if (!V1 || !V2) // Not a constant, bail.
2897 return SDValue();
2898
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002899 if (V1->isOpaque() || V2->isOpaque())
2900 return SDValue();
2901
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002902 // Avoid BUILD_VECTOR nodes that perform implicit truncation.
2903 // FIXME: This is valid and could be handled by truncating the APInts.
2904 if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT)
2905 return SDValue();
2906
2907 Inputs.push_back(std::make_pair(V1, V2));
2908 }
Bill Wendling162c26d2008-09-24 10:16:24 +00002909 }
2910
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002911 // We have a number of constant values, constant fold them element by element.
2912 for (unsigned I = 0, E = Inputs.size(); I != E; ++I) {
2913 const APInt &C1 = Inputs[I].first->getAPIntValue();
2914 const APInt &C2 = Inputs[I].second->getAPIntValue();
2915
2916 switch (Opcode) {
2917 case ISD::ADD:
2918 Outputs.push_back(getConstant(C1 + C2, SVT));
2919 break;
2920 case ISD::SUB:
2921 Outputs.push_back(getConstant(C1 - C2, SVT));
2922 break;
2923 case ISD::MUL:
2924 Outputs.push_back(getConstant(C1 * C2, SVT));
2925 break;
2926 case ISD::UDIV:
2927 if (!C2.getBoolValue())
2928 return SDValue();
2929 Outputs.push_back(getConstant(C1.udiv(C2), SVT));
2930 break;
2931 case ISD::UREM:
2932 if (!C2.getBoolValue())
2933 return SDValue();
2934 Outputs.push_back(getConstant(C1.urem(C2), SVT));
2935 break;
2936 case ISD::SDIV:
2937 if (!C2.getBoolValue())
2938 return SDValue();
2939 Outputs.push_back(getConstant(C1.sdiv(C2), SVT));
2940 break;
2941 case ISD::SREM:
2942 if (!C2.getBoolValue())
2943 return SDValue();
2944 Outputs.push_back(getConstant(C1.srem(C2), SVT));
2945 break;
2946 case ISD::AND:
2947 Outputs.push_back(getConstant(C1 & C2, SVT));
2948 break;
2949 case ISD::OR:
2950 Outputs.push_back(getConstant(C1 | C2, SVT));
2951 break;
2952 case ISD::XOR:
2953 Outputs.push_back(getConstant(C1 ^ C2, SVT));
2954 break;
2955 case ISD::SHL:
2956 Outputs.push_back(getConstant(C1 << C2, SVT));
2957 break;
2958 case ISD::SRL:
2959 Outputs.push_back(getConstant(C1.lshr(C2), SVT));
2960 break;
2961 case ISD::SRA:
2962 Outputs.push_back(getConstant(C1.ashr(C2), SVT));
2963 break;
2964 case ISD::ROTL:
2965 Outputs.push_back(getConstant(C1.rotl(C2), SVT));
2966 break;
2967 case ISD::ROTR:
2968 Outputs.push_back(getConstant(C1.rotr(C2), SVT));
2969 break;
2970 default:
2971 return SDValue();
2972 }
2973 }
2974
Benjamin Kramer6dd9f8f2014-05-02 21:28:49 +00002975 assert((Scalar1 && Scalar2) || (VT.getVectorNumElements() == Outputs.size() &&
2976 "Expected a scalar or vector!"));
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002977
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002978 // Handle the scalar case first.
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002979 if (!VT.isVector())
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002980 return Outputs.back();
2981
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002982 // We may have a vector type but a scalar result. Create a splat.
2983 Outputs.resize(VT.getVectorNumElements(), Outputs.back());
2984
2985 // Build a big vector out of the scalar elements we generated.
Craig Topper48d114b2014-04-26 18:35:24 +00002986 return getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Outputs);
Bill Wendling162c26d2008-09-24 10:16:24 +00002987}
2988
Andrew Trickef9de2a2013-05-25 02:42:55 +00002989SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, SDValue N1,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00002990 SDValue N2, bool nuw, bool nsw, bool exact) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00002991 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2992 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner4e550eb2005-01-16 02:23:22 +00002993 switch (Opcode) {
Chris Lattner16713612008-01-22 19:09:33 +00002994 default: break;
Chris Lattner9b75e142005-01-19 18:01:40 +00002995 case ISD::TokenFactor:
Owen Anderson9f944592009-08-11 20:47:22 +00002996 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2997 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner16713612008-01-22 19:09:33 +00002998 // Fold trivial token factors.
2999 if (N1.getOpcode() == ISD::EntryToken) return N2;
3000 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman94798d32008-10-01 15:11:19 +00003001 if (N1 == N2) return N1;
Chris Lattner9b75e142005-01-19 18:01:40 +00003002 break;
Dan Gohman550c9af2008-08-14 20:04:46 +00003003 case ISD::CONCAT_VECTORS:
Nadav Rotema62368c2012-07-15 08:38:23 +00003004 // Concat of UNDEFs is UNDEF.
3005 if (N1.getOpcode() == ISD::UNDEF &&
3006 N2.getOpcode() == ISD::UNDEF)
3007 return getUNDEF(VT);
3008
Dan Gohman550c9af2008-08-14 20:04:46 +00003009 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3010 // one big BUILD_VECTOR.
3011 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3012 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003013 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3014 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003015 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003016 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003017 }
3018 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003019 case ISD::AND:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003020 assert(VT.isInteger() && "This operator does not apply to FP types!");
3021 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003022 N1.getValueType() == VT && "Binary operator types must match!");
3023 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
3024 // worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003025 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003026 return N2;
Chris Lattner720d8992008-01-26 01:05:42 +00003027 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
3028 return N1;
Chris Lattner16713612008-01-22 19:09:33 +00003029 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003030 case ISD::OR:
3031 case ISD::XOR:
Dan Gohman057240f2008-06-02 22:27:05 +00003032 case ISD::ADD:
3033 case ISD::SUB:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003034 assert(VT.isInteger() && "This operator does not apply to FP types!");
3035 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003036 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman057240f2008-06-02 22:27:05 +00003037 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
3038 // it's worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003039 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003040 return N1;
3041 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003042 case ISD::UDIV:
3043 case ISD::UREM:
Chris Lattner51836bb2005-05-15 05:39:08 +00003044 case ISD::MULHU:
3045 case ISD::MULHS:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003046 case ISD::MUL:
3047 case ISD::SDIV:
3048 case ISD::SREM:
Dan Gohman1f3411d2009-01-22 21:58:43 +00003049 assert(VT.isInteger() && "This operator does not apply to FP types!");
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003050 assert(N1.getValueType() == N2.getValueType() &&
3051 N1.getValueType() == VT && "Binary operator types must match!");
3052 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003053 case ISD::FADD:
3054 case ISD::FSUB:
3055 case ISD::FMUL:
3056 case ISD::FDIV:
3057 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003058 if (getTarget().Options.UnsafeFPMath) {
Dan Gohman1275e282009-01-23 19:10:37 +00003059 if (Opcode == ISD::FADD) {
3060 // 0+x --> x
3061 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
3062 if (CFP->getValueAPF().isZero())
3063 return N2;
3064 // x+0 --> x
3065 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3066 if (CFP->getValueAPF().isZero())
3067 return N1;
3068 } else if (Opcode == ISD::FSUB) {
3069 // x-0 --> x
3070 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3071 if (CFP->getValueAPF().isZero())
3072 return N1;
Michael Ilseman0666f052012-09-10 17:00:37 +00003073 } else if (Opcode == ISD::FMUL) {
3074 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1);
3075 SDValue V = N2;
3076
3077 // If the first operand isn't the constant, try the second
3078 if (!CFP) {
3079 CFP = dyn_cast<ConstantFPSDNode>(N2);
3080 V = N1;
3081 }
3082
3083 if (CFP) {
3084 // 0*x --> 0
3085 if (CFP->isZero())
3086 return SDValue(CFP,0);
3087 // 1*x --> x
3088 if (CFP->isExactlyValue(1.0))
3089 return V;
3090 }
Dan Gohman1275e282009-01-23 19:10:37 +00003091 }
Dan Gohman1f3411d2009-01-22 21:58:43 +00003092 }
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003093 assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
Chris Lattner4e550eb2005-01-16 02:23:22 +00003094 assert(N1.getValueType() == N2.getValueType() &&
3095 N1.getValueType() == VT && "Binary operator types must match!");
3096 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003097 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
3098 assert(N1.getValueType() == VT &&
Duncan Sands13237ac2008-06-06 12:08:01 +00003099 N1.getValueType().isFloatingPoint() &&
3100 N2.getValueType().isFloatingPoint() &&
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003101 "Invalid FCOPYSIGN!");
3102 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003103 case ISD::SHL:
3104 case ISD::SRA:
3105 case ISD::SRL:
Nate Begeman1b8121b2006-01-11 21:21:00 +00003106 case ISD::ROTL:
3107 case ISD::ROTR:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003108 assert(VT == N1.getValueType() &&
3109 "Shift operators return type must be the same as their first arg");
Duncan Sands13237ac2008-06-06 12:08:01 +00003110 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003111 "Shifts only work on integers");
Michael Liao6af16fc2013-03-01 18:40:30 +00003112 assert((!VT.isVector() || VT == N2.getValueType()) &&
3113 "Vector shift amounts must be in the same as their first arg");
Chris Lattnere95d1952011-02-13 19:09:16 +00003114 // Verify that the shift amount VT is bit enough to hold valid shift
3115 // amounts. This catches things like trying to shift an i1024 value by an
3116 // i8, which is easy to fall into in generic code that uses
3117 // TLI.getShiftAmount().
3118 assert(N2.getValueType().getSizeInBits() >=
Owen Andersonb2c80da2011-02-25 21:41:48 +00003119 Log2_32_Ceil(N1.getValueType().getSizeInBits()) &&
Chris Lattnere95d1952011-02-13 19:09:16 +00003120 "Invalid use of small shift amount with oversized value!");
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003121
3122 // Always fold shifts of i1 values so the code generator doesn't need to
3123 // handle them. Since we know the size of the shift has to be less than the
3124 // size of the value, the shift/rotate count is guaranteed to be zero.
Owen Anderson9f944592009-08-11 20:47:22 +00003125 if (VT == MVT::i1)
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003126 return N1;
Evan Cheng166a4e62010-01-06 19:38:29 +00003127 if (N2C && N2C->isNullValue())
3128 return N1;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003129 break;
Chris Lattner0b6ba902005-07-10 00:07:11 +00003130 case ISD::FP_ROUND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003131 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003132 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003133 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003134 "Cannot FP_ROUND_INREG integer types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003135 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003136 "FP_ROUND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003137 "type is vector!");
3138 assert((!EVT.isVector() ||
3139 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3140 "Vector element counts must match in FP_ROUND_INREG");
Duncan Sands11dd4242008-06-08 20:54:56 +00003141 assert(EVT.bitsLE(VT) && "Not rounding down!");
Duncan Sandsd278d352011-10-18 12:44:00 +00003142 (void)EVT;
Chris Lattner16713612008-01-22 19:09:33 +00003143 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner0b6ba902005-07-10 00:07:11 +00003144 break;
3145 }
Chris Lattner72733e52008-01-17 07:00:52 +00003146 case ISD::FP_ROUND:
Duncan Sands13237ac2008-06-06 12:08:01 +00003147 assert(VT.isFloatingPoint() &&
3148 N1.getValueType().isFloatingPoint() &&
Duncan Sands11dd4242008-06-08 20:54:56 +00003149 VT.bitsLE(N1.getValueType()) &&
Chris Lattner72733e52008-01-17 07:00:52 +00003150 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner16713612008-01-22 19:09:33 +00003151 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner72733e52008-01-17 07:00:52 +00003152 break;
Nate Begeman43144a22005-08-30 02:44:00 +00003153 case ISD::AssertSext:
Chris Lattner16713612008-01-22 19:09:33 +00003154 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003155 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner16713612008-01-22 19:09:33 +00003156 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003157 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner16713612008-01-22 19:09:33 +00003158 "Cannot *_EXTEND_INREG FP types");
Dan Gohman1d459e42009-12-11 21:31:27 +00003159 assert(!EVT.isVector() &&
3160 "AssertSExt/AssertZExt type should be the vector element type "
3161 "rather than the vector type!");
Duncan Sands11dd4242008-06-08 20:54:56 +00003162 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sands56689502008-02-10 10:08:52 +00003163 if (VT == EVT) return N1; // noop assertion.
Chris Lattner16713612008-01-22 19:09:33 +00003164 break;
3165 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003166 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003167 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003168 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003169 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003170 "Cannot *_EXTEND_INREG FP types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003171 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003172 "SIGN_EXTEND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003173 "type is vector!");
3174 assert((!EVT.isVector() ||
3175 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3176 "Vector element counts must match in SIGN_EXTEND_INREG");
3177 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner16713612008-01-22 19:09:33 +00003178 if (EVT == VT) return N1; // Not actually extending
Chris Lattner0b6ba902005-07-10 00:07:11 +00003179
Chris Lattner16713612008-01-22 19:09:33 +00003180 if (N1C) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003181 APInt Val = N1C->getAPIntValue();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003182 unsigned FromBits = EVT.getScalarType().getSizeInBits();
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003183 Val <<= Val.getBitWidth()-FromBits;
Evan Chenga3cb0902008-03-06 08:20:51 +00003184 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattner751817c2006-05-06 23:05:41 +00003185 return getConstant(Val, VT);
3186 }
Chris Lattner16713612008-01-22 19:09:33 +00003187 break;
3188 }
3189 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnera1f25b02008-03-08 23:43:36 +00003190 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
3191 if (N1.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00003192 return getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003193
Chris Lattner16713612008-01-22 19:09:33 +00003194 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
3195 // expanding copies of large vectors from registers.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003196 if (N2C &&
3197 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner16713612008-01-22 19:09:33 +00003198 N1.getNumOperands() > 0) {
3199 unsigned Factor =
Duncan Sands13237ac2008-06-06 12:08:01 +00003200 N1.getOperand(0).getValueType().getVectorNumElements();
Dale Johannesendb393622009-02-03 01:55:44 +00003201 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
Dan Gohmaneffb8942008-09-12 16:56:44 +00003202 N1.getOperand(N2C->getZExtValue() / Factor),
3203 getConstant(N2C->getZExtValue() % Factor,
3204 N2.getValueType()));
Chris Lattner16713612008-01-22 19:09:33 +00003205 }
3206
3207 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
3208 // expanding large vector constants.
Bob Wilson59dbbb22009-04-13 22:05:19 +00003209 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
3210 SDValue Elt = N1.getOperand(N2C->getZExtValue());
James Molloy1e5c6112012-09-10 14:01:21 +00003211
3212 if (VT != Elt.getValueType())
Bob Wilson59dbbb22009-04-13 22:05:19 +00003213 // If the vector element type is not legal, the BUILD_VECTOR operands
James Molloy1e5c6112012-09-10 14:01:21 +00003214 // are promoted and implicitly truncated, and the result implicitly
3215 // extended. Make that explicit here.
3216 Elt = getAnyExtOrTrunc(Elt, DL, VT);
Michael Ilsemand5f91512012-09-10 16:56:31 +00003217
Bob Wilson59dbbb22009-04-13 22:05:19 +00003218 return Elt;
3219 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003220
Chris Lattner16713612008-01-22 19:09:33 +00003221 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
3222 // operations are lowered to scalars.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003223 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
Mon P Wangd74e0022010-02-01 22:15:09 +00003224 // If the indices are the same, return the inserted element else
3225 // if the indices are known different, extract the element from
Dan Gohmanef04ed52009-01-29 16:10:46 +00003226 // the original vector.
Bill Wendlingde4b2252010-04-30 22:19:17 +00003227 SDValue N1Op2 = N1.getOperand(2);
3228 ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2.getNode());
3229
3230 if (N1Op2C && N2C) {
3231 if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
3232 if (VT == N1.getOperand(1).getValueType())
3233 return N1.getOperand(1);
3234 else
3235 return getSExtOrTrunc(N1.getOperand(1), DL, VT);
3236 }
3237
Dale Johannesendb393622009-02-03 01:55:44 +00003238 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
Bill Wendlingde4b2252010-04-30 22:19:17 +00003239 }
Dan Gohman7e3c3922008-08-13 21:51:37 +00003240 }
Chris Lattner16713612008-01-22 19:09:33 +00003241 break;
3242 case ISD::EXTRACT_ELEMENT:
Dan Gohmaneffb8942008-09-12 16:56:44 +00003243 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands33ff5c82008-06-25 20:24:48 +00003244 assert(!N1.getValueType().isVector() && !VT.isVector() &&
3245 (N1.getValueType().isInteger() == VT.isInteger()) &&
Eli Friedman04c50252011-08-02 18:38:35 +00003246 N1.getValueType() != VT &&
Duncan Sands33ff5c82008-06-25 20:24:48 +00003247 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands87de65f2008-03-12 20:30:08 +00003248
Chris Lattner16713612008-01-22 19:09:33 +00003249 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
3250 // 64-bit integers into 32-bit parts. Instead of building the extract of
Scott Michelcf0da6c2009-02-17 22:15:04 +00003251 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner16713612008-01-22 19:09:33 +00003252 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003253 return N1.getOperand(N2C->getZExtValue());
Duncan Sands87de65f2008-03-12 20:30:08 +00003254
Chris Lattner16713612008-01-22 19:09:33 +00003255 // EXTRACT_ELEMENT of a constant int is also very common.
3256 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003257 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmaneffb8942008-09-12 16:56:44 +00003258 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohmand8ea0402008-03-24 16:38:05 +00003259 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
3260 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner16713612008-01-22 19:09:33 +00003261 }
3262 break;
David Greeneb6f16112011-01-26 15:38:49 +00003263 case ISD::EXTRACT_SUBVECTOR: {
3264 SDValue Index = N2;
3265 if (VT.isSimple() && N1.getValueType().isSimple()) {
3266 assert(VT.isVector() && N1.getValueType().isVector() &&
3267 "Extract subvector VTs must be a vectors!");
Jack Carter170a5f22013-09-09 22:02:08 +00003268 assert(VT.getVectorElementType() ==
3269 N1.getValueType().getVectorElementType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003270 "Extract subvector VTs must have the same element type!");
Craig Topperd9c27832013-08-15 02:44:19 +00003271 assert(VT.getSimpleVT() <= N1.getSimpleValueType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003272 "Extract subvector must be from larger vector to smaller vector!");
3273
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003274 if (isa<ConstantSDNode>(Index.getNode())) {
3275 assert((VT.getVectorNumElements() +
3276 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greeneb6f16112011-01-26 15:38:49 +00003277 <= N1.getValueType().getVectorNumElements())
3278 && "Extract subvector overflow!");
3279 }
3280
3281 // Trivial extraction.
Craig Topperd9c27832013-08-15 02:44:19 +00003282 if (VT.getSimpleVT() == N1.getSimpleValueType())
David Greeneb6f16112011-01-26 15:38:49 +00003283 return N1;
3284 }
Duncan Sandse7b462b2008-02-20 17:38:09 +00003285 break;
Chris Lattner16713612008-01-22 19:09:33 +00003286 }
David Greeneb6f16112011-01-26 15:38:49 +00003287 }
Chris Lattner16713612008-01-22 19:09:33 +00003288
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003289 // Perform trivial constant folding.
3290 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1.getNode(), N2.getNode());
3291 if (SV.getNode()) return SV;
3292
3293 // Canonicalize constant to RHS if commutative.
3294 if (N1C && !N2C && isCommutativeBinOp(Opcode)) {
3295 std::swap(N1C, N2C);
3296 std::swap(N1, N2);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003297 }
3298
Chris Lattner16713612008-01-22 19:09:33 +00003299 // Constant fold FP operations.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003300 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
3301 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner0b6ba902005-07-10 00:07:11 +00003302 if (N1CFP) {
Chris Lattner16713612008-01-22 19:09:33 +00003303 if (!N2CFP && isCommutativeBinOp(Opcode)) {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003304 // Canonicalize constant to RHS if commutative.
Chris Lattner16713612008-01-22 19:09:33 +00003305 std::swap(N1CFP, N2CFP);
3306 std::swap(N1, N2);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00003307 } else if (N2CFP) {
Dale Johannesen446b9002007-08-31 23:34:27 +00003308 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
3309 APFloat::opStatus s;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003310 switch (Opcode) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00003311 case ISD::FADD:
Dale Johannesen446b9002007-08-31 23:34:27 +00003312 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner16713612008-01-22 19:09:33 +00003313 if (s != APFloat::opInvalidOp)
Dale Johannesen446b9002007-08-31 23:34:27 +00003314 return getConstantFP(V1, VT);
3315 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003316 case ISD::FSUB:
Dale Johannesen446b9002007-08-31 23:34:27 +00003317 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
3318 if (s!=APFloat::opInvalidOp)
3319 return getConstantFP(V1, VT);
3320 break;
3321 case ISD::FMUL:
3322 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
3323 if (s!=APFloat::opInvalidOp)
3324 return getConstantFP(V1, VT);
3325 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003326 case ISD::FDIV:
Dale Johannesen446b9002007-08-31 23:34:27 +00003327 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
3328 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3329 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003330 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003331 case ISD::FREM :
Dale Johannesen446b9002007-08-31 23:34:27 +00003332 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
3333 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3334 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003335 break;
Dale Johannesen446b9002007-08-31 23:34:27 +00003336 case ISD::FCOPYSIGN:
3337 V1.copySign(V2);
3338 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003339 default: break;
3340 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003341 }
Owen Anderson6f1ee162012-04-10 22:46:53 +00003342
3343 if (Opcode == ISD::FP_ROUND) {
3344 APFloat V = N1CFP->getValueAPF(); // make copy
3345 bool ignored;
3346 // This can return overflow, underflow, or inexact; we don't care.
3347 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00003348 (void)V.convert(EVTToAPFloatSemantics(VT),
Owen Anderson6f1ee162012-04-10 22:46:53 +00003349 APFloat::rmNearestTiesToEven, &ignored);
3350 return getConstantFP(V, VT);
3351 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003352 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003353
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003354 // Canonicalize an UNDEF to the RHS, even over a constant.
3355 if (N1.getOpcode() == ISD::UNDEF) {
3356 if (isCommutativeBinOp(Opcode)) {
3357 std::swap(N1, N2);
3358 } else {
3359 switch (Opcode) {
3360 case ISD::FP_ROUND_INREG:
3361 case ISD::SIGN_EXTEND_INREG:
3362 case ISD::SUB:
3363 case ISD::FSUB:
3364 case ISD::FDIV:
3365 case ISD::FREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003366 case ISD::SRA:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003367 return N1; // fold op(undef, arg2) -> undef
3368 case ISD::UDIV:
3369 case ISD::SDIV:
3370 case ISD::UREM:
3371 case ISD::SREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003372 case ISD::SRL:
3373 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003374 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003375 return getConstant(0, VT); // fold op(undef, arg2) -> 0
3376 // For vectors, we can't easily build an all zero vector, just return
3377 // the LHS.
3378 return N2;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003379 }
3380 }
3381 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003382
3383 // Fold a bunch of operators when the RHS is undef.
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003384 if (N2.getOpcode() == ISD::UNDEF) {
3385 switch (Opcode) {
Evan Chengdf1690d2008-03-25 20:08:07 +00003386 case ISD::XOR:
3387 if (N1.getOpcode() == ISD::UNDEF)
3388 // Handle undef ^ undef -> 0 special case. This is a common
3389 // idiom (misuse).
3390 return getConstant(0, VT);
3391 // fallthrough
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003392 case ISD::ADD:
Chris Lattner362621c2007-03-04 20:01:46 +00003393 case ISD::ADDC:
3394 case ISD::ADDE:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003395 case ISD::SUB:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003396 case ISD::UDIV:
3397 case ISD::SDIV:
3398 case ISD::UREM:
3399 case ISD::SREM:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003400 return N2; // fold op(arg1, undef) -> undef
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003401 case ISD::FADD:
3402 case ISD::FSUB:
3403 case ISD::FMUL:
3404 case ISD::FDIV:
3405 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003406 if (getTarget().Options.UnsafeFPMath)
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003407 return N2;
3408 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003409 case ISD::MUL:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003410 case ISD::AND:
Chris Lattner78da6792006-05-08 17:29:49 +00003411 case ISD::SRL:
3412 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003413 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003414 return getConstant(0, VT); // fold op(arg1, undef) -> 0
3415 // For vectors, we can't easily build an all zero vector, just return
3416 // the LHS.
3417 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003418 case ISD::OR:
Duncan Sands13237ac2008-06-06 12:08:01 +00003419 if (!VT.isVector())
Duncan Sands3ed76882009-02-01 18:06:53 +00003420 return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
Chris Lattner01a26c72007-04-25 00:00:45 +00003421 // For vectors, we can't easily build an all one vector, just return
3422 // the LHS.
3423 return N1;
Chris Lattner78da6792006-05-08 17:29:49 +00003424 case ISD::SRA:
3425 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003426 }
3427 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003428
Chris Lattner724f7ee2005-05-11 18:57:39 +00003429 // Memoize this node if possible.
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003430 BinarySDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003431 SDVTList VTs = getVTList(VT);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003432 const bool BinOpHasFlags = isBinOpWithFlags(Opcode);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003433 if (VT != MVT::Glue) {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003434 SDValue Ops[] = {N1, N2};
Jim Laskeyf576b422006-10-27 23:46:08 +00003435 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003436 AddNodeIDNode(ID, Opcode, VTs, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003437 if (BinOpHasFlags)
3438 AddBinaryNodeIDCustom(ID, Opcode, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00003439 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003440 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003441 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003442
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003443 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
3444
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003445 CSEMap.InsertNode(N, IP);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003446 } else {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003447
3448 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003449 }
3450
Chris Lattner061a1ea2005-01-07 07:46:32 +00003451 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003452#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003453 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003454#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003455 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003456}
3457
Andrew Trickef9de2a2013-05-25 02:42:55 +00003458SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003459 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00003460 // Perform various simplifications.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003461 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Chris Lattner061a1ea2005-01-07 07:46:32 +00003462 switch (Opcode) {
Owen Anderson32baf992013-05-09 22:27:13 +00003463 case ISD::FMA: {
3464 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3465 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
3466 ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
3467 if (N1CFP && N2CFP && N3CFP) {
3468 APFloat V1 = N1CFP->getValueAPF();
3469 const APFloat &V2 = N2CFP->getValueAPF();
3470 const APFloat &V3 = N3CFP->getValueAPF();
3471 APFloat::opStatus s =
3472 V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
3473 if (s != APFloat::opInvalidOp)
3474 return getConstantFP(V1, VT);
3475 }
3476 break;
3477 }
Dan Gohman550c9af2008-08-14 20:04:46 +00003478 case ISD::CONCAT_VECTORS:
3479 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3480 // one big BUILD_VECTOR.
3481 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3482 N2.getOpcode() == ISD::BUILD_VECTOR &&
3483 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003484 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3485 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003486 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
3487 Elts.append(N3.getNode()->op_begin(), N3.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003488 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003489 }
3490 break;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003491 case ISD::SETCC: {
Chris Lattnerbd9acad2006-10-14 00:41:01 +00003492 // Use FoldSetCC to simplify SETCC's.
Dale Johannesenf1163e92009-02-03 00:47:48 +00003493 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003494 if (Simp.getNode()) return Simp;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003495 break;
3496 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003497 case ISD::SELECT:
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003498 if (N1C) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003499 if (N1C->getZExtValue())
David Blaikie46a9f012012-01-20 21:51:11 +00003500 return N2; // select true, X, Y -> X
3501 return N3; // select false, X, Y -> Y
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003502 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003503
3504 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattner061a1ea2005-01-07 07:46:32 +00003505 break;
Chris Lattner00f05892006-03-19 23:56:04 +00003506 case ISD::VECTOR_SHUFFLE:
Torok Edwinfbcc6632009-07-14 16:55:14 +00003507 llvm_unreachable("should use getVectorShuffle constructor!");
David Greenebab5e6e2011-01-26 19:13:22 +00003508 case ISD::INSERT_SUBVECTOR: {
3509 SDValue Index = N3;
3510 if (VT.isSimple() && N1.getValueType().isSimple()
3511 && N2.getValueType().isSimple()) {
3512 assert(VT.isVector() && N1.getValueType().isVector() &&
3513 N2.getValueType().isVector() &&
3514 "Insert subvector VTs must be a vectors");
3515 assert(VT == N1.getValueType() &&
3516 "Dest and insert subvector source types must match!");
Craig Topperd9c27832013-08-15 02:44:19 +00003517 assert(N2.getSimpleValueType() <= N1.getSimpleValueType() &&
David Greenebab5e6e2011-01-26 19:13:22 +00003518 "Insert subvector must be from smaller vector to larger vector!");
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003519 if (isa<ConstantSDNode>(Index.getNode())) {
3520 assert((N2.getValueType().getVectorNumElements() +
3521 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greenebab5e6e2011-01-26 19:13:22 +00003522 <= VT.getVectorNumElements())
3523 && "Insert subvector overflow!");
3524 }
3525
3526 // Trivial insertion.
Craig Topperd9c27832013-08-15 02:44:19 +00003527 if (VT.getSimpleVT() == N2.getSimpleValueType())
David Greenebab5e6e2011-01-26 19:13:22 +00003528 return N2;
3529 }
3530 break;
3531 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003532 case ISD::BITCAST:
Dan Gohmana8665142007-06-25 16:23:39 +00003533 // Fold bit_convert nodes from a type to themselves.
3534 if (N1.getValueType() == VT)
3535 return N1;
Chris Lattnera77cb3c2007-04-12 05:58:43 +00003536 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003537 }
3538
Chris Lattnerf9c19152005-08-25 19:12:10 +00003539 // Memoize node if it doesn't produce a flag.
3540 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003541 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003542 if (VT != MVT::Glue) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003543 SDValue Ops[] = { N1, N2, N3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00003544 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003545 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00003546 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003547 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003548 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003549
Jack Carter170a5f22013-09-09 22:02:08 +00003550 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3551 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003552 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003553 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00003554 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3555 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003556 }
Daniel Dunbarb827e522009-12-16 20:10:05 +00003557
Chris Lattner061a1ea2005-01-07 07:46:32 +00003558 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003559#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003560 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003561#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003562 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003563}
3564
Andrew Trickef9de2a2013-05-25 02:42:55 +00003565SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003566 SDValue N1, SDValue N2, SDValue N3,
3567 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003568 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00003569 return getNode(Opcode, DL, VT, Ops);
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00003570}
3571
Andrew Trickef9de2a2013-05-25 02:42:55 +00003572SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003573 SDValue N1, SDValue N2, SDValue N3,
3574 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003575 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00003576 return getNode(Opcode, DL, VT, Ops);
Chris Lattner36db1ed2005-07-10 00:29:18 +00003577}
3578
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003579/// getStackArgumentTokenFactor - Compute a TokenFactor to force all
3580/// the incoming stack arguments to be loaded from the stack.
3581SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
3582 SmallVector<SDValue, 8> ArgChains;
3583
3584 // Include the original chain at the beginning of the list. When this is
3585 // used by target LowerCall hooks, this helps legalize find the
3586 // CALLSEQ_BEGIN node.
3587 ArgChains.push_back(Chain);
3588
3589 // Add a chain value for each stack argument.
3590 for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
3591 UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
3592 if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3593 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3594 if (FI->getIndex() < 0)
3595 ArgChains.push_back(SDValue(L, 1));
3596
3597 // Build a tokenfactor for all the chains.
Craig Topper48d114b2014-04-26 18:35:24 +00003598 return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003599}
3600
Dan Gohman544ab2c2008-04-12 04:36:06 +00003601/// getMemsetValue - Vectorized representation of the memset value
3602/// operand.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003603static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003604 SDLoc dl) {
Evan Cheng61399372010-04-02 19:36:14 +00003605 assert(Value.getOpcode() != ISD::UNDEF);
3606
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00003607 unsigned NumBits = VT.getScalarType().getSizeInBits();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003608 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003609 assert(C->getAPIntValue().getBitWidth() == 8);
3610 APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
Duncan Sands13237ac2008-06-06 12:08:01 +00003611 if (VT.isInteger())
Evan Chengef377ad2008-05-15 08:39:06 +00003612 return DAG.getConstant(Val, VT);
Tim Northover29178a32013-01-22 09:46:31 +00003613 return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), VT);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003614 }
Evan Chengef377ad2008-05-15 08:39:06 +00003615
Dale Johannesenabf66b82009-02-03 22:26:09 +00003616 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value);
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003617 if (NumBits > 8) {
3618 // Use a multiplication with 0x010101... to extend the input to the
3619 // required length.
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003620 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003621 Value = DAG.getNode(ISD::MUL, dl, VT, Value, DAG.getConstant(Magic, VT));
Evan Chengef377ad2008-05-15 08:39:06 +00003622 }
3623
3624 return Value;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003625}
3626
Dan Gohman544ab2c2008-04-12 04:36:06 +00003627/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
3628/// used when a memcpy is turned into a memset when the source is a constant
3629/// string ptr.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003630static SDValue getMemsetStringVal(EVT VT, SDLoc dl, SelectionDAG &DAG,
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003631 const TargetLowering &TLI, StringRef Str) {
Evan Chengda3db112008-06-30 07:31:25 +00003632 // Handle vector with all elements zero.
3633 if (Str.empty()) {
3634 if (VT.isInteger())
3635 return DAG.getConstant(0, VT);
Chad Rosier52359732014-06-27 21:05:09 +00003636 else if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128)
Evan Cheng43cd9e32010-04-01 06:04:33 +00003637 return DAG.getConstantFP(0.0, VT);
3638 else if (VT.isVector()) {
3639 unsigned NumElts = VT.getVectorNumElements();
3640 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
Wesley Peck527da1b2010-11-23 03:31:01 +00003641 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003642 DAG.getConstant(0, EVT::getVectorVT(*DAG.getContext(),
3643 EltVT, NumElts)));
3644 } else
3645 llvm_unreachable("Expected type!");
Evan Chengda3db112008-06-30 07:31:25 +00003646 }
3647
Duncan Sands13237ac2008-06-06 12:08:01 +00003648 assert(!VT.isVector() && "Can't handle vector type here!");
Evan Chengc8444b12013-01-10 22:13:27 +00003649 unsigned NumVTBits = VT.getSizeInBits();
3650 unsigned NumVTBytes = NumVTBits / 8;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003651 unsigned NumBytes = std::min(NumVTBytes, unsigned(Str.size()));
3652
Evan Chengc8444b12013-01-10 22:13:27 +00003653 APInt Val(NumVTBits, 0);
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003654 if (TLI.isLittleEndian()) {
3655 for (unsigned i = 0; i != NumBytes; ++i)
3656 Val |= (uint64_t)(unsigned char)Str[i] << i*8;
3657 } else {
3658 for (unsigned i = 0; i != NumBytes; ++i)
3659 Val |= (uint64_t)(unsigned char)Str[i] << (NumVTBytes-i-1)*8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003660 }
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003661
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00003662 // If the "cost" of materializing the integer immediate is less than the cost
3663 // of a load, then it is cost effective to turn the load into the immediate.
Juergen Ributzka659ce002014-01-28 01:20:14 +00003664 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
3665 if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty))
Evan Cheng79e2ca92012-12-10 23:21:26 +00003666 return DAG.getConstant(Val, VT);
Craig Topperc0196b12014-04-14 00:51:57 +00003667 return SDValue(nullptr, 0);
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003668}
3669
Scott Michelcf0da6c2009-02-17 22:15:04 +00003670/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengef377ad2008-05-15 08:39:06 +00003671///
Andrew Tricke2431c62013-05-25 03:08:10 +00003672static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset, SDLoc dl,
Dan Gohman544ab2c2008-04-12 04:36:06 +00003673 SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003674 EVT VT = Base.getValueType();
Andrew Tricke2431c62013-05-25 03:08:10 +00003675 return DAG.getNode(ISD::ADD, dl,
Dale Johannesendb393622009-02-03 01:55:44 +00003676 VT, Base, DAG.getConstant(Offset, VT));
Dan Gohman544ab2c2008-04-12 04:36:06 +00003677}
3678
Evan Chengef377ad2008-05-15 08:39:06 +00003679/// isMemSrcFromString - Returns true if memcpy source is a string constant.
3680///
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003681static bool isMemSrcFromString(SDValue Src, StringRef &Str) {
Evan Chengef377ad2008-05-15 08:39:06 +00003682 unsigned SrcDelta = 0;
Craig Topperc0196b12014-04-14 00:51:57 +00003683 GlobalAddressSDNode *G = nullptr;
Evan Chengef377ad2008-05-15 08:39:06 +00003684 if (Src.getOpcode() == ISD::GlobalAddress)
3685 G = cast<GlobalAddressSDNode>(Src);
3686 else if (Src.getOpcode() == ISD::ADD &&
3687 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
3688 Src.getOperand(1).getOpcode() == ISD::Constant) {
3689 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmaneffb8942008-09-12 16:56:44 +00003690 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengef377ad2008-05-15 08:39:06 +00003691 }
3692 if (!G)
3693 return false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003694
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003695 return getConstantStringInfo(G->getGlobal(), Str, SrcDelta, false);
Evan Chengef377ad2008-05-15 08:39:06 +00003696}
Dan Gohman544ab2c2008-04-12 04:36:06 +00003697
Evan Cheng43cd9e32010-04-01 06:04:33 +00003698/// FindOptimalMemOpLowering - Determines the optimial series memory ops
3699/// to replace the memset / memcpy. Return true if the number of memory ops
3700/// is below the threshold. It returns the types of the sequence of
3701/// memory ops to perform memset / memcpy by reference.
3702static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003703 unsigned Limit, uint64_t Size,
3704 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003705 bool IsMemset,
3706 bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00003707 bool MemcpyStrSrc,
Evan Cheng79e2ca92012-12-10 23:21:26 +00003708 bool AllowOverlap,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003709 SelectionDAG &DAG,
3710 const TargetLowering &TLI) {
3711 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3712 "Expecting memcpy / memset source to meet alignment requirement!");
Eric Christopherea336c72011-07-06 22:41:18 +00003713 // If 'SrcAlign' is zero, that means the memory operation does not need to
3714 // load the value, i.e. memset or memcpy from constant string. Otherwise,
3715 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3716 // is the specified alignment of the memory operation. If it is zero, that
3717 // means it's possible to change the alignment of the destination.
3718 // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does
3719 // not need to be loaded.
Evan Cheng61399372010-04-02 19:36:14 +00003720 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003721 IsMemset, ZeroMemset, MemcpyStrSrc,
Dan Gohman4d273f42010-04-16 20:22:43 +00003722 DAG.getMachineFunction());
Evan Chengef377ad2008-05-15 08:39:06 +00003723
Chris Lattner28dc6c12010-03-07 07:45:08 +00003724 if (VT == MVT::Other) {
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003725 unsigned AS = 0;
3726 if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment(AS) ||
3727 TLI.allowsUnalignedMemoryAccesses(VT, AS)) {
Evan Cheng272a2f82010-04-05 23:33:29 +00003728 VT = TLI.getPointerTy();
Evan Chengef377ad2008-05-15 08:39:06 +00003729 } else {
Evan Cheng43cd9e32010-04-01 06:04:33 +00003730 switch (DstAlign & 7) {
Owen Anderson9f944592009-08-11 20:47:22 +00003731 case 0: VT = MVT::i64; break;
3732 case 4: VT = MVT::i32; break;
3733 case 2: VT = MVT::i16; break;
3734 default: VT = MVT::i8; break;
Evan Chengef377ad2008-05-15 08:39:06 +00003735 }
3736 }
3737
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003738 MVT LVT = MVT::i64;
Evan Chengef377ad2008-05-15 08:39:06 +00003739 while (!TLI.isTypeLegal(LVT))
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003740 LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
Duncan Sands13237ac2008-06-06 12:08:01 +00003741 assert(LVT.isInteger());
Evan Chengef377ad2008-05-15 08:39:06 +00003742
Duncan Sands11dd4242008-06-08 20:54:56 +00003743 if (VT.bitsGT(LVT))
Evan Chengef377ad2008-05-15 08:39:06 +00003744 VT = LVT;
3745 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003746
Dan Gohman544ab2c2008-04-12 04:36:06 +00003747 unsigned NumMemOps = 0;
3748 while (Size != 0) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003749 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003750 while (VTSize > Size) {
Evan Chengef377ad2008-05-15 08:39:06 +00003751 // For now, only use non-vector load / store's for the left-over pieces.
Evan Cheng04e55182012-12-12 00:42:09 +00003752 EVT NewVT = VT;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003753 unsigned NewVTSize;
Evan Cheng04e55182012-12-12 00:42:09 +00003754
3755 bool Found = false;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003756 if (VT.isVector() || VT.isFloatingPoint()) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00003757 NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32;
Evan Cheng04e55182012-12-12 00:42:09 +00003758 if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003759 TLI.isSafeMemOpType(NewVT.getSimpleVT()))
Evan Cheng04e55182012-12-12 00:42:09 +00003760 Found = true;
3761 else if (NewVT == MVT::i64 &&
3762 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003763 TLI.isSafeMemOpType(MVT::f64)) {
Evan Cheng04e55182012-12-12 00:42:09 +00003764 // i64 is usually not legal on 32-bit targets, but f64 may be.
3765 NewVT = MVT::f64;
3766 Found = true;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003767 }
Evan Cheng79e2ca92012-12-10 23:21:26 +00003768 }
3769
Evan Cheng04e55182012-12-12 00:42:09 +00003770 if (!Found) {
3771 do {
3772 NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1);
3773 if (NewVT == MVT::i8)
3774 break;
Evan Chengc3d1aca2012-12-12 01:32:07 +00003775 } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT()));
Evan Cheng04e55182012-12-12 00:42:09 +00003776 }
3777 NewVTSize = NewVT.getSizeInBits() / 8;
3778
Evan Cheng79e2ca92012-12-10 23:21:26 +00003779 // If the new VT cannot cover all of the remaining bits, then consider
3780 // issuing a (or a pair of) unaligned and overlapping load / store.
3781 // FIXME: Only does this for 64-bit or more since we don't have proper
3782 // cost model for unaligned load / store.
3783 bool Fast;
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003784 unsigned AS = 0;
Evan Chengb7d3d032012-12-12 20:43:23 +00003785 if (NumMemOps && AllowOverlap &&
3786 VTSize >= 8 && NewVTSize < Size &&
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003787 TLI.allowsUnalignedMemoryAccesses(VT, AS, &Fast) && Fast)
Evan Cheng79e2ca92012-12-10 23:21:26 +00003788 VTSize = Size;
3789 else {
3790 VT = NewVT;
3791 VTSize = NewVTSize;
Evan Chengef377ad2008-05-15 08:39:06 +00003792 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003793 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003794
Evan Chengb7d3d032012-12-12 20:43:23 +00003795 if (++NumMemOps > Limit)
3796 return false;
3797
Dan Gohman544ab2c2008-04-12 04:36:06 +00003798 MemOps.push_back(VT);
3799 Size -= VTSize;
3800 }
3801
3802 return true;
3803}
3804
Andrew Trickef9de2a2013-05-25 02:42:55 +00003805static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng85eea4e2010-03-30 18:08:53 +00003806 SDValue Chain, SDValue Dst,
3807 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003808 unsigned Align, bool isVol,
3809 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003810 MachinePointerInfo DstPtrInfo,
3811 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003812 // Turn a memcpy of undef to nop.
3813 if (Src.getOpcode() == ISD::UNDEF)
3814 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003815
Dan Gohman714663a2008-05-29 19:42:22 +00003816 // Expand memcpy to a series of load and store ops if the size operand falls
3817 // below a certain threshold.
Duncan Sands6c25ca42010-11-05 15:20:29 +00003818 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3819 // rather than maybe a humongous number of loads and stores.
Evan Cheng61399372010-04-02 19:36:14 +00003820 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003821 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003822 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003823 MachineFunction &MF = DAG.getMachineFunction();
3824 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendlingc9b22d72012-10-09 07:45:08 +00003825 bool OptSize =
Bill Wendling698e84f2012-12-30 10:32:01 +00003826 MF.getFunction()->getAttributes().
3827 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003828 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3829 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3830 DstAlignCanChange = true;
3831 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3832 if (Align > SrcAlign)
3833 SrcAlign = Align;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003834 StringRef Str;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003835 bool CopyFromStr = isMemSrcFromString(Src, Str);
3836 bool isZeroStr = CopyFromStr && Str.empty();
Evan Cheng3ae2b792011-01-06 06:52:41 +00003837 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00003838
Evan Cheng4c014c82010-04-01 18:19:11 +00003839 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003840 (DstAlignCanChange ? 0 : Align),
Evan Chengebe47c82010-04-08 07:37:57 +00003841 (isZeroStr ? 0 : SrcAlign),
Evan Cheng962711e2012-12-12 02:34:41 +00003842 false, false, CopyFromStr, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003843 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003844
Evan Cheng43cd9e32010-04-01 06:04:33 +00003845 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003846 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003847 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Lang Hamesdd478042013-01-31 20:23:43 +00003848
3849 // Don't promote to an alignment that would require dynamic stack
Stephen Lincfe7f352013-07-08 00:37:03 +00003850 // realignment.
Lang Hamesdd478042013-01-31 20:23:43 +00003851 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
3852 if (!TRI->needsStackRealignment(MF))
3853 while (NewAlign > Align &&
3854 TLI.getDataLayout()->exceedsNaturalStackAlignment(NewAlign))
3855 NewAlign /= 2;
3856
Evan Cheng43cd9e32010-04-01 06:04:33 +00003857 if (NewAlign > Align) {
3858 // Give the stack frame object a larger alignment if needed.
3859 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3860 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3861 Align = NewAlign;
3862 }
3863 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003864
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003865 SmallVector<SDValue, 8> OutChains;
Evan Chengef377ad2008-05-15 08:39:06 +00003866 unsigned NumMemOps = MemOps.size();
Evan Chengda3db112008-06-30 07:31:25 +00003867 uint64_t SrcOff = 0, DstOff = 0;
Chris Lattnerbb1a1bd2009-09-20 17:32:21 +00003868 for (unsigned i = 0; i != NumMemOps; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003869 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003870 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003871 SDValue Value, Store;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003872
Evan Cheng79e2ca92012-12-10 23:21:26 +00003873 if (VTSize > Size) {
3874 // Issuing an unaligned load / store pair that overlaps with the previous
3875 // pair. Adjust the offset accordingly.
3876 assert(i == NumMemOps-1 && i != 0);
3877 SrcOff -= VTSize - Size;
3878 DstOff -= VTSize - Size;
3879 }
3880
Evan Cheng43cd9e32010-04-01 06:04:33 +00003881 if (CopyFromStr &&
3882 (isZeroStr || (VT.isInteger() && !VT.isVector()))) {
Evan Chengef377ad2008-05-15 08:39:06 +00003883 // It's unlikely a store of a vector immediate can be done in a single
3884 // instruction. It would require a load from a constantpool first.
Evan Cheng43cd9e32010-04-01 06:04:33 +00003885 // We only handle zero vectors here.
Evan Chengda3db112008-06-30 07:31:25 +00003886 // FIXME: Handle other cases where store of vector immediate is done in
3887 // a single instruction.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003888 Value = getMemsetStringVal(VT, dl, DAG, TLI, Str.substr(SrcOff));
Evan Cheng79e2ca92012-12-10 23:21:26 +00003889 if (Value.getNode())
3890 Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003891 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Evan Cheng79e2ca92012-12-10 23:21:26 +00003892 DstPtrInfo.getWithOffset(DstOff), isVol,
3893 false, Align);
3894 }
3895
3896 if (!Store.getNode()) {
Dale Johannesen315fb722009-06-22 20:59:07 +00003897 // The type might not be legal for the target. This should only happen
3898 // if the type is smaller than a legal type, as on PPC, so the right
Dale Johannesen92c11e92009-06-24 17:11:31 +00003899 // thing to do is generate a LoadExt/StoreTrunc pair. These simplify
3900 // to Load/Store if NVT==VT.
Dale Johannesen315fb722009-06-22 20:59:07 +00003901 // FIXME does the case above also need this?
Owen Anderson117c9e82009-08-12 00:36:31 +00003902 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
Dale Johannesen92c11e92009-06-24 17:11:31 +00003903 assert(NVT.bitsGE(VT));
Stuart Hastings81c43062011-02-16 16:23:55 +00003904 Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00003905 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003906 SrcPtrInfo.getWithOffset(SrcOff), VT, isVol, false,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003907 MinAlign(SrcAlign, SrcOff));
Dale Johannesen92c11e92009-06-24 17:11:31 +00003908 Store = DAG.getTruncStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003909 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003910 DstPtrInfo.getWithOffset(DstOff), VT, isVol,
3911 false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003912 }
3913 OutChains.push_back(Store);
3914 SrcOff += VTSize;
3915 DstOff += VTSize;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003916 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003917 }
3918
Craig Topper48d114b2014-04-26 18:35:24 +00003919 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003920}
3921
Andrew Trickef9de2a2013-05-25 02:42:55 +00003922static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003923 SDValue Chain, SDValue Dst,
3924 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003925 unsigned Align, bool isVol,
3926 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003927 MachinePointerInfo DstPtrInfo,
3928 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003929 // Turn a memmove of undef to nop.
3930 if (Src.getOpcode() == ISD::UNDEF)
3931 return Chain;
Dan Gohman714663a2008-05-29 19:42:22 +00003932
3933 // Expand memmove to a series of load and store ops if the size operand falls
3934 // below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00003935 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003936 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003937 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003938 MachineFunction &MF = DAG.getMachineFunction();
3939 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00003940 bool OptSize = MF.getFunction()->getAttributes().
3941 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003942 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3943 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3944 DstAlignCanChange = true;
3945 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3946 if (Align > SrcAlign)
3947 SrcAlign = Align;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003948 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003949
Evan Cheng4c014c82010-04-01 18:19:11 +00003950 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng962711e2012-12-12 02:34:41 +00003951 (DstAlignCanChange ? 0 : Align), SrcAlign,
3952 false, false, false, false, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003953 return SDValue();
Dan Gohman714663a2008-05-29 19:42:22 +00003954
Evan Cheng43cd9e32010-04-01 06:04:33 +00003955 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003956 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003957 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003958 if (NewAlign > Align) {
3959 // Give the stack frame object a larger alignment if needed.
3960 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3961 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3962 Align = NewAlign;
3963 }
3964 }
Dan Gohman714663a2008-05-29 19:42:22 +00003965
Evan Cheng43cd9e32010-04-01 06:04:33 +00003966 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003967 SmallVector<SDValue, 8> LoadValues;
3968 SmallVector<SDValue, 8> LoadChains;
3969 SmallVector<SDValue, 8> OutChains;
Dan Gohman714663a2008-05-29 19:42:22 +00003970 unsigned NumMemOps = MemOps.size();
3971 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003972 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003973 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00003974 SDValue Value;
Dan Gohman714663a2008-05-29 19:42:22 +00003975
Dale Johannesenabf66b82009-02-03 22:26:09 +00003976 Value = DAG.getLoad(VT, dl, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00003977 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003978 SrcPtrInfo.getWithOffset(SrcOff), isVol,
Pete Cooper82cd9e82011-11-08 18:42:53 +00003979 false, false, SrcAlign);
Dan Gohman714663a2008-05-29 19:42:22 +00003980 LoadValues.push_back(Value);
3981 LoadChains.push_back(Value.getValue(1));
3982 SrcOff += VTSize;
3983 }
Craig Topper48d114b2014-04-26 18:35:24 +00003984 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Dan Gohman714663a2008-05-29 19:42:22 +00003985 OutChains.clear();
3986 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003987 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003988 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00003989 SDValue Store;
Dan Gohman714663a2008-05-29 19:42:22 +00003990
Dale Johannesenabf66b82009-02-03 22:26:09 +00003991 Store = DAG.getStore(Chain, dl, LoadValues[i],
Andrew Tricke2431c62013-05-25 03:08:10 +00003992 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003993 DstPtrInfo.getWithOffset(DstOff), isVol, false, Align);
Dan Gohman714663a2008-05-29 19:42:22 +00003994 OutChains.push_back(Store);
3995 DstOff += VTSize;
3996 }
3997
Craig Topper48d114b2014-04-26 18:35:24 +00003998 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman714663a2008-05-29 19:42:22 +00003999}
4000
Serge Pavlov8ec39992013-09-17 16:24:42 +00004001/// \brief Lower the call to 'memset' intrinsic function into a series of store
4002/// operations.
4003///
4004/// \param DAG Selection DAG where lowered code is placed.
4005/// \param dl Link to corresponding IR location.
4006/// \param Chain Control flow dependency.
4007/// \param Dst Pointer to destination memory location.
4008/// \param Src Value of byte to write into the memory.
4009/// \param Size Number of bytes to write.
4010/// \param Align Alignment of the destination in bytes.
4011/// \param isVol True if destination is volatile.
4012/// \param DstPtrInfo IR information on the memory pointer.
4013/// \returns New head in the control flow, if lowering was successful, empty
4014/// SDValue otherwise.
4015///
4016/// The function tries to replace 'llvm.memset' intrinsic with several store
4017/// operations and value calculation code. This is usually profitable for small
4018/// memory size.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004019static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00004020 SDValue Chain, SDValue Dst,
4021 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004022 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004023 MachinePointerInfo DstPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00004024 // Turn a memset of undef to nop.
4025 if (Src.getOpcode() == ISD::UNDEF)
4026 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004027
4028 // Expand memset to a series of load/store ops if the size operand
4029 // falls below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00004030 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004031 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00004032 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00004033 MachineFunction &MF = DAG.getMachineFunction();
4034 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00004035 bool OptSize = MF.getFunction()->getAttributes().
4036 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004037 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
4038 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
4039 DstAlignCanChange = true;
Lang Hames58dba012011-10-26 23:50:43 +00004040 bool IsZeroVal =
Evan Cheng61399372010-04-02 19:36:14 +00004041 isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue();
Evan Cheng3ae2b792011-01-06 06:52:41 +00004042 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
Evan Cheng43cd9e32010-04-01 06:04:33 +00004043 Size, (DstAlignCanChange ? 0 : Align), 0,
Evan Cheng962711e2012-12-12 02:34:41 +00004044 true, IsZeroVal, false, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004045 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00004046
Evan Cheng43cd9e32010-04-01 06:04:33 +00004047 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00004048 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00004049 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004050 if (NewAlign > Align) {
4051 // Give the stack frame object a larger alignment if needed.
4052 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
4053 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
4054 Align = NewAlign;
4055 }
4056 }
4057
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004058 SmallVector<SDValue, 8> OutChains;
Dan Gohmanda440542008-04-28 17:15:20 +00004059 uint64_t DstOff = 0;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004060 unsigned NumMemOps = MemOps.size();
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004061
4062 // Find the largest store and generate the bit pattern for it.
4063 EVT LargestVT = MemOps[0];
4064 for (unsigned i = 1; i < NumMemOps; i++)
4065 if (MemOps[i].bitsGT(LargestVT))
4066 LargestVT = MemOps[i];
4067 SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
4068
Dan Gohman544ab2c2008-04-12 04:36:06 +00004069 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004070 EVT VT = MemOps[i];
Evan Cheng79e2ca92012-12-10 23:21:26 +00004071 unsigned VTSize = VT.getSizeInBits() / 8;
4072 if (VTSize > Size) {
4073 // Issuing an unaligned load / store pair that overlaps with the previous
4074 // pair. Adjust the offset accordingly.
4075 assert(i == NumMemOps-1 && i != 0);
4076 DstOff -= VTSize - Size;
4077 }
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004078
4079 // If this store is smaller than the largest store see whether we can get
4080 // the smaller value for free with a truncate.
4081 SDValue Value = MemSetValue;
4082 if (VT.bitsLT(LargestVT)) {
4083 if (!LargestVT.isVector() && !VT.isVector() &&
4084 TLI.isTruncateFree(LargestVT, VT))
4085 Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
4086 else
4087 Value = getMemsetValue(Src, VT, DAG, dl);
4088 }
4089 assert(Value.getValueType() == VT && "Value with wrong type.");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004090 SDValue Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00004091 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00004092 DstPtrInfo.getWithOffset(DstOff),
Dale Johannesened0d8402010-11-18 01:35:23 +00004093 isVol, false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004094 OutChains.push_back(Store);
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004095 DstOff += VT.getSizeInBits() / 8;
Evan Cheng79e2ca92012-12-10 23:21:26 +00004096 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004097 }
4098
Craig Topper48d114b2014-04-26 18:35:24 +00004099 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004100}
4101
Andrew Trickef9de2a2013-05-25 02:42:55 +00004102SDValue SelectionDAG::getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004103 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004104 unsigned Align, bool isVol, bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004105 MachinePointerInfo DstPtrInfo,
4106 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004107 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004108
4109 // Check to see if we should lower the memcpy to loads and stores first.
4110 // For cases within the target-specified limits, this is the best choice.
4111 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4112 if (ConstantSize) {
4113 // Memcpy with size zero? Just return the original chain.
4114 if (ConstantSize->isNullValue())
4115 return Chain;
4116
Evan Cheng43cd9e32010-04-01 06:04:33 +00004117 SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
4118 ConstantSize->getZExtValue(),Align,
Chris Lattner2510de22010-09-21 05:40:29 +00004119 isVol, false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004120 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004121 return Result;
4122 }
4123
4124 // Then check to see if we should lower the memcpy with target-specific
4125 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004126 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004127 TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align,
Mon P Wangc576ee92010-04-04 03:10:48 +00004128 isVol, AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004129 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004130 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004131 return Result;
4132
4133 // If we really need inline code and the target declined to provide it,
4134 // use a (potentially long) sequence of loads and stores.
4135 if (AlwaysInline) {
4136 assert(ConstantSize && "AlwaysInline requires a constant size!");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004137 return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004138 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004139 true, DstPtrInfo, SrcPtrInfo);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004140 }
4141
Dan Gohmanf38547c2010-04-05 20:24:08 +00004142 // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
4143 // memcpy is not guaranteed to be safe. libc memcpys aren't required to
4144 // respect volatile, so they may do things like read or write memory
4145 // beyond the given memory regions. But fixing this isn't easy, and most
4146 // people don't care.
4147
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004148 const TargetLowering *TLI = TM.getTargetLowering();
4149
Dan Gohman544ab2c2008-04-12 04:36:06 +00004150 // Emit a library call.
4151 TargetLowering::ArgListTy Args;
4152 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004153 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004154 Entry.Node = Dst; Args.push_back(Entry);
4155 Entry.Node = Src; Args.push_back(Entry);
4156 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004157 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004158 TargetLowering::CallLoweringInfo CLI(*this);
4159 CLI.setDebugLoc(dl).setChain(Chain)
4160 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY),
4161 Type::getVoidTy(*getContext()),
4162 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004163 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004164 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004165 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004166
Dan Gohman544ab2c2008-04-12 04:36:06 +00004167 return CallResult.second;
4168}
4169
Andrew Trickef9de2a2013-05-25 02:42:55 +00004170SDValue SelectionDAG::getMemmove(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004171 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004172 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004173 MachinePointerInfo DstPtrInfo,
4174 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004175 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004176
Dan Gohman714663a2008-05-29 19:42:22 +00004177 // Check to see if we should lower the memmove to loads and stores first.
4178 // For cases within the target-specified limits, this is the best choice.
4179 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4180 if (ConstantSize) {
4181 // Memmove with size zero? Just return the original chain.
4182 if (ConstantSize->isNullValue())
4183 return Chain;
4184
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004185 SDValue Result =
Dale Johannesenabf66b82009-02-03 22:26:09 +00004186 getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004187 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004188 false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004189 if (Result.getNode())
Dan Gohman714663a2008-05-29 19:42:22 +00004190 return Result;
4191 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00004192
4193 // Then check to see if we should lower the memmove with target-specific
4194 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004195 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004196 TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004197 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004198 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004199 return Result;
4200
Mon P Wangbf862242010-04-06 08:27:51 +00004201 // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
4202 // not be safe. See memcpy above for more details.
4203
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004204 const TargetLowering *TLI = TM.getTargetLowering();
4205
Dan Gohman544ab2c2008-04-12 04:36:06 +00004206 // Emit a library call.
4207 TargetLowering::ArgListTy Args;
4208 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004209 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004210 Entry.Node = Dst; Args.push_back(Entry);
4211 Entry.Node = Src; Args.push_back(Entry);
4212 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004213 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004214 TargetLowering::CallLoweringInfo CLI(*this);
4215 CLI.setDebugLoc(dl).setChain(Chain)
4216 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
4217 Type::getVoidTy(*getContext()),
4218 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004219 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004220 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004221 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004222
Dan Gohman544ab2c2008-04-12 04:36:06 +00004223 return CallResult.second;
4224}
4225
Andrew Trickef9de2a2013-05-25 02:42:55 +00004226SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004227 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004228 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004229 MachinePointerInfo DstPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004230 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004231
4232 // Check to see if we should lower the memset to stores first.
4233 // For cases within the target-specified limits, this is the best choice.
4234 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4235 if (ConstantSize) {
4236 // Memset with size zero? Just return the original chain.
4237 if (ConstantSize->isNullValue())
4238 return Chain;
4239
Mon P Wangc576ee92010-04-04 03:10:48 +00004240 SDValue Result =
4241 getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
Chris Lattner2510de22010-09-21 05:40:29 +00004242 Align, isVol, DstPtrInfo);
Mon P Wangc576ee92010-04-04 03:10:48 +00004243
Gabor Greiff304a7a2008-08-28 21:40:38 +00004244 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004245 return Result;
4246 }
4247
4248 // Then check to see if we should lower the memset with target-specific
4249 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004250 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004251 TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004252 DstPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004253 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004254 return Result;
4255
Wesley Peck527da1b2010-11-23 03:31:01 +00004256 // Emit a library call.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004257 const TargetLowering *TLI = TM.getTargetLowering();
4258 Type *IntPtrTy = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004259 TargetLowering::ArgListTy Args;
4260 TargetLowering::ArgListEntry Entry;
4261 Entry.Node = Dst; Entry.Ty = IntPtrTy;
4262 Args.push_back(Entry);
4263 // Extend or truncate the argument to be an i32 value for the call.
Owen Anderson9f944592009-08-11 20:47:22 +00004264 if (Src.getValueType().bitsGT(MVT::i32))
4265 Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004266 else
Owen Anderson9f944592009-08-11 20:47:22 +00004267 Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
Owen Anderson55f1c092009-08-13 21:58:54 +00004268 Entry.Node = Src;
4269 Entry.Ty = Type::getInt32Ty(*getContext());
4270 Entry.isSExt = true;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004271 Args.push_back(Entry);
Owen Anderson55f1c092009-08-13 21:58:54 +00004272 Entry.Node = Size;
4273 Entry.Ty = IntPtrTy;
4274 Entry.isSExt = false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004275 Args.push_back(Entry);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004276
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004277 // FIXME: pass in SDLoc
4278 TargetLowering::CallLoweringInfo CLI(*this);
4279 CLI.setDebugLoc(dl).setChain(Chain)
4280 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET),
4281 Type::getVoidTy(*getContext()),
4282 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004283 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004284 .setDiscardResult();
4285
4286 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004287 return CallResult.second;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00004288}
4289
Andrew Trickef9de2a2013-05-25 02:42:55 +00004290SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004291 SDVTList VTList, ArrayRef<SDValue> Ops,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004292 MachineMemOperand *MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004293 AtomicOrdering SuccessOrdering,
4294 AtomicOrdering FailureOrdering,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004295 SynchronizationScope SynchScope) {
4296 FoldingSetNodeID ID;
4297 ID.AddInteger(MemVT.getRawBits());
Craig Topper8c0b4d02014-04-28 05:57:50 +00004298 AddNodeIDNode(ID, Opcode, VTList, Ops);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004299 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004300 void* IP = nullptr;
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004301 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4302 cast<AtomicSDNode>(E)->refineAlignment(MMO);
4303 return SDValue(E, 0);
4304 }
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004305
4306 // Allocate the operands array for the node out of the BumpPtrAllocator, since
4307 // SDNode doesn't have access to it. This memory will be "leaked" when
4308 // the node is deallocated, but recovered when the allocator is released.
4309 // If the number of operands is less than 5 we use AtomicSDNode's internal
4310 // storage.
Craig Topper8c0b4d02014-04-28 05:57:50 +00004311 unsigned NumOps = Ops.size();
4312 SDUse *DynOps = NumOps > 4 ? OperandAllocator.Allocate<SDUse>(NumOps)
4313 : nullptr;
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004314
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004315 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(),
4316 dl.getDebugLoc(), VTList, MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004317 Ops.data(), DynOps, NumOps, MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004318 SuccessOrdering, FailureOrdering,
4319 SynchScope);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004320 CSEMap.InsertNode(N, IP);
4321 AllNodes.push_back(N);
4322 return SDValue(N, 0);
4323}
4324
4325SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004326 SDVTList VTList, ArrayRef<SDValue> Ops,
Tim Northovere94a5182014-03-11 10:48:52 +00004327 MachineMemOperand *MMO,
4328 AtomicOrdering Ordering,
4329 SynchronizationScope SynchScope) {
Craig Topper8c0b4d02014-04-28 05:57:50 +00004330 return getAtomic(Opcode, dl, MemVT, VTList, Ops, MMO, Ordering,
Tim Northovere94a5182014-03-11 10:48:52 +00004331 Ordering, SynchScope);
4332}
4333
Tim Northover420a2162014-06-13 14:24:07 +00004334SDValue SelectionDAG::getAtomicCmpSwap(
4335 unsigned Opcode, SDLoc dl, EVT MemVT, SDVTList VTs, SDValue Chain,
4336 SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo,
4337 unsigned Alignment, AtomicOrdering SuccessOrdering,
4338 AtomicOrdering FailureOrdering, SynchronizationScope SynchScope) {
4339 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4340 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
4341 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4342
Dan Gohman48b185d2009-09-25 20:36:54 +00004343 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4344 Alignment = getEVTAlignment(MemVT);
4345
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004346 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004347
Eli Friedmane978d2f2011-09-07 02:23:42 +00004348 // FIXME: Volatile isn't really correct; we should keep track of atomic
4349 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004350 unsigned Flags = MachineMemOperand::MOVolatile;
Tim Northover420a2162014-06-13 14:24:07 +00004351 Flags |= MachineMemOperand::MOLoad;
4352 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004353
4354 MachineMemOperand *MMO =
Chris Lattner15d84c42010-09-21 04:53:42 +00004355 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
Dan Gohman48b185d2009-09-25 20:36:54 +00004356
Tim Northover420a2162014-06-13 14:24:07 +00004357 return getAtomicCmpSwap(Opcode, dl, MemVT, VTs, Chain, Ptr, Cmp, Swp, MMO,
4358 SuccessOrdering, FailureOrdering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004359}
4360
Tim Northover420a2162014-06-13 14:24:07 +00004361SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, SDLoc dl, EVT MemVT,
4362 SDVTList VTs, SDValue Chain, SDValue Ptr,
4363 SDValue Cmp, SDValue Swp,
4364 MachineMemOperand *MMO,
4365 AtomicOrdering SuccessOrdering,
4366 AtomicOrdering FailureOrdering,
4367 SynchronizationScope SynchScope) {
4368 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4369 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004370 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4371
Dale Johannesen839acbb2009-01-29 00:47:48 +00004372 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Tim Northover420a2162014-06-13 14:24:07 +00004373 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO,
4374 SuccessOrdering, FailureOrdering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004375}
4376
Andrew Trickef9de2a2013-05-25 02:42:55 +00004377SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004378 SDValue Chain,
Scott Michelcf0da6c2009-02-17 22:15:04 +00004379 SDValue Ptr, SDValue Val,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004380 const Value* PtrVal,
Eli Friedmanadec5872011-07-29 03:05:32 +00004381 unsigned Alignment,
4382 AtomicOrdering Ordering,
4383 SynchronizationScope SynchScope) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004384 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4385 Alignment = getEVTAlignment(MemVT);
4386
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004387 MachineFunction &MF = getMachineFunction();
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004388 // An atomic store does not load. An atomic load does not store.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004389 // (An atomicrmw obviously both loads and stores.)
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004390 // For now, atomics are considered to be volatile always, and they are
4391 // chained as such.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004392 // FIXME: Volatile isn't really correct; we should keep track of atomic
4393 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004394 unsigned Flags = MachineMemOperand::MOVolatile;
4395 if (Opcode != ISD::ATOMIC_STORE)
4396 Flags |= MachineMemOperand::MOLoad;
4397 if (Opcode != ISD::ATOMIC_LOAD)
4398 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004399
4400 MachineMemOperand *MMO =
Chris Lattnerb5f49202010-09-21 04:46:39 +00004401 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
Dan Gohman48b185d2009-09-25 20:36:54 +00004402 MemVT.getStoreSize(), Alignment);
4403
Eli Friedmanadec5872011-07-29 03:05:32 +00004404 return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO,
4405 Ordering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004406}
4407
Andrew Trickef9de2a2013-05-25 02:42:55 +00004408SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dan Gohman48b185d2009-09-25 20:36:54 +00004409 SDValue Chain,
4410 SDValue Ptr, SDValue Val,
Eli Friedmanadec5872011-07-29 03:05:32 +00004411 MachineMemOperand *MMO,
4412 AtomicOrdering Ordering,
4413 SynchronizationScope SynchScope) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004414 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
4415 Opcode == ISD::ATOMIC_LOAD_SUB ||
4416 Opcode == ISD::ATOMIC_LOAD_AND ||
4417 Opcode == ISD::ATOMIC_LOAD_OR ||
4418 Opcode == ISD::ATOMIC_LOAD_XOR ||
4419 Opcode == ISD::ATOMIC_LOAD_NAND ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004420 Opcode == ISD::ATOMIC_LOAD_MIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004421 Opcode == ISD::ATOMIC_LOAD_MAX ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004422 Opcode == ISD::ATOMIC_LOAD_UMIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004423 Opcode == ISD::ATOMIC_LOAD_UMAX ||
Eli Friedman342e8df2011-08-24 20:50:09 +00004424 Opcode == ISD::ATOMIC_SWAP ||
4425 Opcode == ISD::ATOMIC_STORE) &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004426 "Invalid Atomic Op");
4427
Owen Anderson53aa7a92009-08-10 22:56:29 +00004428 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004429
Eli Friedman342e8df2011-08-24 20:50:09 +00004430 SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
4431 getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004432 SDValue Ops[] = {Chain, Ptr, Val};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004433 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004434}
4435
Andrew Trickef9de2a2013-05-25 02:42:55 +00004436SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Eli Friedman342e8df2011-08-24 20:50:09 +00004437 EVT VT, SDValue Chain,
4438 SDValue Ptr,
Eli Friedman342e8df2011-08-24 20:50:09 +00004439 MachineMemOperand *MMO,
4440 AtomicOrdering Ordering,
4441 SynchronizationScope SynchScope) {
4442 assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
4443
4444 SDVTList VTs = getVTList(VT, MVT::Other);
Eli Friedman342e8df2011-08-24 20:50:09 +00004445 SDValue Ops[] = {Chain, Ptr};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004446 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Eli Friedman342e8df2011-08-24 20:50:09 +00004447}
4448
Duncan Sands739a0542008-07-02 17:40:58 +00004449/// getMergeValues - Create a MERGE_VALUES node from the given operands.
Craig Topper64941d92014-04-27 19:20:57 +00004450SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, SDLoc dl) {
4451 if (Ops.size() == 1)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004452 return Ops[0];
4453
Owen Anderson53aa7a92009-08-10 22:56:29 +00004454 SmallVector<EVT, 4> VTs;
Craig Topper64941d92014-04-27 19:20:57 +00004455 VTs.reserve(Ops.size());
4456 for (unsigned i = 0; i < Ops.size(); ++i)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004457 VTs.push_back(Ops[i].getValueType());
Craig Topperbb533072014-04-27 19:21:02 +00004458 return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops);
Dale Johannesenae7992a2009-02-02 20:47:48 +00004459}
4460
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004461SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004462SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004463 ArrayRef<SDValue> Ops,
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004464 EVT MemVT, MachinePointerInfo PtrInfo,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004465 unsigned Align, bool Vol,
4466 bool ReadMem, bool WriteMem) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004467 if (Align == 0) // Ensure that codegen never sees alignment 0
4468 Align = getEVTAlignment(MemVT);
4469
4470 MachineFunction &MF = getMachineFunction();
4471 unsigned Flags = 0;
4472 if (WriteMem)
4473 Flags |= MachineMemOperand::MOStore;
4474 if (ReadMem)
4475 Flags |= MachineMemOperand::MOLoad;
4476 if (Vol)
4477 Flags |= MachineMemOperand::MOVolatile;
4478 MachineMemOperand *MMO =
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004479 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
Dan Gohman48b185d2009-09-25 20:36:54 +00004480
Craig Topper206fcd42014-04-26 19:29:41 +00004481 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004482}
4483
4484SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004485SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004486 ArrayRef<SDValue> Ops, EVT MemVT,
4487 MachineMemOperand *MMO) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004488 assert((Opcode == ISD::INTRINSIC_VOID ||
4489 Opcode == ISD::INTRINSIC_W_CHAIN ||
Dale Johannesene660f4d2010-10-26 23:11:10 +00004490 Opcode == ISD::PREFETCH ||
Nadav Rotem7c277da2012-09-06 09:17:37 +00004491 Opcode == ISD::LIFETIME_START ||
4492 Opcode == ISD::LIFETIME_END ||
Dan Gohman48b185d2009-09-25 20:36:54 +00004493 (Opcode <= INT_MAX &&
4494 (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
4495 "Opcode is not a memory-accessing opcode!");
4496
Dale Johannesen839acbb2009-01-29 00:47:48 +00004497 // Memoize the node unless it returns a flag.
4498 MemIntrinsicSDNode *N;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004499 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004500 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004501 AddNodeIDNode(ID, Opcode, VTList, Ops);
Pete Cooper91244262012-07-30 20:23:19 +00004502 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004503 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004504 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4505 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004506 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004507 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004508
Jack Carter170a5f22013-09-09 22:02:08 +00004509 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4510 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004511 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004512 CSEMap.InsertNode(N, IP);
4513 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004514 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4515 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004516 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004517 }
4518 AllNodes.push_back(N);
4519 return SDValue(N, 0);
4520}
4521
Chris Lattnerea952f02010-09-21 17:24:05 +00004522/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4523/// MachinePointerInfo record from it. This is particularly useful because the
4524/// code generator has many cases where it doesn't bother passing in a
4525/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4526static MachinePointerInfo InferPointerInfo(SDValue Ptr, int64_t Offset = 0) {
4527 // If this is FI+Offset, we can model it.
4528 if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
4529 return MachinePointerInfo::getFixedStack(FI->getIndex(), Offset);
4530
4531 // If this is (FI+Offset1)+Offset2, we can model it.
4532 if (Ptr.getOpcode() != ISD::ADD ||
4533 !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
4534 !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
4535 return MachinePointerInfo();
Wesley Peck527da1b2010-11-23 03:31:01 +00004536
Chris Lattnerea952f02010-09-21 17:24:05 +00004537 int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4538 return MachinePointerInfo::getFixedStack(FI, Offset+
4539 cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
4540}
4541
4542/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4543/// MachinePointerInfo record from it. This is particularly useful because the
4544/// code generator has many cases where it doesn't bother passing in a
4545/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4546static MachinePointerInfo InferPointerInfo(SDValue Ptr, SDValue OffsetOp) {
4547 // If the 'Offset' value isn't a constant, we can't handle this.
4548 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
4549 return InferPointerInfo(Ptr, OffsetNode->getSExtValue());
4550 if (OffsetOp.getOpcode() == ISD::UNDEF)
4551 return InferPointerInfo(Ptr);
4552 return MachinePointerInfo();
4553}
Wesley Peck527da1b2010-11-23 03:31:01 +00004554
Chris Lattnerea952f02010-09-21 17:24:05 +00004555
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004556SDValue
4557SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004558 EVT VT, SDLoc dl, SDValue Chain,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004559 SDValue Ptr, SDValue Offset,
4560 MachinePointerInfo PtrInfo, EVT MemVT,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004561 bool isVolatile, bool isNonTemporal, bool isInvariant,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004562 unsigned Alignment, const MDNode *TBAAInfo,
4563 const MDNode *Ranges) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004564 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004565 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004566 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4567 Alignment = getEVTAlignment(VT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004568
Dan Gohman48b185d2009-09-25 20:36:54 +00004569 unsigned Flags = MachineMemOperand::MOLoad;
4570 if (isVolatile)
4571 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004572 if (isNonTemporal)
4573 Flags |= MachineMemOperand::MONonTemporal;
Pete Cooper82cd9e82011-11-08 18:42:53 +00004574 if (isInvariant)
4575 Flags |= MachineMemOperand::MOInvariant;
Wesley Peck527da1b2010-11-23 03:31:01 +00004576
Chris Lattnerea952f02010-09-21 17:24:05 +00004577 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4578 // clients.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004579 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004580 PtrInfo = InferPointerInfo(Ptr, Offset);
Wesley Peck527da1b2010-11-23 03:31:01 +00004581
Chris Lattnerea952f02010-09-21 17:24:05 +00004582 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004583 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004584 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004585 TBAAInfo, Ranges);
Evan Cheng1c349f12010-07-07 22:15:37 +00004586 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004587}
4588
4589SDValue
Wesley Peck527da1b2010-11-23 03:31:01 +00004590SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004591 EVT VT, SDLoc dl, SDValue Chain,
Dan Gohman48b185d2009-09-25 20:36:54 +00004592 SDValue Ptr, SDValue Offset, EVT MemVT,
4593 MachineMemOperand *MMO) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004594 if (VT == MemVT) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004595 ExtType = ISD::NON_EXTLOAD;
4596 } else if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004597 assert(VT == MemVT && "Non-extending load from different memory type!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004598 } else {
4599 // Extending load.
Dan Gohmancecad352009-12-14 23:40:38 +00004600 assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
4601 "Should only be an extending load, not truncating!");
Dan Gohman08c0a952009-09-23 21:02:20 +00004602 assert(VT.isInteger() == MemVT.isInteger() &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004603 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohmancecad352009-12-14 23:40:38 +00004604 assert(VT.isVector() == MemVT.isVector() &&
4605 "Cannot use trunc store to convert to or from a vector!");
4606 assert((!VT.isVector() ||
4607 VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
4608 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004609 }
4610
4611 bool Indexed = AM != ISD::UNINDEXED;
4612 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
4613 "Unindexed load with an offset!");
4614
4615 SDVTList VTs = Indexed ?
Owen Anderson9f944592009-08-11 20:47:22 +00004616 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004617 SDValue Ops[] = { Chain, Ptr, Offset };
4618 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004619 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops);
Dan Gohman08c0a952009-09-23 21:02:20 +00004620 ID.AddInteger(MemVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004621 ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004622 MMO->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004623 MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004624 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004625 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004626 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4627 cast<LoadSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004628 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004629 }
Jack Carter170a5f22013-09-09 22:02:08 +00004630 SDNode *N = new (NodeAllocator) LoadSDNode(Ops, dl.getIROrder(),
4631 dl.getDebugLoc(), VTs, AM, ExtType,
Dan Gohman01c65a22010-03-18 18:49:47 +00004632 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004633 CSEMap.InsertNode(N, IP);
4634 AllNodes.push_back(N);
4635 return SDValue(N, 0);
4636}
4637
Andrew Trickef9de2a2013-05-25 02:42:55 +00004638SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004639 SDValue Chain, SDValue Ptr,
Chris Lattner2510de22010-09-21 05:40:29 +00004640 MachinePointerInfo PtrInfo,
4641 bool isVolatile, bool isNonTemporal,
Michael Ilsemand5f91512012-09-10 16:56:31 +00004642 bool isInvariant, unsigned Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004643 const MDNode *TBAAInfo,
4644 const MDNode *Ranges) {
Chris Lattner2510de22010-09-21 05:40:29 +00004645 SDValue Undef = getUNDEF(Ptr.getValueType());
4646 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004647 PtrInfo, VT, isVolatile, isNonTemporal, isInvariant, Alignment,
4648 TBAAInfo, Ranges);
Chris Lattner2510de22010-09-21 05:40:29 +00004649}
Dale Johannesen839acbb2009-01-29 00:47:48 +00004650
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004651SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
4652 SDValue Chain, SDValue Ptr,
4653 MachineMemOperand *MMO) {
4654 SDValue Undef = getUNDEF(Ptr.getValueType());
4655 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
4656 VT, MMO);
4657}
4658
Andrew Trickef9de2a2013-05-25 02:42:55 +00004659SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
Chris Lattner2510de22010-09-21 05:40:29 +00004660 SDValue Chain, SDValue Ptr,
4661 MachinePointerInfo PtrInfo, EVT MemVT,
4662 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004663 unsigned Alignment, const MDNode *TBAAInfo) {
Chris Lattner2510de22010-09-21 05:40:29 +00004664 SDValue Undef = getUNDEF(Ptr.getValueType());
4665 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004666 PtrInfo, MemVT, isVolatile, isNonTemporal, false, Alignment,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004667 TBAAInfo);
Chris Lattner2510de22010-09-21 05:40:29 +00004668}
4669
4670
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004671SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
4672 SDValue Chain, SDValue Ptr, EVT MemVT,
4673 MachineMemOperand *MMO) {
4674 SDValue Undef = getUNDEF(Ptr.getValueType());
4675 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
4676 MemVT, MMO);
4677}
4678
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004679SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004680SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004681 SDValue Offset, ISD::MemIndexedMode AM) {
4682 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
4683 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
4684 "Load is already a indexed load!");
Evan Cheng1c349f12010-07-07 22:15:37 +00004685 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
Chris Lattnerea952f02010-09-21 17:24:05 +00004686 LD->getChain(), Base, Offset, LD->getPointerInfo(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004687 LD->getMemoryVT(), LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004688 false, LD->getAlignment());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004689}
4690
Andrew Trickef9de2a2013-05-25 02:42:55 +00004691SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004692 SDValue Ptr, MachinePointerInfo PtrInfo,
David Greene39c6d012010-02-15 17:00:31 +00004693 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004694 unsigned Alignment, const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004695 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004696 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004697 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman48b185d2009-09-25 20:36:54 +00004698 Alignment = getEVTAlignment(Val.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004699
Dan Gohman48b185d2009-09-25 20:36:54 +00004700 unsigned Flags = MachineMemOperand::MOStore;
4701 if (isVolatile)
4702 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004703 if (isNonTemporal)
4704 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004705
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004706 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004707 PtrInfo = InferPointerInfo(Ptr);
4708
4709 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004710 MachineMemOperand *MMO =
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004711 MF.getMachineMemOperand(PtrInfo, Flags,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004712 Val.getValueType().getStoreSize(), Alignment,
4713 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004714
4715 return getStore(Chain, dl, Val, Ptr, MMO);
4716}
4717
Andrew Trickef9de2a2013-05-25 02:42:55 +00004718SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004719 SDValue Ptr, MachineMemOperand *MMO) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004720 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004721 "Invalid chain type");
Dan Gohman48b185d2009-09-25 20:36:54 +00004722 EVT VT = Val.getValueType();
Owen Anderson9f944592009-08-11 20:47:22 +00004723 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004724 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004725 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4726 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004727 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004728 ID.AddInteger(VT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004729 ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004730 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004731 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004732 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004733 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4734 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004735 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004736 }
Jack Carter170a5f22013-09-09 22:02:08 +00004737 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4738 dl.getDebugLoc(), VTs,
4739 ISD::UNINDEXED, false, VT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004740 CSEMap.InsertNode(N, IP);
4741 AllNodes.push_back(N);
4742 return SDValue(N, 0);
4743}
4744
Andrew Trickef9de2a2013-05-25 02:42:55 +00004745SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004746 SDValue Ptr, MachinePointerInfo PtrInfo,
4747 EVT SVT,bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004748 unsigned Alignment,
4749 const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004750 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004751 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004752 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4753 Alignment = getEVTAlignment(SVT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004754
Dan Gohman48b185d2009-09-25 20:36:54 +00004755 unsigned Flags = MachineMemOperand::MOStore;
4756 if (isVolatile)
4757 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004758 if (isNonTemporal)
4759 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004760
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004761 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004762 PtrInfo = InferPointerInfo(Ptr);
4763
4764 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004765 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004766 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment,
4767 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004768
4769 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
4770}
4771
Andrew Trickef9de2a2013-05-25 02:42:55 +00004772SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004773 SDValue Ptr, EVT SVT,
4774 MachineMemOperand *MMO) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004775 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004776
Michael Ilsemand5f91512012-09-10 16:56:31 +00004777 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004778 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004779 if (VT == SVT)
Dan Gohman48b185d2009-09-25 20:36:54 +00004780 return getStore(Chain, dl, Val, Ptr, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004781
Dan Gohmancecad352009-12-14 23:40:38 +00004782 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
4783 "Should only be a truncating store, not extending!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004784 assert(VT.isInteger() == SVT.isInteger() &&
4785 "Can't do FP-INT conversion!");
Dan Gohmancecad352009-12-14 23:40:38 +00004786 assert(VT.isVector() == SVT.isVector() &&
4787 "Cannot use trunc store to convert to or from a vector!");
4788 assert((!VT.isVector() ||
4789 VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
4790 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004791
Owen Anderson9f944592009-08-11 20:47:22 +00004792 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004793 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004794 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4795 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004796 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004797 ID.AddInteger(SVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004798 ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004799 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004800 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004801 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004802 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4803 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004804 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004805 }
Jack Carter170a5f22013-09-09 22:02:08 +00004806 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4807 dl.getDebugLoc(), VTs,
4808 ISD::UNINDEXED, true, SVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004809 CSEMap.InsertNode(N, IP);
4810 AllNodes.push_back(N);
4811 return SDValue(N, 0);
4812}
4813
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004814SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004815SelectionDAG::getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004816 SDValue Offset, ISD::MemIndexedMode AM) {
4817 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
4818 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
4819 "Store is already a indexed store!");
Owen Anderson9f944592009-08-11 20:47:22 +00004820 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004821 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
4822 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004823 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004824 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohman76a07f52009-02-03 00:08:45 +00004825 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +00004826 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004827 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00004828 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00004829 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00004830
Jack Carter170a5f22013-09-09 22:02:08 +00004831 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4832 dl.getDebugLoc(), VTs, AM,
Dan Gohman01c65a22010-03-18 18:49:47 +00004833 ST->isTruncatingStore(),
4834 ST->getMemoryVT(),
4835 ST->getMemOperand());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004836 CSEMap.InsertNode(N, IP);
4837 AllNodes.push_back(N);
4838 return SDValue(N, 0);
4839}
4840
Andrew Trickef9de2a2013-05-25 02:42:55 +00004841SDValue SelectionDAG::getVAArg(EVT VT, SDLoc dl,
Dale Johannesenabf66b82009-02-03 22:26:09 +00004842 SDValue Chain, SDValue Ptr,
Rafael Espindola2041abd2010-06-26 18:22:20 +00004843 SDValue SV,
4844 unsigned Align) {
4845 SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, MVT::i32) };
Craig Topper48d114b2014-04-26 18:35:24 +00004846 return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops);
Dale Johannesenabf66b82009-02-03 22:26:09 +00004847}
4848
Andrew Trickef9de2a2013-05-25 02:42:55 +00004849SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topperdd5e16d2014-04-27 19:21:06 +00004850 ArrayRef<SDUse> Ops) {
4851 switch (Ops.size()) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004852 case 0: return getNode(Opcode, DL, VT);
Craig Topperdd5e16d2014-04-27 19:21:06 +00004853 case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0]));
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004854 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4855 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman768f2c92008-07-07 18:26:29 +00004856 default: break;
4857 }
4858
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004859 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman768f2c92008-07-07 18:26:29 +00004860 // the regular getNode logic.
Craig Topperdd5e16d2014-04-27 19:21:06 +00004861 SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end());
Craig Topper48d114b2014-04-26 18:35:24 +00004862 return getNode(Opcode, DL, VT, NewOps);
Dan Gohman768f2c92008-07-07 18:26:29 +00004863}
4864
Andrew Trickef9de2a2013-05-25 02:42:55 +00004865SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topper48d114b2014-04-26 18:35:24 +00004866 ArrayRef<SDValue> Ops) {
4867 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00004868 switch (NumOps) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004869 case 0: return getNode(Opcode, DL, VT);
4870 case 1: return getNode(Opcode, DL, VT, Ops[0]);
4871 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4872 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattnerb0713c72005-04-09 03:27:28 +00004873 default: break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00004874 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004875
Chris Lattnerb0713c72005-04-09 03:27:28 +00004876 switch (Opcode) {
4877 default: break;
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004878 case ISD::SELECT_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004879 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004880 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
4881 "LHS and RHS of condition must have same type!");
4882 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4883 "True and False arms of SelectCC must have same type!");
4884 assert(Ops[2].getValueType() == VT &&
4885 "select_cc node must be of same type as true and false value!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004886 break;
4887 }
4888 case ISD::BR_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004889 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004890 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4891 "LHS/RHS of comparison should match types!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004892 break;
4893 }
Chris Lattnerb0713c72005-04-09 03:27:28 +00004894 }
4895
Chris Lattner566307f2005-05-14 07:42:29 +00004896 // Memoize nodes.
Chris Lattnerf9c19152005-08-25 19:12:10 +00004897 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00004898 SDVTList VTs = getVTList(VT);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004899
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004900 if (VT != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00004901 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004902 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00004903 void *IP = nullptr;
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004904
Bill Wendling022d18f2009-12-18 23:32:53 +00004905 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004906 return SDValue(E, 0);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004907
Jack Carter170a5f22013-09-09 22:02:08 +00004908 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004909 VTs, Ops);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00004910 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004911 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004912 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004913 VTs, Ops);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004914 }
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004915
Chris Lattnerb0713c72005-04-09 03:27:28 +00004916 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004917#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00004918 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004919#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004920 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00004921}
4922
Andrew Trickef9de2a2013-05-25 02:42:55 +00004923SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Craig Topper48d114b2014-04-26 18:35:24 +00004924 ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) {
4925 return getNode(Opcode, DL, getVTList(ResultTys), Ops);
Chris Lattner3bf4be42006-08-14 23:31:51 +00004926}
4927
Andrew Trickef9de2a2013-05-25 02:42:55 +00004928SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Craig Topper48d114b2014-04-26 18:35:24 +00004929 ArrayRef<SDValue> Ops) {
Chris Lattner65879ca2006-08-16 22:57:46 +00004930 if (VTList.NumVTs == 1)
Craig Topper48d114b2014-04-26 18:35:24 +00004931 return getNode(Opcode, DL, VTList.VTs[0], Ops);
Chris Lattnerd5531332005-05-14 06:20:26 +00004932
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004933#if 0
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004934 switch (Opcode) {
Chris Lattner669e8c22005-05-14 07:25:05 +00004935 // FIXME: figure out how to safely handle things like
4936 // int foo(int x) { return 1 << (x & 255); }
4937 // int bar() { return foo(256); }
Chris Lattner669e8c22005-05-14 07:25:05 +00004938 case ISD::SRA_PARTS:
4939 case ISD::SRL_PARTS:
4940 case ISD::SHL_PARTS:
4941 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Owen Anderson9f944592009-08-11 20:47:22 +00004942 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004943 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004944 else if (N3.getOpcode() == ISD::AND)
4945 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
4946 // If the and is only masking out bits that cannot effect the shift,
4947 // eliminate the and.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004948 unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
Chris Lattner669e8c22005-05-14 07:25:05 +00004949 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004950 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004951 }
4952 break;
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004953 }
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004954#endif
Chris Lattnerd5531332005-05-14 06:20:26 +00004955
Chris Lattnerf9c19152005-08-25 19:12:10 +00004956 // Memoize the node unless it returns a flag.
4957 SDNode *N;
Craig Topper48d114b2014-04-26 18:35:24 +00004958 unsigned NumOps = Ops.size();
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004959 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00004960 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004961 AddNodeIDNode(ID, Opcode, VTList, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00004962 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00004963 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004964 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00004965
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004966 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00004967 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
4968 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004969 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00004970 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
4971 DL.getDebugLoc(), VTList, Ops[0],
4972 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004973 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00004974 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
4975 DL.getDebugLoc(), VTList, Ops[0],
4976 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004977 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004978 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004979 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004980 }
Chris Lattner1ee75ce2006-08-07 23:03:03 +00004981 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004982 } else {
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004983 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00004984 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
4985 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004986 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00004987 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
4988 DL.getDebugLoc(), VTList, Ops[0],
4989 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004990 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00004991 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
4992 DL.getDebugLoc(), VTList, Ops[0],
4993 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004994 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004995 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004996 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004997 }
Chris Lattnerf9c19152005-08-25 19:12:10 +00004998 }
Chris Lattner006f56b2005-05-14 06:42:57 +00004999 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005000#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00005001 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005002#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005003 return SDValue(N, 0);
Chris Lattnerd5531332005-05-14 06:20:26 +00005004}
5005
Andrew Trickef9de2a2013-05-25 02:42:55 +00005006SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList) {
Craig Topper48d114b2014-04-26 18:35:24 +00005007 return getNode(Opcode, DL, VTList, ArrayRef<SDValue>());
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005008}
5009
Andrew Trickef9de2a2013-05-25 02:42:55 +00005010SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005011 SDValue N1) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005012 SDValue Ops[] = { N1 };
Craig Topper48d114b2014-04-26 18:35:24 +00005013 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005014}
5015
Andrew Trickef9de2a2013-05-25 02:42:55 +00005016SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005017 SDValue N1, SDValue N2) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005018 SDValue Ops[] = { N1, N2 };
Craig Topper48d114b2014-04-26 18:35:24 +00005019 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005020}
5021
Andrew Trickef9de2a2013-05-25 02:42:55 +00005022SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005023 SDValue N1, SDValue N2, SDValue N3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005024 SDValue Ops[] = { N1, N2, N3 };
Craig Topper48d114b2014-04-26 18:35:24 +00005025 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005026}
5027
Andrew Trickef9de2a2013-05-25 02:42:55 +00005028SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005029 SDValue N1, SDValue N2, SDValue N3,
5030 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005031 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00005032 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005033}
5034
Andrew Trickef9de2a2013-05-25 02:42:55 +00005035SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005036 SDValue N1, SDValue N2, SDValue N3,
5037 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005038 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00005039 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005040}
5041
Owen Anderson53aa7a92009-08-10 22:56:29 +00005042SDVTList SelectionDAG::getVTList(EVT VT) {
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00005043 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattner88fa11c2005-11-08 23:30:28 +00005044}
5045
Owen Anderson53aa7a92009-08-10 22:56:29 +00005046SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005047 FoldingSetNodeID ID;
5048 ID.AddInteger(2U);
5049 ID.AddInteger(VT1.getRawBits());
5050 ID.AddInteger(VT2.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +00005051
Craig Topperc0196b12014-04-14 00:51:57 +00005052 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005053 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005054 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005055 EVT *Array = Allocator.Allocate<EVT>(2);
5056 Array[0] = VT1;
5057 Array[1] = VT2;
5058 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
5059 VTListMap.InsertNode(Result, IP);
5060 }
5061 return Result->getSDVTList();
Chris Lattner88fa11c2005-11-08 23:30:28 +00005062}
Dan Gohman17059682008-07-17 19:10:17 +00005063
Owen Anderson53aa7a92009-08-10 22:56:29 +00005064SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005065 FoldingSetNodeID ID;
5066 ID.AddInteger(3U);
5067 ID.AddInteger(VT1.getRawBits());
5068 ID.AddInteger(VT2.getRawBits());
5069 ID.AddInteger(VT3.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +00005070
Craig Topperc0196b12014-04-14 00:51:57 +00005071 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005072 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005073 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005074 EVT *Array = Allocator.Allocate<EVT>(3);
5075 Array[0] = VT1;
5076 Array[1] = VT2;
5077 Array[2] = VT3;
5078 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
5079 VTListMap.InsertNode(Result, IP);
5080 }
5081 return Result->getSDVTList();
Chris Lattnerf98411a2006-08-15 17:46:01 +00005082}
5083
Owen Anderson53aa7a92009-08-10 22:56:29 +00005084SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005085 FoldingSetNodeID ID;
5086 ID.AddInteger(4U);
5087 ID.AddInteger(VT1.getRawBits());
5088 ID.AddInteger(VT2.getRawBits());
5089 ID.AddInteger(VT3.getRawBits());
5090 ID.AddInteger(VT4.getRawBits());
Bill Wendling2d598632008-12-01 23:28:22 +00005091
Craig Topperc0196b12014-04-14 00:51:57 +00005092 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005093 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005094 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005095 EVT *Array = Allocator.Allocate<EVT>(4);
5096 Array[0] = VT1;
5097 Array[1] = VT2;
5098 Array[2] = VT3;
5099 Array[3] = VT4;
5100 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
5101 VTListMap.InsertNode(Result, IP);
5102 }
5103 return Result->getSDVTList();
Bill Wendling2d598632008-12-01 23:28:22 +00005104}
5105
Craig Topperabb4ac72014-04-16 06:10:51 +00005106SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) {
5107 unsigned NumVTs = VTs.size();
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005108 FoldingSetNodeID ID;
5109 ID.AddInteger(NumVTs);
5110 for (unsigned index = 0; index < NumVTs; index++) {
5111 ID.AddInteger(VTs[index].getRawBits());
Chris Lattnerf98411a2006-08-15 17:46:01 +00005112 }
5113
Craig Topperc0196b12014-04-14 00:51:57 +00005114 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005115 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005116 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005117 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
Craig Topperabb4ac72014-04-16 06:10:51 +00005118 std::copy(VTs.begin(), VTs.end(), Array);
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005119 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
5120 VTListMap.InsertNode(Result, IP);
Chris Lattnerf98411a2006-08-15 17:46:01 +00005121 }
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005122 return Result->getSDVTList();
Chris Lattner3bf4be42006-08-14 23:31:51 +00005123}
5124
5125
Chris Lattnerf34156e2006-01-28 09:32:45 +00005126/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
5127/// specified operands. If the resultant node already exists in the DAG,
5128/// this does not modify the specified node, instead it returns the node that
5129/// already exists. If the resultant node does not exist in the DAG, the
5130/// input node is returned. As a degenerate case, if you specify the same
5131/// input operands as the node already has, the input node is returned.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005132SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005133 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005134
Chris Lattnerf34156e2006-01-28 09:32:45 +00005135 // Check to see if there is no change.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005136 if (Op == N->getOperand(0)) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005137
Chris Lattnerf34156e2006-01-28 09:32:45 +00005138 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005139 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005140 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005141 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005142
Dan Gohmanebeccb42008-07-21 22:38:59 +00005143 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005144 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005145 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005146 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005147
Chris Lattnerf34156e2006-01-28 09:32:45 +00005148 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005149 N->OperandList[0].set(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005150
Chris Lattnerf34156e2006-01-28 09:32:45 +00005151 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005152 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005153 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005154}
5155
Dan Gohman92c11ac2010-06-18 15:30:29 +00005156SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005157 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005158
Chris Lattnerf34156e2006-01-28 09:32:45 +00005159 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005160 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005161 return N; // No operands changed, just return the input node.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005162
Chris Lattnerf34156e2006-01-28 09:32:45 +00005163 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005164 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005165 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005166 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005167
Dan Gohmanebeccb42008-07-21 22:38:59 +00005168 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005169 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005170 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005171 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005172
Chris Lattnerf34156e2006-01-28 09:32:45 +00005173 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005174 if (N->OperandList[0] != Op1)
5175 N->OperandList[0].set(Op1);
5176 if (N->OperandList[1] != Op2)
5177 N->OperandList[1].set(Op2);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005178
Chris Lattnerf34156e2006-01-28 09:32:45 +00005179 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005180 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005181 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005182}
5183
Dan Gohman92c11ac2010-06-18 15:30:29 +00005184SDNode *SelectionDAG::
5185UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005186 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005187 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005188}
5189
Dan Gohman92c11ac2010-06-18 15:30:29 +00005190SDNode *SelectionDAG::
5191UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005192 SDValue Op3, SDValue Op4) {
5193 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005194 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005195}
5196
Dan Gohman92c11ac2010-06-18 15:30:29 +00005197SDNode *SelectionDAG::
5198UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005199 SDValue Op3, SDValue Op4, SDValue Op5) {
5200 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005201 return UpdateNodeOperands(N, Ops);
Chris Lattner580b12a2006-01-28 10:09:25 +00005202}
5203
Dan Gohman92c11ac2010-06-18 15:30:29 +00005204SDNode *SelectionDAG::
Craig Topper8c0b4d02014-04-28 05:57:50 +00005205UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) {
5206 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00005207 assert(N->getNumOperands() == NumOps &&
Chris Lattnerf34156e2006-01-28 09:32:45 +00005208 "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005209
Chris Lattnerf34156e2006-01-28 09:32:45 +00005210 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005211 bool AnyChange = false;
5212 for (unsigned i = 0; i != NumOps; ++i) {
5213 if (Ops[i] != N->getOperand(i)) {
5214 AnyChange = true;
5215 break;
5216 }
5217 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005218
Chris Lattnerf34156e2006-01-28 09:32:45 +00005219 // No operands changed, just return the input node.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005220 if (!AnyChange) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005221
Chris Lattnerf34156e2006-01-28 09:32:45 +00005222 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005223 void *InsertPos = nullptr;
Craig Topper8c0b4d02014-04-28 05:57:50 +00005224 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005225 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005226
Dan Gohman2f83b472008-05-02 00:05:03 +00005227 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005228 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005229 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005230 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005231
Chris Lattnerf34156e2006-01-28 09:32:45 +00005232 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005233 for (unsigned i = 0; i != NumOps; ++i)
5234 if (N->OperandList[i] != Ops[i])
5235 N->OperandList[i].set(Ops[i]);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005236
5237 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005238 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005239 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005240}
5241
Dan Gohman91697632008-07-07 20:57:48 +00005242/// DropOperands - Release the operands and set this node to have
Dan Gohman17059682008-07-17 19:10:17 +00005243/// zero operands.
Dan Gohman91697632008-07-07 20:57:48 +00005244void SDNode::DropOperands() {
Dan Gohman91697632008-07-07 20:57:48 +00005245 // Unlike the code in MorphNodeTo that does this, we don't need to
5246 // watch for dead nodes here.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005247 for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
5248 SDUse &Use = *I++;
5249 Use.set(SDValue());
5250 }
Chris Lattneredfc7e52007-02-04 02:49:29 +00005251}
Chris Lattner19732782005-08-16 18:17:10 +00005252
Dan Gohman17059682008-07-17 19:10:17 +00005253/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
5254/// machine opcode.
Chris Lattner9d0d7152005-12-01 18:00:57 +00005255///
Dan Gohman17059682008-07-17 19:10:17 +00005256SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005257 EVT VT) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005258 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005259 return SelectNodeTo(N, MachineOpc, VTs, None);
Chris Lattner45e1ce42005-08-24 23:00:29 +00005260}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005261
Dan Gohman17059682008-07-17 19:10:17 +00005262SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005263 EVT VT, SDValue Op1) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005264 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005265 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005266 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005267}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005268
Dan Gohman17059682008-07-17 19:10:17 +00005269SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005270 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005271 SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005272 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005273 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005274 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005275}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005276
Dan Gohman17059682008-07-17 19:10:17 +00005277SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005278 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005279 SDValue Op2, SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005280 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005281 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005282 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005283}
Chris Lattner466fece2005-08-21 22:30:30 +00005284
Dan Gohman17059682008-07-17 19:10:17 +00005285SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005286 EVT VT, ArrayRef<SDValue> Ops) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005287 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005288 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005289}
5290
Dan Gohman17059682008-07-17 19:10:17 +00005291SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005292 EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005293 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005294 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005295}
5296
Dan Gohman17059682008-07-17 19:10:17 +00005297SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005298 EVT VT1, EVT VT2) {
Dan Gohman22e97072008-07-02 23:23:19 +00005299 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005300 return SelectNodeTo(N, MachineOpc, VTs, None);
Dan Gohman22e97072008-07-02 23:23:19 +00005301}
5302
Dan Gohman17059682008-07-17 19:10:17 +00005303SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005304 EVT VT1, EVT VT2, EVT VT3,
Craig Topper481fb282014-04-27 19:21:11 +00005305 ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005306 SDVTList VTs = getVTList(VT1, VT2, VT3);
Craig Topper481fb282014-04-27 19:21:11 +00005307 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005308}
5309
Bill Wendling2d598632008-12-01 23:28:22 +00005310SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005311 EVT VT1, EVT VT2, EVT VT3, EVT VT4,
Craig Topper481fb282014-04-27 19:21:11 +00005312 ArrayRef<SDValue> Ops) {
Bill Wendling2d598632008-12-01 23:28:22 +00005313 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Craig Topper481fb282014-04-27 19:21:11 +00005314 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005315}
5316
Scott Michelcf0da6c2009-02-17 22:15:04 +00005317SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005318 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005319 SDValue Op1) {
Dan Gohman22e97072008-07-02 23:23:19 +00005320 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005321 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005322 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Andrew Lenharth683352382006-01-23 21:51:14 +00005323}
Andrew Lenharthc2856382006-01-23 20:59:12 +00005324
Scott Michelcf0da6c2009-02-17 22:15:04 +00005325SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005326 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005327 SDValue Op1, SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005328 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005329 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005330 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005331}
5332
Dan Gohman17059682008-07-17 19:10:17 +00005333SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005334 EVT VT1, EVT VT2,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005335 SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005336 SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005337 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005338 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005339 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005340}
5341
Dan Gohman17059682008-07-17 19:10:17 +00005342SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005343 EVT VT1, EVT VT2, EVT VT3,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005344 SDValue Op1, SDValue Op2,
Bill Wendling2d598632008-12-01 23:28:22 +00005345 SDValue Op3) {
5346 SDVTList VTs = getVTList(VT1, VT2, VT3);
5347 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005348 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005349}
5350
5351SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005352 SDVTList VTs,ArrayRef<SDValue> Ops) {
Craig Topper131de822014-04-27 19:21:16 +00005353 N = MorphNodeTo(N, ~MachineOpc, VTs, Ops);
Chris Lattner625916d2010-02-23 23:01:35 +00005354 // Reset the NodeID to -1.
5355 N->setNodeId(-1);
5356 return N;
Dan Gohman17059682008-07-17 19:10:17 +00005357}
5358
Andrew Trickef9de2a2013-05-25 02:42:55 +00005359/// UpdadeSDLocOnMergedSDNode - If the opt level is -O0 then it throws away
Devang Patel7bbc1e52011-12-15 18:21:18 +00005360/// the line number information on the merged node since it is not possible to
5361/// preserve the information that operation is associated with multiple lines.
5362/// This will make the debugger working better at -O0, were there is a higher
5363/// probability having other instructions associated with that line.
5364///
Andrew Trickef9de2a2013-05-25 02:42:55 +00005365/// For IROrder, we keep the smaller of the two
5366SDNode *SelectionDAG::UpdadeSDLocOnMergedSDNode(SDNode *N, SDLoc OLoc) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005367 DebugLoc NLoc = N->getDebugLoc();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005368 if (!(NLoc.isUnknown()) && (OptLevel == CodeGenOpt::None) &&
5369 (OLoc.getDebugLoc() != NLoc)) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005370 N->setDebugLoc(DebugLoc());
5371 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005372 unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
5373 N->setIROrder(Order);
Devang Patel7bbc1e52011-12-15 18:21:18 +00005374 return N;
5375}
5376
Chris Lattneraf197502010-02-28 21:36:14 +00005377/// MorphNodeTo - This *mutates* the specified node to have the specified
Dan Gohman17059682008-07-17 19:10:17 +00005378/// return type, opcode, and operands.
5379///
5380/// Note that MorphNodeTo returns the resultant node. If there is already a
5381/// node of the specified opcode and operands, it returns that node instead of
Andrew Trickef9de2a2013-05-25 02:42:55 +00005382/// the current one. Note that the SDLoc need not be the same.
Dan Gohman17059682008-07-17 19:10:17 +00005383///
5384/// Using MorphNodeTo is faster than creating a new node and swapping it in
5385/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greif66ccf602008-08-30 22:16:05 +00005386/// node, and because it doesn't require CSE recalculation for any of
Dan Gohman17059682008-07-17 19:10:17 +00005387/// the node's users.
5388///
5389SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Craig Topper131de822014-04-27 19:21:16 +00005390 SDVTList VTs, ArrayRef<SDValue> Ops) {
5391 unsigned NumOps = Ops.size();
Dan Gohman22e97072008-07-02 23:23:19 +00005392 // If an identical node already exists, use it.
Craig Topperc0196b12014-04-14 00:51:57 +00005393 void *IP = nullptr;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005394 if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
Dan Gohman17059682008-07-17 19:10:17 +00005395 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005396 AddNodeIDNode(ID, Opc, VTs, Ops);
Bill Wendling022d18f2009-12-18 23:32:53 +00005397 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005398 return UpdadeSDLocOnMergedSDNode(ON, SDLoc(N));
Dan Gohman17059682008-07-17 19:10:17 +00005399 }
Chris Lattner9d0d7152005-12-01 18:00:57 +00005400
Dan Gohmand3fe1742008-09-13 01:54:27 +00005401 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005402 IP = nullptr;
Chris Lattner486edfb2007-02-04 02:32:44 +00005403
Dan Gohman17059682008-07-17 19:10:17 +00005404 // Start the morphing.
5405 N->NodeType = Opc;
5406 N->ValueList = VTs.VTs;
5407 N->NumValues = VTs.NumVTs;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005408
Dan Gohman17059682008-07-17 19:10:17 +00005409 // Clear the operands list, updating used nodes to remove this from their
5410 // use list. Keep track of any operands that become dead as a result.
5411 SmallPtrSet<SDNode*, 16> DeadNodeSet;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005412 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
5413 SDUse &Use = *I++;
5414 SDNode *Used = Use.getNode();
5415 Use.set(SDValue());
Dan Gohman17059682008-07-17 19:10:17 +00005416 if (Used->use_empty())
5417 DeadNodeSet.insert(Used);
5418 }
5419
Dan Gohman48b185d2009-09-25 20:36:54 +00005420 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
5421 // Initialize the memory references information.
Craig Topperc0196b12014-04-14 00:51:57 +00005422 MN->setMemRefs(nullptr, nullptr);
Dan Gohman48b185d2009-09-25 20:36:54 +00005423 // If NumOps is larger than the # of operands we can have in a
5424 // MachineSDNode, reallocate the operand list.
5425 if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
5426 if (MN->OperandsNeedDelete)
5427 delete[] MN->OperandList;
5428 if (NumOps > array_lengthof(MN->LocalOperands))
5429 // We're creating a final node that will live unmorphed for the
5430 // remainder of the current SelectionDAG iteration, so we can allocate
5431 // the operands directly out of a pool with no recycling metadata.
5432 MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
Craig Topper131de822014-04-27 19:21:16 +00005433 Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005434 else
Craig Topper131de822014-04-27 19:21:16 +00005435 MN->InitOperands(MN->LocalOperands, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005436 MN->OperandsNeedDelete = false;
5437 } else
Craig Topper131de822014-04-27 19:21:16 +00005438 MN->InitOperands(MN->OperandList, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005439 } else {
5440 // If NumOps is larger than the # of operands we currently have, reallocate
5441 // the operand list.
5442 if (NumOps > N->NumOperands) {
5443 if (N->OperandsNeedDelete)
5444 delete[] N->OperandList;
Craig Topper131de822014-04-27 19:21:16 +00005445 N->InitOperands(new SDUse[NumOps], Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005446 N->OperandsNeedDelete = true;
Dan Gohman48b185d2009-09-25 20:36:54 +00005447 } else
Craig Topper131de822014-04-27 19:21:16 +00005448 N->InitOperands(N->OperandList, Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005449 }
5450
5451 // Delete any nodes that are still dead after adding the uses for the
5452 // new operands.
Chris Lattnere89ca7c2010-03-01 07:43:08 +00005453 if (!DeadNodeSet.empty()) {
5454 SmallVector<SDNode *, 16> DeadNodes;
5455 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
5456 E = DeadNodeSet.end(); I != E; ++I)
5457 if ((*I)->use_empty())
5458 DeadNodes.push_back(*I);
5459 RemoveDeadNodes(DeadNodes);
5460 }
Dan Gohman91697632008-07-07 20:57:48 +00005461
Dan Gohman17059682008-07-17 19:10:17 +00005462 if (IP)
5463 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00005464 return N;
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005465}
5466
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005467
Dan Gohman32f71d72009-09-25 18:54:59 +00005468/// getMachineNode - These are used for target selectors to create a new node
5469/// with specified return type(s), MachineInstr opcode, and operands.
Evan Chengd3f1db92006-02-09 07:15:23 +00005470///
Dan Gohman32f71d72009-09-25 18:54:59 +00005471/// Note that getMachineNode returns the resultant node. If there is already a
Evan Chengd3f1db92006-02-09 07:15:23 +00005472/// node of the specified opcode and operands, it returns that node instead of
5473/// the current one.
Dan Gohmana22f2d82009-10-10 01:29:16 +00005474MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005475SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005476 SDVTList VTs = getVTList(VT);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005477 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005478}
Bill Wendlinga434d932009-01-29 09:01:55 +00005479
Dan Gohmana22f2d82009-10-10 01:29:16 +00005480MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005481SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, SDValue Op1) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005482 SDVTList VTs = getVTList(VT);
5483 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005484 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005485}
Bill Wendlinga434d932009-01-29 09:01:55 +00005486
Dan Gohmana22f2d82009-10-10 01:29:16 +00005487MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005488SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005489 SDValue Op1, SDValue Op2) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005490 SDVTList VTs = getVTList(VT);
5491 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005492 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005493}
Bill Wendlinga434d932009-01-29 09:01:55 +00005494
Dan Gohmana22f2d82009-10-10 01:29:16 +00005495MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005496SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005497 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005498 SDVTList VTs = getVTList(VT);
5499 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005500 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005501}
Bill Wendlinga434d932009-01-29 09:01:55 +00005502
Dan Gohmana22f2d82009-10-10 01:29:16 +00005503MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005504SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Michael Liaob53d8962013-04-19 22:22:57 +00005505 ArrayRef<SDValue> Ops) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005506 SDVTList VTs = getVTList(VT);
Michael Liaob53d8962013-04-19 22:22:57 +00005507 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005508}
Bill Wendlinga434d932009-01-29 09:01:55 +00005509
Dan Gohmana22f2d82009-10-10 01:29:16 +00005510MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005511SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, EVT VT2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005512 SDVTList VTs = getVTList(VT1, VT2);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005513 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005514}
Bill Wendlinga434d932009-01-29 09:01:55 +00005515
Dan Gohmana22f2d82009-10-10 01:29:16 +00005516MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005517SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005518 EVT VT1, EVT VT2, SDValue Op1) {
Dan Gohmande912e22009-04-09 23:54:40 +00005519 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman48b185d2009-09-25 20:36:54 +00005520 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005521 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005522}
Bill Wendlinga434d932009-01-29 09:01:55 +00005523
Dan Gohmana22f2d82009-10-10 01:29:16 +00005524MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005525SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005526 EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005527 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005528 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005529 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005530}
5531
Dan Gohmana22f2d82009-10-10 01:29:16 +00005532MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005533SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005534 EVT VT1, EVT VT2, SDValue Op1,
5535 SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005536 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005537 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005538 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005539}
5540
Dan Gohmana22f2d82009-10-10 01:29:16 +00005541MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005542SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005543 EVT VT1, EVT VT2,
Michael Liaob53d8962013-04-19 22:22:57 +00005544 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005545 SDVTList VTs = getVTList(VT1, VT2);
Michael Liaob53d8962013-04-19 22:22:57 +00005546 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005547}
Bill Wendlinga434d932009-01-29 09:01:55 +00005548
Dan Gohmana22f2d82009-10-10 01:29:16 +00005549MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005550SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005551 EVT VT1, EVT VT2, EVT VT3,
5552 SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005553 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005554 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005555 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005556}
Bill Wendlinga434d932009-01-29 09:01:55 +00005557
Dan Gohmana22f2d82009-10-10 01:29:16 +00005558MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005559SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005560 EVT VT1, EVT VT2, EVT VT3,
5561 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005562 SDVTList VTs = getVTList(VT1, VT2, VT3);
Bill Wendlinga434d932009-01-29 09:01:55 +00005563 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005564 return getMachineNode(Opcode, dl, VTs, Ops);
Evan Chengd3f1db92006-02-09 07:15:23 +00005565}
Bill Wendlinga434d932009-01-29 09:01:55 +00005566
Dan Gohmana22f2d82009-10-10 01:29:16 +00005567MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005568SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005569 EVT VT1, EVT VT2, EVT VT3,
Michael Liaob53d8962013-04-19 22:22:57 +00005570 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005571 SDVTList VTs = getVTList(VT1, VT2, VT3);
Michael Liaob53d8962013-04-19 22:22:57 +00005572 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005573}
Bill Wendlinga434d932009-01-29 09:01:55 +00005574
Dan Gohmana22f2d82009-10-10 01:29:16 +00005575MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005576SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005577 EVT VT2, EVT VT3, EVT VT4,
Michael Liaob53d8962013-04-19 22:22:57 +00005578 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005579 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Michael Liaob53d8962013-04-19 22:22:57 +00005580 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005581}
5582
Dan Gohmana22f2d82009-10-10 01:29:16 +00005583MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005584SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005585 ArrayRef<EVT> ResultTys,
Michael Liaob53d8962013-04-19 22:22:57 +00005586 ArrayRef<SDValue> Ops) {
Craig Topperabb4ac72014-04-16 06:10:51 +00005587 SDVTList VTs = getVTList(ResultTys);
Michael Liaob53d8962013-04-19 22:22:57 +00005588 return getMachineNode(Opcode, dl, VTs, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00005589}
5590
Dan Gohmana22f2d82009-10-10 01:29:16 +00005591MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005592SelectionDAG::getMachineNode(unsigned Opcode, SDLoc DL, SDVTList VTs,
Michael Liaob53d8962013-04-19 22:22:57 +00005593 ArrayRef<SDValue> OpsArray) {
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005594 bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
Dan Gohman48b185d2009-09-25 20:36:54 +00005595 MachineSDNode *N;
Craig Topperc0196b12014-04-14 00:51:57 +00005596 void *IP = nullptr;
Michael Liaob53d8962013-04-19 22:22:57 +00005597 const SDValue *Ops = OpsArray.data();
5598 unsigned NumOps = OpsArray.size();
Dan Gohman48b185d2009-09-25 20:36:54 +00005599
5600 if (DoCSE) {
5601 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005602 AddNodeIDNode(ID, ~Opcode, VTs, OpsArray);
Craig Topperc0196b12014-04-14 00:51:57 +00005603 IP = nullptr;
Devang Patel7bbc1e52011-12-15 18:21:18 +00005604 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005605 return cast<MachineSDNode>(UpdadeSDLocOnMergedSDNode(E, DL));
Devang Patel7bbc1e52011-12-15 18:21:18 +00005606 }
Dan Gohman48b185d2009-09-25 20:36:54 +00005607 }
5608
5609 // Allocate a new MachineSDNode.
Jack Carter170a5f22013-09-09 22:02:08 +00005610 N = new (NodeAllocator) MachineSDNode(~Opcode, DL.getIROrder(),
5611 DL.getDebugLoc(), VTs);
Dan Gohman48b185d2009-09-25 20:36:54 +00005612
5613 // Initialize the operands list.
5614 if (NumOps > array_lengthof(N->LocalOperands))
5615 // We're creating a final node that will live unmorphed for the
5616 // remainder of the current SelectionDAG iteration, so we can allocate
5617 // the operands directly out of a pool with no recycling metadata.
5618 N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
5619 Ops, NumOps);
5620 else
5621 N->InitOperands(N->LocalOperands, Ops, NumOps);
5622 N->OperandsNeedDelete = false;
5623
5624 if (DoCSE)
5625 CSEMap.InsertNode(N, IP);
5626
5627 AllNodes.push_back(N);
5628#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00005629 VerifyMachineNode(N);
Dan Gohman48b185d2009-09-25 20:36:54 +00005630#endif
5631 return N;
Dale Johannesen839acbb2009-01-29 00:47:48 +00005632}
Evan Chengd3f1db92006-02-09 07:15:23 +00005633
Dan Gohmanac33a902009-08-19 18:16:17 +00005634/// getTargetExtractSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005635/// TargetOpcode::EXTRACT_SUBREG nodes.
Dan Gohmanac33a902009-08-19 18:16:17 +00005636SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005637SelectionDAG::getTargetExtractSubreg(int SRIdx, SDLoc DL, EVT VT,
Dan Gohmanac33a902009-08-19 18:16:17 +00005638 SDValue Operand) {
5639 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005640 SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
Dan Gohman32f71d72009-09-25 18:54:59 +00005641 VT, Operand, SRIdxVal);
Dan Gohmanac33a902009-08-19 18:16:17 +00005642 return SDValue(Subreg, 0);
5643}
5644
Bob Wilson2a45a652009-10-08 18:49:46 +00005645/// getTargetInsertSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005646/// TargetOpcode::INSERT_SUBREG nodes.
Bob Wilson2a45a652009-10-08 18:49:46 +00005647SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005648SelectionDAG::getTargetInsertSubreg(int SRIdx, SDLoc DL, EVT VT,
Bob Wilson2a45a652009-10-08 18:49:46 +00005649 SDValue Operand, SDValue Subreg) {
5650 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005651 SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
Bob Wilson2a45a652009-10-08 18:49:46 +00005652 VT, Operand, Subreg, SRIdxVal);
5653 return SDValue(Result, 0);
5654}
5655
Evan Cheng31604a62008-03-22 01:55:50 +00005656/// getNodeIfExists - Get the specified node if it's already available, or
5657/// else return NULL.
5658SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005659 ArrayRef<SDValue> Ops, bool nuw, bool nsw,
5660 bool exact) {
5661 if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
Evan Cheng31604a62008-03-22 01:55:50 +00005662 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005663 AddNodeIDNode(ID, Opcode, VTList, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005664 if (isBinOpWithFlags(Opcode))
5665 AddBinaryNodeIDCustom(ID, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00005666 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00005667 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng31604a62008-03-22 01:55:50 +00005668 return E;
5669 }
Craig Topperc0196b12014-04-14 00:51:57 +00005670 return nullptr;
Evan Cheng31604a62008-03-22 01:55:50 +00005671}
5672
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005673/// getDbgValue - Creates a SDDbgValue node.
5674///
Adrian Prantl32da8892014-04-25 20:49:25 +00005675/// SDNode
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005676SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005677SelectionDAG::getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R,
5678 bool IsIndirect, uint64_t Off,
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005679 DebugLoc DL, unsigned O) {
Adrian Prantl32da8892014-04-25 20:49:25 +00005680 return new (Allocator) SDDbgValue(MDPtr, N, R, IsIndirect, Off, DL, O);
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005681}
5682
Adrian Prantl32da8892014-04-25 20:49:25 +00005683/// Constant
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005684SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005685SelectionDAG::getConstantDbgValue(MDNode *MDPtr, const Value *C,
5686 uint64_t Off,
5687 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005688 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O);
5689}
5690
Adrian Prantl32da8892014-04-25 20:49:25 +00005691/// FrameIndex
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005692SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005693SelectionDAG::getFrameIndexDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off,
5694 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005695 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O);
5696}
5697
Dan Gohman7d099f72010-03-03 21:33:37 +00005698namespace {
5699
Dan Gohman9cc886b2010-03-04 19:11:28 +00005700/// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
Dan Gohman7d099f72010-03-03 21:33:37 +00005701/// pointed to by a use iterator is deleted, increment the use iterator
5702/// so that it doesn't dangle.
5703///
Dan Gohman7d099f72010-03-03 21:33:37 +00005704class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
Dan Gohman7d099f72010-03-03 21:33:37 +00005705 SDNode::use_iterator &UI;
5706 SDNode::use_iterator &UE;
5707
Craig Topper7b883b32014-03-08 06:31:39 +00005708 void NodeDeleted(SDNode *N, SDNode *E) override {
Dan Gohman7d099f72010-03-03 21:33:37 +00005709 // Increment the iterator as needed.
5710 while (UI != UE && N == *UI)
5711 ++UI;
Dan Gohman7d099f72010-03-03 21:33:37 +00005712 }
5713
5714public:
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005715 RAUWUpdateListener(SelectionDAG &d,
Dan Gohman7d099f72010-03-03 21:33:37 +00005716 SDNode::use_iterator &ui,
5717 SDNode::use_iterator &ue)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005718 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
Dan Gohman7d099f72010-03-03 21:33:37 +00005719};
5720
5721}
5722
Evan Cheng445b91a2006-08-07 22:13:29 +00005723/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005724/// This can cause recursive merging of nodes in the DAG.
5725///
Chris Lattner76858912008-02-03 03:35:22 +00005726/// This version assumes From has a single result value.
Chris Lattner373f0482005-08-26 18:36:28 +00005727///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005728void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005729 SDNode *From = FromN.getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005730 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner373f0482005-08-26 18:36:28 +00005731 "Cannot replace with this method!");
Gabor Greiff304a7a2008-08-28 21:40:38 +00005732 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levenstein51f532f2008-04-07 10:06:32 +00005733
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005734 // Iterate over all the existing uses of From. New uses will be added
5735 // to the beginning of the use list, which we avoid visiting.
5736 // This specifically avoids visiting uses of From that arise while the
5737 // replacement is happening, because any such uses would be the result
5738 // of CSE: If an existing node looks like From after one of its operands
5739 // is replaced by To, we don't want to replace of all its users with To
5740 // too. See PR3018 for more info.
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005741 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005742 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005743 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005744 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005745
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005746 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005747 RemoveNodeFromCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005748
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005749 // A user can appear in a use list multiple times, and when this
5750 // happens the uses are usually next to each other in the list.
5751 // To help reduce the number of CSE recomputations, process all
5752 // the uses of this user that we can find this way.
5753 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005754 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005755 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005756 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005757 } while (UI != UE && *UI == User);
5758
5759 // Now that we have modified User, add it back to the CSE maps. If it
5760 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005761 AddModifiedNodeToCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005762 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005763
5764 // If we just RAUW'd the root, take note.
5765 if (FromN == getRoot())
5766 setRoot(To);
Chris Lattner373f0482005-08-26 18:36:28 +00005767}
5768
5769/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5770/// This can cause recursive merging of nodes in the DAG.
5771///
Dan Gohman8aa28b92009-04-15 20:06:30 +00005772/// This version assumes that for each value of From, there is a
5773/// corresponding value in To in the same position with the same type.
Chris Lattner373f0482005-08-26 18:36:28 +00005774///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005775void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
Dan Gohman8aa28b92009-04-15 20:06:30 +00005776#ifndef NDEBUG
5777 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
5778 assert((!From->hasAnyUseOfValue(i) ||
5779 From->getValueType(i) == To->getValueType(i)) &&
5780 "Cannot use this version of ReplaceAllUsesWith!");
5781#endif
Dan Gohman17059682008-07-17 19:10:17 +00005782
5783 // Handle the trivial case.
5784 if (From == To)
5785 return;
5786
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005787 // Iterate over just the existing users of From. See the comments in
5788 // the ReplaceAllUsesWith above.
5789 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005790 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005791 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005792 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005793
Chris Lattner373f0482005-08-26 18:36:28 +00005794 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005795 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005796
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005797 // A user can appear in a use list multiple times, and when this
5798 // happens the uses are usually next to each other in the list.
5799 // To help reduce the number of CSE recomputations, process all
5800 // the uses of this user that we can find this way.
5801 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005802 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005803 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005804 Use.setNode(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005805 } while (UI != UE && *UI == User);
5806
5807 // Now that we have modified User, add it back to the CSE maps. If it
5808 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005809 AddModifiedNodeToCSEMaps(User);
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005810 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005811
5812 // If we just RAUW'd the root, take note.
5813 if (From == getRoot().getNode())
5814 setRoot(SDValue(To, getRoot().getResNo()));
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005815}
5816
Chris Lattner373f0482005-08-26 18:36:28 +00005817/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5818/// This can cause recursive merging of nodes in the DAG.
5819///
5820/// This version can replace From with any result values. To must match the
5821/// number and types of values returned by From.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005822void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
Chris Lattner76858912008-02-03 03:35:22 +00005823 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005824 return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005825
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005826 // Iterate over just the existing users of From. See the comments in
5827 // the ReplaceAllUsesWith above.
5828 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005829 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005830 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005831 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005832
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005833 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005834 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005835
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005836 // A user can appear in a use list multiple times, and when this
5837 // happens the uses are usually next to each other in the list.
5838 // To help reduce the number of CSE recomputations, process all
5839 // the uses of this user that we can find this way.
5840 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005841 SDUse &Use = UI.getUse();
5842 const SDValue &ToOp = To[Use.getResNo()];
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005843 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005844 Use.set(ToOp);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005845 } while (UI != UE && *UI == User);
5846
5847 // Now that we have modified User, add it back to the CSE maps. If it
5848 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005849 AddModifiedNodeToCSEMaps(User);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005850 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005851
5852 // If we just RAUW'd the root, take note.
5853 if (From == getRoot().getNode())
5854 setRoot(SDValue(To[getRoot().getResNo()]));
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005855}
5856
Chris Lattner375e1a72006-02-17 21:58:01 +00005857/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005858/// uses of other values produced by From.getNode() alone. The Deleted
5859/// vector is handled the same way as for ReplaceAllUsesWith.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005860void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
Dan Gohman17059682008-07-17 19:10:17 +00005861 // Handle the really simple, really trivial case efficiently.
5862 if (From == To) return;
5863
Chris Lattner375e1a72006-02-17 21:58:01 +00005864 // Handle the simple, trivial, case efficiently.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005865 if (From.getNode()->getNumValues() == 1) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005866 ReplaceAllUsesWith(From, To);
Chris Lattner375e1a72006-02-17 21:58:01 +00005867 return;
5868 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00005869
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005870 // Iterate over just the existing users of From. See the comments in
5871 // the ReplaceAllUsesWith above.
5872 SDNode::use_iterator UI = From.getNode()->use_begin(),
5873 UE = From.getNode()->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005874 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005875 while (UI != UE) {
5876 SDNode *User = *UI;
5877 bool UserRemovedFromCSEMaps = false;
Chris Lattner375e1a72006-02-17 21:58:01 +00005878
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005879 // A user can appear in a use list multiple times, and when this
5880 // happens the uses are usually next to each other in the list.
5881 // To help reduce the number of CSE recomputations, process all
5882 // the uses of this user that we can find this way.
5883 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005884 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005885
5886 // Skip uses of different values from the same node.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005887 if (Use.getResNo() != From.getResNo()) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005888 ++UI;
5889 continue;
Chris Lattner375e1a72006-02-17 21:58:01 +00005890 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005891
5892 // If this node hasn't been modified yet, it's still in the CSE maps,
5893 // so remove its old self from the CSE maps.
5894 if (!UserRemovedFromCSEMaps) {
5895 RemoveNodeFromCSEMaps(User);
5896 UserRemovedFromCSEMaps = true;
5897 }
5898
5899 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005900 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005901 } while (UI != UE && *UI == User);
5902
5903 // We are iterating over all uses of the From node, so if a use
5904 // doesn't use the specific value, no changes are made.
5905 if (!UserRemovedFromCSEMaps)
5906 continue;
5907
Chris Lattner3cfb56d2007-10-15 06:10:22 +00005908 // Now that we have modified User, add it back to the CSE maps. If it
5909 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005910 AddModifiedNodeToCSEMaps(User);
Dan Gohman17059682008-07-17 19:10:17 +00005911 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005912
5913 // If we just RAUW'd the root, take note.
5914 if (From == getRoot())
5915 setRoot(To);
Dan Gohman17059682008-07-17 19:10:17 +00005916}
5917
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005918namespace {
5919 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
5920 /// to record information about a use.
5921 struct UseMemo {
5922 SDNode *User;
5923 unsigned Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005924 SDUse *Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005925 };
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005926
5927 /// operator< - Sort Memos by User.
5928 bool operator<(const UseMemo &L, const UseMemo &R) {
5929 return (intptr_t)L.User < (intptr_t)R.User;
5930 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005931}
5932
Dan Gohman17059682008-07-17 19:10:17 +00005933/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005934/// uses of other values produced by From.getNode() alone. The same value
5935/// may appear in both the From and To list. The Deleted vector is
Dan Gohman17059682008-07-17 19:10:17 +00005936/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005937void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
5938 const SDValue *To,
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005939 unsigned Num){
Dan Gohman17059682008-07-17 19:10:17 +00005940 // Handle the simple, trivial case efficiently.
5941 if (Num == 1)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005942 return ReplaceAllUsesOfValueWith(*From, *To);
Dan Gohman17059682008-07-17 19:10:17 +00005943
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005944 // Read up all the uses and make records of them. This helps
5945 // processing new uses that are introduced during the
5946 // replacement process.
5947 SmallVector<UseMemo, 4> Uses;
5948 for (unsigned i = 0; i != Num; ++i) {
5949 unsigned FromResNo = From[i].getResNo();
5950 SDNode *FromNode = From[i].getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005951 for (SDNode::use_iterator UI = FromNode->use_begin(),
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005952 E = FromNode->use_end(); UI != E; ++UI) {
5953 SDUse &Use = UI.getUse();
5954 if (Use.getResNo() == FromResNo) {
5955 UseMemo Memo = { *UI, i, &Use };
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005956 Uses.push_back(Memo);
5957 }
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005958 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005959 }
Dan Gohman17059682008-07-17 19:10:17 +00005960
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005961 // Sort the uses, so that all the uses from a given User are together.
5962 std::sort(Uses.begin(), Uses.end());
5963
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005964 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
5965 UseIndex != UseIndexEnd; ) {
Dan Gohman17059682008-07-17 19:10:17 +00005966 // We know that this user uses some value of From. If it is the right
5967 // value, update it.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005968 SDNode *User = Uses[UseIndex].User;
5969
5970 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman17059682008-07-17 19:10:17 +00005971 RemoveNodeFromCSEMaps(User);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005972
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005973 // The Uses array is sorted, so all the uses for a given User
5974 // are next to each other in the list.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005975 // To help reduce the number of CSE recomputations, process all
5976 // the uses of this user that we can find this way.
5977 do {
5978 unsigned i = Uses[UseIndex].Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005979 SDUse &Use = *Uses[UseIndex].Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005980 ++UseIndex;
5981
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005982 Use.set(To[i]);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005983 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
5984
Dan Gohman17059682008-07-17 19:10:17 +00005985 // Now that we have modified User, add it back to the CSE maps. If it
5986 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005987 AddModifiedNodeToCSEMaps(User);
Chris Lattner375e1a72006-02-17 21:58:01 +00005988 }
5989}
5990
Evan Cheng9631a602006-08-01 08:20:41 +00005991/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengbba1ebd2006-08-02 22:00:34 +00005992/// based on their topological order. It returns the maximum id and a vector
5993/// of the SDNodes* in assigned order by reference.
Dan Gohman86aa16a2008-09-30 18:30:35 +00005994unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengbba1ebd2006-08-02 22:00:34 +00005995
Dan Gohman86aa16a2008-09-30 18:30:35 +00005996 unsigned DAGSize = 0;
Evan Cheng9631a602006-08-01 08:20:41 +00005997
Dan Gohman86aa16a2008-09-30 18:30:35 +00005998 // SortedPos tracks the progress of the algorithm. Nodes before it are
5999 // sorted, nodes after it are unsorted. When the algorithm completes
6000 // it is at the end of the list.
6001 allnodes_iterator SortedPos = allnodes_begin();
6002
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006003 // Visit all the nodes. Move nodes with no operands to the front of
6004 // the list immediately. Annotate nodes that do have operands with their
Dan Gohman86aa16a2008-09-30 18:30:35 +00006005 // operand count. Before we do this, the Node Id fields of the nodes
6006 // may contain arbitrary values. After, the Node Id fields for nodes
6007 // before SortedPos will contain the topological sort index, and the
6008 // Node Id fields for nodes At SortedPos and after will contain the
6009 // count of outstanding operands.
6010 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
6011 SDNode *N = I++;
Adam Nemet7d394302014-05-31 16:23:17 +00006012 checkForCycles(N, this);
Dan Gohman86aa16a2008-09-30 18:30:35 +00006013 unsigned Degree = N->getNumOperands();
6014 if (Degree == 0) {
6015 // A node with no uses, add it to the result array immediately.
6016 N->setNodeId(DAGSize++);
6017 allnodes_iterator Q = N;
6018 if (Q != SortedPos)
6019 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
David Greene3b2a68c2010-01-20 00:59:23 +00006020 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006021 ++SortedPos;
6022 } else {
6023 // Temporarily use the Node Id as scratch space for the degree count.
6024 N->setNodeId(Degree);
Evan Cheng9631a602006-08-01 08:20:41 +00006025 }
6026 }
6027
Chad Rosier5d1f5d22012-05-21 17:13:41 +00006028 // Visit all the nodes. As we iterate, move nodes into sorted order,
Dan Gohman86aa16a2008-09-30 18:30:35 +00006029 // such that by the time the end is reached all nodes will be sorted.
6030 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
6031 SDNode *N = I;
Adam Nemet7d394302014-05-31 16:23:17 +00006032 checkForCycles(N, this);
David Greene3b2a68c2010-01-20 00:59:23 +00006033 // N is in sorted position, so all its uses have one less operand
6034 // that needs to be sorted.
Dan Gohman86aa16a2008-09-30 18:30:35 +00006035 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
6036 UI != UE; ++UI) {
6037 SDNode *P = *UI;
6038 unsigned Degree = P->getNodeId();
David Greene3b2a68c2010-01-20 00:59:23 +00006039 assert(Degree != 0 && "Invalid node degree");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006040 --Degree;
6041 if (Degree == 0) {
6042 // All of P's operands are sorted, so P may sorted now.
6043 P->setNodeId(DAGSize++);
6044 if (P != SortedPos)
6045 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
David Greene3b2a68c2010-01-20 00:59:23 +00006046 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006047 ++SortedPos;
6048 } else {
6049 // Update P's outstanding operand count.
6050 P->setNodeId(Degree);
6051 }
6052 }
David Greene3b2a68c2010-01-20 00:59:23 +00006053 if (I == SortedPos) {
David Greene893047d2010-02-09 23:03:05 +00006054#ifndef NDEBUG
6055 SDNode *S = ++I;
6056 dbgs() << "Overran sorted position:\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006057 S->dumprFull(this); dbgs() << "\n";
Adam Nemetb4690e32014-05-31 16:23:20 +00006058 dbgs() << "Checking if this is due to cycles\n";
6059 checkForCycles(this, true);
David Greene893047d2010-02-09 23:03:05 +00006060#endif
Craig Topperc0196b12014-04-14 00:51:57 +00006061 llvm_unreachable(nullptr);
David Greene3b2a68c2010-01-20 00:59:23 +00006062 }
Dan Gohman86aa16a2008-09-30 18:30:35 +00006063 }
6064
6065 assert(SortedPos == AllNodes.end() &&
6066 "Topological sort incomplete!");
6067 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
6068 "First node in topological sort is not the entry token!");
6069 assert(AllNodes.front().getNodeId() == 0 &&
6070 "First node in topological sort has non-zero id!");
6071 assert(AllNodes.front().getNumOperands() == 0 &&
6072 "First node in topological sort has operands!");
6073 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
6074 "Last node in topologic sort has unexpected id!");
6075 assert(AllNodes.back().use_empty() &&
6076 "Last node in topologic sort has users!");
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006077 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006078 return DAGSize;
Evan Cheng9631a602006-08-01 08:20:41 +00006079}
6080
Evan Cheng563fe3c2010-03-25 01:38:16 +00006081/// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
6082/// value is produced by SD.
Dale Johannesene0983522010-04-26 20:06:49 +00006083void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) {
6084 DbgInfo->add(DB, SD, isParameter);
Evan Cheng563fe3c2010-03-25 01:38:16 +00006085 if (SD)
6086 SD->setHasDebugValue(true);
Dale Johannesen49de0602010-03-10 22:13:47 +00006087}
Evan Cheng29eefc12006-07-27 06:39:06 +00006088
Devang Patelefc6b162011-01-25 23:27:42 +00006089/// TransferDbgValues - Transfer SDDbgValues.
6090void SelectionDAG::TransferDbgValues(SDValue From, SDValue To) {
6091 if (From == To || !From.getNode()->getHasDebugValue())
6092 return;
6093 SDNode *FromNode = From.getNode();
6094 SDNode *ToNode = To.getNode();
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006095 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode);
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006096 SmallVector<SDDbgValue *, 2> ClonedDVs;
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006097 for (ArrayRef<SDDbgValue *>::iterator I = DVs.begin(), E = DVs.end();
Devang Patelefc6b162011-01-25 23:27:42 +00006098 I != E; ++I) {
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006099 SDDbgValue *Dbg = *I;
6100 if (Dbg->getKind() == SDDbgValue::SDNODE) {
6101 SDDbgValue *Clone = getDbgValue(Dbg->getMDPtr(), ToNode, To.getResNo(),
Adrian Prantl32da8892014-04-25 20:49:25 +00006102 Dbg->isIndirect(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006103 Dbg->getOffset(), Dbg->getDebugLoc(),
6104 Dbg->getOrder());
6105 ClonedDVs.push_back(Clone);
Devang Patelefc6b162011-01-25 23:27:42 +00006106 }
6107 }
Craig Toppere1c1d362013-07-03 05:11:49 +00006108 for (SmallVectorImpl<SDDbgValue *>::iterator I = ClonedDVs.begin(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006109 E = ClonedDVs.end(); I != E; ++I)
6110 AddDbgValue(*I, ToNode, false);
Devang Patelefc6b162011-01-25 23:27:42 +00006111}
6112
Jim Laskeyd66e6162005-08-17 20:08:02 +00006113//===----------------------------------------------------------------------===//
6114// SDNode Class
6115//===----------------------------------------------------------------------===//
Chris Lattner19732782005-08-16 18:17:10 +00006116
Chris Lattner3bf17b62007-02-04 02:41:42 +00006117HandleSDNode::~HandleSDNode() {
Dan Gohman91697632008-07-07 20:57:48 +00006118 DropOperands();
Chris Lattner3bf17b62007-02-04 02:41:42 +00006119}
6120
Andrew Trickef9de2a2013-05-25 02:42:55 +00006121GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
6122 DebugLoc DL, const GlobalValue *GA,
Owen Anderson53aa7a92009-08-10 22:56:29 +00006123 EVT VT, int64_t o, unsigned char TF)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006124 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
Dan Gohman8422e572010-04-17 15:32:28 +00006125 TheGlobal = GA;
Lauro Ramos Venancio4e919082007-04-21 20:56:26 +00006126}
Chris Lattner3bf17b62007-02-04 02:41:42 +00006127
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00006128AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, DebugLoc dl, EVT VT,
6129 SDValue X, unsigned SrcAS,
6130 unsigned DestAS)
6131 : UnarySDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT), X),
6132 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
6133
Andrew Trickef9de2a2013-05-25 02:42:55 +00006134MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
6135 EVT memvt, MachineMemOperand *mmo)
6136 : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006137 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006138 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006139 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
David Greeneb7941b02010-02-17 20:21:42 +00006140 assert(isNonTemporal() == MMO->isNonTemporal() &&
6141 "Non-temporal encoding error!");
Dan Gohman48b185d2009-09-25 20:36:54 +00006142 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Dale Johannesen666bf202009-01-28 21:18:29 +00006143}
6144
Andrew Trickef9de2a2013-05-25 02:42:55 +00006145MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
Craig Topperbb533072014-04-27 19:21:02 +00006146 ArrayRef<SDValue> Ops, EVT memvt, MachineMemOperand *mmo)
6147 : SDNode(Opc, Order, dl, VTs, Ops),
Dan Gohman48b185d2009-09-25 20:36:54 +00006148 MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006149 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006150 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006151 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
6152 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Mon P Wang6a490372008-06-25 08:15:39 +00006153}
6154
Jim Laskeyf576b422006-10-27 23:46:08 +00006155/// Profile - Gather unique data for the node.
6156///
Dan Gohman2da2bed2008-08-20 15:58:01 +00006157void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskeyf576b422006-10-27 23:46:08 +00006158 AddNodeIDNode(ID, this);
6159}
6160
Owen Anderson3b1665e2009-08-25 22:27:22 +00006161namespace {
6162 struct EVTArray {
6163 std::vector<EVT> VTs;
Wesley Peck527da1b2010-11-23 03:31:01 +00006164
Owen Anderson3b1665e2009-08-25 22:27:22 +00006165 EVTArray() {
6166 VTs.reserve(MVT::LAST_VALUETYPE);
6167 for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
6168 VTs.push_back(MVT((MVT::SimpleValueType)i));
6169 }
6170 };
6171}
6172
Owen Anderson53aa7a92009-08-10 22:56:29 +00006173static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs;
Owen Anderson3b1665e2009-08-25 22:27:22 +00006174static ManagedStatic<EVTArray> SimpleVTArray;
Chris Lattner56d60ea2009-08-22 04:07:34 +00006175static ManagedStatic<sys::SmartMutex<true> > VTMutex;
Owen Anderson5defd562009-06-25 17:09:00 +00006176
Chris Lattner88fa11c2005-11-08 23:30:28 +00006177/// getValueTypeList - Return a pointer to the specified value type.
6178///
Owen Anderson53aa7a92009-08-10 22:56:29 +00006179const EVT *SDNode::getValueTypeList(EVT VT) {
Duncan Sands13237ac2008-06-06 12:08:01 +00006180 if (VT.isExtended()) {
Owen Anderson63010bb2009-08-22 06:32:36 +00006181 sys::SmartScopedLock<true> Lock(*VTMutex);
Owen Anderson5defd562009-06-25 17:09:00 +00006182 return &(*EVTs->insert(VT).first);
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006183 } else {
Duncan Sands14627772010-11-03 12:17:33 +00006184 assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE &&
Duncan Sandse4d66702010-05-10 04:54:28 +00006185 "Value type out of range!");
Owen Anderson3b1665e2009-08-25 22:27:22 +00006186 return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006187 }
Chris Lattner88fa11c2005-11-08 23:30:28 +00006188}
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006189
Chris Lattner40e79822005-01-12 18:37:47 +00006190/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
6191/// indicated value. This method ignores uses of other values defined by this
6192/// operation.
Evan Chengd37645c2006-02-05 06:29:23 +00006193bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner40e79822005-01-12 18:37:47 +00006194 assert(Value < getNumValues() && "Bad value!");
6195
Roman Levenstein51f532f2008-04-07 10:06:32 +00006196 // TODO: Only iterate over uses of a given value of the node
6197 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006198 if (UI.getUse().getResNo() == Value) {
Roman Levenstein51f532f2008-04-07 10:06:32 +00006199 if (NUses == 0)
6200 return false;
6201 --NUses;
6202 }
Chris Lattner40e79822005-01-12 18:37:47 +00006203 }
6204
6205 // Found exactly the right number of uses?
6206 return NUses == 0;
6207}
6208
6209
Evan Cheng358c3d12007-08-02 05:29:38 +00006210/// hasAnyUseOfValue - Return true if there are any use of the indicated
6211/// value. This method ignores uses of other values defined by this operation.
6212bool SDNode::hasAnyUseOfValue(unsigned Value) const {
6213 assert(Value < getNumValues() && "Bad value!");
6214
Dan Gohman7a510c22008-07-09 22:39:01 +00006215 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006216 if (UI.getUse().getResNo() == Value)
Dan Gohman7a510c22008-07-09 22:39:01 +00006217 return true;
Evan Cheng358c3d12007-08-02 05:29:38 +00006218
6219 return false;
6220}
6221
6222
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006223/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Cheng9456dd82006-11-03 07:31:32 +00006224///
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006225bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Chengd37645c2006-02-05 06:29:23 +00006226 bool Seen = false;
6227 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00006228 SDNode *User = *I;
Evan Chengd37645c2006-02-05 06:29:23 +00006229 if (User == this)
6230 Seen = true;
6231 else
6232 return false;
6233 }
6234
6235 return Seen;
6236}
6237
Evan Cheng9456dd82006-11-03 07:31:32 +00006238/// isOperand - Return true if this node is an operand of N.
6239///
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006240bool SDValue::isOperandOf(SDNode *N) const {
Evan Cheng23e75f52006-03-03 06:42:32 +00006241 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
6242 if (*this == N->getOperand(i))
6243 return true;
6244 return false;
6245}
6246
Evan Cheng567d2e52008-03-04 00:41:45 +00006247bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng6b08ae82006-03-03 06:24:54 +00006248 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006249 if (this == N->OperandList[i].getNode())
Evan Cheng6b08ae82006-03-03 06:24:54 +00006250 return true;
6251 return false;
6252}
Evan Chengd37645c2006-02-05 06:29:23 +00006253
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006254/// reachesChainWithoutSideEffects - Return true if this operand (which must
Scott Michelcf0da6c2009-02-17 22:15:04 +00006255/// be a chain) reaches the specified operand without crossing any
Wesley Peck527da1b2010-11-23 03:31:01 +00006256/// side-effecting instructions on any chain path. In practice, this looks
6257/// through token factors and non-volatile loads. In order to remain efficient,
Owen Andersonb92b13d2010-09-18 04:45:14 +00006258/// this only looks a couple of nodes in, it does not do an exhaustive search.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006259bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006260 unsigned Depth) const {
6261 if (*this == Dest) return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006262
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006263 // Don't search too deeply, we just want to be able to see through
6264 // TokenFactor's etc.
6265 if (Depth == 0) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006266
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006267 // If this is a token factor, all inputs to the TF happen in parallel. If any
Owen Andersonb92b13d2010-09-18 04:45:14 +00006268 // of the operands of the TF does not reach dest, then we cannot do the xform.
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006269 if (getOpcode() == ISD::TokenFactor) {
6270 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersonb92b13d2010-09-18 04:45:14 +00006271 if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
6272 return false;
6273 return true;
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006274 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006275
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006276 // Loads don't have side effects, look through them.
6277 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
6278 if (!Ld->isVolatile())
6279 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
6280 }
6281 return false;
6282}
6283
Lang Hames5a004992011-07-07 04:31:51 +00006284/// hasPredecessor - Return true if N is a predecessor of this node.
6285/// N is either an operand of this node, or can be reached by recursively
6286/// traversing up the operands.
6287/// NOTE: This is an expensive method. Use it carefully.
6288bool SDNode::hasPredecessor(const SDNode *N) const {
6289 SmallPtrSet<const SDNode *, 32> Visited;
6290 SmallVector<const SDNode *, 16> Worklist;
6291 return hasPredecessorHelper(N, Visited, Worklist);
6292}
Dan Gohmancd139c02009-10-28 03:44:30 +00006293
Craig Topperb94011f2013-07-14 04:42:23 +00006294bool
6295SDNode::hasPredecessorHelper(const SDNode *N,
6296 SmallPtrSet<const SDNode *, 32> &Visited,
6297 SmallVectorImpl<const SDNode *> &Worklist) const {
Lang Hames5a004992011-07-07 04:31:51 +00006298 if (Visited.empty()) {
6299 Worklist.push_back(this);
6300 } else {
6301 // Take a look in the visited set. If we've already encountered this node
6302 // we needn't search further.
6303 if (Visited.count(N))
6304 return true;
6305 }
6306
6307 // Haven't visited N yet. Continue the search.
6308 while (!Worklist.empty()) {
6309 const SDNode *M = Worklist.pop_back_val();
6310 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
6311 SDNode *Op = M->getOperand(i).getNode();
Dan Gohmancd139c02009-10-28 03:44:30 +00006312 if (Visited.insert(Op))
6313 Worklist.push_back(Op);
Lang Hames5a004992011-07-07 04:31:51 +00006314 if (Op == N)
6315 return true;
Dan Gohmancd139c02009-10-28 03:44:30 +00006316 }
Lang Hames5a004992011-07-07 04:31:51 +00006317 }
Dan Gohmancd139c02009-10-28 03:44:30 +00006318
6319 return false;
Evan Chengc176f032006-11-03 03:05:24 +00006320}
6321
Evan Cheng5d9fd972006-10-04 00:56:09 +00006322uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
6323 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmaneffb8942008-09-12 16:56:44 +00006324 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Cheng5d9fd972006-10-04 00:56:09 +00006325}
6326
Mon P Wang32f8bb92009-11-30 02:42:02 +00006327SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
6328 assert(N->getNumValues() == 1 &&
6329 "Can't unroll a vector with multiple results!");
6330
6331 EVT VT = N->getValueType(0);
6332 unsigned NE = VT.getVectorNumElements();
6333 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006334 SDLoc dl(N);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006335
6336 SmallVector<SDValue, 8> Scalars;
6337 SmallVector<SDValue, 4> Operands(N->getNumOperands());
6338
6339 // If ResNE is 0, fully unroll the vector op.
6340 if (ResNE == 0)
6341 ResNE = NE;
6342 else if (NE > ResNE)
6343 NE = ResNE;
6344
6345 unsigned i;
6346 for (i= 0; i != NE; ++i) {
Bill Wendlingde4b2252010-04-30 22:19:17 +00006347 for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
Mon P Wang32f8bb92009-11-30 02:42:02 +00006348 SDValue Operand = N->getOperand(j);
6349 EVT OperandVT = Operand.getValueType();
6350 if (OperandVT.isVector()) {
6351 // A vector operand; extract a single element.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006352 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang32f8bb92009-11-30 02:42:02 +00006353 EVT OperandEltVT = OperandVT.getVectorElementType();
6354 Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl,
6355 OperandEltVT,
6356 Operand,
Tom Stellardd42c5942013-08-05 22:22:01 +00006357 getConstant(i, TLI->getVectorIdxTy()));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006358 } else {
6359 // A scalar operand; just use it as is.
6360 Operands[j] = Operand;
6361 }
6362 }
6363
6364 switch (N->getOpcode()) {
6365 default:
Craig Topper48d114b2014-04-26 18:35:24 +00006366 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006367 break;
Nadav Rotem52202fb2011-09-13 19:17:42 +00006368 case ISD::VSELECT:
Craig Topper48d114b2014-04-26 18:35:24 +00006369 Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands));
Nadav Rotem52202fb2011-09-13 19:17:42 +00006370 break;
Mon P Wang32f8bb92009-11-30 02:42:02 +00006371 case ISD::SHL:
6372 case ISD::SRA:
6373 case ISD::SRL:
6374 case ISD::ROTL:
6375 case ISD::ROTR:
6376 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
Jack Carter170a5f22013-09-09 22:02:08 +00006377 getShiftAmountOperand(Operands[0].getValueType(),
6378 Operands[1])));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006379 break;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00006380 case ISD::SIGN_EXTEND_INREG:
6381 case ISD::FP_ROUND_INREG: {
6382 EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
6383 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6384 Operands[0],
6385 getValueType(ExtVT)));
6386 }
Mon P Wang32f8bb92009-11-30 02:42:02 +00006387 }
6388 }
6389
6390 for (; i < ResNE; ++i)
6391 Scalars.push_back(getUNDEF(EltVT));
6392
6393 return getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00006394 EVT::getVectorVT(*getContext(), EltVT, ResNE), Scalars);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006395}
6396
Evan Chengf5938d52009-12-09 01:36:00 +00006397
Wesley Peck527da1b2010-11-23 03:31:01 +00006398/// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a
6399/// location that is 'Dist' units away from the location that the 'Base' load
Evan Chengf5938d52009-12-09 01:36:00 +00006400/// is loading from.
Wesley Peck527da1b2010-11-23 03:31:01 +00006401bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base,
Evan Chengf5938d52009-12-09 01:36:00 +00006402 unsigned Bytes, int Dist) const {
6403 if (LD->getChain() != Base->getChain())
6404 return false;
6405 EVT VT = LD->getValueType(0);
6406 if (VT.getSizeInBits() / 8 != Bytes)
6407 return false;
6408
6409 SDValue Loc = LD->getOperand(1);
6410 SDValue BaseLoc = Base->getOperand(1);
6411 if (Loc.getOpcode() == ISD::FrameIndex) {
6412 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6413 return false;
6414 const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo();
6415 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6416 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6417 int FS = MFI->getObjectSize(FI);
6418 int BFS = MFI->getObjectSize(BFI);
6419 if (FS != BFS || FS != (int)Bytes) return false;
6420 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6421 }
Chris Lattner46c01a32011-02-13 22:25:43 +00006422
6423 // Handle X+C
6424 if (isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6425 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6426 return true;
Evan Chengf5938d52009-12-09 01:36:00 +00006427
Craig Topperc0196b12014-04-14 00:51:57 +00006428 const GlobalValue *GV1 = nullptr;
6429 const GlobalValue *GV2 = nullptr;
Evan Chengf5938d52009-12-09 01:36:00 +00006430 int64_t Offset1 = 0;
6431 int64_t Offset2 = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006432 const TargetLowering *TLI = TM.getTargetLowering();
6433 bool isGA1 = TLI->isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6434 bool isGA2 = TLI->isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
Evan Chengf5938d52009-12-09 01:36:00 +00006435 if (isGA1 && isGA2 && GV1 == GV2)
6436 return Offset1 == (Offset2 + Dist*Bytes);
6437 return false;
6438}
6439
6440
Evan Cheng34a23ea2009-12-09 01:04:59 +00006441/// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
6442/// it cannot be inferred.
Evan Cheng17500092009-12-09 01:10:37 +00006443unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
Evan Chengd938faf2009-12-09 01:53:58 +00006444 // If this is a GlobalAddress + cst, return the alignment.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00006445 const GlobalValue *GV;
Evan Chengd938faf2009-12-09 01:53:58 +00006446 int64_t GVOffset = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006447 const TargetLowering *TLI = TM.getTargetLowering();
6448 if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
Matt Arsenaultdfb3e702013-11-16 20:50:54 +00006449 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006450 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);
Jay Foada0653a32014-05-14 21:14:37 +00006451 llvm::computeKnownBits(const_cast<GlobalValue*>(GV), KnownZero, KnownOne,
6452 TLI->getDataLayout());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006453 unsigned AlignBits = KnownZero.countTrailingOnes();
6454 unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0;
6455 if (Align)
6456 return MinAlign(Align, GVOffset);
Evan Cheng43cd9e32010-04-01 06:04:33 +00006457 }
Evan Chengd938faf2009-12-09 01:53:58 +00006458
Evan Cheng34a23ea2009-12-09 01:04:59 +00006459 // If this is a direct reference to a stack slot, use information about the
6460 // stack slot's alignment.
6461 int FrameIdx = 1 << 31;
6462 int64_t FrameOffset = 0;
6463 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
6464 FrameIdx = FI->getIndex();
Chris Lattner46c01a32011-02-13 22:25:43 +00006465 } else if (isBaseWithConstantOffset(Ptr) &&
Evan Cheng34a23ea2009-12-09 01:04:59 +00006466 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
Chris Lattner46c01a32011-02-13 22:25:43 +00006467 // Handle FI+Cst
Evan Cheng34a23ea2009-12-09 01:04:59 +00006468 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6469 FrameOffset = Ptr.getConstantOperandVal(1);
6470 }
6471
6472 if (FrameIdx != (1 << 31)) {
Evan Cheng34a23ea2009-12-09 01:04:59 +00006473 const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo();
Evan Cheng2d412f02009-12-09 01:17:24 +00006474 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
6475 FrameOffset);
Evan Cheng2d412f02009-12-09 01:17:24 +00006476 return FIInfoAlign;
Evan Cheng34a23ea2009-12-09 01:04:59 +00006477 }
6478
6479 return 0;
6480}
6481
Juergen Ributzkab3487102013-11-19 21:20:17 +00006482/// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
6483/// which is split (or expanded) into two not necessarily identical pieces.
6484std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const {
6485 // Currently all types are split in half.
6486 EVT LoVT, HiVT;
6487 if (!VT.isVector()) {
6488 LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT);
6489 } else {
6490 unsigned NumElements = VT.getVectorNumElements();
6491 assert(!(NumElements & 1) && "Splitting vector, but not in half!");
6492 LoVT = HiVT = EVT::getVectorVT(*getContext(), VT.getVectorElementType(),
6493 NumElements/2);
6494 }
6495 return std::make_pair(LoVT, HiVT);
6496}
6497
6498/// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
6499/// low/high part.
6500std::pair<SDValue, SDValue>
6501SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT,
6502 const EVT &HiVT) {
6503 assert(LoVT.getVectorNumElements() + HiVT.getVectorNumElements() <=
6504 N.getValueType().getVectorNumElements() &&
6505 "More vector elements requested than available!");
6506 SDValue Lo, Hi;
6507 Lo = getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N,
6508 getConstant(0, TLI->getVectorIdxTy()));
6509 Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N,
6510 getConstant(LoVT.getVectorNumElements(), TLI->getVectorIdxTy()));
6511 return std::make_pair(Lo, Hi);
6512}
6513
Matt Arsenault9ec3cf22014-04-11 17:47:30 +00006514void SelectionDAG::ExtractVectorElements(SDValue Op,
6515 SmallVectorImpl<SDValue> &Args,
6516 unsigned Start, unsigned Count) {
6517 EVT VT = Op.getValueType();
6518 if (Count == 0)
6519 Count = VT.getVectorNumElements();
6520
6521 EVT EltVT = VT.getVectorElementType();
6522 EVT IdxTy = TLI->getVectorIdxTy();
6523 SDLoc SL(Op);
6524 for (unsigned i = Start, e = Start + Count; i != e; ++i) {
6525 Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
6526 Op, getConstant(i, IdxTy)));
6527 }
6528}
6529
Sanjiv Guptaccd30942009-04-29 04:43:24 +00006530// getAddressSpace - Return the address space this GlobalAddress belongs to.
6531unsigned GlobalAddressSDNode::getAddressSpace() const {
6532 return getGlobal()->getType()->getAddressSpace();
6533}
6534
6535
Chris Lattner229907c2011-07-18 04:54:35 +00006536Type *ConstantPoolSDNode::getType() const {
Evan Cheng45fe3bc2006-09-12 21:00:35 +00006537 if (isMachineConstantPoolEntry())
6538 return Val.MachineCPVal->getType();
6539 return Val.ConstVal->getType();
6540}
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006541
Bob Wilson85cefe82009-03-02 23:24:16 +00006542bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
6543 APInt &SplatUndef,
6544 unsigned &SplatBitSize,
6545 bool &HasAnyUndefs,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006546 unsigned MinSplatBits,
Matt Arsenaultb598f7b2014-02-24 21:01:18 +00006547 bool isBigEndian) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006548 EVT VT = getValueType(0);
Bob Wilson85cefe82009-03-02 23:24:16 +00006549 assert(VT.isVector() && "Expected a vector type");
6550 unsigned sz = VT.getSizeInBits();
6551 if (MinSplatBits > sz)
6552 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006553
Bob Wilson85cefe82009-03-02 23:24:16 +00006554 SplatValue = APInt(sz, 0);
6555 SplatUndef = APInt(sz, 0);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006556
Bob Wilson85cefe82009-03-02 23:24:16 +00006557 // Get the bits. Bits with undefined values (when the corresponding element
6558 // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
6559 // in SplatValue. If any of the values are not constant, give up and return
6560 // false.
6561 unsigned int nOps = getNumOperands();
6562 assert(nOps > 0 && "isConstantSplat has 0-size build vector");
6563 unsigned EltBitSize = VT.getVectorElementType().getSizeInBits();
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006564
6565 for (unsigned j = 0; j < nOps; ++j) {
6566 unsigned i = isBigEndian ? nOps-1-j : j;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006567 SDValue OpVal = getOperand(i);
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006568 unsigned BitPos = j * EltBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006569
Bob Wilson85cefe82009-03-02 23:24:16 +00006570 if (OpVal.getOpcode() == ISD::UNDEF)
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006571 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
Bob Wilson85cefe82009-03-02 23:24:16 +00006572 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
Jay Foad583abbc2010-12-07 08:25:19 +00006573 SplatValue |= CN->getAPIntValue().zextOrTrunc(EltBitSize).
Dan Gohmanecd40a32010-04-12 02:24:01 +00006574 zextOrTrunc(sz) << BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006575 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
Bob Wilson5b15d012009-03-04 17:47:01 +00006576 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006577 else
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006578 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006579 }
6580
Bob Wilson85cefe82009-03-02 23:24:16 +00006581 // The build_vector is all constants or undefs. Find the smallest element
6582 // size that splats the vector.
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006583
Bob Wilson85cefe82009-03-02 23:24:16 +00006584 HasAnyUndefs = (SplatUndef != 0);
6585 while (sz > 8) {
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006586
Bob Wilson85cefe82009-03-02 23:24:16 +00006587 unsigned HalfSize = sz / 2;
Jay Foad583abbc2010-12-07 08:25:19 +00006588 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
6589 APInt LowValue = SplatValue.trunc(HalfSize);
6590 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
6591 APInt LowUndef = SplatUndef.trunc(HalfSize);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006592
Bob Wilson85cefe82009-03-02 23:24:16 +00006593 // If the two halves do not match (ignoring undef bits), stop here.
6594 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
6595 MinSplatBits > HalfSize)
6596 break;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006597
Bob Wilson85cefe82009-03-02 23:24:16 +00006598 SplatValue = HighValue | LowValue;
6599 SplatUndef = HighUndef & LowUndef;
Eric Christopherdfda92b2009-08-22 00:40:45 +00006600
Bob Wilson85cefe82009-03-02 23:24:16 +00006601 sz = HalfSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006602 }
6603
Bob Wilson85cefe82009-03-02 23:24:16 +00006604 SplatBitSize = sz;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006605 return true;
6606}
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006607
Chandler Carruthb844e722014-07-08 07:19:55 +00006608SDValue BuildVectorSDNode::getSplatValue(bool &HasUndefElements) const {
6609 HasUndefElements = false;
6610 SDValue Splatted;
6611 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
6612 SDValue Op = getOperand(i);
6613 if (Op.getOpcode() == ISD::UNDEF)
6614 HasUndefElements = true;
6615 else if (!Splatted)
6616 Splatted = Op;
6617 else if (Splatted != Op)
6618 return SDValue();
6619 }
Andrea Di Biagio5b0aacf2014-03-22 01:47:22 +00006620
Chandler Carruthb844e722014-07-08 07:19:55 +00006621 if (!Splatted) {
6622 assert(getOperand(0).getOpcode() == ISD::UNDEF &&
6623 "Can only have a splat without a constant for all undefs.");
6624 return getOperand(0);
6625 }
Matt Arsenault985b9de2014-03-17 18:58:01 +00006626
Chandler Carruthb844e722014-07-08 07:19:55 +00006627 return Splatted;
6628}
6629
6630ConstantSDNode *
6631BuildVectorSDNode::getConstantSplatNode(bool &HasUndefElements) const {
6632 return dyn_cast_or_null<ConstantSDNode>(
6633 getSplatValue(HasUndefElements).getNode());
6634}
6635
6636ConstantFPSDNode *
6637BuildVectorSDNode::getConstantFPSplatNode(bool &HasUndefElements) const {
6638 return dyn_cast_or_null<ConstantFPSDNode>(
6639 getSplatValue(HasUndefElements).getNode());
Matt Arsenault985b9de2014-03-17 18:58:01 +00006640}
6641
Juergen Ributzka73844052014-01-13 20:51:35 +00006642bool BuildVectorSDNode::isConstant() const {
6643 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
6644 unsigned Opc = getOperand(i).getOpcode();
6645 if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP)
6646 return false;
6647 }
6648 return true;
6649}
6650
Owen Anderson53aa7a92009-08-10 22:56:29 +00006651bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
Nate Begeman5f829d82009-04-29 05:20:52 +00006652 // Find the first non-undef value in the shuffle mask.
6653 unsigned i, e;
6654 for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
6655 /* search */;
6656
Nate Begeman39b59db2009-04-29 18:13:31 +00006657 assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
Eric Christopherdfda92b2009-08-22 00:40:45 +00006658
Nate Begeman5f829d82009-04-29 05:20:52 +00006659 // Make sure all remaining elements are either undef or the same as the first
6660 // non-undef value.
6661 for (int Idx = Mask[i]; i != e; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006662 if (Mask[i] >= 0 && Mask[i] != Idx)
6663 return false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006664 return true;
6665}
David Greene09851602010-01-20 20:13:31 +00006666
Adam Nemetb4690e32014-05-31 16:23:20 +00006667#ifndef NDEBUG
David Greene09851602010-01-20 20:13:31 +00006668static void checkForCyclesHelper(const SDNode *N,
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006669 SmallPtrSet<const SDNode*, 32> &Visited,
Adam Nemet7d394302014-05-31 16:23:17 +00006670 SmallPtrSet<const SDNode*, 32> &Checked,
6671 const llvm::SelectionDAG *DAG) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006672 // If this node has already been checked, don't check it again.
6673 if (Checked.count(N))
David Greened8ecd5e2010-02-23 17:37:50 +00006674 return;
Wesley Peck527da1b2010-11-23 03:31:01 +00006675
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006676 // If a node has already been visited on this depth-first walk, reject it as
6677 // a cycle.
6678 if (!Visited.insert(N)) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006679 errs() << "Detected cycle in SelectionDAG\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006680 dbgs() << "Offending node:\n";
6681 N->dumprFull(DAG); dbgs() << "\n";
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006682 abort();
David Greene09851602010-01-20 20:13:31 +00006683 }
Wesley Peck527da1b2010-11-23 03:31:01 +00006684
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006685 for(unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Adam Nemet7d394302014-05-31 16:23:17 +00006686 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked, DAG);
Wesley Peck527da1b2010-11-23 03:31:01 +00006687
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006688 Checked.insert(N);
6689 Visited.erase(N);
David Greene09851602010-01-20 20:13:31 +00006690}
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006691#endif
David Greene09851602010-01-20 20:13:31 +00006692
Adam Nemet7d394302014-05-31 16:23:17 +00006693void llvm::checkForCycles(const llvm::SDNode *N,
Adam Nemetb4690e32014-05-31 16:23:20 +00006694 const llvm::SelectionDAG *DAG,
6695 bool force) {
6696#ifndef NDEBUG
6697 bool check = force;
David Greene09851602010-01-20 20:13:31 +00006698#ifdef XDEBUG
Adam Nemetb4690e32014-05-31 16:23:20 +00006699 check = true;
6700#endif // XDEBUG
6701 if (check) {
6702 assert(N && "Checking nonexistent SDNode");
6703 SmallPtrSet<const SDNode*, 32> visited;
6704 SmallPtrSet<const SDNode*, 32> checked;
6705 checkForCyclesHelper(N, visited, checked, DAG);
6706 }
6707#endif // !NDEBUG
David Greene09851602010-01-20 20:13:31 +00006708}
6709
Adam Nemetb4690e32014-05-31 16:23:20 +00006710void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) {
6711 checkForCycles(DAG->getRoot().getNode(), DAG, force);
David Greene09851602010-01-20 20:13:31 +00006712}