blob: 119b0255e7c36d86cb713b40389203138ddc8826 [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
Chandler Carruthafe4b252014-07-09 10:58:18 +00001035SDValue SelectionDAG::getZeroExtendVectorInReg(SDValue Op, SDLoc DL, EVT VT) {
1036 assert(VT.isVector() && "This DAG node is restricted to vector types.");
Chandler Carruth5865a732014-07-09 12:36:54 +00001037 assert(VT.getSizeInBits() == Op.getValueType().getSizeInBits() &&
1038 "The sizes of the input and result must match in order to perform the "
1039 "extend in-register.");
Chandler Carruthafe4b252014-07-09 10:58:18 +00001040 assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
1041 "The destination vector type must have fewer lanes than the input.");
1042 return getNode(ISD::ZERO_EXTEND_VECTOR_INREG, DL, VT, Op);
1043}
1044
Bob Wilsonc5890052009-01-22 17:39:32 +00001045/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
1046///
Andrew Trickef9de2a2013-05-25 02:42:55 +00001047SDValue SelectionDAG::getNOT(SDLoc DL, SDValue Val, EVT VT) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001048 EVT EltVT = VT.getScalarType();
Dan Gohmane014b692009-04-20 22:51:43 +00001049 SDValue NegOne =
1050 getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
Bill Wendlingcab9a2e2009-01-30 22:11:22 +00001051 return getNode(ISD::XOR, DL, VT, Val, NegOne);
1052}
1053
Pete Cooper7fd1d722014-05-12 23:26:58 +00001054SDValue SelectionDAG::getLogicalNOT(SDLoc DL, SDValue Val, EVT VT) {
1055 EVT EltVT = VT.getScalarType();
1056 SDValue TrueValue;
1057 switch (TLI->getBooleanContents(VT.isVector())) {
1058 case TargetLowering::ZeroOrOneBooleanContent:
1059 case TargetLowering::UndefinedBooleanContent:
1060 TrueValue = getConstant(1, VT);
1061 break;
1062 case TargetLowering::ZeroOrNegativeOneBooleanContent:
1063 TrueValue = getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()),
1064 VT);
1065 break;
1066 }
1067 return getNode(ISD::XOR, DL, VT, Val, TrueValue);
1068}
1069
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001070SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT, bool isO) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001071 EVT EltVT = VT.getScalarType();
Dan Gohmanfb58faf2009-01-27 20:39:34 +00001072 assert((EltVT.getSizeInBits() >= 64 ||
1073 (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
1074 "getConstant with a uint64_t value that doesn't fit in the type!");
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001075 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT, isO);
Dan Gohman65f63eb2008-02-08 22:59:30 +00001076}
1077
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001078SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT, bool isO)
1079{
1080 return getConstant(*ConstantInt::get(*Context, Val), VT, isT, isO);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001081}
1082
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001083SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT,
1084 bool isO) {
Duncan Sands13237ac2008-06-06 12:08:01 +00001085 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman7a7742c2007-12-12 22:21:26 +00001086
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001087 EVT EltVT = VT.getScalarType();
Duncan Sandsf2641e12011-09-06 19:07:46 +00001088 const ConstantInt *Elt = &Val;
Chris Lattner3f16b202006-08-11 21:01:22 +00001089
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001090 const TargetLowering *TLI = TM.getTargetLowering();
1091
Duncan Sandsf2641e12011-09-06 19:07:46 +00001092 // In some cases the vector type is legal but the element type is illegal and
1093 // needs to be promoted, for example v8i8 on ARM. In this case, promote the
1094 // inserted value (the type does not need to match the vector element type).
1095 // Any extra bits introduced will be truncated away.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001096 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00001097 TargetLowering::TypePromoteInteger) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001098 EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001099 APInt NewVal = Elt->getValue().zext(EltVT.getSizeInBits());
1100 Elt = ConstantInt::get(*getContext(), NewVal);
1101 }
Daniel Sanders50b80412013-11-15 12:56:49 +00001102 // In other cases the element type is illegal and needs to be expanded, for
1103 // example v2i64 on MIPS32. In this case, find the nearest legal type, split
1104 // the value into n parts and use a vector type with n-times the elements.
1105 // Then bitcast to the type requested.
1106 // Legalizing constants too early makes the DAGCombiner's job harder so we
1107 // only legalize if the DAG tells us we must produce legal types.
1108 else if (NewNodesMustHaveLegalTypes && VT.isVector() &&
1109 TLI->getTypeAction(*getContext(), EltVT) ==
1110 TargetLowering::TypeExpandInteger) {
1111 APInt NewVal = Elt->getValue();
1112 EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1113 unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits();
1114 unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits;
1115 EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts);
1116
1117 // Check the temporary vector is the correct size. If this fails then
1118 // getTypeToTransformTo() probably returned a type whose size (in bits)
1119 // isn't a power-of-2 factor of the requested type size.
1120 assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits());
1121
1122 SmallVector<SDValue, 2> EltParts;
1123 for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i) {
1124 EltParts.push_back(getConstant(NewVal.lshr(i * ViaEltSizeInBits)
1125 .trunc(ViaEltSizeInBits),
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001126 ViaEltVT, isT, isO));
Daniel Sanders50b80412013-11-15 12:56:49 +00001127 }
1128
1129 // EltParts is currently in little endian order. If we actually want
1130 // big-endian order then reverse it now.
1131 if (TLI->isBigEndian())
1132 std::reverse(EltParts.begin(), EltParts.end());
1133
1134 // The elements must be reversed when the element order is different
1135 // to the endianness of the elements (because the BITCAST is itself a
1136 // vector shuffle in this situation). However, we do not need any code to
1137 // perform this reversal because getConstant() is producing a vector
1138 // splat.
1139 // This situation occurs in MIPS MSA.
1140
1141 SmallVector<SDValue, 8> Ops;
1142 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i)
1143 Ops.insert(Ops.end(), EltParts.begin(), EltParts.end());
1144
1145 SDValue Result = getNode(ISD::BITCAST, SDLoc(), VT,
1146 getNode(ISD::BUILD_VECTOR, SDLoc(), ViaVecVT,
Craig Topper48d114b2014-04-26 18:35:24 +00001147 Ops));
Daniel Sanders50b80412013-11-15 12:56:49 +00001148 return Result;
1149 }
Duncan Sandsf2641e12011-09-06 19:07:46 +00001150
1151 assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
1152 "APInt size does not match type size!");
Chris Lattner3f16b202006-08-11 21:01:22 +00001153 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskeyf576b422006-10-27 23:46:08 +00001154 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001155 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001156 ID.AddPointer(Elt);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001157 ID.AddBoolean(isO);
Craig Topperc0196b12014-04-14 00:51:57 +00001158 void *IP = nullptr;
1159 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001160 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001161 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001162 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001163
Dan Gohman7a7742c2007-12-12 22:21:26 +00001164 if (!N) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001165 N = new (NodeAllocator) ConstantSDNode(isT, isO, Elt, EltVT);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001166 CSEMap.InsertNode(N, IP);
1167 AllNodes.push_back(N);
1168 }
1169
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001170 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001171 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001172 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001173 Ops.assign(VT.getVectorNumElements(), Result);
Craig Topper48d114b2014-04-26 18:35:24 +00001174 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001175 }
1176 return Result;
Chris Lattner600d3082003-08-11 14:57:33 +00001177}
1178
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001179SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001180 return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget);
Chris Lattner72733e52008-01-17 07:00:52 +00001181}
1182
1183
Owen Anderson53aa7a92009-08-10 22:56:29 +00001184SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001185 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001186}
1187
Owen Anderson53aa7a92009-08-10 22:56:29 +00001188SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
Duncan Sands13237ac2008-06-06 12:08:01 +00001189 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001190
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001191 EVT EltVT = VT.getScalarType();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001192
Chris Lattner381dddc2005-02-17 20:17:32 +00001193 // Do the map lookup using the actual bit pattern for the floating point
1194 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1195 // we don't have issues with SNANs.
Chris Lattner0c2e5412006-08-11 21:55:30 +00001196 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskeyf576b422006-10-27 23:46:08 +00001197 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001198 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001199 ID.AddPointer(&V);
Craig Topperc0196b12014-04-14 00:51:57 +00001200 void *IP = nullptr;
1201 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001202 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001203 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001204 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001205
Evan Cheng9458e6a2007-06-29 21:36:04 +00001206 if (!N) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001207 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Cheng9458e6a2007-06-29 21:36:04 +00001208 CSEMap.InsertNode(N, IP);
1209 AllNodes.push_back(N);
1210 }
1211
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001212 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001213 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001214 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001215 Ops.assign(VT.getVectorNumElements(), Result);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001216 // FIXME SDLoc info might be appropriate here
Craig Topper48d114b2014-04-26 18:35:24 +00001217 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohmana8665142007-06-25 16:23:39 +00001218 }
1219 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001220}
1221
Owen Anderson53aa7a92009-08-10 22:56:29 +00001222SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001223 EVT EltVT = VT.getScalarType();
Owen Anderson9f944592009-08-11 20:47:22 +00001224 if (EltVT==MVT::f32)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001225 return getConstantFP(APFloat((float)Val), VT, isTarget);
Dale Johannesen51c16952010-05-07 21:35:53 +00001226 else if (EltVT==MVT::f64)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001227 return getConstantFP(APFloat(Val), VT, isTarget);
Hal Finkel6dbdd432012-12-30 19:03:32 +00001228 else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 ||
1229 EltVT==MVT::f16) {
Dale Johannesen51c16952010-05-07 21:35:53 +00001230 bool ignored;
1231 APFloat apf = APFloat(Val);
Tim Northover29178a32013-01-22 09:46:31 +00001232 apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
Dale Johannesen51c16952010-05-07 21:35:53 +00001233 &ignored);
1234 return getConstantFP(apf, VT, isTarget);
Craig Topperee4dab52012-02-05 08:31:47 +00001235 } else
1236 llvm_unreachable("Unsupported type in getConstantFP");
Dale Johannesend246b2c2007-08-30 00:23:21 +00001237}
1238
Andrew Trickef9de2a2013-05-25 02:42:55 +00001239SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001240 EVT VT, int64_t Offset,
Chris Lattner8e34f982009-06-25 21:21:14 +00001241 bool isTargetGA,
1242 unsigned char TargetFlags) {
1243 assert((TargetFlags == 0 || isTargetGA) &&
1244 "Cannot set target flags on target-independent globals");
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001245 const TargetLowering *TLI = TM.getTargetLowering();
Eric Christopherdfda92b2009-08-22 00:40:45 +00001246
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001247 // Truncate (with sign-extension) the offset value to the pointer size.
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001248 unsigned BitWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001249 if (BitWidth < 64)
Richard Smith228e6d42012-08-24 23:29:28 +00001250 Offset = SignExtend64(Offset, BitWidth);
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001251
Chris Lattner8e34f982009-06-25 21:21:14 +00001252 unsigned Opc;
Rafael Espindola59f7eba2014-05-28 18:15:43 +00001253 if (GV->isThreadLocal())
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00001254 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1255 else
1256 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikove8fa50f2008-03-11 22:38:53 +00001257
Jim Laskeyf576b422006-10-27 23:46:08 +00001258 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001259 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001260 ID.AddPointer(GV);
1261 ID.AddInteger(Offset);
Chris Lattner8e34f982009-06-25 21:21:14 +00001262 ID.AddInteger(TargetFlags);
Pete Cooper91244262012-07-30 20:23:19 +00001263 ID.AddInteger(GV->getType()->getAddressSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00001264 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001265 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman3a113ec2009-01-25 16:21:38 +00001266 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001267
Andrew Trickef9de2a2013-05-25 02:42:55 +00001268 SDNode *N = new (NodeAllocator) GlobalAddressSDNode(Opc, DL.getIROrder(),
1269 DL.getDebugLoc(), GV, VT,
Dan Gohman01c65a22010-03-18 18:49:47 +00001270 Offset, TargetFlags);
Chris Lattner3f16b202006-08-11 21:01:22 +00001271 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001272 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001273 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001274}
1275
Owen Anderson53aa7a92009-08-10 22:56:29 +00001276SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
Chris Lattner0c2e5412006-08-11 21:55:30 +00001277 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskeyf576b422006-10-27 23:46:08 +00001278 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001279 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001280 ID.AddInteger(FI);
Craig Topperc0196b12014-04-14 00:51:57 +00001281 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001282 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001283 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001284
Dan Gohman01c65a22010-03-18 18:49:47 +00001285 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001286 CSEMap.InsertNode(N, IP);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001287 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001288 return SDValue(N, 0);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001289}
1290
Owen Anderson53aa7a92009-08-10 22:56:29 +00001291SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001292 unsigned char TargetFlags) {
1293 assert((TargetFlags == 0 || isTarget) &&
1294 "Cannot set target flags on target-independent jump tables");
Chris Lattner0c2e5412006-08-11 21:55:30 +00001295 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskeyf576b422006-10-27 23:46:08 +00001296 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001297 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001298 ID.AddInteger(JTI);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001299 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001300 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001301 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001302 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001303
Dan Gohman01c65a22010-03-18 18:49:47 +00001304 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1305 TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001306 CSEMap.InsertNode(N, IP);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001307 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001308 return SDValue(N, 0);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001309}
1310
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001311SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001312 unsigned Alignment, int Offset,
Eric Christopherdfda92b2009-08-22 00:40:45 +00001313 bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001314 unsigned char TargetFlags) {
1315 assert((TargetFlags == 0 || isTarget) &&
1316 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001317 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001318 Alignment =
1319 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Chris Lattner0c2e5412006-08-11 21:55:30 +00001320 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001321 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001322 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001323 ID.AddInteger(Alignment);
1324 ID.AddInteger(Offset);
Chris Lattner8e372832006-08-14 20:12:44 +00001325 ID.AddPointer(C);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001326 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001327 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001328 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001329 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001330
Dan Gohman01c65a22010-03-18 18:49:47 +00001331 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1332 Alignment, TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001333 CSEMap.InsertNode(N, IP);
Chris Lattner407c6412005-08-25 05:03:06 +00001334 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001335 return SDValue(N, 0);
Chris Lattner407c6412005-08-25 05:03:06 +00001336}
1337
Chris Lattner061a1ea2005-01-07 07:46:32 +00001338
Owen Anderson53aa7a92009-08-10 22:56:29 +00001339SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001340 unsigned Alignment, int Offset,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001341 bool isTarget,
1342 unsigned char TargetFlags) {
1343 assert((TargetFlags == 0 || isTarget) &&
1344 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001345 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001346 Alignment =
1347 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001348 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001349 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001350 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001351 ID.AddInteger(Alignment);
1352 ID.AddInteger(Offset);
Jim Grosbachaf136f72011-09-27 20:59:33 +00001353 C->addSelectionDAGCSEId(ID);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001354 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001355 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001356 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001357 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001358
Dan Gohman01c65a22010-03-18 18:49:47 +00001359 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1360 Alignment, TargetFlags);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001361 CSEMap.InsertNode(N, IP);
1362 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001363 return SDValue(N, 0);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001364}
1365
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001366SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1367 unsigned char TargetFlags) {
1368 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001369 AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None);
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001370 ID.AddInteger(Index);
1371 ID.AddInteger(Offset);
1372 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001373 void *IP = nullptr;
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001374 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1375 return SDValue(E, 0);
1376
1377 SDNode *N = new (NodeAllocator) TargetIndexSDNode(Index, VT, Offset,
1378 TargetFlags);
1379 CSEMap.InsertNode(N, IP);
1380 AllNodes.push_back(N);
1381 return SDValue(N, 0);
1382}
1383
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001384SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001385 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001386 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001387 ID.AddPointer(MBB);
Craig Topperc0196b12014-04-14 00:51:57 +00001388 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001389 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001390 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001391
Dan Gohman01c65a22010-03-18 18:49:47 +00001392 SDNode *N = new (NodeAllocator) BasicBlockSDNode(MBB);
Chris Lattner3f16b202006-08-11 21:01:22 +00001393 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001394 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001395 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001396}
1397
Owen Anderson53aa7a92009-08-10 22:56:29 +00001398SDValue SelectionDAG::getValueType(EVT VT) {
Owen Anderson9f944592009-08-11 20:47:22 +00001399 if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1400 ValueTypeNodes.size())
1401 ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001402
Duncan Sands13237ac2008-06-06 12:08:01 +00001403 SDNode *&N = VT.isExtended() ?
Owen Anderson9f944592009-08-11 20:47:22 +00001404 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
Duncan Sandsd42c8122007-10-17 13:49:58 +00001405
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001406 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001407 N = new (NodeAllocator) VTSDNode(VT);
Duncan Sandsd42c8122007-10-17 13:49:58 +00001408 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001409 return SDValue(N, 0);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001410}
1411
Owen Anderson53aa7a92009-08-10 22:56:29 +00001412SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
Bill Wendling24c79f22008-09-16 21:48:12 +00001413 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001414 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001415 N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001416 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001417 return SDValue(N, 0);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001418}
1419
Owen Anderson53aa7a92009-08-10 22:56:29 +00001420SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
Chris Lattneraf5dbfc2009-06-25 18:45:50 +00001421 unsigned char TargetFlags) {
1422 SDNode *&N =
1423 TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1424 TargetFlags)];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001425 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001426 N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001427 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001428 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001429}
1430
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001431SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattnerd47675e2005-08-09 20:20:18 +00001432 if ((unsigned)Cond >= CondCodeNodes.size())
1433 CondCodeNodes.resize(Cond+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00001434
Craig Topperc0196b12014-04-14 00:51:57 +00001435 if (!CondCodeNodes[Cond]) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001436 CondCodeSDNode *N = new (NodeAllocator) CondCodeSDNode(Cond);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00001437 CondCodeNodes[Cond] = N;
1438 AllNodes.push_back(N);
Chris Lattner14e060f2005-08-09 20:40:02 +00001439 }
Bill Wendling022d18f2009-12-18 23:32:53 +00001440
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001441 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattnerd47675e2005-08-09 20:20:18 +00001442}
1443
Nate Begeman5f829d82009-04-29 05:20:52 +00001444// commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1445// the shuffle mask M that point at N1 to point at N2, and indices that point
1446// N2 to point at N1.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001447static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) {
1448 std::swap(N1, N2);
1449 int NElts = M.size();
1450 for (int i = 0; i != NElts; ++i) {
1451 if (M[i] >= NElts)
1452 M[i] -= NElts;
1453 else if (M[i] >= 0)
1454 M[i] += NElts;
1455 }
1456}
1457
Andrew Trickef9de2a2013-05-25 02:42:55 +00001458SDValue SelectionDAG::getVectorShuffle(EVT VT, SDLoc dl, SDValue N1,
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001459 SDValue N2, const int *Mask) {
Craig Topper0ecb26a2013-08-09 04:37:24 +00001460 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1461 "Invalid VECTOR_SHUFFLE");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001462
1463 // Canonicalize shuffle undef, undef -> undef
1464 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
Dan Gohman6b041362009-07-09 00:46:33 +00001465 return getUNDEF(VT);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001466
Eric Christopherdfda92b2009-08-22 00:40:45 +00001467 // Validate that all indices in Mask are within the range of the elements
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001468 // input to the shuffle.
Nate Begeman5f829d82009-04-29 05:20:52 +00001469 unsigned NElts = VT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001470 SmallVector<int, 8> MaskVec;
Nate Begeman5f829d82009-04-29 05:20:52 +00001471 for (unsigned i = 0; i != NElts; ++i) {
1472 assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001473 MaskVec.push_back(Mask[i]);
1474 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001475
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001476 // Canonicalize shuffle v, v -> v, undef
1477 if (N1 == N2) {
1478 N2 = getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001479 for (unsigned i = 0; i != NElts; ++i)
1480 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001481 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001482
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001483 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
1484 if (N1.getOpcode() == ISD::UNDEF)
1485 commuteShuffle(N1, N2, MaskVec);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001486
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001487 // Canonicalize all index into lhs, -> shuffle lhs, undef
1488 // Canonicalize all index into rhs, -> shuffle rhs, undef
1489 bool AllLHS = true, AllRHS = true;
1490 bool N2Undef = N2.getOpcode() == ISD::UNDEF;
Nate Begeman5f829d82009-04-29 05:20:52 +00001491 for (unsigned i = 0; i != NElts; ++i) {
1492 if (MaskVec[i] >= (int)NElts) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001493 if (N2Undef)
1494 MaskVec[i] = -1;
1495 else
1496 AllLHS = false;
1497 } else if (MaskVec[i] >= 0) {
1498 AllRHS = false;
1499 }
1500 }
1501 if (AllLHS && AllRHS)
1502 return getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001503 if (AllLHS && !N2Undef)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001504 N2 = getUNDEF(VT);
1505 if (AllRHS) {
1506 N1 = getUNDEF(VT);
1507 commuteShuffle(N1, N2, MaskVec);
1508 }
Chandler Carruth142e9662014-07-08 08:45:38 +00001509 // Reset our undef status after accounting for the mask.
1510 N2Undef = N2.getOpcode() == ISD::UNDEF;
1511 // Re-check whether both sides ended up undef.
1512 if (N1.getOpcode() == ISD::UNDEF && N2Undef)
1513 return getUNDEF(VT);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001514
Craig Topper9a39b072013-08-08 08:03:12 +00001515 // If Identity shuffle return that node.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001516 bool Identity = true;
Nate Begeman5f829d82009-04-29 05:20:52 +00001517 for (unsigned i = 0; i != NElts; ++i) {
1518 if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001519 }
Craig Topper0ecb26a2013-08-09 04:37:24 +00001520 if (Identity && NElts)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001521 return N1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001522
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001523 // Shuffling a constant splat doesn't change the result.
Chandler Carruth142e9662014-07-08 08:45:38 +00001524 if (N2Undef) {
1525 SDValue V = N1;
1526
1527 // Look through any bitcasts. We check that these don't change the number
1528 // (and size) of elements and just changes their types.
1529 while (V.getOpcode() == ISD::BITCAST)
1530 V = V->getOperand(0);
1531
1532 // A splat should always show up as a build vector node.
1533 if (auto *BV = dyn_cast<BuildVectorSDNode>(V)) {
Chandler Carruthf0a33b72014-07-09 00:41:34 +00001534 BitVector UndefElements;
1535 SDValue Splat = BV->getSplatValue(&UndefElements);
Chandler Carruth142e9662014-07-08 08:45:38 +00001536 // If this is a splat of an undef, shuffling it is also undef.
1537 if (Splat && Splat.getOpcode() == ISD::UNDEF)
1538 return getUNDEF(VT);
1539
1540 // We only have a splat which can skip shuffles if there is a splatted
1541 // value and no undef lanes rearranged by the shuffle.
Chandler Carruthf0a33b72014-07-09 00:41:34 +00001542 if (Splat && UndefElements.none()) {
Chandler Carruth142e9662014-07-08 08:45:38 +00001543 // Splat of <x, x, ..., x>, return <x, x, ..., x>, provided that the
1544 // number of elements match or the value splatted is a zero constant.
1545 if (V.getValueType().getVectorNumElements() ==
1546 VT.getVectorNumElements())
1547 return N1;
1548 if (auto *C = dyn_cast<ConstantSDNode>(Splat))
1549 if (C->isNullValue())
1550 return N1;
1551 }
1552 }
1553 }
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001554
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001555 FoldingSetNodeID ID;
1556 SDValue Ops[2] = { N1, N2 };
Craig Topper633d99b2014-04-27 23:22:43 +00001557 AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops);
Nate Begeman5f829d82009-04-29 05:20:52 +00001558 for (unsigned i = 0; i != NElts; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001559 ID.AddInteger(MaskVec[i]);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001560
Craig Topperc0196b12014-04-14 00:51:57 +00001561 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001562 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001563 return SDValue(E, 0);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001564
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001565 // Allocate the mask array for the node out of the BumpPtrAllocator, since
1566 // SDNode doesn't have access to it. This memory will be "leaked" when
1567 // the node is deallocated, but recovered when the NodeAllocator is released.
1568 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1569 memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int));
Eric Christopherdfda92b2009-08-22 00:40:45 +00001570
Dan Gohman01c65a22010-03-18 18:49:47 +00001571 ShuffleVectorSDNode *N =
Jack Carter170a5f22013-09-09 22:02:08 +00001572 new (NodeAllocator) ShuffleVectorSDNode(VT, dl.getIROrder(),
1573 dl.getDebugLoc(), N1, N2,
1574 MaskAlloc);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001575 CSEMap.InsertNode(N, IP);
1576 AllNodes.push_back(N);
1577 return SDValue(N, 0);
1578}
1579
Andrew Trickef9de2a2013-05-25 02:42:55 +00001580SDValue SelectionDAG::getConvertRndSat(EVT VT, SDLoc dl,
Dale Johannesen3a09f552009-02-03 23:04:43 +00001581 SDValue Val, SDValue DTy,
1582 SDValue STy, SDValue Rnd, SDValue Sat,
1583 ISD::CvtCode Code) {
Mon P Wang3f0e0a62009-02-05 04:47:42 +00001584 // If the src and dest types are the same and the conversion is between
1585 // integer types of the same sign or two floats, no conversion is necessary.
1586 if (DTy == STy &&
1587 (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001588 return Val;
1589
1590 FoldingSetNodeID ID;
Mon P Wangfc032ce2009-11-07 04:46:25 +00001591 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
Craig Topper633d99b2014-04-27 23:22:43 +00001592 AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00001593 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001594 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001595 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001596
Jack Carter170a5f22013-09-09 22:02:08 +00001597 CvtRndSatSDNode *N = new (NodeAllocator) CvtRndSatSDNode(VT, dl.getIROrder(),
1598 dl.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00001599 Ops, Code);
Dale Johannesen3a09f552009-02-03 23:04:43 +00001600 CSEMap.InsertNode(N, IP);
1601 AllNodes.push_back(N);
1602 return SDValue(N, 0);
1603}
1604
Owen Anderson53aa7a92009-08-10 22:56:29 +00001605SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001606 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001607 AddNodeIDNode(ID, ISD::Register, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001608 ID.AddInteger(RegNo);
Craig Topperc0196b12014-04-14 00:51:57 +00001609 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001610 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001611 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001612
Dan Gohman01c65a22010-03-18 18:49:47 +00001613 SDNode *N = new (NodeAllocator) RegisterSDNode(RegNo, VT);
Chris Lattner3f16b202006-08-11 21:01:22 +00001614 CSEMap.InsertNode(N, IP);
1615 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001616 return SDValue(N, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +00001617}
1618
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001619SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
1620 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001621 AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None);
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001622 ID.AddPointer(RegMask);
Craig Topperc0196b12014-04-14 00:51:57 +00001623 void *IP = nullptr;
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001624 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1625 return SDValue(E, 0);
1626
1627 SDNode *N = new (NodeAllocator) RegisterMaskSDNode(RegMask);
1628 CSEMap.InsertNode(N, IP);
1629 AllNodes.push_back(N);
1630 return SDValue(N, 0);
1631}
1632
Andrew Trickef9de2a2013-05-25 02:42:55 +00001633SDValue SelectionDAG::getEHLabel(SDLoc dl, SDValue Root, MCSymbol *Label) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00001634 FoldingSetNodeID ID;
1635 SDValue Ops[] = { Root };
Craig Topper633d99b2014-04-27 23:22:43 +00001636 AddNodeIDNode(ID, ISD::EH_LABEL, getVTList(MVT::Other), Ops);
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001637 ID.AddPointer(Label);
Craig Topperc0196b12014-04-14 00:51:57 +00001638 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001639 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00001640 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001641
Jack Carter170a5f22013-09-09 22:02:08 +00001642 SDNode *N = new (NodeAllocator) EHLabelSDNode(dl.getIROrder(),
1643 dl.getDebugLoc(), Root, Label);
Dale Johannesen839acbb2009-01-29 00:47:48 +00001644 CSEMap.InsertNode(N, IP);
1645 AllNodes.push_back(N);
1646 return SDValue(N, 0);
1647}
1648
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001649
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001650SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
Michael Liaoabb87d42012-09-12 21:43:09 +00001651 int64_t Offset,
Dan Gohman7a6611792009-11-20 23:18:13 +00001652 bool isTarget,
1653 unsigned char TargetFlags) {
Dan Gohman6c938802009-10-30 01:27:03 +00001654 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1655
1656 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001657 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Dan Gohman6c938802009-10-30 01:27:03 +00001658 ID.AddPointer(BA);
Michael Liaoabb87d42012-09-12 21:43:09 +00001659 ID.AddInteger(Offset);
Dan Gohman7a6611792009-11-20 23:18:13 +00001660 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001661 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001662 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman6c938802009-10-30 01:27:03 +00001663 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001664
Michael Liaoabb87d42012-09-12 21:43:09 +00001665 SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset,
1666 TargetFlags);
Dan Gohman6c938802009-10-30 01:27:03 +00001667 CSEMap.InsertNode(N, IP);
1668 AllNodes.push_back(N);
1669 return SDValue(N, 0);
1670}
1671
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001672SDValue SelectionDAG::getSrcValue(const Value *V) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001673 assert((!V || V->getType()->isPointerTy()) &&
Chris Lattner3f16b202006-08-11 21:01:22 +00001674 "SrcValue is not a pointer?");
1675
Jim Laskeyf576b422006-10-27 23:46:08 +00001676 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001677 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001678 ID.AddPointer(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001679
Craig Topperc0196b12014-04-14 00:51:57 +00001680 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001681 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001682 return SDValue(E, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001683
Dan Gohman01c65a22010-03-18 18:49:47 +00001684 SDNode *N = new (NodeAllocator) SrcValueSDNode(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001685 CSEMap.InsertNode(N, IP);
1686 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001687 return SDValue(N, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001688}
1689
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001690/// getMDNode - Return an MDNodeSDNode which holds an MDNode.
1691SDValue SelectionDAG::getMDNode(const MDNode *MD) {
1692 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001693 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001694 ID.AddPointer(MD);
Wesley Peck527da1b2010-11-23 03:31:01 +00001695
Craig Topperc0196b12014-04-14 00:51:57 +00001696 void *IP = nullptr;
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001697 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1698 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001699
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001700 SDNode *N = new (NodeAllocator) MDNodeSDNode(MD);
1701 CSEMap.InsertNode(N, IP);
1702 AllNodes.push_back(N);
1703 return SDValue(N, 0);
1704}
1705
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001706/// getAddrSpaceCast - Return an AddrSpaceCastSDNode.
1707SDValue SelectionDAG::getAddrSpaceCast(SDLoc dl, EVT VT, SDValue Ptr,
1708 unsigned SrcAS, unsigned DestAS) {
1709 SDValue Ops[] = {Ptr};
1710 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001711 AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001712 ID.AddInteger(SrcAS);
1713 ID.AddInteger(DestAS);
1714
Craig Topperc0196b12014-04-14 00:51:57 +00001715 void *IP = nullptr;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001716 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1717 return SDValue(E, 0);
1718
1719 SDNode *N = new (NodeAllocator) AddrSpaceCastSDNode(dl.getIROrder(),
1720 dl.getDebugLoc(),
1721 VT, Ptr, SrcAS, DestAS);
1722 CSEMap.InsertNode(N, IP);
1723 AllNodes.push_back(N);
1724 return SDValue(N, 0);
1725}
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001726
Duncan Sands41826032009-01-31 15:50:11 +00001727/// getShiftAmountOperand - Return the specified value casted to
1728/// the target's desired shift amount type.
Owen Andersoncd526fa2011-03-07 18:29:47 +00001729SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001730 EVT OpTy = Op.getValueType();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001731 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);
Duncan Sands41826032009-01-31 15:50:11 +00001732 if (OpTy == ShTy || OpTy.isVector()) return Op;
1733
1734 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001735 return getNode(Opcode, SDLoc(Op), ShTy, Op);
Duncan Sands41826032009-01-31 15:50:11 +00001736}
1737
Chris Lattner9eb7a822007-10-15 17:47:20 +00001738/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1739/// specified value type.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001740SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
Chris Lattner9eb7a822007-10-15 17:47:20 +00001741 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Dan Gohman203d53e2009-09-23 21:07:02 +00001742 unsigned ByteSize = VT.getStoreSize();
Chris Lattner229907c2011-07-18 04:54:35 +00001743 Type *Ty = VT.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001744 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang5c755ff2008-07-05 20:40:31 +00001745 unsigned StackAlign =
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001746 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001747
David Greene1fbe0542009-11-12 20:49:22 +00001748 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001749 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Chris Lattner9eb7a822007-10-15 17:47:20 +00001750}
1751
Duncan Sands445071c2008-12-09 21:33:20 +00001752/// CreateStackTemporary - Create a stack temporary suitable for holding
1753/// either of the specified value types.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001754SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
Duncan Sands445071c2008-12-09 21:33:20 +00001755 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1756 VT2.getStoreSizeInBits())/8;
Chris Lattner229907c2011-07-18 04:54:35 +00001757 Type *Ty1 = VT1.getTypeForEVT(*getContext());
1758 Type *Ty2 = VT2.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001759 const TargetLowering *TLI = TM.getTargetLowering();
1760 const DataLayout *TD = TLI->getDataLayout();
Duncan Sands445071c2008-12-09 21:33:20 +00001761 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1762 TD->getPrefTypeAlignment(Ty2));
1763
1764 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00001765 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001766 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Duncan Sands445071c2008-12-09 21:33:20 +00001767}
1768
Owen Anderson53aa7a92009-08-10 22:56:29 +00001769SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001770 SDValue N2, ISD::CondCode Cond, SDLoc dl) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00001771 // These setcc operations always fold.
1772 switch (Cond) {
1773 default: break;
1774 case ISD::SETFALSE:
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001775 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001776 case ISD::SETTRUE:
Tim Northover950fcc02013-09-06 12:38:12 +00001777 case ISD::SETTRUE2: {
1778 const TargetLowering *TLI = TM.getTargetLowering();
1779 TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector());
1780 return getConstant(
1781 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
1782 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001783
Chris Lattner393d96a2006-04-27 05:01:07 +00001784 case ISD::SETOEQ:
1785 case ISD::SETOGT:
1786 case ISD::SETOGE:
1787 case ISD::SETOLT:
1788 case ISD::SETOLE:
1789 case ISD::SETONE:
1790 case ISD::SETO:
1791 case ISD::SETUO:
1792 case ISD::SETUEQ:
1793 case ISD::SETUNE:
Duncan Sands13237ac2008-06-06 12:08:01 +00001794 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattner393d96a2006-04-27 05:01:07 +00001795 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001796 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001797
Gabor Greiff304a7a2008-08-28 21:40:38 +00001798 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001799 const APInt &C2 = N2C->getAPIntValue();
Gabor Greiff304a7a2008-08-28 21:40:38 +00001800 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001801 const APInt &C1 = N1C->getAPIntValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001802
Chris Lattner061a1ea2005-01-07 07:46:32 +00001803 switch (Cond) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001804 default: llvm_unreachable("Unknown integer setcc!");
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001805 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1806 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001807 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1808 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1809 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1810 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1811 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1812 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1813 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1814 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001815 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001816 }
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001817 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00001818 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1819 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001820 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattner061a1ea2005-01-07 07:46:32 +00001821 switch (Cond) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001822 default: break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001823 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001824 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001825 // fall through
1826 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001827 case ISD::SETNE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001828 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001829 // fall through
1830 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001831 R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001832 case ISD::SETLT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001833 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001834 // fall through
1835 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001836 case ISD::SETGT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001837 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001838 // fall through
1839 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001840 case ISD::SETLE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001841 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001842 // fall through
1843 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001844 R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001845 case ISD::SETGE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001846 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001847 // fall through
1848 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001849 R==APFloat::cmpEqual, VT);
1850 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1851 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1852 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1853 R==APFloat::cmpEqual, VT);
1854 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1855 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1856 R==APFloat::cmpLessThan, VT);
1857 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1858 R==APFloat::cmpUnordered, VT);
1859 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1860 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001861 }
1862 } else {
1863 // Ensure that the constant occurs on the RHS.
Tom Stellardcd428182013-09-28 02:50:38 +00001864 ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond);
1865 MVT CompVT = N1.getValueType().getSimpleVT();
1866 if (!TM.getTargetLowering()->isCondCodeLegal(SwappedCond, CompVT))
1867 return SDValue();
1868
1869 return getSetCC(dl, VT, N2, N1, SwappedCond);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001870 }
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001871 }
1872
Chris Lattnerd47675e2005-08-09 20:20:18 +00001873 // Could not fold it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001874 return SDValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001875}
1876
Dan Gohman1f372ed2008-02-25 21:11:39 +00001877/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1878/// use this predicate to simplify operations downstream.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001879bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Chris Lattnerf3989ab2009-07-07 23:28:46 +00001880 // This predicate is not safe for vector operations.
1881 if (Op.getValueType().isVector())
1882 return false;
Eric Christopherdfda92b2009-08-22 00:40:45 +00001883
Dan Gohman1d459e42009-12-11 21:31:27 +00001884 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman1f372ed2008-02-25 21:11:39 +00001885 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1886}
1887
Dan Gohman309d3d52007-06-22 14:59:07 +00001888/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1889/// this predicate to simplify operations downstream. Mask is known to be zero
1890/// for bits that V cannot have.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001891bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohman309d3d52007-06-22 14:59:07 +00001892 unsigned Depth) const {
Dan Gohman1f372ed2008-02-25 21:11:39 +00001893 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001894 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001895 return (KnownZero & Mask) == Mask;
1896}
1897
Jay Foada0653a32014-05-14 21:14:37 +00001898/// Determine which bits of Op are known to be either zero or one and return
1899/// them in the KnownZero/KnownOne bitsets.
1900void SelectionDAG::computeKnownBits(SDValue Op, APInt &KnownZero,
1901 APInt &KnownOne, unsigned Depth) const {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001902 const TargetLowering *TLI = TM.getTargetLowering();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001903 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman7e22a5d2008-02-13 23:13:32 +00001904
Dan Gohmanf990faf2008-02-13 00:35:47 +00001905 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001906 if (Depth == 6)
Dan Gohman309d3d52007-06-22 14:59:07 +00001907 return; // Limit search depth.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001908
Dan Gohmanf990faf2008-02-13 00:35:47 +00001909 APInt KnownZero2, KnownOne2;
Dan Gohman309d3d52007-06-22 14:59:07 +00001910
1911 switch (Op.getOpcode()) {
1912 case ISD::Constant:
1913 // We know all of the bits for a constant!
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001914 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue();
1915 KnownZero = ~KnownOne;
Jay Foad5a29c362014-05-15 12:12:55 +00001916 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001917 case ISD::AND:
1918 // If either the LHS or the RHS are Zero, the result is zero.
Jay Foada0653a32014-05-14 21:14:37 +00001919 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1920 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001921
1922 // Output known-1 bits are only known if set in both the LHS & RHS.
1923 KnownOne &= KnownOne2;
1924 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1925 KnownZero |= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001926 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001927 case ISD::OR:
Jay Foada0653a32014-05-14 21:14:37 +00001928 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1929 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001930
Dan Gohman309d3d52007-06-22 14:59:07 +00001931 // Output known-0 bits are only known if clear in both the LHS & RHS.
1932 KnownZero &= KnownZero2;
1933 // Output known-1 are known to be set if set in either the LHS | RHS.
1934 KnownOne |= KnownOne2;
Jay Foad5a29c362014-05-15 12:12:55 +00001935 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001936 case ISD::XOR: {
Jay Foada0653a32014-05-14 21:14:37 +00001937 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1938 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001939
Dan Gohman309d3d52007-06-22 14:59:07 +00001940 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001941 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohman309d3d52007-06-22 14:59:07 +00001942 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1943 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1944 KnownZero = KnownZeroOut;
Jay Foad5a29c362014-05-15 12:12:55 +00001945 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001946 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00001947 case ISD::MUL: {
Jay Foada0653a32014-05-14 21:14:37 +00001948 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1949 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001950
1951 // If low bits are zero in either operand, output low known-0 bits.
1952 // Also compute a conserative estimate for high known-0 bits.
1953 // More trickiness is possible, but this is sufficient for the
1954 // interesting case of alignment computation.
Jay Foad25a5e4c2010-12-01 08:53:58 +00001955 KnownOne.clearAllBits();
Dan Gohman72ec3f42008-04-28 17:02:21 +00001956 unsigned TrailZ = KnownZero.countTrailingOnes() +
1957 KnownZero2.countTrailingOnes();
1958 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman5a3eecd2008-05-07 00:35:55 +00001959 KnownZero2.countLeadingOnes(),
1960 BitWidth) - BitWidth;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001961
1962 TrailZ = std::min(TrailZ, BitWidth);
1963 LeadZ = std::min(LeadZ, BitWidth);
1964 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1965 APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001966 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001967 }
1968 case ISD::UDIV: {
1969 // For the purposes of computing leading zeros we can conservatively
1970 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1962c2b2008-05-02 21:30:02 +00001971 // be less than the denominator.
Jay Foada0653a32014-05-14 21:14:37 +00001972 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001973 unsigned LeadZ = KnownZero2.countLeadingOnes();
1974
Jay Foad25a5e4c2010-12-01 08:53:58 +00001975 KnownOne2.clearAllBits();
1976 KnownZero2.clearAllBits();
Jay Foada0653a32014-05-14 21:14:37 +00001977 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman1962c2b2008-05-02 21:30:02 +00001978 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1979 if (RHSUnknownLeadingOnes != BitWidth)
1980 LeadZ = std::min(BitWidth,
1981 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001982
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001983 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001984 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001985 }
Dan Gohman309d3d52007-06-22 14:59:07 +00001986 case ISD::SELECT:
Jay Foada0653a32014-05-14 21:14:37 +00001987 computeKnownBits(Op.getOperand(2), KnownZero, KnownOne, Depth+1);
1988 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001989
Dan Gohman309d3d52007-06-22 14:59:07 +00001990 // Only known if known in both the LHS and RHS.
1991 KnownOne &= KnownOne2;
1992 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001993 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001994 case ISD::SELECT_CC:
Jay Foada0653a32014-05-14 21:14:37 +00001995 computeKnownBits(Op.getOperand(3), KnownZero, KnownOne, Depth+1);
1996 computeKnownBits(Op.getOperand(2), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001997
Dan Gohman309d3d52007-06-22 14:59:07 +00001998 // Only known if known in both the LHS and RHS.
1999 KnownOne &= KnownOne2;
2000 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00002001 break;
Bill Wendling5424e6d2008-11-22 07:24:01 +00002002 case ISD::SADDO:
2003 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00002004 case ISD::SSUBO:
2005 case ISD::USUBO:
2006 case ISD::SMULO:
2007 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00002008 if (Op.getResNo() != 1)
Jay Foad5a29c362014-05-15 12:12:55 +00002009 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002010 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00002011 case ISD::SETCC:
2012 // If we know the result of a setcc has the top bits zero, use this info.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002013 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00002014 TargetLowering::ZeroOrOneBooleanContent && BitWidth > 1)
Dan Gohmanf990faf2008-02-13 00:35:47 +00002015 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00002016 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002017 case ISD::SHL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002018 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00002019 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002020 unsigned ShAmt = SA->getZExtValue();
Dan Gohman9db0aa82008-02-26 18:50:50 +00002021
2022 // If the shift count is an invalid immediate, don't do anything.
2023 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002024 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002025
Jay Foada0653a32014-05-14 21:14:37 +00002026 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohman9db0aa82008-02-26 18:50:50 +00002027 KnownZero <<= ShAmt;
2028 KnownOne <<= ShAmt;
Dan Gohmanf990faf2008-02-13 00:35:47 +00002029 // low bits known zero.
Dan Gohman9db0aa82008-02-26 18:50:50 +00002030 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002031 }
Jay Foad5a29c362014-05-15 12:12:55 +00002032 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002033 case ISD::SRL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002034 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00002035 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002036 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002037
Dan Gohman9db0aa82008-02-26 18:50:50 +00002038 // If the shift count is an invalid immediate, don't do anything.
2039 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002040 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002041
Jay Foada0653a32014-05-14 21:14:37 +00002042 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002043 KnownZero = KnownZero.lshr(ShAmt);
2044 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002045
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002046 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002047 KnownZero |= HighBits; // High bits known zero.
2048 }
Jay Foad5a29c362014-05-15 12:12:55 +00002049 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002050 case ISD::SRA:
2051 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002052 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002053
Dan Gohman9db0aa82008-02-26 18:50:50 +00002054 // If the shift count is an invalid immediate, don't do anything.
2055 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002056 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002057
Dan Gohman309d3d52007-06-22 14:59:07 +00002058 // If any of the demanded bits are produced by the sign extension, we also
2059 // demand the input sign bit.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002060 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002061
Jay Foada0653a32014-05-14 21:14:37 +00002062 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002063 KnownZero = KnownZero.lshr(ShAmt);
2064 KnownOne = KnownOne.lshr(ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002065
Dan Gohman309d3d52007-06-22 14:59:07 +00002066 // Handle the sign bits.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002067 APInt SignBit = APInt::getSignBit(BitWidth);
2068 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002069
Dan Gohmanb717fda2008-02-20 16:30:17 +00002070 if (KnownZero.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002071 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002072 } else if (KnownOne.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002073 KnownOne |= HighBits; // New bits are known one.
2074 }
2075 }
Jay Foad5a29c362014-05-15 12:12:55 +00002076 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002077 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002078 EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002079 unsigned EBits = EVT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002080
2081 // Sign extension. Compute the demanded bits in the result that are not
Dan Gohman309d3d52007-06-22 14:59:07 +00002082 // present in the input.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002083 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002084
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002085 APInt InSignBit = APInt::getSignBit(EBits);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002086 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002087
Dan Gohman309d3d52007-06-22 14:59:07 +00002088 // If the sign extended bits are demanded, we know that the sign
2089 // bit is demanded.
Jay Foad583abbc2010-12-07 08:25:19 +00002090 InSignBit = InSignBit.zext(BitWidth);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002091 if (NewBits.getBoolValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002092 InputDemandedBits |= InSignBit;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002093
Jay Foada0653a32014-05-14 21:14:37 +00002094 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002095 KnownOne &= InputDemandedBits;
2096 KnownZero &= InputDemandedBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002097
Dan Gohman309d3d52007-06-22 14:59:07 +00002098 // If the sign bit of the input is known set or clear, then we know the
2099 // top bits of the result.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002100 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohman309d3d52007-06-22 14:59:07 +00002101 KnownZero |= NewBits;
2102 KnownOne &= ~NewBits;
Dan Gohmanb717fda2008-02-20 16:30:17 +00002103 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohman309d3d52007-06-22 14:59:07 +00002104 KnownOne |= NewBits;
2105 KnownZero &= ~NewBits;
2106 } else { // Input sign bit unknown
2107 KnownZero &= ~NewBits;
2108 KnownOne &= ~NewBits;
2109 }
Jay Foad5a29c362014-05-15 12:12:55 +00002110 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002111 }
2112 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002113 case ISD::CTTZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002114 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002115 case ISD::CTLZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002116 case ISD::CTPOP: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00002117 unsigned LowBits = Log2_32(BitWidth)+1;
2118 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Jay Foad25a5e4c2010-12-01 08:53:58 +00002119 KnownOne.clearAllBits();
Jay Foad5a29c362014-05-15 12:12:55 +00002120 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002121 }
2122 case ISD::LOAD: {
Rafael Espindola80c540e2012-03-31 18:14:00 +00002123 LoadSDNode *LD = cast<LoadSDNode>(Op);
Nadav Rotem4536d582013-03-20 22:53:44 +00002124 // If this is a ZEXTLoad and we are looking at the loaded value.
2125 if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002126 EVT VT = LD->getMemoryVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002127 unsigned MemBits = VT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002128 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
Rafael Espindola80c540e2012-03-31 18:14:00 +00002129 } else if (const MDNode *Ranges = LD->getRanges()) {
Jingyue Wu37fcb592014-06-19 16:50:16 +00002130 computeKnownBitsFromRangeMetadata(*Ranges, KnownZero);
Dan Gohman309d3d52007-06-22 14:59:07 +00002131 }
Jay Foad5a29c362014-05-15 12:12:55 +00002132 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002133 }
2134 case ISD::ZERO_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002135 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002136 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002137 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Jay Foad583abbc2010-12-07 08:25:19 +00002138 KnownZero = KnownZero.trunc(InBits);
2139 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002140 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002141 KnownZero = KnownZero.zext(BitWidth);
2142 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002143 KnownZero |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002144 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002145 }
2146 case ISD::SIGN_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002147 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002148 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002149 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002150
Jay Foad583abbc2010-12-07 08:25:19 +00002151 KnownZero = KnownZero.trunc(InBits);
2152 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002153 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002154
2155 // Note if the sign bit is known to be zero or one.
2156 bool SignBitKnownZero = KnownZero.isNegative();
2157 bool SignBitKnownOne = KnownOne.isNegative();
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002158
Jay Foad583abbc2010-12-07 08:25:19 +00002159 KnownZero = KnownZero.zext(BitWidth);
2160 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002161
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002162 // If the sign bit is known zero or one, the top bits match.
2163 if (SignBitKnownZero)
Dan Gohman309d3d52007-06-22 14:59:07 +00002164 KnownZero |= NewBits;
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002165 else if (SignBitKnownOne)
Dan Gohman309d3d52007-06-22 14:59:07 +00002166 KnownOne |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002167 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002168 }
2169 case ISD::ANY_EXTEND: {
Evan Cheng9ec512d2012-12-06 19:13:27 +00002170 EVT InVT = Op.getOperand(0).getValueType();
2171 unsigned InBits = InVT.getScalarType().getSizeInBits();
2172 KnownZero = KnownZero.trunc(InBits);
2173 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002174 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Evan Cheng9ec512d2012-12-06 19:13:27 +00002175 KnownZero = KnownZero.zext(BitWidth);
2176 KnownOne = KnownOne.zext(BitWidth);
Jay Foad5a29c362014-05-15 12:12:55 +00002177 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002178 }
2179 case ISD::TRUNCATE: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002180 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002181 unsigned InBits = InVT.getScalarType().getSizeInBits();
Jay Foad583abbc2010-12-07 08:25:19 +00002182 KnownZero = KnownZero.zext(InBits);
2183 KnownOne = KnownOne.zext(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002184 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002185 KnownZero = KnownZero.trunc(BitWidth);
2186 KnownOne = KnownOne.trunc(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00002187 break;
2188 }
2189 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002190 EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Duncan Sands13237ac2008-06-06 12:08:01 +00002191 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Jay Foada0653a32014-05-14 21:14:37 +00002192 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002193 KnownZero |= (~InMask);
Nadav Rotem839a06e2012-07-16 18:34:53 +00002194 KnownOne &= (~KnownZero);
Jay Foad5a29c362014-05-15 12:12:55 +00002195 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002196 }
Chris Lattnerafc8f132007-12-22 21:26:52 +00002197 case ISD::FGETSIGN:
2198 // All bits are zero except the low bit.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002199 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00002200 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002201
Dan Gohman72ec3f42008-04-28 17:02:21 +00002202 case ISD::SUB: {
2203 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
2204 // We know that the top bits of C-X are clear if X contains less bits
2205 // than C (i.e. no wrap-around can happen). For example, 20-X is
2206 // positive if we can prove that X is >= 0 and < 16.
2207 if (CLHS->getAPIntValue().isNonNegative()) {
2208 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
2209 // NLZ can't be BitWidth with no sign bit
2210 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Jay Foada0653a32014-05-14 21:14:37 +00002211 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002212
2213 // If all of the MaskV bits are known to be zero, then we know the
2214 // output top bits are zero, because we now know that the output is
2215 // from [0-C].
2216 if ((KnownZero2 & MaskV) == MaskV) {
2217 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
2218 // Top bits known zero.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002219 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002220 }
2221 }
2222 }
2223 }
2224 // fall through
Chris Lattner440b2802010-12-19 20:38:28 +00002225 case ISD::ADD:
2226 case ISD::ADDE: {
Dan Gohman309d3d52007-06-22 14:59:07 +00002227 // Output known-0 bits are known if clear or set in both the low clear bits
2228 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
2229 // low 3 bits clear.
Jay Foada0653a32014-05-14 21:14:37 +00002230 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002231 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
2232
Jay Foada0653a32014-05-14 21:14:37 +00002233 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002234 KnownZeroOut = std::min(KnownZeroOut,
2235 KnownZero2.countTrailingOnes());
2236
Chris Lattner440b2802010-12-19 20:38:28 +00002237 if (Op.getOpcode() == ISD::ADD) {
2238 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002239 break;
Chris Lattner440b2802010-12-19 20:38:28 +00002240 }
2241
2242 // With ADDE, a carry bit may be added in, so we can only use this
2243 // information if we know (at least) that the low two bits are clear. We
2244 // then return to the caller that the low bit is unknown but that other bits
2245 // are known zero.
2246 if (KnownZeroOut >= 2) // ADDE
2247 KnownZero |= APInt::getBitsSet(BitWidth, 1, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002248 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002249 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00002250 case ISD::SREM:
2251 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands33274982010-01-29 09:45:26 +00002252 const APInt &RA = Rem->getAPIntValue().abs();
2253 if (RA.isPowerOf2()) {
2254 APInt LowBits = RA - 1;
Jay Foada0653a32014-05-14 21:14:37 +00002255 computeKnownBits(Op.getOperand(0), KnownZero2,KnownOne2,Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002256
Duncan Sands33274982010-01-29 09:45:26 +00002257 // The low bits of the first operand are unchanged by the srem.
2258 KnownZero = KnownZero2 & LowBits;
2259 KnownOne = KnownOne2 & LowBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002260
Duncan Sands33274982010-01-29 09:45:26 +00002261 // If the first operand is non-negative or has all low bits zero, then
2262 // the upper bits are all zero.
2263 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
2264 KnownZero |= ~LowBits;
2265
2266 // If the first operand is negative and not all low bits are zero, then
2267 // the upper bits are all one.
2268 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
2269 KnownOne |= ~LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002270 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002271 }
2272 }
Jay Foad5a29c362014-05-15 12:12:55 +00002273 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002274 case ISD::UREM: {
2275 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf3c4d7f2008-07-03 00:52:03 +00002276 const APInt &RA = Rem->getAPIntValue();
Dan Gohmancf0e3ac2008-05-06 00:51:48 +00002277 if (RA.isPowerOf2()) {
2278 APInt LowBits = (RA - 1);
Rafael Espindola92945ee2014-05-30 15:00:45 +00002279 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth + 1);
2280
2281 // The upper bits are all zero, the lower ones are unchanged.
2282 KnownZero = KnownZero2 | ~LowBits;
2283 KnownOne = KnownOne2 & LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002284 break;
2285 }
2286 }
2287
2288 // Since the result is less than or equal to either operand, any leading
2289 // zero bits in either operand must also exist in the result.
Jay Foada0653a32014-05-14 21:14:37 +00002290 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
2291 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002292
2293 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
2294 KnownZero2.countLeadingOnes());
Jay Foad25a5e4c2010-12-01 08:53:58 +00002295 KnownOne.clearAllBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002296 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders);
Jay Foad5a29c362014-05-15 12:12:55 +00002297 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002298 }
Chris Lattner46c01a32011-02-13 22:25:43 +00002299 case ISD::FrameIndex:
2300 case ISD::TargetFrameIndex:
2301 if (unsigned Align = InferPtrAlignment(Op)) {
2302 // The low bits are known zero if the pointer is aligned.
2303 KnownZero = APInt::getLowBitsSet(BitWidth, Log2_32(Align));
Jay Foad5a29c362014-05-15 12:12:55 +00002304 break;
Chris Lattner46c01a32011-02-13 22:25:43 +00002305 }
2306 break;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002307
Dan Gohman309d3d52007-06-22 14:59:07 +00002308 default:
Evan Cheng88f91372011-05-24 01:48:22 +00002309 if (Op.getOpcode() < ISD::BUILTIN_OP_END)
2310 break;
2311 // Fallthrough
Dan Gohman309d3d52007-06-22 14:59:07 +00002312 case ISD::INTRINSIC_WO_CHAIN:
2313 case ISD::INTRINSIC_W_CHAIN:
2314 case ISD::INTRINSIC_VOID:
Evan Cheng88f91372011-05-24 01:48:22 +00002315 // Allow the target to implement this method for its nodes.
Jay Foada0653a32014-05-14 21:14:37 +00002316 TLI->computeKnownBitsForTargetNode(Op, KnownZero, KnownOne, *this, Depth);
Jay Foad5a29c362014-05-15 12:12:55 +00002317 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002318 }
Jay Foad5a29c362014-05-15 12:12:55 +00002319
2320 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002321}
2322
2323/// ComputeNumSignBits - Return the number of times the sign bit of the
2324/// register is replicated into the other bits. We know that at least 1 bit
2325/// is always equal to the sign bit (itself), but other cases can give us
2326/// information. For example, immediately after an "SRA X, 2", we know that
2327/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002328unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002329 const TargetLowering *TLI = TM.getTargetLowering();
Owen Anderson53aa7a92009-08-10 22:56:29 +00002330 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00002331 assert(VT.isInteger() && "Invalid VT!");
Dan Gohman1d459e42009-12-11 21:31:27 +00002332 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002333 unsigned Tmp, Tmp2;
Dan Gohman6d5f1202008-05-23 02:28:01 +00002334 unsigned FirstAnswer = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002335
Dan Gohman309d3d52007-06-22 14:59:07 +00002336 if (Depth == 6)
2337 return 1; // Limit search depth.
2338
2339 switch (Op.getOpcode()) {
2340 default: break;
2341 case ISD::AssertSext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002342 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002343 return VTBits-Tmp+1;
2344 case ISD::AssertZext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002345 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002346 return VTBits-Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002347
Dan Gohman309d3d52007-06-22 14:59:07 +00002348 case ISD::Constant: {
Dan Gohman10f34072008-03-03 23:35:36 +00002349 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
Cameron Zwarich3cf92802011-02-24 10:00:20 +00002350 return Val.getNumSignBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002351 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002352
Dan Gohman309d3d52007-06-22 14:59:07 +00002353 case ISD::SIGN_EXTEND:
Jack Carter170a5f22013-09-09 22:02:08 +00002354 Tmp =
2355 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002356 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002357
Dan Gohman309d3d52007-06-22 14:59:07 +00002358 case ISD::SIGN_EXTEND_INREG:
2359 // Max of the input and what this extends.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002360 Tmp =
2361 cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002362 Tmp = VTBits-Tmp+1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002363
Dan Gohman309d3d52007-06-22 14:59:07 +00002364 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2365 return std::max(Tmp, Tmp2);
2366
2367 case ISD::SRA:
2368 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2369 // SRA X, C -> adds C sign bits.
2370 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002371 Tmp += C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002372 if (Tmp > VTBits) Tmp = VTBits;
2373 }
2374 return Tmp;
2375 case ISD::SHL:
2376 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2377 // shl destroys sign bits.
2378 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmaneffb8942008-09-12 16:56:44 +00002379 if (C->getZExtValue() >= VTBits || // Bad shift.
2380 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
2381 return Tmp - C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002382 }
2383 break;
2384 case ISD::AND:
2385 case ISD::OR:
2386 case ISD::XOR: // NOT is handled here.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002387 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohman309d3d52007-06-22 14:59:07 +00002388 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002389 if (Tmp != 1) {
2390 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2391 FirstAnswer = std::min(Tmp, Tmp2);
2392 // We computed what we know about the sign bits as our first
2393 // answer. Now proceed to the generic code that uses
Jay Foada0653a32014-05-14 21:14:37 +00002394 // computeKnownBits, and pick whichever answer is better.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002395 }
2396 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002397
2398 case ISD::SELECT:
Dan Gohmanfe136182008-05-20 20:59:51 +00002399 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002400 if (Tmp == 1) return 1; // Early out.
Dan Gohmanfe136182008-05-20 20:59:51 +00002401 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002402 return std::min(Tmp, Tmp2);
Bill Wendling5424e6d2008-11-22 07:24:01 +00002403
2404 case ISD::SADDO:
2405 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00002406 case ISD::SSUBO:
2407 case ISD::USUBO:
2408 case ISD::SMULO:
2409 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00002410 if (Op.getResNo() != 1)
2411 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002412 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00002413 case ISD::SETCC:
2414 // If setcc returns 0/-1, all bits are sign bits.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002415 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002416 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohman309d3d52007-06-22 14:59:07 +00002417 return VTBits;
2418 break;
2419 case ISD::ROTL:
2420 case ISD::ROTR:
2421 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002422 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002423
Dan Gohman309d3d52007-06-22 14:59:07 +00002424 // Handle rotate right by N like a rotate left by 32-N.
2425 if (Op.getOpcode() == ISD::ROTR)
2426 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2427
2428 // If we aren't rotating out all of the known-in sign bits, return the
2429 // number that are left. This handles rotl(sext(x), 1) for example.
2430 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2431 if (Tmp > RotAmt+1) return Tmp-RotAmt;
2432 }
2433 break;
2434 case ISD::ADD:
2435 // Add can have at most one carry bit. Thus we know that the output
2436 // is, at worst, one more bit than the inputs.
2437 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2438 if (Tmp == 1) return 1; // Early out.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002439
Dan Gohman309d3d52007-06-22 14:59:07 +00002440 // Special case decrementing a value (ADD X, -1):
Dan Gohman4f356bb2009-02-24 02:00:40 +00002441 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman309d3d52007-06-22 14:59:07 +00002442 if (CRHS->isAllOnesValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002443 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002444 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002445
Dan Gohman309d3d52007-06-22 14:59:07 +00002446 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2447 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002448 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002449 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002450
Dan Gohman309d3d52007-06-22 14:59:07 +00002451 // If we are subtracting one from a positive number, there is no carry
2452 // out of the result.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002453 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002454 return Tmp;
2455 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002456
Dan Gohman309d3d52007-06-22 14:59:07 +00002457 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2458 if (Tmp2 == 1) return 1;
David Blaikie46a9f012012-01-20 21:51:11 +00002459 return std::min(Tmp, Tmp2)-1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002460
Dan Gohman309d3d52007-06-22 14:59:07 +00002461 case ISD::SUB:
2462 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2463 if (Tmp2 == 1) return 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002464
Dan Gohman309d3d52007-06-22 14:59:07 +00002465 // Handle NEG.
2466 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohmanb72127a2008-03-13 22:13:53 +00002467 if (CLHS->isNullValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002468 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002469 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002470 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2471 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002472 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002473 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002474
Dan Gohman309d3d52007-06-22 14:59:07 +00002475 // If the input is known to be positive (the sign bit is known clear),
2476 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002477 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002478 return Tmp2;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002479
Dan Gohman309d3d52007-06-22 14:59:07 +00002480 // Otherwise, we treat this like a SUB.
2481 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002482
Dan Gohman309d3d52007-06-22 14:59:07 +00002483 // Sub can have at most one carry bit. Thus we know that the output
2484 // is, at worst, one more bit than the inputs.
2485 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2486 if (Tmp == 1) return 1; // Early out.
David Blaikie46a9f012012-01-20 21:51:11 +00002487 return std::min(Tmp, Tmp2)-1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002488 case ISD::TRUNCATE:
2489 // FIXME: it's tricky to do anything useful for this, but it is an important
2490 // case for targets like X86.
2491 break;
2492 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002493
Nadav Rotem4536d582013-03-20 22:53:44 +00002494 // If we are looking at the loaded value of the SDNode.
2495 if (Op.getResNo() == 0) {
2496 // Handle LOADX separately here. EXTLOAD case will fallthrough.
2497 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
2498 unsigned ExtType = LD->getExtensionType();
2499 switch (ExtType) {
2500 default: break;
2501 case ISD::SEXTLOAD: // '17' bits known
2502 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2503 return VTBits-Tmp+1;
2504 case ISD::ZEXTLOAD: // '16' bits known
2505 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2506 return VTBits-Tmp;
2507 }
Dan Gohman309d3d52007-06-22 14:59:07 +00002508 }
2509 }
2510
2511 // Allow the target to implement this method for its nodes.
2512 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00002513 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
Dan Gohman309d3d52007-06-22 14:59:07 +00002514 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2515 Op.getOpcode() == ISD::INTRINSIC_VOID) {
Matt Arsenaultcf6f6882014-04-04 20:13:13 +00002516 unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, *this, Depth);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002517 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002518 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002519
Dan Gohman309d3d52007-06-22 14:59:07 +00002520 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2521 // use this information.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002522 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002523 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002524
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002525 APInt Mask;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002526 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohman309d3d52007-06-22 14:59:07 +00002527 Mask = KnownZero;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002528 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002529 Mask = KnownOne;
2530 } else {
2531 // Nothing known.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002532 return FirstAnswer;
Dan Gohman309d3d52007-06-22 14:59:07 +00002533 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002534
Dan Gohman309d3d52007-06-22 14:59:07 +00002535 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2536 // the number of identical bits in the top of the input value.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002537 Mask = ~Mask;
2538 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002539 // Return # leading zeros. We use 'min' here in case Val was zero before
2540 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohman6d5f1202008-05-23 02:28:01 +00002541 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohman309d3d52007-06-22 14:59:07 +00002542}
2543
Chris Lattner46c01a32011-02-13 22:25:43 +00002544/// isBaseWithConstantOffset - Return true if the specified operand is an
2545/// ISD::ADD with a ConstantSDNode on the right-hand side, or if it is an
2546/// ISD::OR with a ConstantSDNode that is guaranteed to have the same
2547/// semantics as an ADD. This handles the equivalence:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002548/// X|Cst == X+Cst iff X&Cst = 0.
Chris Lattner46c01a32011-02-13 22:25:43 +00002549bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
2550 if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
2551 !isa<ConstantSDNode>(Op.getOperand(1)))
2552 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002553
2554 if (Op.getOpcode() == ISD::OR &&
Chris Lattner46c01a32011-02-13 22:25:43 +00002555 !MaskedValueIsZero(Op.getOperand(0),
2556 cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue()))
2557 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002558
Chris Lattner46c01a32011-02-13 22:25:43 +00002559 return true;
2560}
2561
2562
Dan Gohmand0d5e682009-09-03 20:34:31 +00002563bool SelectionDAG::isKnownNeverNaN(SDValue Op) const {
2564 // If we're told that NaNs won't happen, assume they won't.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002565 if (getTarget().Options.NoNaNsFPMath)
Dan Gohmand0d5e682009-09-03 20:34:31 +00002566 return true;
2567
2568 // If the value is a constant, we can obviously see if it is a NaN or not.
2569 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2570 return !C->getValueAPF().isNaN();
2571
2572 // TODO: Recognize more cases here.
2573
2574 return false;
2575}
Chris Lattnerbd9acad2006-10-14 00:41:01 +00002576
Dan Gohman38605212010-02-24 06:52:40 +00002577bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
2578 // If the value is a constant, we can obviously see if it is a zero or not.
2579 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2580 return !C->isZero();
2581
2582 // TODO: Recognize more cases here.
Evan Cheng88f91372011-05-24 01:48:22 +00002583 switch (Op.getOpcode()) {
2584 default: break;
2585 case ISD::OR:
2586 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2587 return !C->isNullValue();
2588 break;
2589 }
Dan Gohman38605212010-02-24 06:52:40 +00002590
2591 return false;
2592}
2593
2594bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
2595 // Check the obvious case.
2596 if (A == B) return true;
2597
2598 // For for negative and positive zero.
2599 if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
2600 if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
2601 if (CA->isZero() && CB->isZero()) return true;
2602
2603 // Otherwise they may not be equal.
2604 return false;
2605}
2606
Chris Lattner061a1ea2005-01-07 07:46:32 +00002607/// getNode - Gets or creates the specified node.
Chris Lattner600d3082003-08-11 14:57:33 +00002608///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002609SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00002610 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00002611 AddNodeIDNode(ID, Opcode, getVTList(VT), None);
Craig Topperc0196b12014-04-14 00:51:57 +00002612 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002613 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002614 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002615
Jack Carter170a5f22013-09-09 22:02:08 +00002616 SDNode *N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(),
2617 DL.getDebugLoc(), getVTList(VT));
Chris Lattnerfcb16472006-08-11 18:38:11 +00002618 CSEMap.InsertNode(N, IP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002619
Chris Lattnerfcb16472006-08-11 18:38:11 +00002620 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002621#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002622 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002623#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002624 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002625}
2626
Andrew Trickef9de2a2013-05-25 02:42:55 +00002627SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002628 EVT VT, SDValue Operand) {
Juergen Ributzkafcd2e942014-04-02 22:21:01 +00002629 // Constant fold unary operations with an integer constant operand. Even
2630 // opaque constant will be folded, because the folding of unary operations
2631 // doesn't create new constants with different values. Nevertheless, the
2632 // opaque flag is preserved during folding to prevent future folding with
2633 // other constants.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002634 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002635 const APInt &Val = C->getAPIntValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002636 switch (Opcode) {
2637 default: break;
Evan Cheng34173f02008-03-06 17:42:34 +00002638 case ISD::SIGN_EXTEND:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002639 return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), VT,
2640 C->isTargetOpcode(), C->isOpaque());
Chris Lattner8c393c22005-09-02 00:17:32 +00002641 case ISD::ANY_EXTEND:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002642 case ISD::ZERO_EXTEND:
Evan Cheng34173f02008-03-06 17:42:34 +00002643 case ISD::TRUNCATE:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002644 return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), VT,
2645 C->isTargetOpcode(), C->isOpaque());
Dale Johannesen7d67e542007-09-19 23:55:34 +00002646 case ISD::UINT_TO_FP:
2647 case ISD::SINT_TO_FP: {
Tim Northover29178a32013-01-22 09:46:31 +00002648 APFloat apf(EVTToAPFloatSemantics(VT),
2649 APInt::getNullValue(VT.getSizeInBits()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00002650 (void)apf.convertFromAPInt(Val,
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002651 Opcode==ISD::SINT_TO_FP,
2652 APFloat::rmNearestTiesToEven);
Dale Johannesen7d67e542007-09-19 23:55:34 +00002653 return getConstantFP(apf, VT);
2654 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002655 case ISD::BITCAST:
Owen Anderson9f944592009-08-11 20:47:22 +00002656 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Tim Northover29178a32013-01-22 09:46:31 +00002657 return getConstantFP(APFloat(APFloat::IEEEsingle, Val), VT);
Owen Anderson9f944592009-08-11 20:47:22 +00002658 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Tim Northover29178a32013-01-22 09:46:31 +00002659 return getConstantFP(APFloat(APFloat::IEEEdouble, Val), VT);
Chris Lattnera1874602005-12-23 05:30:37 +00002660 break;
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002661 case ISD::BSWAP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002662 return getConstant(Val.byteSwap(), VT, C->isTargetOpcode(),
2663 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002664 case ISD::CTPOP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002665 return getConstant(Val.countPopulation(), VT, C->isTargetOpcode(),
2666 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002667 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002668 case ISD::CTLZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002669 return getConstant(Val.countLeadingZeros(), VT, C->isTargetOpcode(),
2670 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002671 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002672 case ISD::CTTZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002673 return getConstant(Val.countTrailingZeros(), VT, C->isTargetOpcode(),
2674 C->isOpaque());
Chris Lattner061a1ea2005-01-07 07:46:32 +00002675 }
2676 }
2677
Dale Johannesen446b9002007-08-31 23:34:27 +00002678 // Constant fold unary operations with a floating point constant operand.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002679 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesen446b9002007-08-31 23:34:27 +00002680 APFloat V = C->getValueAPF(); // make copy
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002681 switch (Opcode) {
2682 case ISD::FNEG:
2683 V.changeSign();
2684 return getConstantFP(V, VT);
2685 case ISD::FABS:
2686 V.clearSign();
2687 return getConstantFP(V, VT);
2688 case ISD::FCEIL: {
2689 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
2690 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002691 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002692 break;
2693 }
2694 case ISD::FTRUNC: {
2695 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
2696 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002697 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002698 break;
2699 }
2700 case ISD::FFLOOR: {
2701 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
2702 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002703 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002704 break;
2705 }
2706 case ISD::FP_EXTEND: {
2707 bool ignored;
2708 // This can return overflow, underflow, or inexact; we don't care.
2709 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00002710 (void)V.convert(EVTToAPFloatSemantics(VT),
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002711 APFloat::rmNearestTiesToEven, &ignored);
2712 return getConstantFP(V, VT);
2713 }
2714 case ISD::FP_TO_SINT:
2715 case ISD::FP_TO_UINT: {
2716 integerPart x[2];
2717 bool ignored;
2718 assert(integerPartWidth >= 64);
2719 // FIXME need to be more flexible about rounding mode.
2720 APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(),
2721 Opcode==ISD::FP_TO_SINT,
2722 APFloat::rmTowardZero, &ignored);
2723 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
Dale Johannesen446b9002007-08-31 23:34:27 +00002724 break;
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002725 APInt api(VT.getSizeInBits(), x);
2726 return getConstant(api, VT);
2727 }
2728 case ISD::BITCAST:
2729 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2730 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2731 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2732 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2733 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002734 }
Dale Johannesen446b9002007-08-31 23:34:27 +00002735 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002736
Gabor Greiff304a7a2008-08-28 21:40:38 +00002737 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002738 switch (Opcode) {
Chris Lattner96e809c2005-01-21 18:01:22 +00002739 case ISD::TokenFactor:
Duncan Sands3d960942008-12-01 11:41:29 +00002740 case ISD::MERGE_VALUES:
Dan Gohman550c9af2008-08-14 20:04:46 +00002741 case ISD::CONCAT_VECTORS:
Duncan Sands3d960942008-12-01 11:41:29 +00002742 return Operand; // Factor, merge or concat of one node? No need.
Torok Edwinfbcc6632009-07-14 16:55:14 +00002743 case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
Chris Lattner18d67182007-04-09 05:23:13 +00002744 case ISD::FP_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002745 assert(VT.isFloatingPoint() &&
2746 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner52188502008-01-16 17:59:31 +00002747 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Dan Gohmancecad352009-12-14 23:40:38 +00002748 assert((!VT.isVector() ||
2749 VT.getVectorNumElements() ==
2750 Operand.getValueType().getVectorNumElements()) &&
2751 "Vector element count mismatch!");
Chris Lattner5c7bda42008-03-11 06:21:08 +00002752 if (Operand.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002753 return getUNDEF(VT);
Chris Lattner18d67182007-04-09 05:23:13 +00002754 break;
Chris Lattner5c7bda42008-03-11 06:21:08 +00002755 case ISD::SIGN_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002756 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002757 "Invalid SIGN_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002758 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002759 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2760 "Invalid sext node, dst < src!");
2761 assert((!VT.isVector() ||
2762 VT.getVectorNumElements() ==
2763 Operand.getValueType().getVectorNumElements()) &&
2764 "Vector element count mismatch!");
Nadav Rotem9450fcf2013-01-20 08:35:56 +00002765 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2766 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2767 else if (OpOpcode == ISD::UNDEF)
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002768 // sext(undef) = 0, because the top bits will all be the same.
2769 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002770 break;
2771 case ISD::ZERO_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002772 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002773 "Invalid ZERO_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002774 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002775 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2776 "Invalid zext node, dst < src!");
2777 assert((!VT.isVector() ||
2778 VT.getVectorNumElements() ==
2779 Operand.getValueType().getVectorNumElements()) &&
2780 "Vector element count mismatch!");
Chris Lattnerb32d9312005-04-07 19:43:53 +00002781 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Scott Michelcf0da6c2009-02-17 22:15:04 +00002782 return getNode(ISD::ZERO_EXTEND, DL, VT,
Dale Johannesendb393622009-02-03 01:55:44 +00002783 Operand.getNode()->getOperand(0));
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002784 else if (OpOpcode == ISD::UNDEF)
2785 // zext(undef) = 0, because the top bits will be zero.
2786 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002787 break;
Chris Lattner8c393c22005-09-02 00:17:32 +00002788 case ISD::ANY_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002789 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002790 "Invalid ANY_EXTEND!");
Chris Lattner8c393c22005-09-02 00:17:32 +00002791 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002792 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2793 "Invalid anyext node, dst < src!");
2794 assert((!VT.isVector() ||
2795 VT.getVectorNumElements() ==
2796 Operand.getValueType().getVectorNumElements()) &&
2797 "Vector element count mismatch!");
Dan Gohman600f62b2010-06-24 14:30:44 +00002798
Dan Gohman08837892010-06-18 00:08:30 +00002799 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2800 OpOpcode == ISD::ANY_EXTEND)
Chris Lattner8c393c22005-09-02 00:17:32 +00002801 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Dale Johannesendb393622009-02-03 01:55:44 +00002802 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Evan Chengd2f3b012011-03-14 18:15:55 +00002803 else if (OpOpcode == ISD::UNDEF)
2804 return getUNDEF(VT);
Dan Gohman600f62b2010-06-24 14:30:44 +00002805
2806 // (ext (trunx x)) -> x
2807 if (OpOpcode == ISD::TRUNCATE) {
2808 SDValue OpOp = Operand.getNode()->getOperand(0);
2809 if (OpOp.getValueType() == VT)
2810 return OpOp;
2811 }
Chris Lattner8c393c22005-09-02 00:17:32 +00002812 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002813 case ISD::TRUNCATE:
Duncan Sands13237ac2008-06-06 12:08:01 +00002814 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002815 "Invalid TRUNCATE!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002816 if (Operand.getValueType() == VT) return Operand; // noop truncate
Dan Gohmancecad352009-12-14 23:40:38 +00002817 assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) &&
2818 "Invalid truncate node, src < dst!");
2819 assert((!VT.isVector() ||
2820 VT.getVectorNumElements() ==
2821 Operand.getValueType().getVectorNumElements()) &&
2822 "Vector element count mismatch!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002823 if (OpOpcode == ISD::TRUNCATE)
Dale Johannesendb393622009-02-03 01:55:44 +00002824 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002825 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2826 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattner4d5ba992005-01-07 21:56:24 +00002827 // If the source is smaller than the dest, we still need an extend.
Dan Gohmancecad352009-12-14 23:40:38 +00002828 if (Operand.getNode()->getOperand(0).getValueType().getScalarType()
2829 .bitsLT(VT.getScalarType()))
Dale Johannesendb393622009-02-03 01:55:44 +00002830 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002831 if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
Dale Johannesendb393622009-02-03 01:55:44 +00002832 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002833 return Operand.getNode()->getOperand(0);
Chris Lattner4d5ba992005-01-07 21:56:24 +00002834 }
Craig Topper201c1a32012-01-15 01:05:11 +00002835 if (OpOpcode == ISD::UNDEF)
2836 return getUNDEF(VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002837 break;
Wesley Peck527da1b2010-11-23 03:31:01 +00002838 case ISD::BITCAST:
Chris Lattner36e663d2005-12-23 00:16:34 +00002839 // Basic sanity checking.
Duncan Sands13237ac2008-06-06 12:08:01 +00002840 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Wesley Peck527da1b2010-11-23 03:31:01 +00002841 && "Cannot BITCAST between types of different sizes!");
Chris Lattner36e663d2005-12-23 00:16:34 +00002842 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002843 if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x)
2844 return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
Chris Lattnera9e77d12006-04-04 01:02:22 +00002845 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002846 return getUNDEF(VT);
Chris Lattner36e663d2005-12-23 00:16:34 +00002847 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002848 case ISD::SCALAR_TO_VECTOR:
Duncan Sands13237ac2008-06-06 12:08:01 +00002849 assert(VT.isVector() && !Operand.getValueType().isVector() &&
Duncan Sandse4ff21b2009-04-18 20:16:54 +00002850 (VT.getVectorElementType() == Operand.getValueType() ||
2851 (VT.getVectorElementType().isInteger() &&
2852 Operand.getValueType().isInteger() &&
2853 VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002854 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnera1f25b02008-03-08 23:43:36 +00002855 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002856 return getUNDEF(VT);
Chris Lattnera1f25b02008-03-08 23:43:36 +00002857 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2858 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2859 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2860 Operand.getConstantOperandVal(1) == 0 &&
2861 Operand.getOperand(0).getValueType() == VT)
2862 return Operand.getOperand(0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002863 break;
Chris Lattner0ea81f92005-04-09 03:02:46 +00002864 case ISD::FNEG:
Mon P Wangcf9ba822009-01-31 06:07:45 +00002865 // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002866 if (getTarget().Options.UnsafeFPMath && OpOpcode == ISD::FSUB)
Dale Johannesendb393622009-02-03 01:55:44 +00002867 return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1),
Gabor Greiff304a7a2008-08-28 21:40:38 +00002868 Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002869 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greiff304a7a2008-08-28 21:40:38 +00002870 return Operand.getNode()->getOperand(0);
Chris Lattner0ea81f92005-04-09 03:02:46 +00002871 break;
2872 case ISD::FABS:
2873 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Dale Johannesendb393622009-02-03 01:55:44 +00002874 return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002875 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002876 }
2877
Chris Lattnerf9c19152005-08-25 19:12:10 +00002878 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002879 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002880 if (VT != MVT::Glue) { // Don't CSE flag producing nodes
Jim Laskeyf576b422006-10-27 23:46:08 +00002881 FoldingSetNodeID ID;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002882 SDValue Ops[1] = { Operand };
Craig Topper633d99b2014-04-27 23:22:43 +00002883 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00002884 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002885 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002886 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002887
Jack Carter170a5f22013-09-09 22:02:08 +00002888 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2889 DL.getDebugLoc(), VTs, Operand);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002890 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002891 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00002892 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2893 DL.getDebugLoc(), VTs, Operand);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002894 }
Duncan Sandsb0e39382008-07-21 10:20:31 +00002895
Chris Lattner061a1ea2005-01-07 07:46:32 +00002896 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002897#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002898 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002899#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002900 return SDValue(N, 0);
Chris Lattner600d3082003-08-11 14:57:33 +00002901}
2902
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002903SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, EVT VT,
2904 SDNode *Cst1, SDNode *Cst2) {
Jim Grosbachcad4cd62014-04-09 23:28:11 +00002905 // If the opcode is a target-specific ISD node, there's nothing we can
2906 // do here and the operand rules may not line up with the below, so
2907 // bail early.
2908 if (Opcode >= ISD::BUILTIN_OP_END)
2909 return SDValue();
2910
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002911 SmallVector<std::pair<ConstantSDNode *, ConstantSDNode *>, 4> Inputs;
2912 SmallVector<SDValue, 4> Outputs;
2913 EVT SVT = VT.getScalarType();
Bill Wendling162c26d2008-09-24 10:16:24 +00002914
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002915 ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1);
2916 ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002917 if (Scalar1 && Scalar2 && (Scalar1->isOpaque() || Scalar2->isOpaque()))
2918 return SDValue();
2919
2920 if (Scalar1 && Scalar2)
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002921 // Scalar instruction.
2922 Inputs.push_back(std::make_pair(Scalar1, Scalar2));
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002923 else {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002924 // For vectors extract each constant element into Inputs so we can constant
2925 // fold them individually.
2926 BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1);
2927 BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2);
2928 if (!BV1 || !BV2)
2929 return SDValue();
2930
2931 assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!");
2932
2933 for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) {
2934 ConstantSDNode *V1 = dyn_cast<ConstantSDNode>(BV1->getOperand(I));
2935 ConstantSDNode *V2 = dyn_cast<ConstantSDNode>(BV2->getOperand(I));
2936 if (!V1 || !V2) // Not a constant, bail.
2937 return SDValue();
2938
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002939 if (V1->isOpaque() || V2->isOpaque())
2940 return SDValue();
2941
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002942 // Avoid BUILD_VECTOR nodes that perform implicit truncation.
2943 // FIXME: This is valid and could be handled by truncating the APInts.
2944 if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT)
2945 return SDValue();
2946
2947 Inputs.push_back(std::make_pair(V1, V2));
2948 }
Bill Wendling162c26d2008-09-24 10:16:24 +00002949 }
2950
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002951 // We have a number of constant values, constant fold them element by element.
2952 for (unsigned I = 0, E = Inputs.size(); I != E; ++I) {
2953 const APInt &C1 = Inputs[I].first->getAPIntValue();
2954 const APInt &C2 = Inputs[I].second->getAPIntValue();
2955
2956 switch (Opcode) {
2957 case ISD::ADD:
2958 Outputs.push_back(getConstant(C1 + C2, SVT));
2959 break;
2960 case ISD::SUB:
2961 Outputs.push_back(getConstant(C1 - C2, SVT));
2962 break;
2963 case ISD::MUL:
2964 Outputs.push_back(getConstant(C1 * C2, SVT));
2965 break;
2966 case ISD::UDIV:
2967 if (!C2.getBoolValue())
2968 return SDValue();
2969 Outputs.push_back(getConstant(C1.udiv(C2), SVT));
2970 break;
2971 case ISD::UREM:
2972 if (!C2.getBoolValue())
2973 return SDValue();
2974 Outputs.push_back(getConstant(C1.urem(C2), SVT));
2975 break;
2976 case ISD::SDIV:
2977 if (!C2.getBoolValue())
2978 return SDValue();
2979 Outputs.push_back(getConstant(C1.sdiv(C2), SVT));
2980 break;
2981 case ISD::SREM:
2982 if (!C2.getBoolValue())
2983 return SDValue();
2984 Outputs.push_back(getConstant(C1.srem(C2), SVT));
2985 break;
2986 case ISD::AND:
2987 Outputs.push_back(getConstant(C1 & C2, SVT));
2988 break;
2989 case ISD::OR:
2990 Outputs.push_back(getConstant(C1 | C2, SVT));
2991 break;
2992 case ISD::XOR:
2993 Outputs.push_back(getConstant(C1 ^ C2, SVT));
2994 break;
2995 case ISD::SHL:
2996 Outputs.push_back(getConstant(C1 << C2, SVT));
2997 break;
2998 case ISD::SRL:
2999 Outputs.push_back(getConstant(C1.lshr(C2), SVT));
3000 break;
3001 case ISD::SRA:
3002 Outputs.push_back(getConstant(C1.ashr(C2), SVT));
3003 break;
3004 case ISD::ROTL:
3005 Outputs.push_back(getConstant(C1.rotl(C2), SVT));
3006 break;
3007 case ISD::ROTR:
3008 Outputs.push_back(getConstant(C1.rotr(C2), SVT));
3009 break;
3010 default:
3011 return SDValue();
3012 }
3013 }
3014
Benjamin Kramer6dd9f8f2014-05-02 21:28:49 +00003015 assert((Scalar1 && Scalar2) || (VT.getVectorNumElements() == Outputs.size() &&
3016 "Expected a scalar or vector!"));
Benjamin Kramer42d262f2014-05-02 12:35:22 +00003017
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003018 // Handle the scalar case first.
Benjamin Kramer42d262f2014-05-02 12:35:22 +00003019 if (!VT.isVector())
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003020 return Outputs.back();
3021
Benjamin Kramer42d262f2014-05-02 12:35:22 +00003022 // We may have a vector type but a scalar result. Create a splat.
3023 Outputs.resize(VT.getVectorNumElements(), Outputs.back());
3024
3025 // Build a big vector out of the scalar elements we generated.
Craig Topper48d114b2014-04-26 18:35:24 +00003026 return getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Outputs);
Bill Wendling162c26d2008-09-24 10:16:24 +00003027}
3028
Andrew Trickef9de2a2013-05-25 02:42:55 +00003029SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, SDValue N1,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003030 SDValue N2, bool nuw, bool nsw, bool exact) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00003031 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
3032 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner4e550eb2005-01-16 02:23:22 +00003033 switch (Opcode) {
Chris Lattner16713612008-01-22 19:09:33 +00003034 default: break;
Chris Lattner9b75e142005-01-19 18:01:40 +00003035 case ISD::TokenFactor:
Owen Anderson9f944592009-08-11 20:47:22 +00003036 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
3037 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner16713612008-01-22 19:09:33 +00003038 // Fold trivial token factors.
3039 if (N1.getOpcode() == ISD::EntryToken) return N2;
3040 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman94798d32008-10-01 15:11:19 +00003041 if (N1 == N2) return N1;
Chris Lattner9b75e142005-01-19 18:01:40 +00003042 break;
Dan Gohman550c9af2008-08-14 20:04:46 +00003043 case ISD::CONCAT_VECTORS:
Nadav Rotema62368c2012-07-15 08:38:23 +00003044 // Concat of UNDEFs is UNDEF.
3045 if (N1.getOpcode() == ISD::UNDEF &&
3046 N2.getOpcode() == ISD::UNDEF)
3047 return getUNDEF(VT);
3048
Dan Gohman550c9af2008-08-14 20:04:46 +00003049 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3050 // one big BUILD_VECTOR.
3051 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3052 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003053 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3054 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003055 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003056 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003057 }
3058 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003059 case ISD::AND:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003060 assert(VT.isInteger() && "This operator does not apply to FP types!");
3061 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003062 N1.getValueType() == VT && "Binary operator types must match!");
3063 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
3064 // worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003065 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003066 return N2;
Chris Lattner720d8992008-01-26 01:05:42 +00003067 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
3068 return N1;
Chris Lattner16713612008-01-22 19:09:33 +00003069 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003070 case ISD::OR:
3071 case ISD::XOR:
Dan Gohman057240f2008-06-02 22:27:05 +00003072 case ISD::ADD:
3073 case ISD::SUB:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003074 assert(VT.isInteger() && "This operator does not apply to FP types!");
3075 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003076 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman057240f2008-06-02 22:27:05 +00003077 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
3078 // it's worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003079 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003080 return N1;
3081 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003082 case ISD::UDIV:
3083 case ISD::UREM:
Chris Lattner51836bb2005-05-15 05:39:08 +00003084 case ISD::MULHU:
3085 case ISD::MULHS:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003086 case ISD::MUL:
3087 case ISD::SDIV:
3088 case ISD::SREM:
Dan Gohman1f3411d2009-01-22 21:58:43 +00003089 assert(VT.isInteger() && "This operator does not apply to FP types!");
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003090 assert(N1.getValueType() == N2.getValueType() &&
3091 N1.getValueType() == VT && "Binary operator types must match!");
3092 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003093 case ISD::FADD:
3094 case ISD::FSUB:
3095 case ISD::FMUL:
3096 case ISD::FDIV:
3097 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003098 if (getTarget().Options.UnsafeFPMath) {
Dan Gohman1275e282009-01-23 19:10:37 +00003099 if (Opcode == ISD::FADD) {
3100 // 0+x --> x
3101 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
3102 if (CFP->getValueAPF().isZero())
3103 return N2;
3104 // x+0 --> x
3105 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3106 if (CFP->getValueAPF().isZero())
3107 return N1;
3108 } else if (Opcode == ISD::FSUB) {
3109 // x-0 --> x
3110 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3111 if (CFP->getValueAPF().isZero())
3112 return N1;
Michael Ilseman0666f052012-09-10 17:00:37 +00003113 } else if (Opcode == ISD::FMUL) {
3114 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1);
3115 SDValue V = N2;
3116
3117 // If the first operand isn't the constant, try the second
3118 if (!CFP) {
3119 CFP = dyn_cast<ConstantFPSDNode>(N2);
3120 V = N1;
3121 }
3122
3123 if (CFP) {
3124 // 0*x --> 0
3125 if (CFP->isZero())
3126 return SDValue(CFP,0);
3127 // 1*x --> x
3128 if (CFP->isExactlyValue(1.0))
3129 return V;
3130 }
Dan Gohman1275e282009-01-23 19:10:37 +00003131 }
Dan Gohman1f3411d2009-01-22 21:58:43 +00003132 }
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003133 assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
Chris Lattner4e550eb2005-01-16 02:23:22 +00003134 assert(N1.getValueType() == N2.getValueType() &&
3135 N1.getValueType() == VT && "Binary operator types must match!");
3136 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003137 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
3138 assert(N1.getValueType() == VT &&
Duncan Sands13237ac2008-06-06 12:08:01 +00003139 N1.getValueType().isFloatingPoint() &&
3140 N2.getValueType().isFloatingPoint() &&
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003141 "Invalid FCOPYSIGN!");
3142 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003143 case ISD::SHL:
3144 case ISD::SRA:
3145 case ISD::SRL:
Nate Begeman1b8121b2006-01-11 21:21:00 +00003146 case ISD::ROTL:
3147 case ISD::ROTR:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003148 assert(VT == N1.getValueType() &&
3149 "Shift operators return type must be the same as their first arg");
Duncan Sands13237ac2008-06-06 12:08:01 +00003150 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003151 "Shifts only work on integers");
Michael Liao6af16fc2013-03-01 18:40:30 +00003152 assert((!VT.isVector() || VT == N2.getValueType()) &&
3153 "Vector shift amounts must be in the same as their first arg");
Chris Lattnere95d1952011-02-13 19:09:16 +00003154 // Verify that the shift amount VT is bit enough to hold valid shift
3155 // amounts. This catches things like trying to shift an i1024 value by an
3156 // i8, which is easy to fall into in generic code that uses
3157 // TLI.getShiftAmount().
3158 assert(N2.getValueType().getSizeInBits() >=
Owen Andersonb2c80da2011-02-25 21:41:48 +00003159 Log2_32_Ceil(N1.getValueType().getSizeInBits()) &&
Chris Lattnere95d1952011-02-13 19:09:16 +00003160 "Invalid use of small shift amount with oversized value!");
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003161
3162 // Always fold shifts of i1 values so the code generator doesn't need to
3163 // handle them. Since we know the size of the shift has to be less than the
3164 // size of the value, the shift/rotate count is guaranteed to be zero.
Owen Anderson9f944592009-08-11 20:47:22 +00003165 if (VT == MVT::i1)
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003166 return N1;
Evan Cheng166a4e62010-01-06 19:38:29 +00003167 if (N2C && N2C->isNullValue())
3168 return N1;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003169 break;
Chris Lattner0b6ba902005-07-10 00:07:11 +00003170 case ISD::FP_ROUND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003171 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003172 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003173 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003174 "Cannot FP_ROUND_INREG integer types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003175 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003176 "FP_ROUND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003177 "type is vector!");
3178 assert((!EVT.isVector() ||
3179 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3180 "Vector element counts must match in FP_ROUND_INREG");
Duncan Sands11dd4242008-06-08 20:54:56 +00003181 assert(EVT.bitsLE(VT) && "Not rounding down!");
Duncan Sandsd278d352011-10-18 12:44:00 +00003182 (void)EVT;
Chris Lattner16713612008-01-22 19:09:33 +00003183 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner0b6ba902005-07-10 00:07:11 +00003184 break;
3185 }
Chris Lattner72733e52008-01-17 07:00:52 +00003186 case ISD::FP_ROUND:
Duncan Sands13237ac2008-06-06 12:08:01 +00003187 assert(VT.isFloatingPoint() &&
3188 N1.getValueType().isFloatingPoint() &&
Duncan Sands11dd4242008-06-08 20:54:56 +00003189 VT.bitsLE(N1.getValueType()) &&
Chris Lattner72733e52008-01-17 07:00:52 +00003190 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner16713612008-01-22 19:09:33 +00003191 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner72733e52008-01-17 07:00:52 +00003192 break;
Nate Begeman43144a22005-08-30 02:44:00 +00003193 case ISD::AssertSext:
Chris Lattner16713612008-01-22 19:09:33 +00003194 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003195 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner16713612008-01-22 19:09:33 +00003196 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003197 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner16713612008-01-22 19:09:33 +00003198 "Cannot *_EXTEND_INREG FP types");
Dan Gohman1d459e42009-12-11 21:31:27 +00003199 assert(!EVT.isVector() &&
3200 "AssertSExt/AssertZExt type should be the vector element type "
3201 "rather than the vector type!");
Duncan Sands11dd4242008-06-08 20:54:56 +00003202 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sands56689502008-02-10 10:08:52 +00003203 if (VT == EVT) return N1; // noop assertion.
Chris Lattner16713612008-01-22 19:09:33 +00003204 break;
3205 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003206 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003207 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003208 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003209 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003210 "Cannot *_EXTEND_INREG FP types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003211 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003212 "SIGN_EXTEND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003213 "type is vector!");
3214 assert((!EVT.isVector() ||
3215 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3216 "Vector element counts must match in SIGN_EXTEND_INREG");
3217 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner16713612008-01-22 19:09:33 +00003218 if (EVT == VT) return N1; // Not actually extending
Chris Lattner0b6ba902005-07-10 00:07:11 +00003219
Chris Lattner16713612008-01-22 19:09:33 +00003220 if (N1C) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003221 APInt Val = N1C->getAPIntValue();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003222 unsigned FromBits = EVT.getScalarType().getSizeInBits();
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003223 Val <<= Val.getBitWidth()-FromBits;
Evan Chenga3cb0902008-03-06 08:20:51 +00003224 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattner751817c2006-05-06 23:05:41 +00003225 return getConstant(Val, VT);
3226 }
Chris Lattner16713612008-01-22 19:09:33 +00003227 break;
3228 }
3229 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnera1f25b02008-03-08 23:43:36 +00003230 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
3231 if (N1.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00003232 return getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003233
Chris Lattner16713612008-01-22 19:09:33 +00003234 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
3235 // expanding copies of large vectors from registers.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003236 if (N2C &&
3237 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner16713612008-01-22 19:09:33 +00003238 N1.getNumOperands() > 0) {
3239 unsigned Factor =
Duncan Sands13237ac2008-06-06 12:08:01 +00003240 N1.getOperand(0).getValueType().getVectorNumElements();
Dale Johannesendb393622009-02-03 01:55:44 +00003241 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
Dan Gohmaneffb8942008-09-12 16:56:44 +00003242 N1.getOperand(N2C->getZExtValue() / Factor),
3243 getConstant(N2C->getZExtValue() % Factor,
3244 N2.getValueType()));
Chris Lattner16713612008-01-22 19:09:33 +00003245 }
3246
3247 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
3248 // expanding large vector constants.
Bob Wilson59dbbb22009-04-13 22:05:19 +00003249 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
3250 SDValue Elt = N1.getOperand(N2C->getZExtValue());
James Molloy1e5c6112012-09-10 14:01:21 +00003251
3252 if (VT != Elt.getValueType())
Bob Wilson59dbbb22009-04-13 22:05:19 +00003253 // If the vector element type is not legal, the BUILD_VECTOR operands
James Molloy1e5c6112012-09-10 14:01:21 +00003254 // are promoted and implicitly truncated, and the result implicitly
3255 // extended. Make that explicit here.
3256 Elt = getAnyExtOrTrunc(Elt, DL, VT);
Michael Ilsemand5f91512012-09-10 16:56:31 +00003257
Bob Wilson59dbbb22009-04-13 22:05:19 +00003258 return Elt;
3259 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003260
Chris Lattner16713612008-01-22 19:09:33 +00003261 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
3262 // operations are lowered to scalars.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003263 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
Mon P Wangd74e0022010-02-01 22:15:09 +00003264 // If the indices are the same, return the inserted element else
3265 // if the indices are known different, extract the element from
Dan Gohmanef04ed52009-01-29 16:10:46 +00003266 // the original vector.
Bill Wendlingde4b2252010-04-30 22:19:17 +00003267 SDValue N1Op2 = N1.getOperand(2);
3268 ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2.getNode());
3269
3270 if (N1Op2C && N2C) {
3271 if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
3272 if (VT == N1.getOperand(1).getValueType())
3273 return N1.getOperand(1);
3274 else
3275 return getSExtOrTrunc(N1.getOperand(1), DL, VT);
3276 }
3277
Dale Johannesendb393622009-02-03 01:55:44 +00003278 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
Bill Wendlingde4b2252010-04-30 22:19:17 +00003279 }
Dan Gohman7e3c3922008-08-13 21:51:37 +00003280 }
Chris Lattner16713612008-01-22 19:09:33 +00003281 break;
3282 case ISD::EXTRACT_ELEMENT:
Dan Gohmaneffb8942008-09-12 16:56:44 +00003283 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands33ff5c82008-06-25 20:24:48 +00003284 assert(!N1.getValueType().isVector() && !VT.isVector() &&
3285 (N1.getValueType().isInteger() == VT.isInteger()) &&
Eli Friedman04c50252011-08-02 18:38:35 +00003286 N1.getValueType() != VT &&
Duncan Sands33ff5c82008-06-25 20:24:48 +00003287 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands87de65f2008-03-12 20:30:08 +00003288
Chris Lattner16713612008-01-22 19:09:33 +00003289 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
3290 // 64-bit integers into 32-bit parts. Instead of building the extract of
Scott Michelcf0da6c2009-02-17 22:15:04 +00003291 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner16713612008-01-22 19:09:33 +00003292 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003293 return N1.getOperand(N2C->getZExtValue());
Duncan Sands87de65f2008-03-12 20:30:08 +00003294
Chris Lattner16713612008-01-22 19:09:33 +00003295 // EXTRACT_ELEMENT of a constant int is also very common.
3296 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003297 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmaneffb8942008-09-12 16:56:44 +00003298 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohmand8ea0402008-03-24 16:38:05 +00003299 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
3300 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner16713612008-01-22 19:09:33 +00003301 }
3302 break;
David Greeneb6f16112011-01-26 15:38:49 +00003303 case ISD::EXTRACT_SUBVECTOR: {
3304 SDValue Index = N2;
3305 if (VT.isSimple() && N1.getValueType().isSimple()) {
3306 assert(VT.isVector() && N1.getValueType().isVector() &&
3307 "Extract subvector VTs must be a vectors!");
Jack Carter170a5f22013-09-09 22:02:08 +00003308 assert(VT.getVectorElementType() ==
3309 N1.getValueType().getVectorElementType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003310 "Extract subvector VTs must have the same element type!");
Craig Topperd9c27832013-08-15 02:44:19 +00003311 assert(VT.getSimpleVT() <= N1.getSimpleValueType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003312 "Extract subvector must be from larger vector to smaller vector!");
3313
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003314 if (isa<ConstantSDNode>(Index.getNode())) {
3315 assert((VT.getVectorNumElements() +
3316 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greeneb6f16112011-01-26 15:38:49 +00003317 <= N1.getValueType().getVectorNumElements())
3318 && "Extract subvector overflow!");
3319 }
3320
3321 // Trivial extraction.
Craig Topperd9c27832013-08-15 02:44:19 +00003322 if (VT.getSimpleVT() == N1.getSimpleValueType())
David Greeneb6f16112011-01-26 15:38:49 +00003323 return N1;
3324 }
Duncan Sandse7b462b2008-02-20 17:38:09 +00003325 break;
Chris Lattner16713612008-01-22 19:09:33 +00003326 }
David Greeneb6f16112011-01-26 15:38:49 +00003327 }
Chris Lattner16713612008-01-22 19:09:33 +00003328
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003329 // Perform trivial constant folding.
3330 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1.getNode(), N2.getNode());
3331 if (SV.getNode()) return SV;
3332
3333 // Canonicalize constant to RHS if commutative.
3334 if (N1C && !N2C && isCommutativeBinOp(Opcode)) {
3335 std::swap(N1C, N2C);
3336 std::swap(N1, N2);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003337 }
3338
Chris Lattner16713612008-01-22 19:09:33 +00003339 // Constant fold FP operations.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003340 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
3341 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner0b6ba902005-07-10 00:07:11 +00003342 if (N1CFP) {
Chris Lattner16713612008-01-22 19:09:33 +00003343 if (!N2CFP && isCommutativeBinOp(Opcode)) {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003344 // Canonicalize constant to RHS if commutative.
Chris Lattner16713612008-01-22 19:09:33 +00003345 std::swap(N1CFP, N2CFP);
3346 std::swap(N1, N2);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00003347 } else if (N2CFP) {
Dale Johannesen446b9002007-08-31 23:34:27 +00003348 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
3349 APFloat::opStatus s;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003350 switch (Opcode) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00003351 case ISD::FADD:
Dale Johannesen446b9002007-08-31 23:34:27 +00003352 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner16713612008-01-22 19:09:33 +00003353 if (s != APFloat::opInvalidOp)
Dale Johannesen446b9002007-08-31 23:34:27 +00003354 return getConstantFP(V1, VT);
3355 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003356 case ISD::FSUB:
Dale Johannesen446b9002007-08-31 23:34:27 +00003357 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
3358 if (s!=APFloat::opInvalidOp)
3359 return getConstantFP(V1, VT);
3360 break;
3361 case ISD::FMUL:
3362 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
3363 if (s!=APFloat::opInvalidOp)
3364 return getConstantFP(V1, VT);
3365 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003366 case ISD::FDIV:
Dale Johannesen446b9002007-08-31 23:34:27 +00003367 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
3368 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3369 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003370 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003371 case ISD::FREM :
Dale Johannesen446b9002007-08-31 23:34:27 +00003372 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
3373 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3374 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003375 break;
Dale Johannesen446b9002007-08-31 23:34:27 +00003376 case ISD::FCOPYSIGN:
3377 V1.copySign(V2);
3378 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003379 default: break;
3380 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003381 }
Owen Anderson6f1ee162012-04-10 22:46:53 +00003382
3383 if (Opcode == ISD::FP_ROUND) {
3384 APFloat V = N1CFP->getValueAPF(); // make copy
3385 bool ignored;
3386 // This can return overflow, underflow, or inexact; we don't care.
3387 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00003388 (void)V.convert(EVTToAPFloatSemantics(VT),
Owen Anderson6f1ee162012-04-10 22:46:53 +00003389 APFloat::rmNearestTiesToEven, &ignored);
3390 return getConstantFP(V, VT);
3391 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003392 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003393
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003394 // Canonicalize an UNDEF to the RHS, even over a constant.
3395 if (N1.getOpcode() == ISD::UNDEF) {
3396 if (isCommutativeBinOp(Opcode)) {
3397 std::swap(N1, N2);
3398 } else {
3399 switch (Opcode) {
3400 case ISD::FP_ROUND_INREG:
3401 case ISD::SIGN_EXTEND_INREG:
3402 case ISD::SUB:
3403 case ISD::FSUB:
3404 case ISD::FDIV:
3405 case ISD::FREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003406 case ISD::SRA:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003407 return N1; // fold op(undef, arg2) -> undef
3408 case ISD::UDIV:
3409 case ISD::SDIV:
3410 case ISD::UREM:
3411 case ISD::SREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003412 case ISD::SRL:
3413 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003414 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003415 return getConstant(0, VT); // fold op(undef, arg2) -> 0
3416 // For vectors, we can't easily build an all zero vector, just return
3417 // the LHS.
3418 return N2;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003419 }
3420 }
3421 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003422
3423 // Fold a bunch of operators when the RHS is undef.
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003424 if (N2.getOpcode() == ISD::UNDEF) {
3425 switch (Opcode) {
Evan Chengdf1690d2008-03-25 20:08:07 +00003426 case ISD::XOR:
3427 if (N1.getOpcode() == ISD::UNDEF)
3428 // Handle undef ^ undef -> 0 special case. This is a common
3429 // idiom (misuse).
3430 return getConstant(0, VT);
3431 // fallthrough
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003432 case ISD::ADD:
Chris Lattner362621c2007-03-04 20:01:46 +00003433 case ISD::ADDC:
3434 case ISD::ADDE:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003435 case ISD::SUB:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003436 case ISD::UDIV:
3437 case ISD::SDIV:
3438 case ISD::UREM:
3439 case ISD::SREM:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003440 return N2; // fold op(arg1, undef) -> undef
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003441 case ISD::FADD:
3442 case ISD::FSUB:
3443 case ISD::FMUL:
3444 case ISD::FDIV:
3445 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003446 if (getTarget().Options.UnsafeFPMath)
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003447 return N2;
3448 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003449 case ISD::MUL:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003450 case ISD::AND:
Chris Lattner78da6792006-05-08 17:29:49 +00003451 case ISD::SRL:
3452 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003453 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003454 return getConstant(0, VT); // fold op(arg1, undef) -> 0
3455 // For vectors, we can't easily build an all zero vector, just return
3456 // the LHS.
3457 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003458 case ISD::OR:
Duncan Sands13237ac2008-06-06 12:08:01 +00003459 if (!VT.isVector())
Duncan Sands3ed76882009-02-01 18:06:53 +00003460 return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
Chris Lattner01a26c72007-04-25 00:00:45 +00003461 // For vectors, we can't easily build an all one vector, just return
3462 // the LHS.
3463 return N1;
Chris Lattner78da6792006-05-08 17:29:49 +00003464 case ISD::SRA:
3465 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003466 }
3467 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003468
Chris Lattner724f7ee2005-05-11 18:57:39 +00003469 // Memoize this node if possible.
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003470 BinarySDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003471 SDVTList VTs = getVTList(VT);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003472 const bool BinOpHasFlags = isBinOpWithFlags(Opcode);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003473 if (VT != MVT::Glue) {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003474 SDValue Ops[] = {N1, N2};
Jim Laskeyf576b422006-10-27 23:46:08 +00003475 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003476 AddNodeIDNode(ID, Opcode, VTs, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003477 if (BinOpHasFlags)
3478 AddBinaryNodeIDCustom(ID, Opcode, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00003479 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003480 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003481 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003482
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003483 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
3484
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003485 CSEMap.InsertNode(N, IP);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003486 } else {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003487
3488 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003489 }
3490
Chris Lattner061a1ea2005-01-07 07:46:32 +00003491 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003492#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003493 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003494#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003495 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003496}
3497
Andrew Trickef9de2a2013-05-25 02:42:55 +00003498SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003499 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00003500 // Perform various simplifications.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003501 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Chris Lattner061a1ea2005-01-07 07:46:32 +00003502 switch (Opcode) {
Owen Anderson32baf992013-05-09 22:27:13 +00003503 case ISD::FMA: {
3504 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3505 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
3506 ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
3507 if (N1CFP && N2CFP && N3CFP) {
3508 APFloat V1 = N1CFP->getValueAPF();
3509 const APFloat &V2 = N2CFP->getValueAPF();
3510 const APFloat &V3 = N3CFP->getValueAPF();
3511 APFloat::opStatus s =
3512 V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
3513 if (s != APFloat::opInvalidOp)
3514 return getConstantFP(V1, VT);
3515 }
3516 break;
3517 }
Dan Gohman550c9af2008-08-14 20:04:46 +00003518 case ISD::CONCAT_VECTORS:
3519 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3520 // one big BUILD_VECTOR.
3521 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3522 N2.getOpcode() == ISD::BUILD_VECTOR &&
3523 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003524 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3525 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003526 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
3527 Elts.append(N3.getNode()->op_begin(), N3.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003528 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003529 }
3530 break;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003531 case ISD::SETCC: {
Chris Lattnerbd9acad2006-10-14 00:41:01 +00003532 // Use FoldSetCC to simplify SETCC's.
Dale Johannesenf1163e92009-02-03 00:47:48 +00003533 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003534 if (Simp.getNode()) return Simp;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003535 break;
3536 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003537 case ISD::SELECT:
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003538 if (N1C) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003539 if (N1C->getZExtValue())
David Blaikie46a9f012012-01-20 21:51:11 +00003540 return N2; // select true, X, Y -> X
3541 return N3; // select false, X, Y -> Y
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003542 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003543
3544 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattner061a1ea2005-01-07 07:46:32 +00003545 break;
Chris Lattner00f05892006-03-19 23:56:04 +00003546 case ISD::VECTOR_SHUFFLE:
Torok Edwinfbcc6632009-07-14 16:55:14 +00003547 llvm_unreachable("should use getVectorShuffle constructor!");
David Greenebab5e6e2011-01-26 19:13:22 +00003548 case ISD::INSERT_SUBVECTOR: {
3549 SDValue Index = N3;
3550 if (VT.isSimple() && N1.getValueType().isSimple()
3551 && N2.getValueType().isSimple()) {
3552 assert(VT.isVector() && N1.getValueType().isVector() &&
3553 N2.getValueType().isVector() &&
3554 "Insert subvector VTs must be a vectors");
3555 assert(VT == N1.getValueType() &&
3556 "Dest and insert subvector source types must match!");
Craig Topperd9c27832013-08-15 02:44:19 +00003557 assert(N2.getSimpleValueType() <= N1.getSimpleValueType() &&
David Greenebab5e6e2011-01-26 19:13:22 +00003558 "Insert subvector must be from smaller vector to larger vector!");
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003559 if (isa<ConstantSDNode>(Index.getNode())) {
3560 assert((N2.getValueType().getVectorNumElements() +
3561 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greenebab5e6e2011-01-26 19:13:22 +00003562 <= VT.getVectorNumElements())
3563 && "Insert subvector overflow!");
3564 }
3565
3566 // Trivial insertion.
Craig Topperd9c27832013-08-15 02:44:19 +00003567 if (VT.getSimpleVT() == N2.getSimpleValueType())
David Greenebab5e6e2011-01-26 19:13:22 +00003568 return N2;
3569 }
3570 break;
3571 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003572 case ISD::BITCAST:
Dan Gohmana8665142007-06-25 16:23:39 +00003573 // Fold bit_convert nodes from a type to themselves.
3574 if (N1.getValueType() == VT)
3575 return N1;
Chris Lattnera77cb3c2007-04-12 05:58:43 +00003576 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003577 }
3578
Chris Lattnerf9c19152005-08-25 19:12:10 +00003579 // Memoize node if it doesn't produce a flag.
3580 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003581 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003582 if (VT != MVT::Glue) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003583 SDValue Ops[] = { N1, N2, N3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00003584 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003585 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00003586 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003587 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003588 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003589
Jack Carter170a5f22013-09-09 22:02:08 +00003590 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3591 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003592 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003593 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00003594 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3595 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003596 }
Daniel Dunbarb827e522009-12-16 20:10:05 +00003597
Chris Lattner061a1ea2005-01-07 07:46:32 +00003598 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003599#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003600 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003601#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003602 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003603}
3604
Andrew Trickef9de2a2013-05-25 02:42:55 +00003605SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003606 SDValue N1, SDValue N2, SDValue N3,
3607 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003608 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00003609 return getNode(Opcode, DL, VT, Ops);
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00003610}
3611
Andrew Trickef9de2a2013-05-25 02:42:55 +00003612SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003613 SDValue N1, SDValue N2, SDValue N3,
3614 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003615 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00003616 return getNode(Opcode, DL, VT, Ops);
Chris Lattner36db1ed2005-07-10 00:29:18 +00003617}
3618
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003619/// getStackArgumentTokenFactor - Compute a TokenFactor to force all
3620/// the incoming stack arguments to be loaded from the stack.
3621SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
3622 SmallVector<SDValue, 8> ArgChains;
3623
3624 // Include the original chain at the beginning of the list. When this is
3625 // used by target LowerCall hooks, this helps legalize find the
3626 // CALLSEQ_BEGIN node.
3627 ArgChains.push_back(Chain);
3628
3629 // Add a chain value for each stack argument.
3630 for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
3631 UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
3632 if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3633 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3634 if (FI->getIndex() < 0)
3635 ArgChains.push_back(SDValue(L, 1));
3636
3637 // Build a tokenfactor for all the chains.
Craig Topper48d114b2014-04-26 18:35:24 +00003638 return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003639}
3640
Dan Gohman544ab2c2008-04-12 04:36:06 +00003641/// getMemsetValue - Vectorized representation of the memset value
3642/// operand.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003643static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003644 SDLoc dl) {
Evan Cheng61399372010-04-02 19:36:14 +00003645 assert(Value.getOpcode() != ISD::UNDEF);
3646
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00003647 unsigned NumBits = VT.getScalarType().getSizeInBits();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003648 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003649 assert(C->getAPIntValue().getBitWidth() == 8);
3650 APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
Duncan Sands13237ac2008-06-06 12:08:01 +00003651 if (VT.isInteger())
Evan Chengef377ad2008-05-15 08:39:06 +00003652 return DAG.getConstant(Val, VT);
Tim Northover29178a32013-01-22 09:46:31 +00003653 return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), VT);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003654 }
Evan Chengef377ad2008-05-15 08:39:06 +00003655
Dale Johannesenabf66b82009-02-03 22:26:09 +00003656 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value);
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003657 if (NumBits > 8) {
3658 // Use a multiplication with 0x010101... to extend the input to the
3659 // required length.
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003660 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003661 Value = DAG.getNode(ISD::MUL, dl, VT, Value, DAG.getConstant(Magic, VT));
Evan Chengef377ad2008-05-15 08:39:06 +00003662 }
3663
3664 return Value;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003665}
3666
Dan Gohman544ab2c2008-04-12 04:36:06 +00003667/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
3668/// used when a memcpy is turned into a memset when the source is a constant
3669/// string ptr.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003670static SDValue getMemsetStringVal(EVT VT, SDLoc dl, SelectionDAG &DAG,
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003671 const TargetLowering &TLI, StringRef Str) {
Evan Chengda3db112008-06-30 07:31:25 +00003672 // Handle vector with all elements zero.
3673 if (Str.empty()) {
3674 if (VT.isInteger())
3675 return DAG.getConstant(0, VT);
Chad Rosier52359732014-06-27 21:05:09 +00003676 else if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128)
Evan Cheng43cd9e32010-04-01 06:04:33 +00003677 return DAG.getConstantFP(0.0, VT);
3678 else if (VT.isVector()) {
3679 unsigned NumElts = VT.getVectorNumElements();
3680 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
Wesley Peck527da1b2010-11-23 03:31:01 +00003681 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003682 DAG.getConstant(0, EVT::getVectorVT(*DAG.getContext(),
3683 EltVT, NumElts)));
3684 } else
3685 llvm_unreachable("Expected type!");
Evan Chengda3db112008-06-30 07:31:25 +00003686 }
3687
Duncan Sands13237ac2008-06-06 12:08:01 +00003688 assert(!VT.isVector() && "Can't handle vector type here!");
Evan Chengc8444b12013-01-10 22:13:27 +00003689 unsigned NumVTBits = VT.getSizeInBits();
3690 unsigned NumVTBytes = NumVTBits / 8;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003691 unsigned NumBytes = std::min(NumVTBytes, unsigned(Str.size()));
3692
Evan Chengc8444b12013-01-10 22:13:27 +00003693 APInt Val(NumVTBits, 0);
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003694 if (TLI.isLittleEndian()) {
3695 for (unsigned i = 0; i != NumBytes; ++i)
3696 Val |= (uint64_t)(unsigned char)Str[i] << i*8;
3697 } else {
3698 for (unsigned i = 0; i != NumBytes; ++i)
3699 Val |= (uint64_t)(unsigned char)Str[i] << (NumVTBytes-i-1)*8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003700 }
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003701
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00003702 // If the "cost" of materializing the integer immediate is less than the cost
3703 // of a load, then it is cost effective to turn the load into the immediate.
Juergen Ributzka659ce002014-01-28 01:20:14 +00003704 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
3705 if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty))
Evan Cheng79e2ca92012-12-10 23:21:26 +00003706 return DAG.getConstant(Val, VT);
Craig Topperc0196b12014-04-14 00:51:57 +00003707 return SDValue(nullptr, 0);
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003708}
3709
Scott Michelcf0da6c2009-02-17 22:15:04 +00003710/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengef377ad2008-05-15 08:39:06 +00003711///
Andrew Tricke2431c62013-05-25 03:08:10 +00003712static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset, SDLoc dl,
Dan Gohman544ab2c2008-04-12 04:36:06 +00003713 SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003714 EVT VT = Base.getValueType();
Andrew Tricke2431c62013-05-25 03:08:10 +00003715 return DAG.getNode(ISD::ADD, dl,
Dale Johannesendb393622009-02-03 01:55:44 +00003716 VT, Base, DAG.getConstant(Offset, VT));
Dan Gohman544ab2c2008-04-12 04:36:06 +00003717}
3718
Evan Chengef377ad2008-05-15 08:39:06 +00003719/// isMemSrcFromString - Returns true if memcpy source is a string constant.
3720///
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003721static bool isMemSrcFromString(SDValue Src, StringRef &Str) {
Evan Chengef377ad2008-05-15 08:39:06 +00003722 unsigned SrcDelta = 0;
Craig Topperc0196b12014-04-14 00:51:57 +00003723 GlobalAddressSDNode *G = nullptr;
Evan Chengef377ad2008-05-15 08:39:06 +00003724 if (Src.getOpcode() == ISD::GlobalAddress)
3725 G = cast<GlobalAddressSDNode>(Src);
3726 else if (Src.getOpcode() == ISD::ADD &&
3727 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
3728 Src.getOperand(1).getOpcode() == ISD::Constant) {
3729 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmaneffb8942008-09-12 16:56:44 +00003730 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengef377ad2008-05-15 08:39:06 +00003731 }
3732 if (!G)
3733 return false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003734
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003735 return getConstantStringInfo(G->getGlobal(), Str, SrcDelta, false);
Evan Chengef377ad2008-05-15 08:39:06 +00003736}
Dan Gohman544ab2c2008-04-12 04:36:06 +00003737
Evan Cheng43cd9e32010-04-01 06:04:33 +00003738/// FindOptimalMemOpLowering - Determines the optimial series memory ops
3739/// to replace the memset / memcpy. Return true if the number of memory ops
3740/// is below the threshold. It returns the types of the sequence of
3741/// memory ops to perform memset / memcpy by reference.
3742static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003743 unsigned Limit, uint64_t Size,
3744 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003745 bool IsMemset,
3746 bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00003747 bool MemcpyStrSrc,
Evan Cheng79e2ca92012-12-10 23:21:26 +00003748 bool AllowOverlap,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003749 SelectionDAG &DAG,
3750 const TargetLowering &TLI) {
3751 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3752 "Expecting memcpy / memset source to meet alignment requirement!");
Eric Christopherea336c72011-07-06 22:41:18 +00003753 // If 'SrcAlign' is zero, that means the memory operation does not need to
3754 // load the value, i.e. memset or memcpy from constant string. Otherwise,
3755 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3756 // is the specified alignment of the memory operation. If it is zero, that
3757 // means it's possible to change the alignment of the destination.
3758 // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does
3759 // not need to be loaded.
Evan Cheng61399372010-04-02 19:36:14 +00003760 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003761 IsMemset, ZeroMemset, MemcpyStrSrc,
Dan Gohman4d273f42010-04-16 20:22:43 +00003762 DAG.getMachineFunction());
Evan Chengef377ad2008-05-15 08:39:06 +00003763
Chris Lattner28dc6c12010-03-07 07:45:08 +00003764 if (VT == MVT::Other) {
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003765 unsigned AS = 0;
3766 if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment(AS) ||
3767 TLI.allowsUnalignedMemoryAccesses(VT, AS)) {
Evan Cheng272a2f82010-04-05 23:33:29 +00003768 VT = TLI.getPointerTy();
Evan Chengef377ad2008-05-15 08:39:06 +00003769 } else {
Evan Cheng43cd9e32010-04-01 06:04:33 +00003770 switch (DstAlign & 7) {
Owen Anderson9f944592009-08-11 20:47:22 +00003771 case 0: VT = MVT::i64; break;
3772 case 4: VT = MVT::i32; break;
3773 case 2: VT = MVT::i16; break;
3774 default: VT = MVT::i8; break;
Evan Chengef377ad2008-05-15 08:39:06 +00003775 }
3776 }
3777
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003778 MVT LVT = MVT::i64;
Evan Chengef377ad2008-05-15 08:39:06 +00003779 while (!TLI.isTypeLegal(LVT))
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003780 LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
Duncan Sands13237ac2008-06-06 12:08:01 +00003781 assert(LVT.isInteger());
Evan Chengef377ad2008-05-15 08:39:06 +00003782
Duncan Sands11dd4242008-06-08 20:54:56 +00003783 if (VT.bitsGT(LVT))
Evan Chengef377ad2008-05-15 08:39:06 +00003784 VT = LVT;
3785 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003786
Dan Gohman544ab2c2008-04-12 04:36:06 +00003787 unsigned NumMemOps = 0;
3788 while (Size != 0) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003789 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003790 while (VTSize > Size) {
Evan Chengef377ad2008-05-15 08:39:06 +00003791 // For now, only use non-vector load / store's for the left-over pieces.
Evan Cheng04e55182012-12-12 00:42:09 +00003792 EVT NewVT = VT;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003793 unsigned NewVTSize;
Evan Cheng04e55182012-12-12 00:42:09 +00003794
3795 bool Found = false;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003796 if (VT.isVector() || VT.isFloatingPoint()) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00003797 NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32;
Evan Cheng04e55182012-12-12 00:42:09 +00003798 if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003799 TLI.isSafeMemOpType(NewVT.getSimpleVT()))
Evan Cheng04e55182012-12-12 00:42:09 +00003800 Found = true;
3801 else if (NewVT == MVT::i64 &&
3802 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003803 TLI.isSafeMemOpType(MVT::f64)) {
Evan Cheng04e55182012-12-12 00:42:09 +00003804 // i64 is usually not legal on 32-bit targets, but f64 may be.
3805 NewVT = MVT::f64;
3806 Found = true;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003807 }
Evan Cheng79e2ca92012-12-10 23:21:26 +00003808 }
3809
Evan Cheng04e55182012-12-12 00:42:09 +00003810 if (!Found) {
3811 do {
3812 NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1);
3813 if (NewVT == MVT::i8)
3814 break;
Evan Chengc3d1aca2012-12-12 01:32:07 +00003815 } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT()));
Evan Cheng04e55182012-12-12 00:42:09 +00003816 }
3817 NewVTSize = NewVT.getSizeInBits() / 8;
3818
Evan Cheng79e2ca92012-12-10 23:21:26 +00003819 // If the new VT cannot cover all of the remaining bits, then consider
3820 // issuing a (or a pair of) unaligned and overlapping load / store.
3821 // FIXME: Only does this for 64-bit or more since we don't have proper
3822 // cost model for unaligned load / store.
3823 bool Fast;
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003824 unsigned AS = 0;
Evan Chengb7d3d032012-12-12 20:43:23 +00003825 if (NumMemOps && AllowOverlap &&
3826 VTSize >= 8 && NewVTSize < Size &&
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003827 TLI.allowsUnalignedMemoryAccesses(VT, AS, &Fast) && Fast)
Evan Cheng79e2ca92012-12-10 23:21:26 +00003828 VTSize = Size;
3829 else {
3830 VT = NewVT;
3831 VTSize = NewVTSize;
Evan Chengef377ad2008-05-15 08:39:06 +00003832 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003833 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003834
Evan Chengb7d3d032012-12-12 20:43:23 +00003835 if (++NumMemOps > Limit)
3836 return false;
3837
Dan Gohman544ab2c2008-04-12 04:36:06 +00003838 MemOps.push_back(VT);
3839 Size -= VTSize;
3840 }
3841
3842 return true;
3843}
3844
Andrew Trickef9de2a2013-05-25 02:42:55 +00003845static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng85eea4e2010-03-30 18:08:53 +00003846 SDValue Chain, SDValue Dst,
3847 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003848 unsigned Align, bool isVol,
3849 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003850 MachinePointerInfo DstPtrInfo,
3851 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003852 // Turn a memcpy of undef to nop.
3853 if (Src.getOpcode() == ISD::UNDEF)
3854 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003855
Dan Gohman714663a2008-05-29 19:42:22 +00003856 // Expand memcpy to a series of load and store ops if the size operand falls
3857 // below a certain threshold.
Duncan Sands6c25ca42010-11-05 15:20:29 +00003858 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3859 // rather than maybe a humongous number of loads and stores.
Evan Cheng61399372010-04-02 19:36:14 +00003860 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003861 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003862 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003863 MachineFunction &MF = DAG.getMachineFunction();
3864 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendlingc9b22d72012-10-09 07:45:08 +00003865 bool OptSize =
Bill Wendling698e84f2012-12-30 10:32:01 +00003866 MF.getFunction()->getAttributes().
3867 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003868 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3869 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3870 DstAlignCanChange = true;
3871 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3872 if (Align > SrcAlign)
3873 SrcAlign = Align;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003874 StringRef Str;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003875 bool CopyFromStr = isMemSrcFromString(Src, Str);
3876 bool isZeroStr = CopyFromStr && Str.empty();
Evan Cheng3ae2b792011-01-06 06:52:41 +00003877 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00003878
Evan Cheng4c014c82010-04-01 18:19:11 +00003879 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003880 (DstAlignCanChange ? 0 : Align),
Evan Chengebe47c82010-04-08 07:37:57 +00003881 (isZeroStr ? 0 : SrcAlign),
Evan Cheng962711e2012-12-12 02:34:41 +00003882 false, false, CopyFromStr, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003883 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003884
Evan Cheng43cd9e32010-04-01 06:04:33 +00003885 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003886 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003887 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Lang Hamesdd478042013-01-31 20:23:43 +00003888
3889 // Don't promote to an alignment that would require dynamic stack
Stephen Lincfe7f352013-07-08 00:37:03 +00003890 // realignment.
Lang Hamesdd478042013-01-31 20:23:43 +00003891 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
3892 if (!TRI->needsStackRealignment(MF))
3893 while (NewAlign > Align &&
3894 TLI.getDataLayout()->exceedsNaturalStackAlignment(NewAlign))
3895 NewAlign /= 2;
3896
Evan Cheng43cd9e32010-04-01 06:04:33 +00003897 if (NewAlign > Align) {
3898 // Give the stack frame object a larger alignment if needed.
3899 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3900 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3901 Align = NewAlign;
3902 }
3903 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003904
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003905 SmallVector<SDValue, 8> OutChains;
Evan Chengef377ad2008-05-15 08:39:06 +00003906 unsigned NumMemOps = MemOps.size();
Evan Chengda3db112008-06-30 07:31:25 +00003907 uint64_t SrcOff = 0, DstOff = 0;
Chris Lattnerbb1a1bd2009-09-20 17:32:21 +00003908 for (unsigned i = 0; i != NumMemOps; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003909 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003910 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003911 SDValue Value, Store;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003912
Evan Cheng79e2ca92012-12-10 23:21:26 +00003913 if (VTSize > Size) {
3914 // Issuing an unaligned load / store pair that overlaps with the previous
3915 // pair. Adjust the offset accordingly.
3916 assert(i == NumMemOps-1 && i != 0);
3917 SrcOff -= VTSize - Size;
3918 DstOff -= VTSize - Size;
3919 }
3920
Evan Cheng43cd9e32010-04-01 06:04:33 +00003921 if (CopyFromStr &&
3922 (isZeroStr || (VT.isInteger() && !VT.isVector()))) {
Evan Chengef377ad2008-05-15 08:39:06 +00003923 // It's unlikely a store of a vector immediate can be done in a single
3924 // instruction. It would require a load from a constantpool first.
Evan Cheng43cd9e32010-04-01 06:04:33 +00003925 // We only handle zero vectors here.
Evan Chengda3db112008-06-30 07:31:25 +00003926 // FIXME: Handle other cases where store of vector immediate is done in
3927 // a single instruction.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003928 Value = getMemsetStringVal(VT, dl, DAG, TLI, Str.substr(SrcOff));
Evan Cheng79e2ca92012-12-10 23:21:26 +00003929 if (Value.getNode())
3930 Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003931 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Evan Cheng79e2ca92012-12-10 23:21:26 +00003932 DstPtrInfo.getWithOffset(DstOff), isVol,
3933 false, Align);
3934 }
3935
3936 if (!Store.getNode()) {
Dale Johannesen315fb722009-06-22 20:59:07 +00003937 // The type might not be legal for the target. This should only happen
3938 // if the type is smaller than a legal type, as on PPC, so the right
Dale Johannesen92c11e92009-06-24 17:11:31 +00003939 // thing to do is generate a LoadExt/StoreTrunc pair. These simplify
3940 // to Load/Store if NVT==VT.
Dale Johannesen315fb722009-06-22 20:59:07 +00003941 // FIXME does the case above also need this?
Owen Anderson117c9e82009-08-12 00:36:31 +00003942 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
Dale Johannesen92c11e92009-06-24 17:11:31 +00003943 assert(NVT.bitsGE(VT));
Stuart Hastings81c43062011-02-16 16:23:55 +00003944 Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00003945 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003946 SrcPtrInfo.getWithOffset(SrcOff), VT, isVol, false,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003947 MinAlign(SrcAlign, SrcOff));
Dale Johannesen92c11e92009-06-24 17:11:31 +00003948 Store = DAG.getTruncStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003949 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003950 DstPtrInfo.getWithOffset(DstOff), VT, isVol,
3951 false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003952 }
3953 OutChains.push_back(Store);
3954 SrcOff += VTSize;
3955 DstOff += VTSize;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003956 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003957 }
3958
Craig Topper48d114b2014-04-26 18:35:24 +00003959 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003960}
3961
Andrew Trickef9de2a2013-05-25 02:42:55 +00003962static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003963 SDValue Chain, SDValue Dst,
3964 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003965 unsigned Align, bool isVol,
3966 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003967 MachinePointerInfo DstPtrInfo,
3968 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003969 // Turn a memmove of undef to nop.
3970 if (Src.getOpcode() == ISD::UNDEF)
3971 return Chain;
Dan Gohman714663a2008-05-29 19:42:22 +00003972
3973 // Expand memmove to a series of load and store ops if the size operand falls
3974 // below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00003975 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003976 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003977 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003978 MachineFunction &MF = DAG.getMachineFunction();
3979 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00003980 bool OptSize = MF.getFunction()->getAttributes().
3981 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003982 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3983 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3984 DstAlignCanChange = true;
3985 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3986 if (Align > SrcAlign)
3987 SrcAlign = Align;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003988 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003989
Evan Cheng4c014c82010-04-01 18:19:11 +00003990 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng962711e2012-12-12 02:34:41 +00003991 (DstAlignCanChange ? 0 : Align), SrcAlign,
3992 false, false, false, false, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003993 return SDValue();
Dan Gohman714663a2008-05-29 19:42:22 +00003994
Evan Cheng43cd9e32010-04-01 06:04:33 +00003995 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003996 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003997 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003998 if (NewAlign > Align) {
3999 // Give the stack frame object a larger alignment if needed.
4000 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
4001 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
4002 Align = NewAlign;
4003 }
4004 }
Dan Gohman714663a2008-05-29 19:42:22 +00004005
Evan Cheng43cd9e32010-04-01 06:04:33 +00004006 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004007 SmallVector<SDValue, 8> LoadValues;
4008 SmallVector<SDValue, 8> LoadChains;
4009 SmallVector<SDValue, 8> OutChains;
Dan Gohman714663a2008-05-29 19:42:22 +00004010 unsigned NumMemOps = MemOps.size();
4011 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004012 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00004013 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00004014 SDValue Value;
Dan Gohman714663a2008-05-29 19:42:22 +00004015
Dale Johannesenabf66b82009-02-03 22:26:09 +00004016 Value = DAG.getLoad(VT, dl, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00004017 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00004018 SrcPtrInfo.getWithOffset(SrcOff), isVol,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004019 false, false, SrcAlign);
Dan Gohman714663a2008-05-29 19:42:22 +00004020 LoadValues.push_back(Value);
4021 LoadChains.push_back(Value.getValue(1));
4022 SrcOff += VTSize;
4023 }
Craig Topper48d114b2014-04-26 18:35:24 +00004024 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Dan Gohman714663a2008-05-29 19:42:22 +00004025 OutChains.clear();
4026 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004027 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00004028 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00004029 SDValue Store;
Dan Gohman714663a2008-05-29 19:42:22 +00004030
Dale Johannesenabf66b82009-02-03 22:26:09 +00004031 Store = DAG.getStore(Chain, dl, LoadValues[i],
Andrew Tricke2431c62013-05-25 03:08:10 +00004032 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00004033 DstPtrInfo.getWithOffset(DstOff), isVol, false, Align);
Dan Gohman714663a2008-05-29 19:42:22 +00004034 OutChains.push_back(Store);
4035 DstOff += VTSize;
4036 }
4037
Craig Topper48d114b2014-04-26 18:35:24 +00004038 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman714663a2008-05-29 19:42:22 +00004039}
4040
Serge Pavlov8ec39992013-09-17 16:24:42 +00004041/// \brief Lower the call to 'memset' intrinsic function into a series of store
4042/// operations.
4043///
4044/// \param DAG Selection DAG where lowered code is placed.
4045/// \param dl Link to corresponding IR location.
4046/// \param Chain Control flow dependency.
4047/// \param Dst Pointer to destination memory location.
4048/// \param Src Value of byte to write into the memory.
4049/// \param Size Number of bytes to write.
4050/// \param Align Alignment of the destination in bytes.
4051/// \param isVol True if destination is volatile.
4052/// \param DstPtrInfo IR information on the memory pointer.
4053/// \returns New head in the control flow, if lowering was successful, empty
4054/// SDValue otherwise.
4055///
4056/// The function tries to replace 'llvm.memset' intrinsic with several store
4057/// operations and value calculation code. This is usually profitable for small
4058/// memory size.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004059static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00004060 SDValue Chain, SDValue Dst,
4061 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004062 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004063 MachinePointerInfo DstPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00004064 // Turn a memset of undef to nop.
4065 if (Src.getOpcode() == ISD::UNDEF)
4066 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004067
4068 // Expand memset to a series of load/store ops if the size operand
4069 // falls below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00004070 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004071 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00004072 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00004073 MachineFunction &MF = DAG.getMachineFunction();
4074 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00004075 bool OptSize = MF.getFunction()->getAttributes().
4076 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004077 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
4078 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
4079 DstAlignCanChange = true;
Lang Hames58dba012011-10-26 23:50:43 +00004080 bool IsZeroVal =
Evan Cheng61399372010-04-02 19:36:14 +00004081 isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue();
Evan Cheng3ae2b792011-01-06 06:52:41 +00004082 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
Evan Cheng43cd9e32010-04-01 06:04:33 +00004083 Size, (DstAlignCanChange ? 0 : Align), 0,
Evan Cheng962711e2012-12-12 02:34:41 +00004084 true, IsZeroVal, false, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004085 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00004086
Evan Cheng43cd9e32010-04-01 06:04:33 +00004087 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00004088 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00004089 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004090 if (NewAlign > Align) {
4091 // Give the stack frame object a larger alignment if needed.
4092 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
4093 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
4094 Align = NewAlign;
4095 }
4096 }
4097
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004098 SmallVector<SDValue, 8> OutChains;
Dan Gohmanda440542008-04-28 17:15:20 +00004099 uint64_t DstOff = 0;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004100 unsigned NumMemOps = MemOps.size();
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004101
4102 // Find the largest store and generate the bit pattern for it.
4103 EVT LargestVT = MemOps[0];
4104 for (unsigned i = 1; i < NumMemOps; i++)
4105 if (MemOps[i].bitsGT(LargestVT))
4106 LargestVT = MemOps[i];
4107 SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
4108
Dan Gohman544ab2c2008-04-12 04:36:06 +00004109 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004110 EVT VT = MemOps[i];
Evan Cheng79e2ca92012-12-10 23:21:26 +00004111 unsigned VTSize = VT.getSizeInBits() / 8;
4112 if (VTSize > Size) {
4113 // Issuing an unaligned load / store pair that overlaps with the previous
4114 // pair. Adjust the offset accordingly.
4115 assert(i == NumMemOps-1 && i != 0);
4116 DstOff -= VTSize - Size;
4117 }
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004118
4119 // If this store is smaller than the largest store see whether we can get
4120 // the smaller value for free with a truncate.
4121 SDValue Value = MemSetValue;
4122 if (VT.bitsLT(LargestVT)) {
4123 if (!LargestVT.isVector() && !VT.isVector() &&
4124 TLI.isTruncateFree(LargestVT, VT))
4125 Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
4126 else
4127 Value = getMemsetValue(Src, VT, DAG, dl);
4128 }
4129 assert(Value.getValueType() == VT && "Value with wrong type.");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004130 SDValue Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00004131 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00004132 DstPtrInfo.getWithOffset(DstOff),
Dale Johannesened0d8402010-11-18 01:35:23 +00004133 isVol, false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004134 OutChains.push_back(Store);
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004135 DstOff += VT.getSizeInBits() / 8;
Evan Cheng79e2ca92012-12-10 23:21:26 +00004136 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004137 }
4138
Craig Topper48d114b2014-04-26 18:35:24 +00004139 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004140}
4141
Andrew Trickef9de2a2013-05-25 02:42:55 +00004142SDValue SelectionDAG::getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004143 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004144 unsigned Align, bool isVol, bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004145 MachinePointerInfo DstPtrInfo,
4146 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004147 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004148
4149 // Check to see if we should lower the memcpy to loads and stores first.
4150 // For cases within the target-specified limits, this is the best choice.
4151 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4152 if (ConstantSize) {
4153 // Memcpy with size zero? Just return the original chain.
4154 if (ConstantSize->isNullValue())
4155 return Chain;
4156
Evan Cheng43cd9e32010-04-01 06:04:33 +00004157 SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
4158 ConstantSize->getZExtValue(),Align,
Chris Lattner2510de22010-09-21 05:40:29 +00004159 isVol, false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004160 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004161 return Result;
4162 }
4163
4164 // Then check to see if we should lower the memcpy with target-specific
4165 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004166 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004167 TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align,
Mon P Wangc576ee92010-04-04 03:10:48 +00004168 isVol, AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004169 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004170 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004171 return Result;
4172
4173 // If we really need inline code and the target declined to provide it,
4174 // use a (potentially long) sequence of loads and stores.
4175 if (AlwaysInline) {
4176 assert(ConstantSize && "AlwaysInline requires a constant size!");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004177 return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004178 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004179 true, DstPtrInfo, SrcPtrInfo);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004180 }
4181
Dan Gohmanf38547c2010-04-05 20:24:08 +00004182 // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
4183 // memcpy is not guaranteed to be safe. libc memcpys aren't required to
4184 // respect volatile, so they may do things like read or write memory
4185 // beyond the given memory regions. But fixing this isn't easy, and most
4186 // people don't care.
4187
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004188 const TargetLowering *TLI = TM.getTargetLowering();
4189
Dan Gohman544ab2c2008-04-12 04:36:06 +00004190 // Emit a library call.
4191 TargetLowering::ArgListTy Args;
4192 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004193 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004194 Entry.Node = Dst; Args.push_back(Entry);
4195 Entry.Node = Src; Args.push_back(Entry);
4196 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004197 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004198 TargetLowering::CallLoweringInfo CLI(*this);
4199 CLI.setDebugLoc(dl).setChain(Chain)
4200 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY),
4201 Type::getVoidTy(*getContext()),
4202 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004203 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004204 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004205 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004206
Dan Gohman544ab2c2008-04-12 04:36:06 +00004207 return CallResult.second;
4208}
4209
Andrew Trickef9de2a2013-05-25 02:42:55 +00004210SDValue SelectionDAG::getMemmove(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004211 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004212 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004213 MachinePointerInfo DstPtrInfo,
4214 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004215 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004216
Dan Gohman714663a2008-05-29 19:42:22 +00004217 // Check to see if we should lower the memmove to loads and stores first.
4218 // For cases within the target-specified limits, this is the best choice.
4219 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4220 if (ConstantSize) {
4221 // Memmove with size zero? Just return the original chain.
4222 if (ConstantSize->isNullValue())
4223 return Chain;
4224
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004225 SDValue Result =
Dale Johannesenabf66b82009-02-03 22:26:09 +00004226 getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004227 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004228 false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004229 if (Result.getNode())
Dan Gohman714663a2008-05-29 19:42:22 +00004230 return Result;
4231 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00004232
4233 // Then check to see if we should lower the memmove with target-specific
4234 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004235 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004236 TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004237 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004238 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004239 return Result;
4240
Mon P Wangbf862242010-04-06 08:27:51 +00004241 // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
4242 // not be safe. See memcpy above for more details.
4243
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004244 const TargetLowering *TLI = TM.getTargetLowering();
4245
Dan Gohman544ab2c2008-04-12 04:36:06 +00004246 // Emit a library call.
4247 TargetLowering::ArgListTy Args;
4248 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004249 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004250 Entry.Node = Dst; Args.push_back(Entry);
4251 Entry.Node = Src; Args.push_back(Entry);
4252 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004253 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004254 TargetLowering::CallLoweringInfo CLI(*this);
4255 CLI.setDebugLoc(dl).setChain(Chain)
4256 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
4257 Type::getVoidTy(*getContext()),
4258 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004259 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004260 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004261 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004262
Dan Gohman544ab2c2008-04-12 04:36:06 +00004263 return CallResult.second;
4264}
4265
Andrew Trickef9de2a2013-05-25 02:42:55 +00004266SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004267 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004268 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004269 MachinePointerInfo DstPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004270 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004271
4272 // Check to see if we should lower the memset to stores first.
4273 // For cases within the target-specified limits, this is the best choice.
4274 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4275 if (ConstantSize) {
4276 // Memset with size zero? Just return the original chain.
4277 if (ConstantSize->isNullValue())
4278 return Chain;
4279
Mon P Wangc576ee92010-04-04 03:10:48 +00004280 SDValue Result =
4281 getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
Chris Lattner2510de22010-09-21 05:40:29 +00004282 Align, isVol, DstPtrInfo);
Mon P Wangc576ee92010-04-04 03:10:48 +00004283
Gabor Greiff304a7a2008-08-28 21:40:38 +00004284 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004285 return Result;
4286 }
4287
4288 // Then check to see if we should lower the memset with target-specific
4289 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004290 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004291 TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004292 DstPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004293 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004294 return Result;
4295
Wesley Peck527da1b2010-11-23 03:31:01 +00004296 // Emit a library call.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004297 const TargetLowering *TLI = TM.getTargetLowering();
4298 Type *IntPtrTy = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004299 TargetLowering::ArgListTy Args;
4300 TargetLowering::ArgListEntry Entry;
4301 Entry.Node = Dst; Entry.Ty = IntPtrTy;
4302 Args.push_back(Entry);
4303 // Extend or truncate the argument to be an i32 value for the call.
Owen Anderson9f944592009-08-11 20:47:22 +00004304 if (Src.getValueType().bitsGT(MVT::i32))
4305 Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004306 else
Owen Anderson9f944592009-08-11 20:47:22 +00004307 Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
Owen Anderson55f1c092009-08-13 21:58:54 +00004308 Entry.Node = Src;
4309 Entry.Ty = Type::getInt32Ty(*getContext());
4310 Entry.isSExt = true;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004311 Args.push_back(Entry);
Owen Anderson55f1c092009-08-13 21:58:54 +00004312 Entry.Node = Size;
4313 Entry.Ty = IntPtrTy;
4314 Entry.isSExt = false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004315 Args.push_back(Entry);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004316
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004317 // FIXME: pass in SDLoc
4318 TargetLowering::CallLoweringInfo CLI(*this);
4319 CLI.setDebugLoc(dl).setChain(Chain)
4320 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET),
4321 Type::getVoidTy(*getContext()),
4322 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00004323 TLI->getPointerTy()), std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004324 .setDiscardResult();
4325
4326 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004327 return CallResult.second;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00004328}
4329
Andrew Trickef9de2a2013-05-25 02:42:55 +00004330SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004331 SDVTList VTList, ArrayRef<SDValue> Ops,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004332 MachineMemOperand *MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004333 AtomicOrdering SuccessOrdering,
4334 AtomicOrdering FailureOrdering,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004335 SynchronizationScope SynchScope) {
4336 FoldingSetNodeID ID;
4337 ID.AddInteger(MemVT.getRawBits());
Craig Topper8c0b4d02014-04-28 05:57:50 +00004338 AddNodeIDNode(ID, Opcode, VTList, Ops);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004339 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004340 void* IP = nullptr;
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004341 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4342 cast<AtomicSDNode>(E)->refineAlignment(MMO);
4343 return SDValue(E, 0);
4344 }
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004345
4346 // Allocate the operands array for the node out of the BumpPtrAllocator, since
4347 // SDNode doesn't have access to it. This memory will be "leaked" when
4348 // the node is deallocated, but recovered when the allocator is released.
4349 // If the number of operands is less than 5 we use AtomicSDNode's internal
4350 // storage.
Craig Topper8c0b4d02014-04-28 05:57:50 +00004351 unsigned NumOps = Ops.size();
4352 SDUse *DynOps = NumOps > 4 ? OperandAllocator.Allocate<SDUse>(NumOps)
4353 : nullptr;
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004354
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004355 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(),
4356 dl.getDebugLoc(), VTList, MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004357 Ops.data(), DynOps, NumOps, MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004358 SuccessOrdering, FailureOrdering,
4359 SynchScope);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004360 CSEMap.InsertNode(N, IP);
4361 AllNodes.push_back(N);
4362 return SDValue(N, 0);
4363}
4364
4365SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004366 SDVTList VTList, ArrayRef<SDValue> Ops,
Tim Northovere94a5182014-03-11 10:48:52 +00004367 MachineMemOperand *MMO,
4368 AtomicOrdering Ordering,
4369 SynchronizationScope SynchScope) {
Craig Topper8c0b4d02014-04-28 05:57:50 +00004370 return getAtomic(Opcode, dl, MemVT, VTList, Ops, MMO, Ordering,
Tim Northovere94a5182014-03-11 10:48:52 +00004371 Ordering, SynchScope);
4372}
4373
Tim Northover420a2162014-06-13 14:24:07 +00004374SDValue SelectionDAG::getAtomicCmpSwap(
4375 unsigned Opcode, SDLoc dl, EVT MemVT, SDVTList VTs, SDValue Chain,
4376 SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo,
4377 unsigned Alignment, AtomicOrdering SuccessOrdering,
4378 AtomicOrdering FailureOrdering, SynchronizationScope SynchScope) {
4379 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4380 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
4381 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4382
Dan Gohman48b185d2009-09-25 20:36:54 +00004383 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4384 Alignment = getEVTAlignment(MemVT);
4385
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004386 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004387
Eli Friedmane978d2f2011-09-07 02:23:42 +00004388 // FIXME: Volatile isn't really correct; we should keep track of atomic
4389 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004390 unsigned Flags = MachineMemOperand::MOVolatile;
Tim Northover420a2162014-06-13 14:24:07 +00004391 Flags |= MachineMemOperand::MOLoad;
4392 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004393
4394 MachineMemOperand *MMO =
Chris Lattner15d84c42010-09-21 04:53:42 +00004395 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
Dan Gohman48b185d2009-09-25 20:36:54 +00004396
Tim Northover420a2162014-06-13 14:24:07 +00004397 return getAtomicCmpSwap(Opcode, dl, MemVT, VTs, Chain, Ptr, Cmp, Swp, MMO,
4398 SuccessOrdering, FailureOrdering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004399}
4400
Tim Northover420a2162014-06-13 14:24:07 +00004401SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, SDLoc dl, EVT MemVT,
4402 SDVTList VTs, SDValue Chain, SDValue Ptr,
4403 SDValue Cmp, SDValue Swp,
4404 MachineMemOperand *MMO,
4405 AtomicOrdering SuccessOrdering,
4406 AtomicOrdering FailureOrdering,
4407 SynchronizationScope SynchScope) {
4408 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4409 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004410 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4411
Dale Johannesen839acbb2009-01-29 00:47:48 +00004412 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Tim Northover420a2162014-06-13 14:24:07 +00004413 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO,
4414 SuccessOrdering, FailureOrdering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004415}
4416
Andrew Trickef9de2a2013-05-25 02:42:55 +00004417SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004418 SDValue Chain,
Scott Michelcf0da6c2009-02-17 22:15:04 +00004419 SDValue Ptr, SDValue Val,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004420 const Value* PtrVal,
Eli Friedmanadec5872011-07-29 03:05:32 +00004421 unsigned Alignment,
4422 AtomicOrdering Ordering,
4423 SynchronizationScope SynchScope) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004424 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4425 Alignment = getEVTAlignment(MemVT);
4426
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004427 MachineFunction &MF = getMachineFunction();
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004428 // An atomic store does not load. An atomic load does not store.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004429 // (An atomicrmw obviously both loads and stores.)
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004430 // For now, atomics are considered to be volatile always, and they are
4431 // chained as such.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004432 // FIXME: Volatile isn't really correct; we should keep track of atomic
4433 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004434 unsigned Flags = MachineMemOperand::MOVolatile;
4435 if (Opcode != ISD::ATOMIC_STORE)
4436 Flags |= MachineMemOperand::MOLoad;
4437 if (Opcode != ISD::ATOMIC_LOAD)
4438 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004439
4440 MachineMemOperand *MMO =
Chris Lattnerb5f49202010-09-21 04:46:39 +00004441 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
Dan Gohman48b185d2009-09-25 20:36:54 +00004442 MemVT.getStoreSize(), Alignment);
4443
Eli Friedmanadec5872011-07-29 03:05:32 +00004444 return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO,
4445 Ordering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004446}
4447
Andrew Trickef9de2a2013-05-25 02:42:55 +00004448SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dan Gohman48b185d2009-09-25 20:36:54 +00004449 SDValue Chain,
4450 SDValue Ptr, SDValue Val,
Eli Friedmanadec5872011-07-29 03:05:32 +00004451 MachineMemOperand *MMO,
4452 AtomicOrdering Ordering,
4453 SynchronizationScope SynchScope) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004454 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
4455 Opcode == ISD::ATOMIC_LOAD_SUB ||
4456 Opcode == ISD::ATOMIC_LOAD_AND ||
4457 Opcode == ISD::ATOMIC_LOAD_OR ||
4458 Opcode == ISD::ATOMIC_LOAD_XOR ||
4459 Opcode == ISD::ATOMIC_LOAD_NAND ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004460 Opcode == ISD::ATOMIC_LOAD_MIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004461 Opcode == ISD::ATOMIC_LOAD_MAX ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004462 Opcode == ISD::ATOMIC_LOAD_UMIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004463 Opcode == ISD::ATOMIC_LOAD_UMAX ||
Eli Friedman342e8df2011-08-24 20:50:09 +00004464 Opcode == ISD::ATOMIC_SWAP ||
4465 Opcode == ISD::ATOMIC_STORE) &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004466 "Invalid Atomic Op");
4467
Owen Anderson53aa7a92009-08-10 22:56:29 +00004468 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004469
Eli Friedman342e8df2011-08-24 20:50:09 +00004470 SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
4471 getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004472 SDValue Ops[] = {Chain, Ptr, Val};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004473 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004474}
4475
Andrew Trickef9de2a2013-05-25 02:42:55 +00004476SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Eli Friedman342e8df2011-08-24 20:50:09 +00004477 EVT VT, SDValue Chain,
4478 SDValue Ptr,
Eli Friedman342e8df2011-08-24 20:50:09 +00004479 MachineMemOperand *MMO,
4480 AtomicOrdering Ordering,
4481 SynchronizationScope SynchScope) {
4482 assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
4483
4484 SDVTList VTs = getVTList(VT, MVT::Other);
Eli Friedman342e8df2011-08-24 20:50:09 +00004485 SDValue Ops[] = {Chain, Ptr};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004486 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Eli Friedman342e8df2011-08-24 20:50:09 +00004487}
4488
Duncan Sands739a0542008-07-02 17:40:58 +00004489/// getMergeValues - Create a MERGE_VALUES node from the given operands.
Craig Topper64941d92014-04-27 19:20:57 +00004490SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, SDLoc dl) {
4491 if (Ops.size() == 1)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004492 return Ops[0];
4493
Owen Anderson53aa7a92009-08-10 22:56:29 +00004494 SmallVector<EVT, 4> VTs;
Craig Topper64941d92014-04-27 19:20:57 +00004495 VTs.reserve(Ops.size());
4496 for (unsigned i = 0; i < Ops.size(); ++i)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004497 VTs.push_back(Ops[i].getValueType());
Craig Topperbb533072014-04-27 19:21:02 +00004498 return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops);
Dale Johannesenae7992a2009-02-02 20:47:48 +00004499}
4500
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004501SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004502SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004503 ArrayRef<SDValue> Ops,
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004504 EVT MemVT, MachinePointerInfo PtrInfo,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004505 unsigned Align, bool Vol,
4506 bool ReadMem, bool WriteMem) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004507 if (Align == 0) // Ensure that codegen never sees alignment 0
4508 Align = getEVTAlignment(MemVT);
4509
4510 MachineFunction &MF = getMachineFunction();
4511 unsigned Flags = 0;
4512 if (WriteMem)
4513 Flags |= MachineMemOperand::MOStore;
4514 if (ReadMem)
4515 Flags |= MachineMemOperand::MOLoad;
4516 if (Vol)
4517 Flags |= MachineMemOperand::MOVolatile;
4518 MachineMemOperand *MMO =
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004519 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
Dan Gohman48b185d2009-09-25 20:36:54 +00004520
Craig Topper206fcd42014-04-26 19:29:41 +00004521 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004522}
4523
4524SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004525SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004526 ArrayRef<SDValue> Ops, EVT MemVT,
4527 MachineMemOperand *MMO) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004528 assert((Opcode == ISD::INTRINSIC_VOID ||
4529 Opcode == ISD::INTRINSIC_W_CHAIN ||
Dale Johannesene660f4d2010-10-26 23:11:10 +00004530 Opcode == ISD::PREFETCH ||
Nadav Rotem7c277da2012-09-06 09:17:37 +00004531 Opcode == ISD::LIFETIME_START ||
4532 Opcode == ISD::LIFETIME_END ||
Dan Gohman48b185d2009-09-25 20:36:54 +00004533 (Opcode <= INT_MAX &&
4534 (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
4535 "Opcode is not a memory-accessing opcode!");
4536
Dale Johannesen839acbb2009-01-29 00:47:48 +00004537 // Memoize the node unless it returns a flag.
4538 MemIntrinsicSDNode *N;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004539 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004540 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004541 AddNodeIDNode(ID, Opcode, VTList, Ops);
Pete Cooper91244262012-07-30 20:23:19 +00004542 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004543 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004544 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4545 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004546 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004547 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004548
Jack Carter170a5f22013-09-09 22:02:08 +00004549 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4550 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004551 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004552 CSEMap.InsertNode(N, IP);
4553 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004554 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4555 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004556 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004557 }
4558 AllNodes.push_back(N);
4559 return SDValue(N, 0);
4560}
4561
Chris Lattnerea952f02010-09-21 17:24:05 +00004562/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4563/// MachinePointerInfo record from it. This is particularly useful because the
4564/// code generator has many cases where it doesn't bother passing in a
4565/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4566static MachinePointerInfo InferPointerInfo(SDValue Ptr, int64_t Offset = 0) {
4567 // If this is FI+Offset, we can model it.
4568 if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
4569 return MachinePointerInfo::getFixedStack(FI->getIndex(), Offset);
4570
4571 // If this is (FI+Offset1)+Offset2, we can model it.
4572 if (Ptr.getOpcode() != ISD::ADD ||
4573 !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
4574 !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
4575 return MachinePointerInfo();
Wesley Peck527da1b2010-11-23 03:31:01 +00004576
Chris Lattnerea952f02010-09-21 17:24:05 +00004577 int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4578 return MachinePointerInfo::getFixedStack(FI, Offset+
4579 cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
4580}
4581
4582/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4583/// MachinePointerInfo record from it. This is particularly useful because the
4584/// code generator has many cases where it doesn't bother passing in a
4585/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4586static MachinePointerInfo InferPointerInfo(SDValue Ptr, SDValue OffsetOp) {
4587 // If the 'Offset' value isn't a constant, we can't handle this.
4588 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
4589 return InferPointerInfo(Ptr, OffsetNode->getSExtValue());
4590 if (OffsetOp.getOpcode() == ISD::UNDEF)
4591 return InferPointerInfo(Ptr);
4592 return MachinePointerInfo();
4593}
Wesley Peck527da1b2010-11-23 03:31:01 +00004594
Chris Lattnerea952f02010-09-21 17:24:05 +00004595
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004596SDValue
4597SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004598 EVT VT, SDLoc dl, SDValue Chain,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004599 SDValue Ptr, SDValue Offset,
4600 MachinePointerInfo PtrInfo, EVT MemVT,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004601 bool isVolatile, bool isNonTemporal, bool isInvariant,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004602 unsigned Alignment, const MDNode *TBAAInfo,
4603 const MDNode *Ranges) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004604 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004605 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004606 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4607 Alignment = getEVTAlignment(VT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004608
Dan Gohman48b185d2009-09-25 20:36:54 +00004609 unsigned Flags = MachineMemOperand::MOLoad;
4610 if (isVolatile)
4611 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004612 if (isNonTemporal)
4613 Flags |= MachineMemOperand::MONonTemporal;
Pete Cooper82cd9e82011-11-08 18:42:53 +00004614 if (isInvariant)
4615 Flags |= MachineMemOperand::MOInvariant;
Wesley Peck527da1b2010-11-23 03:31:01 +00004616
Chris Lattnerea952f02010-09-21 17:24:05 +00004617 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4618 // clients.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004619 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004620 PtrInfo = InferPointerInfo(Ptr, Offset);
Wesley Peck527da1b2010-11-23 03:31:01 +00004621
Chris Lattnerea952f02010-09-21 17:24:05 +00004622 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004623 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004624 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004625 TBAAInfo, Ranges);
Evan Cheng1c349f12010-07-07 22:15:37 +00004626 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004627}
4628
4629SDValue
Wesley Peck527da1b2010-11-23 03:31:01 +00004630SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004631 EVT VT, SDLoc dl, SDValue Chain,
Dan Gohman48b185d2009-09-25 20:36:54 +00004632 SDValue Ptr, SDValue Offset, EVT MemVT,
4633 MachineMemOperand *MMO) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004634 if (VT == MemVT) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004635 ExtType = ISD::NON_EXTLOAD;
4636 } else if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004637 assert(VT == MemVT && "Non-extending load from different memory type!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004638 } else {
4639 // Extending load.
Dan Gohmancecad352009-12-14 23:40:38 +00004640 assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
4641 "Should only be an extending load, not truncating!");
Dan Gohman08c0a952009-09-23 21:02:20 +00004642 assert(VT.isInteger() == MemVT.isInteger() &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004643 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohmancecad352009-12-14 23:40:38 +00004644 assert(VT.isVector() == MemVT.isVector() &&
4645 "Cannot use trunc store to convert to or from a vector!");
4646 assert((!VT.isVector() ||
4647 VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
4648 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004649 }
4650
4651 bool Indexed = AM != ISD::UNINDEXED;
4652 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
4653 "Unindexed load with an offset!");
4654
4655 SDVTList VTs = Indexed ?
Owen Anderson9f944592009-08-11 20:47:22 +00004656 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004657 SDValue Ops[] = { Chain, Ptr, Offset };
4658 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004659 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops);
Dan Gohman08c0a952009-09-23 21:02:20 +00004660 ID.AddInteger(MemVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004661 ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004662 MMO->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004663 MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004664 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004665 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004666 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4667 cast<LoadSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004668 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004669 }
Jack Carter170a5f22013-09-09 22:02:08 +00004670 SDNode *N = new (NodeAllocator) LoadSDNode(Ops, dl.getIROrder(),
4671 dl.getDebugLoc(), VTs, AM, ExtType,
Dan Gohman01c65a22010-03-18 18:49:47 +00004672 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004673 CSEMap.InsertNode(N, IP);
4674 AllNodes.push_back(N);
4675 return SDValue(N, 0);
4676}
4677
Andrew Trickef9de2a2013-05-25 02:42:55 +00004678SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004679 SDValue Chain, SDValue Ptr,
Chris Lattner2510de22010-09-21 05:40:29 +00004680 MachinePointerInfo PtrInfo,
4681 bool isVolatile, bool isNonTemporal,
Michael Ilsemand5f91512012-09-10 16:56:31 +00004682 bool isInvariant, unsigned Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004683 const MDNode *TBAAInfo,
4684 const MDNode *Ranges) {
Chris Lattner2510de22010-09-21 05:40:29 +00004685 SDValue Undef = getUNDEF(Ptr.getValueType());
4686 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004687 PtrInfo, VT, isVolatile, isNonTemporal, isInvariant, Alignment,
4688 TBAAInfo, Ranges);
Chris Lattner2510de22010-09-21 05:40:29 +00004689}
Dale Johannesen839acbb2009-01-29 00:47:48 +00004690
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004691SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
4692 SDValue Chain, SDValue Ptr,
4693 MachineMemOperand *MMO) {
4694 SDValue Undef = getUNDEF(Ptr.getValueType());
4695 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
4696 VT, MMO);
4697}
4698
Andrew Trickef9de2a2013-05-25 02:42:55 +00004699SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
Chris Lattner2510de22010-09-21 05:40:29 +00004700 SDValue Chain, SDValue Ptr,
4701 MachinePointerInfo PtrInfo, EVT MemVT,
4702 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004703 unsigned Alignment, const MDNode *TBAAInfo) {
Chris Lattner2510de22010-09-21 05:40:29 +00004704 SDValue Undef = getUNDEF(Ptr.getValueType());
4705 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004706 PtrInfo, MemVT, isVolatile, isNonTemporal, false, Alignment,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004707 TBAAInfo);
Chris Lattner2510de22010-09-21 05:40:29 +00004708}
4709
4710
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004711SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
4712 SDValue Chain, SDValue Ptr, EVT MemVT,
4713 MachineMemOperand *MMO) {
4714 SDValue Undef = getUNDEF(Ptr.getValueType());
4715 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
4716 MemVT, MMO);
4717}
4718
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004719SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004720SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004721 SDValue Offset, ISD::MemIndexedMode AM) {
4722 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
4723 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
4724 "Load is already a indexed load!");
Evan Cheng1c349f12010-07-07 22:15:37 +00004725 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
Chris Lattnerea952f02010-09-21 17:24:05 +00004726 LD->getChain(), Base, Offset, LD->getPointerInfo(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004727 LD->getMemoryVT(), LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004728 false, LD->getAlignment());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004729}
4730
Andrew Trickef9de2a2013-05-25 02:42:55 +00004731SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004732 SDValue Ptr, MachinePointerInfo PtrInfo,
David Greene39c6d012010-02-15 17:00:31 +00004733 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004734 unsigned Alignment, const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004735 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004736 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004737 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman48b185d2009-09-25 20:36:54 +00004738 Alignment = getEVTAlignment(Val.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004739
Dan Gohman48b185d2009-09-25 20:36:54 +00004740 unsigned Flags = MachineMemOperand::MOStore;
4741 if (isVolatile)
4742 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004743 if (isNonTemporal)
4744 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004745
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004746 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004747 PtrInfo = InferPointerInfo(Ptr);
4748
4749 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004750 MachineMemOperand *MMO =
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004751 MF.getMachineMemOperand(PtrInfo, Flags,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004752 Val.getValueType().getStoreSize(), Alignment,
4753 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004754
4755 return getStore(Chain, dl, Val, Ptr, MMO);
4756}
4757
Andrew Trickef9de2a2013-05-25 02:42:55 +00004758SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004759 SDValue Ptr, MachineMemOperand *MMO) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004760 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004761 "Invalid chain type");
Dan Gohman48b185d2009-09-25 20:36:54 +00004762 EVT VT = Val.getValueType();
Owen Anderson9f944592009-08-11 20:47:22 +00004763 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004764 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004765 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4766 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004767 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004768 ID.AddInteger(VT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004769 ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004770 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004771 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004772 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004773 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4774 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004775 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004776 }
Jack Carter170a5f22013-09-09 22:02:08 +00004777 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4778 dl.getDebugLoc(), VTs,
4779 ISD::UNINDEXED, false, VT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004780 CSEMap.InsertNode(N, IP);
4781 AllNodes.push_back(N);
4782 return SDValue(N, 0);
4783}
4784
Andrew Trickef9de2a2013-05-25 02:42:55 +00004785SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004786 SDValue Ptr, MachinePointerInfo PtrInfo,
4787 EVT SVT,bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004788 unsigned Alignment,
4789 const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004790 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004791 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004792 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4793 Alignment = getEVTAlignment(SVT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004794
Dan Gohman48b185d2009-09-25 20:36:54 +00004795 unsigned Flags = MachineMemOperand::MOStore;
4796 if (isVolatile)
4797 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004798 if (isNonTemporal)
4799 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004800
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004801 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004802 PtrInfo = InferPointerInfo(Ptr);
4803
4804 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004805 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004806 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment,
4807 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004808
4809 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
4810}
4811
Andrew Trickef9de2a2013-05-25 02:42:55 +00004812SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004813 SDValue Ptr, EVT SVT,
4814 MachineMemOperand *MMO) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004815 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004816
Michael Ilsemand5f91512012-09-10 16:56:31 +00004817 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004818 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004819 if (VT == SVT)
Dan Gohman48b185d2009-09-25 20:36:54 +00004820 return getStore(Chain, dl, Val, Ptr, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004821
Dan Gohmancecad352009-12-14 23:40:38 +00004822 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
4823 "Should only be a truncating store, not extending!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004824 assert(VT.isInteger() == SVT.isInteger() &&
4825 "Can't do FP-INT conversion!");
Dan Gohmancecad352009-12-14 23:40:38 +00004826 assert(VT.isVector() == SVT.isVector() &&
4827 "Cannot use trunc store to convert to or from a vector!");
4828 assert((!VT.isVector() ||
4829 VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
4830 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004831
Owen Anderson9f944592009-08-11 20:47:22 +00004832 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004833 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004834 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4835 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004836 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004837 ID.AddInteger(SVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004838 ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004839 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004840 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004841 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004842 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4843 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004844 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004845 }
Jack Carter170a5f22013-09-09 22:02:08 +00004846 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4847 dl.getDebugLoc(), VTs,
4848 ISD::UNINDEXED, true, SVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004849 CSEMap.InsertNode(N, IP);
4850 AllNodes.push_back(N);
4851 return SDValue(N, 0);
4852}
4853
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004854SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004855SelectionDAG::getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004856 SDValue Offset, ISD::MemIndexedMode AM) {
4857 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
4858 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
4859 "Store is already a indexed store!");
Owen Anderson9f944592009-08-11 20:47:22 +00004860 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004861 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
4862 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004863 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004864 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohman76a07f52009-02-03 00:08:45 +00004865 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +00004866 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004867 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00004868 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00004869 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00004870
Jack Carter170a5f22013-09-09 22:02:08 +00004871 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4872 dl.getDebugLoc(), VTs, AM,
Dan Gohman01c65a22010-03-18 18:49:47 +00004873 ST->isTruncatingStore(),
4874 ST->getMemoryVT(),
4875 ST->getMemOperand());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004876 CSEMap.InsertNode(N, IP);
4877 AllNodes.push_back(N);
4878 return SDValue(N, 0);
4879}
4880
Andrew Trickef9de2a2013-05-25 02:42:55 +00004881SDValue SelectionDAG::getVAArg(EVT VT, SDLoc dl,
Dale Johannesenabf66b82009-02-03 22:26:09 +00004882 SDValue Chain, SDValue Ptr,
Rafael Espindola2041abd2010-06-26 18:22:20 +00004883 SDValue SV,
4884 unsigned Align) {
4885 SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, MVT::i32) };
Craig Topper48d114b2014-04-26 18:35:24 +00004886 return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops);
Dale Johannesenabf66b82009-02-03 22:26:09 +00004887}
4888
Andrew Trickef9de2a2013-05-25 02:42:55 +00004889SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topperdd5e16d2014-04-27 19:21:06 +00004890 ArrayRef<SDUse> Ops) {
4891 switch (Ops.size()) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004892 case 0: return getNode(Opcode, DL, VT);
Craig Topperdd5e16d2014-04-27 19:21:06 +00004893 case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0]));
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004894 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4895 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman768f2c92008-07-07 18:26:29 +00004896 default: break;
4897 }
4898
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004899 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman768f2c92008-07-07 18:26:29 +00004900 // the regular getNode logic.
Craig Topperdd5e16d2014-04-27 19:21:06 +00004901 SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end());
Craig Topper48d114b2014-04-26 18:35:24 +00004902 return getNode(Opcode, DL, VT, NewOps);
Dan Gohman768f2c92008-07-07 18:26:29 +00004903}
4904
Andrew Trickef9de2a2013-05-25 02:42:55 +00004905SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topper48d114b2014-04-26 18:35:24 +00004906 ArrayRef<SDValue> Ops) {
4907 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00004908 switch (NumOps) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004909 case 0: return getNode(Opcode, DL, VT);
4910 case 1: return getNode(Opcode, DL, VT, Ops[0]);
4911 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4912 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattnerb0713c72005-04-09 03:27:28 +00004913 default: break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00004914 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004915
Chris Lattnerb0713c72005-04-09 03:27:28 +00004916 switch (Opcode) {
4917 default: break;
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004918 case ISD::SELECT_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004919 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004920 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
4921 "LHS and RHS of condition must have same type!");
4922 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4923 "True and False arms of SelectCC must have same type!");
4924 assert(Ops[2].getValueType() == VT &&
4925 "select_cc node must be of same type as true and false value!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004926 break;
4927 }
4928 case ISD::BR_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004929 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004930 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4931 "LHS/RHS of comparison should match types!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004932 break;
4933 }
Chris Lattnerb0713c72005-04-09 03:27:28 +00004934 }
4935
Chris Lattner566307f2005-05-14 07:42:29 +00004936 // Memoize nodes.
Chris Lattnerf9c19152005-08-25 19:12:10 +00004937 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00004938 SDVTList VTs = getVTList(VT);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004939
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004940 if (VT != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00004941 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004942 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00004943 void *IP = nullptr;
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004944
Bill Wendling022d18f2009-12-18 23:32:53 +00004945 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004946 return SDValue(E, 0);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004947
Jack Carter170a5f22013-09-09 22:02:08 +00004948 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004949 VTs, Ops);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00004950 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004951 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004952 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004953 VTs, Ops);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004954 }
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004955
Chris Lattnerb0713c72005-04-09 03:27:28 +00004956 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004957#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00004958 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004959#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004960 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00004961}
4962
Andrew Trickef9de2a2013-05-25 02:42:55 +00004963SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Craig Topper48d114b2014-04-26 18:35:24 +00004964 ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) {
4965 return getNode(Opcode, DL, getVTList(ResultTys), Ops);
Chris Lattner3bf4be42006-08-14 23:31:51 +00004966}
4967
Andrew Trickef9de2a2013-05-25 02:42:55 +00004968SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Craig Topper48d114b2014-04-26 18:35:24 +00004969 ArrayRef<SDValue> Ops) {
Chris Lattner65879ca2006-08-16 22:57:46 +00004970 if (VTList.NumVTs == 1)
Craig Topper48d114b2014-04-26 18:35:24 +00004971 return getNode(Opcode, DL, VTList.VTs[0], Ops);
Chris Lattnerd5531332005-05-14 06:20:26 +00004972
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004973#if 0
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004974 switch (Opcode) {
Chris Lattner669e8c22005-05-14 07:25:05 +00004975 // FIXME: figure out how to safely handle things like
4976 // int foo(int x) { return 1 << (x & 255); }
4977 // int bar() { return foo(256); }
Chris Lattner669e8c22005-05-14 07:25:05 +00004978 case ISD::SRA_PARTS:
4979 case ISD::SRL_PARTS:
4980 case ISD::SHL_PARTS:
4981 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Owen Anderson9f944592009-08-11 20:47:22 +00004982 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004983 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004984 else if (N3.getOpcode() == ISD::AND)
4985 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
4986 // If the and is only masking out bits that cannot effect the shift,
4987 // eliminate the and.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004988 unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
Chris Lattner669e8c22005-05-14 07:25:05 +00004989 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004990 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004991 }
4992 break;
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004993 }
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004994#endif
Chris Lattnerd5531332005-05-14 06:20:26 +00004995
Chris Lattnerf9c19152005-08-25 19:12:10 +00004996 // Memoize the node unless it returns a flag.
4997 SDNode *N;
Craig Topper48d114b2014-04-26 18:35:24 +00004998 unsigned NumOps = Ops.size();
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004999 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00005000 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005001 AddNodeIDNode(ID, Opcode, VTList, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00005002 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00005003 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005004 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00005005
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005006 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00005007 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
5008 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005009 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00005010 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
5011 DL.getDebugLoc(), VTList, Ops[0],
5012 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005013 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00005014 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
5015 DL.getDebugLoc(), VTList, Ops[0],
5016 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005017 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00005018 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00005019 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005020 }
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005021 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00005022 } else {
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005023 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00005024 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
5025 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005026 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00005027 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
5028 DL.getDebugLoc(), VTList, Ops[0],
5029 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005030 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00005031 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
5032 DL.getDebugLoc(), VTList, Ops[0],
5033 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005034 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00005035 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00005036 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00005037 }
Chris Lattnerf9c19152005-08-25 19:12:10 +00005038 }
Chris Lattner006f56b2005-05-14 06:42:57 +00005039 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005040#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00005041 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005042#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005043 return SDValue(N, 0);
Chris Lattnerd5531332005-05-14 06:20:26 +00005044}
5045
Andrew Trickef9de2a2013-05-25 02:42:55 +00005046SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList) {
Craig Topper48d114b2014-04-26 18:35:24 +00005047 return getNode(Opcode, DL, VTList, ArrayRef<SDValue>());
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005048}
5049
Andrew Trickef9de2a2013-05-25 02:42:55 +00005050SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005051 SDValue N1) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005052 SDValue Ops[] = { N1 };
Craig Topper48d114b2014-04-26 18:35:24 +00005053 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005054}
5055
Andrew Trickef9de2a2013-05-25 02:42:55 +00005056SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005057 SDValue N1, SDValue N2) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005058 SDValue Ops[] = { N1, N2 };
Craig Topper48d114b2014-04-26 18:35:24 +00005059 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005060}
5061
Andrew Trickef9de2a2013-05-25 02:42:55 +00005062SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005063 SDValue N1, SDValue N2, SDValue N3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005064 SDValue Ops[] = { N1, N2, N3 };
Craig Topper48d114b2014-04-26 18:35:24 +00005065 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005066}
5067
Andrew Trickef9de2a2013-05-25 02:42:55 +00005068SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005069 SDValue N1, SDValue N2, SDValue N3,
5070 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005071 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00005072 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005073}
5074
Andrew Trickef9de2a2013-05-25 02:42:55 +00005075SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005076 SDValue N1, SDValue N2, SDValue N3,
5077 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005078 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00005079 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005080}
5081
Owen Anderson53aa7a92009-08-10 22:56:29 +00005082SDVTList SelectionDAG::getVTList(EVT VT) {
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00005083 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattner88fa11c2005-11-08 23:30:28 +00005084}
5085
Owen Anderson53aa7a92009-08-10 22:56:29 +00005086SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005087 FoldingSetNodeID ID;
5088 ID.AddInteger(2U);
5089 ID.AddInteger(VT1.getRawBits());
5090 ID.AddInteger(VT2.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +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>(2);
5096 Array[0] = VT1;
5097 Array[1] = VT2;
5098 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
5099 VTListMap.InsertNode(Result, IP);
5100 }
5101 return Result->getSDVTList();
Chris Lattner88fa11c2005-11-08 23:30:28 +00005102}
Dan Gohman17059682008-07-17 19:10:17 +00005103
Owen Anderson53aa7a92009-08-10 22:56:29 +00005104SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005105 FoldingSetNodeID ID;
5106 ID.AddInteger(3U);
5107 ID.AddInteger(VT1.getRawBits());
5108 ID.AddInteger(VT2.getRawBits());
5109 ID.AddInteger(VT3.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +00005110
Craig Topperc0196b12014-04-14 00:51:57 +00005111 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005112 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005113 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005114 EVT *Array = Allocator.Allocate<EVT>(3);
5115 Array[0] = VT1;
5116 Array[1] = VT2;
5117 Array[2] = VT3;
5118 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
5119 VTListMap.InsertNode(Result, IP);
5120 }
5121 return Result->getSDVTList();
Chris Lattnerf98411a2006-08-15 17:46:01 +00005122}
5123
Owen Anderson53aa7a92009-08-10 22:56:29 +00005124SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005125 FoldingSetNodeID ID;
5126 ID.AddInteger(4U);
5127 ID.AddInteger(VT1.getRawBits());
5128 ID.AddInteger(VT2.getRawBits());
5129 ID.AddInteger(VT3.getRawBits());
5130 ID.AddInteger(VT4.getRawBits());
Bill Wendling2d598632008-12-01 23:28:22 +00005131
Craig Topperc0196b12014-04-14 00:51:57 +00005132 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005133 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005134 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005135 EVT *Array = Allocator.Allocate<EVT>(4);
5136 Array[0] = VT1;
5137 Array[1] = VT2;
5138 Array[2] = VT3;
5139 Array[3] = VT4;
5140 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
5141 VTListMap.InsertNode(Result, IP);
5142 }
5143 return Result->getSDVTList();
Bill Wendling2d598632008-12-01 23:28:22 +00005144}
5145
Craig Topperabb4ac72014-04-16 06:10:51 +00005146SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) {
5147 unsigned NumVTs = VTs.size();
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005148 FoldingSetNodeID ID;
5149 ID.AddInteger(NumVTs);
5150 for (unsigned index = 0; index < NumVTs; index++) {
5151 ID.AddInteger(VTs[index].getRawBits());
Chris Lattnerf98411a2006-08-15 17:46:01 +00005152 }
5153
Craig Topperc0196b12014-04-14 00:51:57 +00005154 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005155 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005156 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005157 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
Craig Topperabb4ac72014-04-16 06:10:51 +00005158 std::copy(VTs.begin(), VTs.end(), Array);
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005159 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
5160 VTListMap.InsertNode(Result, IP);
Chris Lattnerf98411a2006-08-15 17:46:01 +00005161 }
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005162 return Result->getSDVTList();
Chris Lattner3bf4be42006-08-14 23:31:51 +00005163}
5164
5165
Chris Lattnerf34156e2006-01-28 09:32:45 +00005166/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
5167/// specified operands. If the resultant node already exists in the DAG,
5168/// this does not modify the specified node, instead it returns the node that
5169/// already exists. If the resultant node does not exist in the DAG, the
5170/// input node is returned. As a degenerate case, if you specify the same
5171/// input operands as the node already has, the input node is returned.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005172SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005173 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005174
Chris Lattnerf34156e2006-01-28 09:32:45 +00005175 // Check to see if there is no change.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005176 if (Op == N->getOperand(0)) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005177
Chris Lattnerf34156e2006-01-28 09:32:45 +00005178 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005179 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005180 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005181 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005182
Dan Gohmanebeccb42008-07-21 22:38:59 +00005183 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005184 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005185 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005186 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005187
Chris Lattnerf34156e2006-01-28 09:32:45 +00005188 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005189 N->OperandList[0].set(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005190
Chris Lattnerf34156e2006-01-28 09:32:45 +00005191 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005192 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005193 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005194}
5195
Dan Gohman92c11ac2010-06-18 15:30:29 +00005196SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005197 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005198
Chris Lattnerf34156e2006-01-28 09:32:45 +00005199 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005200 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005201 return N; // No operands changed, just return the input node.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005202
Chris Lattnerf34156e2006-01-28 09:32:45 +00005203 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005204 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005205 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005206 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005207
Dan Gohmanebeccb42008-07-21 22:38:59 +00005208 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005209 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005210 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005211 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005212
Chris Lattnerf34156e2006-01-28 09:32:45 +00005213 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005214 if (N->OperandList[0] != Op1)
5215 N->OperandList[0].set(Op1);
5216 if (N->OperandList[1] != Op2)
5217 N->OperandList[1].set(Op2);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005218
Chris Lattnerf34156e2006-01-28 09:32:45 +00005219 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005220 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005221 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005222}
5223
Dan Gohman92c11ac2010-06-18 15:30:29 +00005224SDNode *SelectionDAG::
5225UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005226 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005227 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005228}
5229
Dan Gohman92c11ac2010-06-18 15:30:29 +00005230SDNode *SelectionDAG::
5231UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005232 SDValue Op3, SDValue Op4) {
5233 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005234 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005235}
5236
Dan Gohman92c11ac2010-06-18 15:30:29 +00005237SDNode *SelectionDAG::
5238UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005239 SDValue Op3, SDValue Op4, SDValue Op5) {
5240 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005241 return UpdateNodeOperands(N, Ops);
Chris Lattner580b12a2006-01-28 10:09:25 +00005242}
5243
Dan Gohman92c11ac2010-06-18 15:30:29 +00005244SDNode *SelectionDAG::
Craig Topper8c0b4d02014-04-28 05:57:50 +00005245UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) {
5246 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00005247 assert(N->getNumOperands() == NumOps &&
Chris Lattnerf34156e2006-01-28 09:32:45 +00005248 "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005249
Chris Lattnerf34156e2006-01-28 09:32:45 +00005250 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005251 bool AnyChange = false;
5252 for (unsigned i = 0; i != NumOps; ++i) {
5253 if (Ops[i] != N->getOperand(i)) {
5254 AnyChange = true;
5255 break;
5256 }
5257 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005258
Chris Lattnerf34156e2006-01-28 09:32:45 +00005259 // No operands changed, just return the input node.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005260 if (!AnyChange) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005261
Chris Lattnerf34156e2006-01-28 09:32:45 +00005262 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005263 void *InsertPos = nullptr;
Craig Topper8c0b4d02014-04-28 05:57:50 +00005264 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005265 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005266
Dan Gohman2f83b472008-05-02 00:05:03 +00005267 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005268 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005269 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005270 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005271
Chris Lattnerf34156e2006-01-28 09:32:45 +00005272 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005273 for (unsigned i = 0; i != NumOps; ++i)
5274 if (N->OperandList[i] != Ops[i])
5275 N->OperandList[i].set(Ops[i]);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005276
5277 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005278 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005279 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005280}
5281
Dan Gohman91697632008-07-07 20:57:48 +00005282/// DropOperands - Release the operands and set this node to have
Dan Gohman17059682008-07-17 19:10:17 +00005283/// zero operands.
Dan Gohman91697632008-07-07 20:57:48 +00005284void SDNode::DropOperands() {
Dan Gohman91697632008-07-07 20:57:48 +00005285 // Unlike the code in MorphNodeTo that does this, we don't need to
5286 // watch for dead nodes here.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005287 for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
5288 SDUse &Use = *I++;
5289 Use.set(SDValue());
5290 }
Chris Lattneredfc7e52007-02-04 02:49:29 +00005291}
Chris Lattner19732782005-08-16 18:17:10 +00005292
Dan Gohman17059682008-07-17 19:10:17 +00005293/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
5294/// machine opcode.
Chris Lattner9d0d7152005-12-01 18:00:57 +00005295///
Dan Gohman17059682008-07-17 19:10:17 +00005296SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005297 EVT VT) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005298 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005299 return SelectNodeTo(N, MachineOpc, VTs, None);
Chris Lattner45e1ce42005-08-24 23:00:29 +00005300}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005301
Dan Gohman17059682008-07-17 19:10:17 +00005302SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005303 EVT VT, SDValue Op1) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005304 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005305 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005306 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005307}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005308
Dan Gohman17059682008-07-17 19:10:17 +00005309SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005310 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005311 SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005312 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005313 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005314 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005315}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005316
Dan Gohman17059682008-07-17 19:10:17 +00005317SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005318 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005319 SDValue Op2, SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005320 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005321 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005322 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005323}
Chris Lattner466fece2005-08-21 22:30:30 +00005324
Dan Gohman17059682008-07-17 19:10:17 +00005325SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005326 EVT VT, ArrayRef<SDValue> Ops) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005327 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005328 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005329}
5330
Dan Gohman17059682008-07-17 19:10:17 +00005331SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005332 EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005333 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005334 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005335}
5336
Dan Gohman17059682008-07-17 19:10:17 +00005337SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005338 EVT VT1, EVT VT2) {
Dan Gohman22e97072008-07-02 23:23:19 +00005339 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005340 return SelectNodeTo(N, MachineOpc, VTs, None);
Dan Gohman22e97072008-07-02 23:23:19 +00005341}
5342
Dan Gohman17059682008-07-17 19:10:17 +00005343SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005344 EVT VT1, EVT VT2, EVT VT3,
Craig Topper481fb282014-04-27 19:21:11 +00005345 ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005346 SDVTList VTs = getVTList(VT1, VT2, VT3);
Craig Topper481fb282014-04-27 19:21:11 +00005347 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005348}
5349
Bill Wendling2d598632008-12-01 23:28:22 +00005350SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005351 EVT VT1, EVT VT2, EVT VT3, EVT VT4,
Craig Topper481fb282014-04-27 19:21:11 +00005352 ArrayRef<SDValue> Ops) {
Bill Wendling2d598632008-12-01 23:28:22 +00005353 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Craig Topper481fb282014-04-27 19:21:11 +00005354 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005355}
5356
Scott Michelcf0da6c2009-02-17 22:15:04 +00005357SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005358 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005359 SDValue Op1) {
Dan Gohman22e97072008-07-02 23:23:19 +00005360 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005361 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005362 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Andrew Lenharth683352382006-01-23 21:51:14 +00005363}
Andrew Lenharthc2856382006-01-23 20:59:12 +00005364
Scott Michelcf0da6c2009-02-17 22:15:04 +00005365SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005366 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005367 SDValue Op1, SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005368 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005369 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005370 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005371}
5372
Dan Gohman17059682008-07-17 19:10:17 +00005373SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005374 EVT VT1, EVT VT2,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005375 SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005376 SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005377 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005378 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005379 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005380}
5381
Dan Gohman17059682008-07-17 19:10:17 +00005382SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005383 EVT VT1, EVT VT2, EVT VT3,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005384 SDValue Op1, SDValue Op2,
Bill Wendling2d598632008-12-01 23:28:22 +00005385 SDValue Op3) {
5386 SDVTList VTs = getVTList(VT1, VT2, VT3);
5387 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005388 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005389}
5390
5391SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005392 SDVTList VTs,ArrayRef<SDValue> Ops) {
Craig Topper131de822014-04-27 19:21:16 +00005393 N = MorphNodeTo(N, ~MachineOpc, VTs, Ops);
Chris Lattner625916d2010-02-23 23:01:35 +00005394 // Reset the NodeID to -1.
5395 N->setNodeId(-1);
5396 return N;
Dan Gohman17059682008-07-17 19:10:17 +00005397}
5398
Andrew Trickef9de2a2013-05-25 02:42:55 +00005399/// UpdadeSDLocOnMergedSDNode - If the opt level is -O0 then it throws away
Devang Patel7bbc1e52011-12-15 18:21:18 +00005400/// the line number information on the merged node since it is not possible to
5401/// preserve the information that operation is associated with multiple lines.
5402/// This will make the debugger working better at -O0, were there is a higher
5403/// probability having other instructions associated with that line.
5404///
Andrew Trickef9de2a2013-05-25 02:42:55 +00005405/// For IROrder, we keep the smaller of the two
5406SDNode *SelectionDAG::UpdadeSDLocOnMergedSDNode(SDNode *N, SDLoc OLoc) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005407 DebugLoc NLoc = N->getDebugLoc();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005408 if (!(NLoc.isUnknown()) && (OptLevel == CodeGenOpt::None) &&
5409 (OLoc.getDebugLoc() != NLoc)) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005410 N->setDebugLoc(DebugLoc());
5411 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005412 unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
5413 N->setIROrder(Order);
Devang Patel7bbc1e52011-12-15 18:21:18 +00005414 return N;
5415}
5416
Chris Lattneraf197502010-02-28 21:36:14 +00005417/// MorphNodeTo - This *mutates* the specified node to have the specified
Dan Gohman17059682008-07-17 19:10:17 +00005418/// return type, opcode, and operands.
5419///
5420/// Note that MorphNodeTo returns the resultant node. If there is already a
5421/// node of the specified opcode and operands, it returns that node instead of
Andrew Trickef9de2a2013-05-25 02:42:55 +00005422/// the current one. Note that the SDLoc need not be the same.
Dan Gohman17059682008-07-17 19:10:17 +00005423///
5424/// Using MorphNodeTo is faster than creating a new node and swapping it in
5425/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greif66ccf602008-08-30 22:16:05 +00005426/// node, and because it doesn't require CSE recalculation for any of
Dan Gohman17059682008-07-17 19:10:17 +00005427/// the node's users.
5428///
5429SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Craig Topper131de822014-04-27 19:21:16 +00005430 SDVTList VTs, ArrayRef<SDValue> Ops) {
5431 unsigned NumOps = Ops.size();
Dan Gohman22e97072008-07-02 23:23:19 +00005432 // If an identical node already exists, use it.
Craig Topperc0196b12014-04-14 00:51:57 +00005433 void *IP = nullptr;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005434 if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
Dan Gohman17059682008-07-17 19:10:17 +00005435 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005436 AddNodeIDNode(ID, Opc, VTs, Ops);
Bill Wendling022d18f2009-12-18 23:32:53 +00005437 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005438 return UpdadeSDLocOnMergedSDNode(ON, SDLoc(N));
Dan Gohman17059682008-07-17 19:10:17 +00005439 }
Chris Lattner9d0d7152005-12-01 18:00:57 +00005440
Dan Gohmand3fe1742008-09-13 01:54:27 +00005441 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005442 IP = nullptr;
Chris Lattner486edfb2007-02-04 02:32:44 +00005443
Dan Gohman17059682008-07-17 19:10:17 +00005444 // Start the morphing.
5445 N->NodeType = Opc;
5446 N->ValueList = VTs.VTs;
5447 N->NumValues = VTs.NumVTs;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005448
Dan Gohman17059682008-07-17 19:10:17 +00005449 // Clear the operands list, updating used nodes to remove this from their
5450 // use list. Keep track of any operands that become dead as a result.
5451 SmallPtrSet<SDNode*, 16> DeadNodeSet;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005452 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
5453 SDUse &Use = *I++;
5454 SDNode *Used = Use.getNode();
5455 Use.set(SDValue());
Dan Gohman17059682008-07-17 19:10:17 +00005456 if (Used->use_empty())
5457 DeadNodeSet.insert(Used);
5458 }
5459
Dan Gohman48b185d2009-09-25 20:36:54 +00005460 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
5461 // Initialize the memory references information.
Craig Topperc0196b12014-04-14 00:51:57 +00005462 MN->setMemRefs(nullptr, nullptr);
Dan Gohman48b185d2009-09-25 20:36:54 +00005463 // If NumOps is larger than the # of operands we can have in a
5464 // MachineSDNode, reallocate the operand list.
5465 if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
5466 if (MN->OperandsNeedDelete)
5467 delete[] MN->OperandList;
5468 if (NumOps > array_lengthof(MN->LocalOperands))
5469 // We're creating a final node that will live unmorphed for the
5470 // remainder of the current SelectionDAG iteration, so we can allocate
5471 // the operands directly out of a pool with no recycling metadata.
5472 MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
Craig Topper131de822014-04-27 19:21:16 +00005473 Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005474 else
Craig Topper131de822014-04-27 19:21:16 +00005475 MN->InitOperands(MN->LocalOperands, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005476 MN->OperandsNeedDelete = false;
5477 } else
Craig Topper131de822014-04-27 19:21:16 +00005478 MN->InitOperands(MN->OperandList, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005479 } else {
5480 // If NumOps is larger than the # of operands we currently have, reallocate
5481 // the operand list.
5482 if (NumOps > N->NumOperands) {
5483 if (N->OperandsNeedDelete)
5484 delete[] N->OperandList;
Craig Topper131de822014-04-27 19:21:16 +00005485 N->InitOperands(new SDUse[NumOps], Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005486 N->OperandsNeedDelete = true;
Dan Gohman48b185d2009-09-25 20:36:54 +00005487 } else
Craig Topper131de822014-04-27 19:21:16 +00005488 N->InitOperands(N->OperandList, Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005489 }
5490
5491 // Delete any nodes that are still dead after adding the uses for the
5492 // new operands.
Chris Lattnere89ca7c2010-03-01 07:43:08 +00005493 if (!DeadNodeSet.empty()) {
5494 SmallVector<SDNode *, 16> DeadNodes;
5495 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
5496 E = DeadNodeSet.end(); I != E; ++I)
5497 if ((*I)->use_empty())
5498 DeadNodes.push_back(*I);
5499 RemoveDeadNodes(DeadNodes);
5500 }
Dan Gohman91697632008-07-07 20:57:48 +00005501
Dan Gohman17059682008-07-17 19:10:17 +00005502 if (IP)
5503 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00005504 return N;
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005505}
5506
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005507
Dan Gohman32f71d72009-09-25 18:54:59 +00005508/// getMachineNode - These are used for target selectors to create a new node
5509/// with specified return type(s), MachineInstr opcode, and operands.
Evan Chengd3f1db92006-02-09 07:15:23 +00005510///
Dan Gohman32f71d72009-09-25 18:54:59 +00005511/// Note that getMachineNode returns the resultant node. If there is already a
Evan Chengd3f1db92006-02-09 07:15:23 +00005512/// node of the specified opcode and operands, it returns that node instead of
5513/// the current one.
Dan Gohmana22f2d82009-10-10 01:29:16 +00005514MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005515SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005516 SDVTList VTs = getVTList(VT);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005517 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005518}
Bill Wendlinga434d932009-01-29 09:01:55 +00005519
Dan Gohmana22f2d82009-10-10 01:29:16 +00005520MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005521SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, SDValue Op1) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005522 SDVTList VTs = getVTList(VT);
5523 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005524 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005525}
Bill Wendlinga434d932009-01-29 09:01:55 +00005526
Dan Gohmana22f2d82009-10-10 01:29:16 +00005527MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005528SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005529 SDValue Op1, SDValue Op2) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005530 SDVTList VTs = getVTList(VT);
5531 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005532 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005533}
Bill Wendlinga434d932009-01-29 09:01:55 +00005534
Dan Gohmana22f2d82009-10-10 01:29:16 +00005535MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005536SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005537 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005538 SDVTList VTs = getVTList(VT);
5539 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005540 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005541}
Bill Wendlinga434d932009-01-29 09:01:55 +00005542
Dan Gohmana22f2d82009-10-10 01:29:16 +00005543MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005544SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Michael Liaob53d8962013-04-19 22:22:57 +00005545 ArrayRef<SDValue> Ops) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005546 SDVTList VTs = getVTList(VT);
Michael Liaob53d8962013-04-19 22:22:57 +00005547 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005548}
Bill Wendlinga434d932009-01-29 09:01:55 +00005549
Dan Gohmana22f2d82009-10-10 01:29:16 +00005550MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005551SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, EVT VT2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005552 SDVTList VTs = getVTList(VT1, VT2);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005553 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005554}
Bill Wendlinga434d932009-01-29 09:01:55 +00005555
Dan Gohmana22f2d82009-10-10 01:29:16 +00005556MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005557SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005558 EVT VT1, EVT VT2, SDValue Op1) {
Dan Gohmande912e22009-04-09 23:54:40 +00005559 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman48b185d2009-09-25 20:36:54 +00005560 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005561 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005562}
Bill Wendlinga434d932009-01-29 09:01:55 +00005563
Dan Gohmana22f2d82009-10-10 01:29:16 +00005564MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005565SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005566 EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005567 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005568 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005569 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005570}
5571
Dan Gohmana22f2d82009-10-10 01:29:16 +00005572MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005573SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005574 EVT VT1, EVT VT2, SDValue Op1,
5575 SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005576 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005577 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005578 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005579}
5580
Dan Gohmana22f2d82009-10-10 01:29:16 +00005581MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005582SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005583 EVT VT1, EVT VT2,
Michael Liaob53d8962013-04-19 22:22:57 +00005584 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005585 SDVTList VTs = getVTList(VT1, VT2);
Michael Liaob53d8962013-04-19 22:22:57 +00005586 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005587}
Bill Wendlinga434d932009-01-29 09:01:55 +00005588
Dan Gohmana22f2d82009-10-10 01:29:16 +00005589MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005590SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005591 EVT VT1, EVT VT2, EVT VT3,
5592 SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005593 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005594 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005595 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005596}
Bill Wendlinga434d932009-01-29 09:01:55 +00005597
Dan Gohmana22f2d82009-10-10 01:29:16 +00005598MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005599SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005600 EVT VT1, EVT VT2, EVT VT3,
5601 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005602 SDVTList VTs = getVTList(VT1, VT2, VT3);
Bill Wendlinga434d932009-01-29 09:01:55 +00005603 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005604 return getMachineNode(Opcode, dl, VTs, Ops);
Evan Chengd3f1db92006-02-09 07:15:23 +00005605}
Bill Wendlinga434d932009-01-29 09:01:55 +00005606
Dan Gohmana22f2d82009-10-10 01:29:16 +00005607MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005608SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005609 EVT VT1, EVT VT2, EVT VT3,
Michael Liaob53d8962013-04-19 22:22:57 +00005610 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005611 SDVTList VTs = getVTList(VT1, VT2, VT3);
Michael Liaob53d8962013-04-19 22:22:57 +00005612 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005613}
Bill Wendlinga434d932009-01-29 09:01:55 +00005614
Dan Gohmana22f2d82009-10-10 01:29:16 +00005615MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005616SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005617 EVT VT2, EVT VT3, EVT VT4,
Michael Liaob53d8962013-04-19 22:22:57 +00005618 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005619 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Michael Liaob53d8962013-04-19 22:22:57 +00005620 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005621}
5622
Dan Gohmana22f2d82009-10-10 01:29:16 +00005623MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005624SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005625 ArrayRef<EVT> ResultTys,
Michael Liaob53d8962013-04-19 22:22:57 +00005626 ArrayRef<SDValue> Ops) {
Craig Topperabb4ac72014-04-16 06:10:51 +00005627 SDVTList VTs = getVTList(ResultTys);
Michael Liaob53d8962013-04-19 22:22:57 +00005628 return getMachineNode(Opcode, dl, VTs, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00005629}
5630
Dan Gohmana22f2d82009-10-10 01:29:16 +00005631MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005632SelectionDAG::getMachineNode(unsigned Opcode, SDLoc DL, SDVTList VTs,
Michael Liaob53d8962013-04-19 22:22:57 +00005633 ArrayRef<SDValue> OpsArray) {
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005634 bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
Dan Gohman48b185d2009-09-25 20:36:54 +00005635 MachineSDNode *N;
Craig Topperc0196b12014-04-14 00:51:57 +00005636 void *IP = nullptr;
Michael Liaob53d8962013-04-19 22:22:57 +00005637 const SDValue *Ops = OpsArray.data();
5638 unsigned NumOps = OpsArray.size();
Dan Gohman48b185d2009-09-25 20:36:54 +00005639
5640 if (DoCSE) {
5641 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005642 AddNodeIDNode(ID, ~Opcode, VTs, OpsArray);
Craig Topperc0196b12014-04-14 00:51:57 +00005643 IP = nullptr;
Devang Patel7bbc1e52011-12-15 18:21:18 +00005644 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005645 return cast<MachineSDNode>(UpdadeSDLocOnMergedSDNode(E, DL));
Devang Patel7bbc1e52011-12-15 18:21:18 +00005646 }
Dan Gohman48b185d2009-09-25 20:36:54 +00005647 }
5648
5649 // Allocate a new MachineSDNode.
Jack Carter170a5f22013-09-09 22:02:08 +00005650 N = new (NodeAllocator) MachineSDNode(~Opcode, DL.getIROrder(),
5651 DL.getDebugLoc(), VTs);
Dan Gohman48b185d2009-09-25 20:36:54 +00005652
5653 // Initialize the operands list.
5654 if (NumOps > array_lengthof(N->LocalOperands))
5655 // We're creating a final node that will live unmorphed for the
5656 // remainder of the current SelectionDAG iteration, so we can allocate
5657 // the operands directly out of a pool with no recycling metadata.
5658 N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
5659 Ops, NumOps);
5660 else
5661 N->InitOperands(N->LocalOperands, Ops, NumOps);
5662 N->OperandsNeedDelete = false;
5663
5664 if (DoCSE)
5665 CSEMap.InsertNode(N, IP);
5666
5667 AllNodes.push_back(N);
5668#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00005669 VerifyMachineNode(N);
Dan Gohman48b185d2009-09-25 20:36:54 +00005670#endif
5671 return N;
Dale Johannesen839acbb2009-01-29 00:47:48 +00005672}
Evan Chengd3f1db92006-02-09 07:15:23 +00005673
Dan Gohmanac33a902009-08-19 18:16:17 +00005674/// getTargetExtractSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005675/// TargetOpcode::EXTRACT_SUBREG nodes.
Dan Gohmanac33a902009-08-19 18:16:17 +00005676SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005677SelectionDAG::getTargetExtractSubreg(int SRIdx, SDLoc DL, EVT VT,
Dan Gohmanac33a902009-08-19 18:16:17 +00005678 SDValue Operand) {
5679 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005680 SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
Dan Gohman32f71d72009-09-25 18:54:59 +00005681 VT, Operand, SRIdxVal);
Dan Gohmanac33a902009-08-19 18:16:17 +00005682 return SDValue(Subreg, 0);
5683}
5684
Bob Wilson2a45a652009-10-08 18:49:46 +00005685/// getTargetInsertSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005686/// TargetOpcode::INSERT_SUBREG nodes.
Bob Wilson2a45a652009-10-08 18:49:46 +00005687SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005688SelectionDAG::getTargetInsertSubreg(int SRIdx, SDLoc DL, EVT VT,
Bob Wilson2a45a652009-10-08 18:49:46 +00005689 SDValue Operand, SDValue Subreg) {
5690 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005691 SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
Bob Wilson2a45a652009-10-08 18:49:46 +00005692 VT, Operand, Subreg, SRIdxVal);
5693 return SDValue(Result, 0);
5694}
5695
Evan Cheng31604a62008-03-22 01:55:50 +00005696/// getNodeIfExists - Get the specified node if it's already available, or
5697/// else return NULL.
5698SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005699 ArrayRef<SDValue> Ops, bool nuw, bool nsw,
5700 bool exact) {
5701 if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
Evan Cheng31604a62008-03-22 01:55:50 +00005702 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005703 AddNodeIDNode(ID, Opcode, VTList, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005704 if (isBinOpWithFlags(Opcode))
5705 AddBinaryNodeIDCustom(ID, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00005706 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00005707 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng31604a62008-03-22 01:55:50 +00005708 return E;
5709 }
Craig Topperc0196b12014-04-14 00:51:57 +00005710 return nullptr;
Evan Cheng31604a62008-03-22 01:55:50 +00005711}
5712
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005713/// getDbgValue - Creates a SDDbgValue node.
5714///
Adrian Prantl32da8892014-04-25 20:49:25 +00005715/// SDNode
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005716SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005717SelectionDAG::getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R,
5718 bool IsIndirect, uint64_t Off,
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005719 DebugLoc DL, unsigned O) {
Adrian Prantl32da8892014-04-25 20:49:25 +00005720 return new (Allocator) SDDbgValue(MDPtr, N, R, IsIndirect, Off, DL, O);
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005721}
5722
Adrian Prantl32da8892014-04-25 20:49:25 +00005723/// Constant
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005724SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005725SelectionDAG::getConstantDbgValue(MDNode *MDPtr, const Value *C,
5726 uint64_t Off,
5727 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005728 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O);
5729}
5730
Adrian Prantl32da8892014-04-25 20:49:25 +00005731/// FrameIndex
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005732SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005733SelectionDAG::getFrameIndexDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off,
5734 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005735 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O);
5736}
5737
Dan Gohman7d099f72010-03-03 21:33:37 +00005738namespace {
5739
Dan Gohman9cc886b2010-03-04 19:11:28 +00005740/// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
Dan Gohman7d099f72010-03-03 21:33:37 +00005741/// pointed to by a use iterator is deleted, increment the use iterator
5742/// so that it doesn't dangle.
5743///
Dan Gohman7d099f72010-03-03 21:33:37 +00005744class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
Dan Gohman7d099f72010-03-03 21:33:37 +00005745 SDNode::use_iterator &UI;
5746 SDNode::use_iterator &UE;
5747
Craig Topper7b883b32014-03-08 06:31:39 +00005748 void NodeDeleted(SDNode *N, SDNode *E) override {
Dan Gohman7d099f72010-03-03 21:33:37 +00005749 // Increment the iterator as needed.
5750 while (UI != UE && N == *UI)
5751 ++UI;
Dan Gohman7d099f72010-03-03 21:33:37 +00005752 }
5753
5754public:
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005755 RAUWUpdateListener(SelectionDAG &d,
Dan Gohman7d099f72010-03-03 21:33:37 +00005756 SDNode::use_iterator &ui,
5757 SDNode::use_iterator &ue)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005758 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
Dan Gohman7d099f72010-03-03 21:33:37 +00005759};
5760
5761}
5762
Evan Cheng445b91a2006-08-07 22:13:29 +00005763/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005764/// This can cause recursive merging of nodes in the DAG.
5765///
Chris Lattner76858912008-02-03 03:35:22 +00005766/// This version assumes From has a single result value.
Chris Lattner373f0482005-08-26 18:36:28 +00005767///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005768void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005769 SDNode *From = FromN.getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005770 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner373f0482005-08-26 18:36:28 +00005771 "Cannot replace with this method!");
Gabor Greiff304a7a2008-08-28 21:40:38 +00005772 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levenstein51f532f2008-04-07 10:06:32 +00005773
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005774 // Iterate over all the existing uses of From. New uses will be added
5775 // to the beginning of the use list, which we avoid visiting.
5776 // This specifically avoids visiting uses of From that arise while the
5777 // replacement is happening, because any such uses would be the result
5778 // of CSE: If an existing node looks like From after one of its operands
5779 // is replaced by To, we don't want to replace of all its users with To
5780 // too. See PR3018 for more info.
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005781 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005782 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005783 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005784 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005785
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005786 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005787 RemoveNodeFromCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005788
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005789 // A user can appear in a use list multiple times, and when this
5790 // happens the uses are usually next to each other in the list.
5791 // To help reduce the number of CSE recomputations, process all
5792 // the uses of this user that we can find this way.
5793 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005794 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005795 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005796 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005797 } while (UI != UE && *UI == User);
5798
5799 // Now that we have modified User, add it back to the CSE maps. If it
5800 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005801 AddModifiedNodeToCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005802 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005803
5804 // If we just RAUW'd the root, take note.
5805 if (FromN == getRoot())
5806 setRoot(To);
Chris Lattner373f0482005-08-26 18:36:28 +00005807}
5808
5809/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5810/// This can cause recursive merging of nodes in the DAG.
5811///
Dan Gohman8aa28b92009-04-15 20:06:30 +00005812/// This version assumes that for each value of From, there is a
5813/// corresponding value in To in the same position with the same type.
Chris Lattner373f0482005-08-26 18:36:28 +00005814///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005815void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
Dan Gohman8aa28b92009-04-15 20:06:30 +00005816#ifndef NDEBUG
5817 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
5818 assert((!From->hasAnyUseOfValue(i) ||
5819 From->getValueType(i) == To->getValueType(i)) &&
5820 "Cannot use this version of ReplaceAllUsesWith!");
5821#endif
Dan Gohman17059682008-07-17 19:10:17 +00005822
5823 // Handle the trivial case.
5824 if (From == To)
5825 return;
5826
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005827 // Iterate over just the existing users of From. See the comments in
5828 // the ReplaceAllUsesWith above.
5829 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005830 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005831 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005832 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005833
Chris Lattner373f0482005-08-26 18:36:28 +00005834 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005835 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005836
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005837 // A user can appear in a use list multiple times, and when this
5838 // happens the uses are usually next to each other in the list.
5839 // To help reduce the number of CSE recomputations, process all
5840 // the uses of this user that we can find this way.
5841 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005842 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005843 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005844 Use.setNode(To);
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 Lattnerab0de9d2005-08-17 19:00:20 +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 Lattnerab0de9d2005-08-17 19:00:20 +00005855}
5856
Chris Lattner373f0482005-08-26 18:36:28 +00005857/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5858/// This can cause recursive merging of nodes in the DAG.
5859///
5860/// This version can replace From with any result values. To must match the
5861/// number and types of values returned by From.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005862void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
Chris Lattner76858912008-02-03 03:35:22 +00005863 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005864 return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005865
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005866 // Iterate over just the existing users of From. See the comments in
5867 // the ReplaceAllUsesWith above.
5868 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005869 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005870 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005871 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005872
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005873 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005874 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005875
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005876 // A user can appear in a use list multiple times, and when this
5877 // happens the uses are usually next to each other in the list.
5878 // To help reduce the number of CSE recomputations, process all
5879 // the uses of this user that we can find this way.
5880 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005881 SDUse &Use = UI.getUse();
5882 const SDValue &ToOp = To[Use.getResNo()];
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005883 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005884 Use.set(ToOp);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005885 } while (UI != UE && *UI == User);
5886
5887 // Now that we have modified User, add it back to the CSE maps. If it
5888 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005889 AddModifiedNodeToCSEMaps(User);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005890 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005891
5892 // If we just RAUW'd the root, take note.
5893 if (From == getRoot().getNode())
5894 setRoot(SDValue(To[getRoot().getResNo()]));
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005895}
5896
Chris Lattner375e1a72006-02-17 21:58:01 +00005897/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005898/// uses of other values produced by From.getNode() alone. The Deleted
5899/// vector is handled the same way as for ReplaceAllUsesWith.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005900void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
Dan Gohman17059682008-07-17 19:10:17 +00005901 // Handle the really simple, really trivial case efficiently.
5902 if (From == To) return;
5903
Chris Lattner375e1a72006-02-17 21:58:01 +00005904 // Handle the simple, trivial, case efficiently.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005905 if (From.getNode()->getNumValues() == 1) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005906 ReplaceAllUsesWith(From, To);
Chris Lattner375e1a72006-02-17 21:58:01 +00005907 return;
5908 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00005909
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005910 // Iterate over just the existing users of From. See the comments in
5911 // the ReplaceAllUsesWith above.
5912 SDNode::use_iterator UI = From.getNode()->use_begin(),
5913 UE = From.getNode()->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005914 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005915 while (UI != UE) {
5916 SDNode *User = *UI;
5917 bool UserRemovedFromCSEMaps = false;
Chris Lattner375e1a72006-02-17 21:58:01 +00005918
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005919 // A user can appear in a use list multiple times, and when this
5920 // happens the uses are usually next to each other in the list.
5921 // To help reduce the number of CSE recomputations, process all
5922 // the uses of this user that we can find this way.
5923 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005924 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005925
5926 // Skip uses of different values from the same node.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005927 if (Use.getResNo() != From.getResNo()) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005928 ++UI;
5929 continue;
Chris Lattner375e1a72006-02-17 21:58:01 +00005930 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005931
5932 // If this node hasn't been modified yet, it's still in the CSE maps,
5933 // so remove its old self from the CSE maps.
5934 if (!UserRemovedFromCSEMaps) {
5935 RemoveNodeFromCSEMaps(User);
5936 UserRemovedFromCSEMaps = true;
5937 }
5938
5939 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005940 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005941 } while (UI != UE && *UI == User);
5942
5943 // We are iterating over all uses of the From node, so if a use
5944 // doesn't use the specific value, no changes are made.
5945 if (!UserRemovedFromCSEMaps)
5946 continue;
5947
Chris Lattner3cfb56d2007-10-15 06:10:22 +00005948 // Now that we have modified User, add it back to the CSE maps. If it
5949 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005950 AddModifiedNodeToCSEMaps(User);
Dan Gohman17059682008-07-17 19:10:17 +00005951 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005952
5953 // If we just RAUW'd the root, take note.
5954 if (From == getRoot())
5955 setRoot(To);
Dan Gohman17059682008-07-17 19:10:17 +00005956}
5957
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005958namespace {
5959 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
5960 /// to record information about a use.
5961 struct UseMemo {
5962 SDNode *User;
5963 unsigned Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005964 SDUse *Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005965 };
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005966
5967 /// operator< - Sort Memos by User.
5968 bool operator<(const UseMemo &L, const UseMemo &R) {
5969 return (intptr_t)L.User < (intptr_t)R.User;
5970 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005971}
5972
Dan Gohman17059682008-07-17 19:10:17 +00005973/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005974/// uses of other values produced by From.getNode() alone. The same value
5975/// may appear in both the From and To list. The Deleted vector is
Dan Gohman17059682008-07-17 19:10:17 +00005976/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005977void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
5978 const SDValue *To,
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005979 unsigned Num){
Dan Gohman17059682008-07-17 19:10:17 +00005980 // Handle the simple, trivial case efficiently.
5981 if (Num == 1)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005982 return ReplaceAllUsesOfValueWith(*From, *To);
Dan Gohman17059682008-07-17 19:10:17 +00005983
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005984 // Read up all the uses and make records of them. This helps
5985 // processing new uses that are introduced during the
5986 // replacement process.
5987 SmallVector<UseMemo, 4> Uses;
5988 for (unsigned i = 0; i != Num; ++i) {
5989 unsigned FromResNo = From[i].getResNo();
5990 SDNode *FromNode = From[i].getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005991 for (SDNode::use_iterator UI = FromNode->use_begin(),
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005992 E = FromNode->use_end(); UI != E; ++UI) {
5993 SDUse &Use = UI.getUse();
5994 if (Use.getResNo() == FromResNo) {
5995 UseMemo Memo = { *UI, i, &Use };
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005996 Uses.push_back(Memo);
5997 }
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005998 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005999 }
Dan Gohman17059682008-07-17 19:10:17 +00006000
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006001 // Sort the uses, so that all the uses from a given User are together.
6002 std::sort(Uses.begin(), Uses.end());
6003
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006004 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
6005 UseIndex != UseIndexEnd; ) {
Dan Gohman17059682008-07-17 19:10:17 +00006006 // We know that this user uses some value of From. If it is the right
6007 // value, update it.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006008 SDNode *User = Uses[UseIndex].User;
6009
6010 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman17059682008-07-17 19:10:17 +00006011 RemoveNodeFromCSEMaps(User);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006012
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006013 // The Uses array is sorted, so all the uses for a given User
6014 // are next to each other in the list.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006015 // To help reduce the number of CSE recomputations, process all
6016 // the uses of this user that we can find this way.
6017 do {
6018 unsigned i = Uses[UseIndex].Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006019 SDUse &Use = *Uses[UseIndex].Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006020 ++UseIndex;
6021
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006022 Use.set(To[i]);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00006023 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
6024
Dan Gohman17059682008-07-17 19:10:17 +00006025 // Now that we have modified User, add it back to the CSE maps. If it
6026 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00006027 AddModifiedNodeToCSEMaps(User);
Chris Lattner375e1a72006-02-17 21:58:01 +00006028 }
6029}
6030
Evan Cheng9631a602006-08-01 08:20:41 +00006031/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengbba1ebd2006-08-02 22:00:34 +00006032/// based on their topological order. It returns the maximum id and a vector
6033/// of the SDNodes* in assigned order by reference.
Dan Gohman86aa16a2008-09-30 18:30:35 +00006034unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengbba1ebd2006-08-02 22:00:34 +00006035
Dan Gohman86aa16a2008-09-30 18:30:35 +00006036 unsigned DAGSize = 0;
Evan Cheng9631a602006-08-01 08:20:41 +00006037
Dan Gohman86aa16a2008-09-30 18:30:35 +00006038 // SortedPos tracks the progress of the algorithm. Nodes before it are
6039 // sorted, nodes after it are unsorted. When the algorithm completes
6040 // it is at the end of the list.
6041 allnodes_iterator SortedPos = allnodes_begin();
6042
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006043 // Visit all the nodes. Move nodes with no operands to the front of
6044 // the list immediately. Annotate nodes that do have operands with their
Dan Gohman86aa16a2008-09-30 18:30:35 +00006045 // operand count. Before we do this, the Node Id fields of the nodes
6046 // may contain arbitrary values. After, the Node Id fields for nodes
6047 // before SortedPos will contain the topological sort index, and the
6048 // Node Id fields for nodes At SortedPos and after will contain the
6049 // count of outstanding operands.
6050 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
6051 SDNode *N = I++;
Adam Nemet7d394302014-05-31 16:23:17 +00006052 checkForCycles(N, this);
Dan Gohman86aa16a2008-09-30 18:30:35 +00006053 unsigned Degree = N->getNumOperands();
6054 if (Degree == 0) {
6055 // A node with no uses, add it to the result array immediately.
6056 N->setNodeId(DAGSize++);
6057 allnodes_iterator Q = N;
6058 if (Q != SortedPos)
6059 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
David Greene3b2a68c2010-01-20 00:59:23 +00006060 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006061 ++SortedPos;
6062 } else {
6063 // Temporarily use the Node Id as scratch space for the degree count.
6064 N->setNodeId(Degree);
Evan Cheng9631a602006-08-01 08:20:41 +00006065 }
6066 }
6067
Chad Rosier5d1f5d22012-05-21 17:13:41 +00006068 // Visit all the nodes. As we iterate, move nodes into sorted order,
Dan Gohman86aa16a2008-09-30 18:30:35 +00006069 // such that by the time the end is reached all nodes will be sorted.
6070 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
6071 SDNode *N = I;
Adam Nemet7d394302014-05-31 16:23:17 +00006072 checkForCycles(N, this);
David Greene3b2a68c2010-01-20 00:59:23 +00006073 // N is in sorted position, so all its uses have one less operand
6074 // that needs to be sorted.
Dan Gohman86aa16a2008-09-30 18:30:35 +00006075 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
6076 UI != UE; ++UI) {
6077 SDNode *P = *UI;
6078 unsigned Degree = P->getNodeId();
David Greene3b2a68c2010-01-20 00:59:23 +00006079 assert(Degree != 0 && "Invalid node degree");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006080 --Degree;
6081 if (Degree == 0) {
6082 // All of P's operands are sorted, so P may sorted now.
6083 P->setNodeId(DAGSize++);
6084 if (P != SortedPos)
6085 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
David Greene3b2a68c2010-01-20 00:59:23 +00006086 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006087 ++SortedPos;
6088 } else {
6089 // Update P's outstanding operand count.
6090 P->setNodeId(Degree);
6091 }
6092 }
David Greene3b2a68c2010-01-20 00:59:23 +00006093 if (I == SortedPos) {
David Greene893047d2010-02-09 23:03:05 +00006094#ifndef NDEBUG
6095 SDNode *S = ++I;
6096 dbgs() << "Overran sorted position:\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006097 S->dumprFull(this); dbgs() << "\n";
Adam Nemetb4690e32014-05-31 16:23:20 +00006098 dbgs() << "Checking if this is due to cycles\n";
6099 checkForCycles(this, true);
David Greene893047d2010-02-09 23:03:05 +00006100#endif
Craig Topperc0196b12014-04-14 00:51:57 +00006101 llvm_unreachable(nullptr);
David Greene3b2a68c2010-01-20 00:59:23 +00006102 }
Dan Gohman86aa16a2008-09-30 18:30:35 +00006103 }
6104
6105 assert(SortedPos == AllNodes.end() &&
6106 "Topological sort incomplete!");
6107 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
6108 "First node in topological sort is not the entry token!");
6109 assert(AllNodes.front().getNodeId() == 0 &&
6110 "First node in topological sort has non-zero id!");
6111 assert(AllNodes.front().getNumOperands() == 0 &&
6112 "First node in topological sort has operands!");
6113 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
6114 "Last node in topologic sort has unexpected id!");
6115 assert(AllNodes.back().use_empty() &&
6116 "Last node in topologic sort has users!");
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006117 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006118 return DAGSize;
Evan Cheng9631a602006-08-01 08:20:41 +00006119}
6120
Evan Cheng563fe3c2010-03-25 01:38:16 +00006121/// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
6122/// value is produced by SD.
Dale Johannesene0983522010-04-26 20:06:49 +00006123void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) {
6124 DbgInfo->add(DB, SD, isParameter);
Evan Cheng563fe3c2010-03-25 01:38:16 +00006125 if (SD)
6126 SD->setHasDebugValue(true);
Dale Johannesen49de0602010-03-10 22:13:47 +00006127}
Evan Cheng29eefc12006-07-27 06:39:06 +00006128
Devang Patelefc6b162011-01-25 23:27:42 +00006129/// TransferDbgValues - Transfer SDDbgValues.
6130void SelectionDAG::TransferDbgValues(SDValue From, SDValue To) {
6131 if (From == To || !From.getNode()->getHasDebugValue())
6132 return;
6133 SDNode *FromNode = From.getNode();
6134 SDNode *ToNode = To.getNode();
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006135 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode);
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006136 SmallVector<SDDbgValue *, 2> ClonedDVs;
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006137 for (ArrayRef<SDDbgValue *>::iterator I = DVs.begin(), E = DVs.end();
Devang Patelefc6b162011-01-25 23:27:42 +00006138 I != E; ++I) {
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006139 SDDbgValue *Dbg = *I;
6140 if (Dbg->getKind() == SDDbgValue::SDNODE) {
6141 SDDbgValue *Clone = getDbgValue(Dbg->getMDPtr(), ToNode, To.getResNo(),
Adrian Prantl32da8892014-04-25 20:49:25 +00006142 Dbg->isIndirect(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006143 Dbg->getOffset(), Dbg->getDebugLoc(),
6144 Dbg->getOrder());
6145 ClonedDVs.push_back(Clone);
Devang Patelefc6b162011-01-25 23:27:42 +00006146 }
6147 }
Craig Toppere1c1d362013-07-03 05:11:49 +00006148 for (SmallVectorImpl<SDDbgValue *>::iterator I = ClonedDVs.begin(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006149 E = ClonedDVs.end(); I != E; ++I)
6150 AddDbgValue(*I, ToNode, false);
Devang Patelefc6b162011-01-25 23:27:42 +00006151}
6152
Jim Laskeyd66e6162005-08-17 20:08:02 +00006153//===----------------------------------------------------------------------===//
6154// SDNode Class
6155//===----------------------------------------------------------------------===//
Chris Lattner19732782005-08-16 18:17:10 +00006156
Chris Lattner3bf17b62007-02-04 02:41:42 +00006157HandleSDNode::~HandleSDNode() {
Dan Gohman91697632008-07-07 20:57:48 +00006158 DropOperands();
Chris Lattner3bf17b62007-02-04 02:41:42 +00006159}
6160
Andrew Trickef9de2a2013-05-25 02:42:55 +00006161GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
6162 DebugLoc DL, const GlobalValue *GA,
Owen Anderson53aa7a92009-08-10 22:56:29 +00006163 EVT VT, int64_t o, unsigned char TF)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006164 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
Dan Gohman8422e572010-04-17 15:32:28 +00006165 TheGlobal = GA;
Lauro Ramos Venancio4e919082007-04-21 20:56:26 +00006166}
Chris Lattner3bf17b62007-02-04 02:41:42 +00006167
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00006168AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, DebugLoc dl, EVT VT,
6169 SDValue X, unsigned SrcAS,
6170 unsigned DestAS)
6171 : UnarySDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT), X),
6172 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
6173
Andrew Trickef9de2a2013-05-25 02:42:55 +00006174MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
6175 EVT memvt, MachineMemOperand *mmo)
6176 : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006177 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006178 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006179 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
David Greeneb7941b02010-02-17 20:21:42 +00006180 assert(isNonTemporal() == MMO->isNonTemporal() &&
6181 "Non-temporal encoding error!");
Dan Gohman48b185d2009-09-25 20:36:54 +00006182 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Dale Johannesen666bf202009-01-28 21:18:29 +00006183}
6184
Andrew Trickef9de2a2013-05-25 02:42:55 +00006185MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
Craig Topperbb533072014-04-27 19:21:02 +00006186 ArrayRef<SDValue> Ops, EVT memvt, MachineMemOperand *mmo)
6187 : SDNode(Opc, Order, dl, VTs, Ops),
Dan Gohman48b185d2009-09-25 20:36:54 +00006188 MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006189 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006190 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006191 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
6192 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Mon P Wang6a490372008-06-25 08:15:39 +00006193}
6194
Jim Laskeyf576b422006-10-27 23:46:08 +00006195/// Profile - Gather unique data for the node.
6196///
Dan Gohman2da2bed2008-08-20 15:58:01 +00006197void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskeyf576b422006-10-27 23:46:08 +00006198 AddNodeIDNode(ID, this);
6199}
6200
Owen Anderson3b1665e2009-08-25 22:27:22 +00006201namespace {
6202 struct EVTArray {
6203 std::vector<EVT> VTs;
Wesley Peck527da1b2010-11-23 03:31:01 +00006204
Owen Anderson3b1665e2009-08-25 22:27:22 +00006205 EVTArray() {
6206 VTs.reserve(MVT::LAST_VALUETYPE);
6207 for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
6208 VTs.push_back(MVT((MVT::SimpleValueType)i));
6209 }
6210 };
6211}
6212
Owen Anderson53aa7a92009-08-10 22:56:29 +00006213static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs;
Owen Anderson3b1665e2009-08-25 22:27:22 +00006214static ManagedStatic<EVTArray> SimpleVTArray;
Chris Lattner56d60ea2009-08-22 04:07:34 +00006215static ManagedStatic<sys::SmartMutex<true> > VTMutex;
Owen Anderson5defd562009-06-25 17:09:00 +00006216
Chris Lattner88fa11c2005-11-08 23:30:28 +00006217/// getValueTypeList - Return a pointer to the specified value type.
6218///
Owen Anderson53aa7a92009-08-10 22:56:29 +00006219const EVT *SDNode::getValueTypeList(EVT VT) {
Duncan Sands13237ac2008-06-06 12:08:01 +00006220 if (VT.isExtended()) {
Owen Anderson63010bb2009-08-22 06:32:36 +00006221 sys::SmartScopedLock<true> Lock(*VTMutex);
Owen Anderson5defd562009-06-25 17:09:00 +00006222 return &(*EVTs->insert(VT).first);
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006223 } else {
Duncan Sands14627772010-11-03 12:17:33 +00006224 assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE &&
Duncan Sandse4d66702010-05-10 04:54:28 +00006225 "Value type out of range!");
Owen Anderson3b1665e2009-08-25 22:27:22 +00006226 return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006227 }
Chris Lattner88fa11c2005-11-08 23:30:28 +00006228}
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006229
Chris Lattner40e79822005-01-12 18:37:47 +00006230/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
6231/// indicated value. This method ignores uses of other values defined by this
6232/// operation.
Evan Chengd37645c2006-02-05 06:29:23 +00006233bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner40e79822005-01-12 18:37:47 +00006234 assert(Value < getNumValues() && "Bad value!");
6235
Roman Levenstein51f532f2008-04-07 10:06:32 +00006236 // TODO: Only iterate over uses of a given value of the node
6237 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006238 if (UI.getUse().getResNo() == Value) {
Roman Levenstein51f532f2008-04-07 10:06:32 +00006239 if (NUses == 0)
6240 return false;
6241 --NUses;
6242 }
Chris Lattner40e79822005-01-12 18:37:47 +00006243 }
6244
6245 // Found exactly the right number of uses?
6246 return NUses == 0;
6247}
6248
6249
Evan Cheng358c3d12007-08-02 05:29:38 +00006250/// hasAnyUseOfValue - Return true if there are any use of the indicated
6251/// value. This method ignores uses of other values defined by this operation.
6252bool SDNode::hasAnyUseOfValue(unsigned Value) const {
6253 assert(Value < getNumValues() && "Bad value!");
6254
Dan Gohman7a510c22008-07-09 22:39:01 +00006255 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006256 if (UI.getUse().getResNo() == Value)
Dan Gohman7a510c22008-07-09 22:39:01 +00006257 return true;
Evan Cheng358c3d12007-08-02 05:29:38 +00006258
6259 return false;
6260}
6261
6262
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006263/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Cheng9456dd82006-11-03 07:31:32 +00006264///
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006265bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Chengd37645c2006-02-05 06:29:23 +00006266 bool Seen = false;
6267 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00006268 SDNode *User = *I;
Evan Chengd37645c2006-02-05 06:29:23 +00006269 if (User == this)
6270 Seen = true;
6271 else
6272 return false;
6273 }
6274
6275 return Seen;
6276}
6277
Evan Cheng9456dd82006-11-03 07:31:32 +00006278/// isOperand - Return true if this node is an operand of N.
6279///
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006280bool SDValue::isOperandOf(SDNode *N) const {
Evan Cheng23e75f52006-03-03 06:42:32 +00006281 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
6282 if (*this == N->getOperand(i))
6283 return true;
6284 return false;
6285}
6286
Evan Cheng567d2e52008-03-04 00:41:45 +00006287bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng6b08ae82006-03-03 06:24:54 +00006288 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006289 if (this == N->OperandList[i].getNode())
Evan Cheng6b08ae82006-03-03 06:24:54 +00006290 return true;
6291 return false;
6292}
Evan Chengd37645c2006-02-05 06:29:23 +00006293
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006294/// reachesChainWithoutSideEffects - Return true if this operand (which must
Scott Michelcf0da6c2009-02-17 22:15:04 +00006295/// be a chain) reaches the specified operand without crossing any
Wesley Peck527da1b2010-11-23 03:31:01 +00006296/// side-effecting instructions on any chain path. In practice, this looks
6297/// through token factors and non-volatile loads. In order to remain efficient,
Owen Andersonb92b13d2010-09-18 04:45:14 +00006298/// this only looks a couple of nodes in, it does not do an exhaustive search.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006299bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006300 unsigned Depth) const {
6301 if (*this == Dest) return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006302
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006303 // Don't search too deeply, we just want to be able to see through
6304 // TokenFactor's etc.
6305 if (Depth == 0) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006306
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006307 // If this is a token factor, all inputs to the TF happen in parallel. If any
Owen Andersonb92b13d2010-09-18 04:45:14 +00006308 // of the operands of the TF does not reach dest, then we cannot do the xform.
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006309 if (getOpcode() == ISD::TokenFactor) {
6310 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersonb92b13d2010-09-18 04:45:14 +00006311 if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
6312 return false;
6313 return true;
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006314 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006315
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006316 // Loads don't have side effects, look through them.
6317 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
6318 if (!Ld->isVolatile())
6319 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
6320 }
6321 return false;
6322}
6323
Lang Hames5a004992011-07-07 04:31:51 +00006324/// hasPredecessor - Return true if N is a predecessor of this node.
6325/// N is either an operand of this node, or can be reached by recursively
6326/// traversing up the operands.
6327/// NOTE: This is an expensive method. Use it carefully.
6328bool SDNode::hasPredecessor(const SDNode *N) const {
6329 SmallPtrSet<const SDNode *, 32> Visited;
6330 SmallVector<const SDNode *, 16> Worklist;
6331 return hasPredecessorHelper(N, Visited, Worklist);
6332}
Dan Gohmancd139c02009-10-28 03:44:30 +00006333
Craig Topperb94011f2013-07-14 04:42:23 +00006334bool
6335SDNode::hasPredecessorHelper(const SDNode *N,
6336 SmallPtrSet<const SDNode *, 32> &Visited,
6337 SmallVectorImpl<const SDNode *> &Worklist) const {
Lang Hames5a004992011-07-07 04:31:51 +00006338 if (Visited.empty()) {
6339 Worklist.push_back(this);
6340 } else {
6341 // Take a look in the visited set. If we've already encountered this node
6342 // we needn't search further.
6343 if (Visited.count(N))
6344 return true;
6345 }
6346
6347 // Haven't visited N yet. Continue the search.
6348 while (!Worklist.empty()) {
6349 const SDNode *M = Worklist.pop_back_val();
6350 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
6351 SDNode *Op = M->getOperand(i).getNode();
Dan Gohmancd139c02009-10-28 03:44:30 +00006352 if (Visited.insert(Op))
6353 Worklist.push_back(Op);
Lang Hames5a004992011-07-07 04:31:51 +00006354 if (Op == N)
6355 return true;
Dan Gohmancd139c02009-10-28 03:44:30 +00006356 }
Lang Hames5a004992011-07-07 04:31:51 +00006357 }
Dan Gohmancd139c02009-10-28 03:44:30 +00006358
6359 return false;
Evan Chengc176f032006-11-03 03:05:24 +00006360}
6361
Evan Cheng5d9fd972006-10-04 00:56:09 +00006362uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
6363 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmaneffb8942008-09-12 16:56:44 +00006364 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Cheng5d9fd972006-10-04 00:56:09 +00006365}
6366
Mon P Wang32f8bb92009-11-30 02:42:02 +00006367SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
6368 assert(N->getNumValues() == 1 &&
6369 "Can't unroll a vector with multiple results!");
6370
6371 EVT VT = N->getValueType(0);
6372 unsigned NE = VT.getVectorNumElements();
6373 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006374 SDLoc dl(N);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006375
6376 SmallVector<SDValue, 8> Scalars;
6377 SmallVector<SDValue, 4> Operands(N->getNumOperands());
6378
6379 // If ResNE is 0, fully unroll the vector op.
6380 if (ResNE == 0)
6381 ResNE = NE;
6382 else if (NE > ResNE)
6383 NE = ResNE;
6384
6385 unsigned i;
6386 for (i= 0; i != NE; ++i) {
Bill Wendlingde4b2252010-04-30 22:19:17 +00006387 for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
Mon P Wang32f8bb92009-11-30 02:42:02 +00006388 SDValue Operand = N->getOperand(j);
6389 EVT OperandVT = Operand.getValueType();
6390 if (OperandVT.isVector()) {
6391 // A vector operand; extract a single element.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006392 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang32f8bb92009-11-30 02:42:02 +00006393 EVT OperandEltVT = OperandVT.getVectorElementType();
6394 Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl,
6395 OperandEltVT,
6396 Operand,
Tom Stellardd42c5942013-08-05 22:22:01 +00006397 getConstant(i, TLI->getVectorIdxTy()));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006398 } else {
6399 // A scalar operand; just use it as is.
6400 Operands[j] = Operand;
6401 }
6402 }
6403
6404 switch (N->getOpcode()) {
6405 default:
Craig Topper48d114b2014-04-26 18:35:24 +00006406 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006407 break;
Nadav Rotem52202fb2011-09-13 19:17:42 +00006408 case ISD::VSELECT:
Craig Topper48d114b2014-04-26 18:35:24 +00006409 Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands));
Nadav Rotem52202fb2011-09-13 19:17:42 +00006410 break;
Mon P Wang32f8bb92009-11-30 02:42:02 +00006411 case ISD::SHL:
6412 case ISD::SRA:
6413 case ISD::SRL:
6414 case ISD::ROTL:
6415 case ISD::ROTR:
6416 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
Jack Carter170a5f22013-09-09 22:02:08 +00006417 getShiftAmountOperand(Operands[0].getValueType(),
6418 Operands[1])));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006419 break;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00006420 case ISD::SIGN_EXTEND_INREG:
6421 case ISD::FP_ROUND_INREG: {
6422 EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
6423 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6424 Operands[0],
6425 getValueType(ExtVT)));
6426 }
Mon P Wang32f8bb92009-11-30 02:42:02 +00006427 }
6428 }
6429
6430 for (; i < ResNE; ++i)
6431 Scalars.push_back(getUNDEF(EltVT));
6432
6433 return getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00006434 EVT::getVectorVT(*getContext(), EltVT, ResNE), Scalars);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006435}
6436
Evan Chengf5938d52009-12-09 01:36:00 +00006437
Wesley Peck527da1b2010-11-23 03:31:01 +00006438/// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a
6439/// location that is 'Dist' units away from the location that the 'Base' load
Evan Chengf5938d52009-12-09 01:36:00 +00006440/// is loading from.
Wesley Peck527da1b2010-11-23 03:31:01 +00006441bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base,
Evan Chengf5938d52009-12-09 01:36:00 +00006442 unsigned Bytes, int Dist) const {
6443 if (LD->getChain() != Base->getChain())
6444 return false;
6445 EVT VT = LD->getValueType(0);
6446 if (VT.getSizeInBits() / 8 != Bytes)
6447 return false;
6448
6449 SDValue Loc = LD->getOperand(1);
6450 SDValue BaseLoc = Base->getOperand(1);
6451 if (Loc.getOpcode() == ISD::FrameIndex) {
6452 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6453 return false;
6454 const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo();
6455 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6456 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6457 int FS = MFI->getObjectSize(FI);
6458 int BFS = MFI->getObjectSize(BFI);
6459 if (FS != BFS || FS != (int)Bytes) return false;
6460 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6461 }
Chris Lattner46c01a32011-02-13 22:25:43 +00006462
6463 // Handle X+C
6464 if (isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6465 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6466 return true;
Evan Chengf5938d52009-12-09 01:36:00 +00006467
Craig Topperc0196b12014-04-14 00:51:57 +00006468 const GlobalValue *GV1 = nullptr;
6469 const GlobalValue *GV2 = nullptr;
Evan Chengf5938d52009-12-09 01:36:00 +00006470 int64_t Offset1 = 0;
6471 int64_t Offset2 = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006472 const TargetLowering *TLI = TM.getTargetLowering();
6473 bool isGA1 = TLI->isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6474 bool isGA2 = TLI->isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
Evan Chengf5938d52009-12-09 01:36:00 +00006475 if (isGA1 && isGA2 && GV1 == GV2)
6476 return Offset1 == (Offset2 + Dist*Bytes);
6477 return false;
6478}
6479
6480
Evan Cheng34a23ea2009-12-09 01:04:59 +00006481/// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
6482/// it cannot be inferred.
Evan Cheng17500092009-12-09 01:10:37 +00006483unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
Evan Chengd938faf2009-12-09 01:53:58 +00006484 // If this is a GlobalAddress + cst, return the alignment.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00006485 const GlobalValue *GV;
Evan Chengd938faf2009-12-09 01:53:58 +00006486 int64_t GVOffset = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006487 const TargetLowering *TLI = TM.getTargetLowering();
6488 if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
Matt Arsenaultdfb3e702013-11-16 20:50:54 +00006489 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006490 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);
Jay Foada0653a32014-05-14 21:14:37 +00006491 llvm::computeKnownBits(const_cast<GlobalValue*>(GV), KnownZero, KnownOne,
6492 TLI->getDataLayout());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006493 unsigned AlignBits = KnownZero.countTrailingOnes();
6494 unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0;
6495 if (Align)
6496 return MinAlign(Align, GVOffset);
Evan Cheng43cd9e32010-04-01 06:04:33 +00006497 }
Evan Chengd938faf2009-12-09 01:53:58 +00006498
Evan Cheng34a23ea2009-12-09 01:04:59 +00006499 // If this is a direct reference to a stack slot, use information about the
6500 // stack slot's alignment.
6501 int FrameIdx = 1 << 31;
6502 int64_t FrameOffset = 0;
6503 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
6504 FrameIdx = FI->getIndex();
Chris Lattner46c01a32011-02-13 22:25:43 +00006505 } else if (isBaseWithConstantOffset(Ptr) &&
Evan Cheng34a23ea2009-12-09 01:04:59 +00006506 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
Chris Lattner46c01a32011-02-13 22:25:43 +00006507 // Handle FI+Cst
Evan Cheng34a23ea2009-12-09 01:04:59 +00006508 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6509 FrameOffset = Ptr.getConstantOperandVal(1);
6510 }
6511
6512 if (FrameIdx != (1 << 31)) {
Evan Cheng34a23ea2009-12-09 01:04:59 +00006513 const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo();
Evan Cheng2d412f02009-12-09 01:17:24 +00006514 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
6515 FrameOffset);
Evan Cheng2d412f02009-12-09 01:17:24 +00006516 return FIInfoAlign;
Evan Cheng34a23ea2009-12-09 01:04:59 +00006517 }
6518
6519 return 0;
6520}
6521
Juergen Ributzkab3487102013-11-19 21:20:17 +00006522/// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
6523/// which is split (or expanded) into two not necessarily identical pieces.
6524std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const {
6525 // Currently all types are split in half.
6526 EVT LoVT, HiVT;
6527 if (!VT.isVector()) {
6528 LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT);
6529 } else {
6530 unsigned NumElements = VT.getVectorNumElements();
6531 assert(!(NumElements & 1) && "Splitting vector, but not in half!");
6532 LoVT = HiVT = EVT::getVectorVT(*getContext(), VT.getVectorElementType(),
6533 NumElements/2);
6534 }
6535 return std::make_pair(LoVT, HiVT);
6536}
6537
6538/// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
6539/// low/high part.
6540std::pair<SDValue, SDValue>
6541SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT,
6542 const EVT &HiVT) {
6543 assert(LoVT.getVectorNumElements() + HiVT.getVectorNumElements() <=
6544 N.getValueType().getVectorNumElements() &&
6545 "More vector elements requested than available!");
6546 SDValue Lo, Hi;
6547 Lo = getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N,
6548 getConstant(0, TLI->getVectorIdxTy()));
6549 Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N,
6550 getConstant(LoVT.getVectorNumElements(), TLI->getVectorIdxTy()));
6551 return std::make_pair(Lo, Hi);
6552}
6553
Matt Arsenault9ec3cf22014-04-11 17:47:30 +00006554void SelectionDAG::ExtractVectorElements(SDValue Op,
6555 SmallVectorImpl<SDValue> &Args,
6556 unsigned Start, unsigned Count) {
6557 EVT VT = Op.getValueType();
6558 if (Count == 0)
6559 Count = VT.getVectorNumElements();
6560
6561 EVT EltVT = VT.getVectorElementType();
6562 EVT IdxTy = TLI->getVectorIdxTy();
6563 SDLoc SL(Op);
6564 for (unsigned i = Start, e = Start + Count; i != e; ++i) {
6565 Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
6566 Op, getConstant(i, IdxTy)));
6567 }
6568}
6569
Sanjiv Guptaccd30942009-04-29 04:43:24 +00006570// getAddressSpace - Return the address space this GlobalAddress belongs to.
6571unsigned GlobalAddressSDNode::getAddressSpace() const {
6572 return getGlobal()->getType()->getAddressSpace();
6573}
6574
6575
Chris Lattner229907c2011-07-18 04:54:35 +00006576Type *ConstantPoolSDNode::getType() const {
Evan Cheng45fe3bc2006-09-12 21:00:35 +00006577 if (isMachineConstantPoolEntry())
6578 return Val.MachineCPVal->getType();
6579 return Val.ConstVal->getType();
6580}
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006581
Bob Wilson85cefe82009-03-02 23:24:16 +00006582bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
6583 APInt &SplatUndef,
6584 unsigned &SplatBitSize,
6585 bool &HasAnyUndefs,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006586 unsigned MinSplatBits,
Matt Arsenaultb598f7b2014-02-24 21:01:18 +00006587 bool isBigEndian) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006588 EVT VT = getValueType(0);
Bob Wilson85cefe82009-03-02 23:24:16 +00006589 assert(VT.isVector() && "Expected a vector type");
6590 unsigned sz = VT.getSizeInBits();
6591 if (MinSplatBits > sz)
6592 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006593
Bob Wilson85cefe82009-03-02 23:24:16 +00006594 SplatValue = APInt(sz, 0);
6595 SplatUndef = APInt(sz, 0);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006596
Bob Wilson85cefe82009-03-02 23:24:16 +00006597 // Get the bits. Bits with undefined values (when the corresponding element
6598 // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
6599 // in SplatValue. If any of the values are not constant, give up and return
6600 // false.
6601 unsigned int nOps = getNumOperands();
6602 assert(nOps > 0 && "isConstantSplat has 0-size build vector");
6603 unsigned EltBitSize = VT.getVectorElementType().getSizeInBits();
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006604
6605 for (unsigned j = 0; j < nOps; ++j) {
6606 unsigned i = isBigEndian ? nOps-1-j : j;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006607 SDValue OpVal = getOperand(i);
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006608 unsigned BitPos = j * EltBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006609
Bob Wilson85cefe82009-03-02 23:24:16 +00006610 if (OpVal.getOpcode() == ISD::UNDEF)
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006611 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
Bob Wilson85cefe82009-03-02 23:24:16 +00006612 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
Jay Foad583abbc2010-12-07 08:25:19 +00006613 SplatValue |= CN->getAPIntValue().zextOrTrunc(EltBitSize).
Dan Gohmanecd40a32010-04-12 02:24:01 +00006614 zextOrTrunc(sz) << BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006615 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
Bob Wilson5b15d012009-03-04 17:47:01 +00006616 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006617 else
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006618 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006619 }
6620
Bob Wilson85cefe82009-03-02 23:24:16 +00006621 // The build_vector is all constants or undefs. Find the smallest element
6622 // size that splats the vector.
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006623
Bob Wilson85cefe82009-03-02 23:24:16 +00006624 HasAnyUndefs = (SplatUndef != 0);
6625 while (sz > 8) {
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006626
Bob Wilson85cefe82009-03-02 23:24:16 +00006627 unsigned HalfSize = sz / 2;
Jay Foad583abbc2010-12-07 08:25:19 +00006628 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
6629 APInt LowValue = SplatValue.trunc(HalfSize);
6630 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
6631 APInt LowUndef = SplatUndef.trunc(HalfSize);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006632
Bob Wilson85cefe82009-03-02 23:24:16 +00006633 // If the two halves do not match (ignoring undef bits), stop here.
6634 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
6635 MinSplatBits > HalfSize)
6636 break;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006637
Bob Wilson85cefe82009-03-02 23:24:16 +00006638 SplatValue = HighValue | LowValue;
6639 SplatUndef = HighUndef & LowUndef;
Eric Christopherdfda92b2009-08-22 00:40:45 +00006640
Bob Wilson85cefe82009-03-02 23:24:16 +00006641 sz = HalfSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006642 }
6643
Bob Wilson85cefe82009-03-02 23:24:16 +00006644 SplatBitSize = sz;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006645 return true;
6646}
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006647
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006648SDValue BuildVectorSDNode::getSplatValue(BitVector *UndefElements) const {
6649 if (UndefElements) {
6650 UndefElements->clear();
6651 UndefElements->resize(getNumOperands());
6652 }
Chandler Carruthb844e722014-07-08 07:19:55 +00006653 SDValue Splatted;
6654 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
6655 SDValue Op = getOperand(i);
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006656 if (Op.getOpcode() == ISD::UNDEF) {
6657 if (UndefElements)
6658 (*UndefElements)[i] = true;
6659 } else if (!Splatted) {
Chandler Carruthb844e722014-07-08 07:19:55 +00006660 Splatted = Op;
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006661 } else if (Splatted != Op) {
Chandler Carruthb844e722014-07-08 07:19:55 +00006662 return SDValue();
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006663 }
Chandler Carruthb844e722014-07-08 07:19:55 +00006664 }
Andrea Di Biagio5b0aacf2014-03-22 01:47:22 +00006665
Chandler Carruthb844e722014-07-08 07:19:55 +00006666 if (!Splatted) {
6667 assert(getOperand(0).getOpcode() == ISD::UNDEF &&
6668 "Can only have a splat without a constant for all undefs.");
6669 return getOperand(0);
6670 }
Matt Arsenault985b9de2014-03-17 18:58:01 +00006671
Chandler Carruthb844e722014-07-08 07:19:55 +00006672 return Splatted;
6673}
6674
6675ConstantSDNode *
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006676BuildVectorSDNode::getConstantSplatNode(BitVector *UndefElements) const {
Chandler Carruthb844e722014-07-08 07:19:55 +00006677 return dyn_cast_or_null<ConstantSDNode>(
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006678 getSplatValue(UndefElements).getNode());
Chandler Carruthb844e722014-07-08 07:19:55 +00006679}
6680
6681ConstantFPSDNode *
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006682BuildVectorSDNode::getConstantFPSplatNode(BitVector *UndefElements) const {
Chandler Carruthb844e722014-07-08 07:19:55 +00006683 return dyn_cast_or_null<ConstantFPSDNode>(
Chandler Carruthf0a33b72014-07-09 00:41:34 +00006684 getSplatValue(UndefElements).getNode());
Matt Arsenault985b9de2014-03-17 18:58:01 +00006685}
6686
Juergen Ributzka73844052014-01-13 20:51:35 +00006687bool BuildVectorSDNode::isConstant() const {
6688 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
6689 unsigned Opc = getOperand(i).getOpcode();
6690 if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP)
6691 return false;
6692 }
6693 return true;
6694}
6695
Owen Anderson53aa7a92009-08-10 22:56:29 +00006696bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
Nate Begeman5f829d82009-04-29 05:20:52 +00006697 // Find the first non-undef value in the shuffle mask.
6698 unsigned i, e;
6699 for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
6700 /* search */;
6701
Nate Begeman39b59db2009-04-29 18:13:31 +00006702 assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
Eric Christopherdfda92b2009-08-22 00:40:45 +00006703
Nate Begeman5f829d82009-04-29 05:20:52 +00006704 // Make sure all remaining elements are either undef or the same as the first
6705 // non-undef value.
6706 for (int Idx = Mask[i]; i != e; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006707 if (Mask[i] >= 0 && Mask[i] != Idx)
6708 return false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006709 return true;
6710}
David Greene09851602010-01-20 20:13:31 +00006711
Adam Nemetb4690e32014-05-31 16:23:20 +00006712#ifndef NDEBUG
David Greene09851602010-01-20 20:13:31 +00006713static void checkForCyclesHelper(const SDNode *N,
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006714 SmallPtrSet<const SDNode*, 32> &Visited,
Adam Nemet7d394302014-05-31 16:23:17 +00006715 SmallPtrSet<const SDNode*, 32> &Checked,
6716 const llvm::SelectionDAG *DAG) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006717 // If this node has already been checked, don't check it again.
6718 if (Checked.count(N))
David Greened8ecd5e2010-02-23 17:37:50 +00006719 return;
Wesley Peck527da1b2010-11-23 03:31:01 +00006720
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006721 // If a node has already been visited on this depth-first walk, reject it as
6722 // a cycle.
6723 if (!Visited.insert(N)) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006724 errs() << "Detected cycle in SelectionDAG\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006725 dbgs() << "Offending node:\n";
6726 N->dumprFull(DAG); dbgs() << "\n";
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006727 abort();
David Greene09851602010-01-20 20:13:31 +00006728 }
Wesley Peck527da1b2010-11-23 03:31:01 +00006729
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006730 for(unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Adam Nemet7d394302014-05-31 16:23:17 +00006731 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked, DAG);
Wesley Peck527da1b2010-11-23 03:31:01 +00006732
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006733 Checked.insert(N);
6734 Visited.erase(N);
David Greene09851602010-01-20 20:13:31 +00006735}
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006736#endif
David Greene09851602010-01-20 20:13:31 +00006737
Adam Nemet7d394302014-05-31 16:23:17 +00006738void llvm::checkForCycles(const llvm::SDNode *N,
Adam Nemetb4690e32014-05-31 16:23:20 +00006739 const llvm::SelectionDAG *DAG,
6740 bool force) {
6741#ifndef NDEBUG
6742 bool check = force;
David Greene09851602010-01-20 20:13:31 +00006743#ifdef XDEBUG
Adam Nemetb4690e32014-05-31 16:23:20 +00006744 check = true;
6745#endif // XDEBUG
6746 if (check) {
6747 assert(N && "Checking nonexistent SDNode");
6748 SmallPtrSet<const SDNode*, 32> visited;
6749 SmallPtrSet<const SDNode*, 32> checked;
6750 checkForCyclesHelper(N, visited, checked, DAG);
6751 }
6752#endif // !NDEBUG
David Greene09851602010-01-20 20:13:31 +00006753}
6754
Adam Nemetb4690e32014-05-31 16:23:20 +00006755void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) {
6756 checkForCycles(DAG->getRoot().getNode(), DAG, force);
David Greene09851602010-01-20 20:13:31 +00006757}