blob: 522d7c535d3fd3d809d2fd48c725b52fc1129f7f [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 Topper2d2aa0c2014-04-30 07:17:30 +0000560 AddNodeIDOperands(ID, makeArrayRef(N->op_begin(), N->op_end()));
Duncan Sands835bdca2008-10-27 15:30:53 +0000561
562 // Handle SDNode leafs with special info.
563 AddNodeIDCustom(ID, N);
564}
565
Dan Gohman2da2bed2008-08-20 15:58:01 +0000566/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
David Greeneb7941b02010-02-17 20:21:42 +0000567/// the CSE map that carries volatility, temporalness, indexing mode, and
Dan Gohman76a07f52009-02-03 00:08:45 +0000568/// extension/truncation information.
Dan Gohman2da2bed2008-08-20 15:58:01 +0000569///
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000570static inline unsigned
David Greeneb7941b02010-02-17 20:21:42 +0000571encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000572 bool isNonTemporal, bool isInvariant) {
Dan Gohman76a07f52009-02-03 00:08:45 +0000573 assert((ConvType & 3) == ConvType &&
574 "ConvType may not require more than 2 bits!");
575 assert((AM & 7) == AM &&
576 "AM may not require more than 3 bits!");
577 return ConvType |
578 (AM << 2) |
David Greeneb7941b02010-02-17 20:21:42 +0000579 (isVolatile << 5) |
Pete Cooper82cd9e82011-11-08 18:42:53 +0000580 (isNonTemporal << 6) |
581 (isInvariant << 7);
Dan Gohman2da2bed2008-08-20 15:58:01 +0000582}
583
Jim Laskeyf576b422006-10-27 23:46:08 +0000584//===----------------------------------------------------------------------===//
Jim Laskeyd66e6162005-08-17 20:08:02 +0000585// SelectionDAG Class
586//===----------------------------------------------------------------------===//
Chris Lattner90b7c132005-01-23 04:39:44 +0000587
Duncan Sands835bdca2008-10-27 15:30:53 +0000588/// doNotCSE - Return true if CSE should not be performed for this node.
589static bool doNotCSE(SDNode *N) {
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000590 if (N->getValueType(0) == MVT::Glue)
Duncan Sands835bdca2008-10-27 15:30:53 +0000591 return true; // Never CSE anything that produces a flag.
592
593 switch (N->getOpcode()) {
594 default: break;
595 case ISD::HANDLENODE:
Duncan Sands835bdca2008-10-27 15:30:53 +0000596 case ISD::EH_LABEL:
Duncan Sands835bdca2008-10-27 15:30:53 +0000597 return true; // Never CSE these nodes.
598 }
599
600 // Check that remaining values produced are not flags.
601 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000602 if (N->getValueType(i) == MVT::Glue)
Duncan Sands835bdca2008-10-27 15:30:53 +0000603 return true; // Never CSE anything that produces a flag.
604
605 return false;
606}
607
Chris Lattner9c667932005-01-07 21:09:16 +0000608/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner8927c872006-08-04 17:45:20 +0000609/// SelectionDAG.
610void SelectionDAG::RemoveDeadNodes() {
Chris Lattner9c667932005-01-07 21:09:16 +0000611 // Create a dummy node (which is not added to allnodes), that adds a reference
612 // to the root node, preventing it from being deleted.
Chris Lattner06f1d0f2005-10-05 06:35:28 +0000613 HandleSDNode Dummy(getRoot());
Chris Lattner9c667932005-01-07 21:09:16 +0000614
Chris Lattner8927c872006-08-04 17:45:20 +0000615 SmallVector<SDNode*, 128> DeadNodes;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000616
Chris Lattner8927c872006-08-04 17:45:20 +0000617 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerbf4f23322005-11-09 23:47:37 +0000618 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner8927c872006-08-04 17:45:20 +0000619 if (I->use_empty())
620 DeadNodes.push_back(I);
621
Dan Gohman91697632008-07-07 20:57:48 +0000622 RemoveDeadNodes(DeadNodes);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000623
Dan Gohman91697632008-07-07 20:57:48 +0000624 // If the root changed (e.g. it was a dead load, update the root).
625 setRoot(Dummy.getValue());
626}
627
628/// RemoveDeadNodes - This method deletes the unreachable nodes in the
629/// given list, and any nodes that become unreachable as a result.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000630void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) {
Dan Gohman91697632008-07-07 20:57:48 +0000631
Chris Lattner8927c872006-08-04 17:45:20 +0000632 // Process the worklist, deleting the nodes and adding their uses to the
633 // worklist.
634 while (!DeadNodes.empty()) {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000635 SDNode *N = DeadNodes.pop_back_val();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000636
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000637 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
Craig Topperc0196b12014-04-14 00:51:57 +0000638 DUL->NodeDeleted(N, nullptr);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000639
Chris Lattner8927c872006-08-04 17:45:20 +0000640 // Take the node out of the appropriate CSE map.
641 RemoveNodeFromCSEMaps(N);
642
643 // Next, brutally remove the operand list. This is safe to do, as there are
644 // no cycles in the graph.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000645 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
646 SDUse &Use = *I++;
647 SDNode *Operand = Use.getNode();
648 Use.set(SDValue());
649
Chris Lattner8927c872006-08-04 17:45:20 +0000650 // Now that we removed this operand, see if there are no uses of it left.
651 if (Operand->use_empty())
652 DeadNodes.push_back(Operand);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000653 }
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000654
Dan Gohman534c8a22009-01-19 22:39:36 +0000655 DeallocateNode(N);
Chris Lattneraba48dd2005-11-08 18:52:27 +0000656 }
Chris Lattner9c667932005-01-07 21:09:16 +0000657}
658
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000659void SelectionDAG::RemoveDeadNode(SDNode *N){
Dan Gohman17059682008-07-17 19:10:17 +0000660 SmallVector<SDNode*, 16> DeadNodes(1, N);
Eli Friedmanf2a9bd42011-11-08 01:25:24 +0000661
662 // Create a dummy node that adds a reference to the root node, preventing
663 // it from being deleted. (This matters if the root is an operand of the
664 // dead node.)
665 HandleSDNode Dummy(getRoot());
666
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000667 RemoveDeadNodes(DeadNodes);
Evan Chenga731cb62006-10-12 20:34:05 +0000668}
669
Chris Lattnerc738d002005-08-29 21:59:31 +0000670void SelectionDAG::DeleteNode(SDNode *N) {
Chris Lattnerc738d002005-08-29 21:59:31 +0000671 // First take this out of the appropriate CSE map.
672 RemoveNodeFromCSEMaps(N);
673
Scott Michelcf0da6c2009-02-17 22:15:04 +0000674 // Finally, remove uses due to operands of this node, remove from the
Chris Lattnerfe883ad2005-09-07 05:37:01 +0000675 // AllNodes list, and delete the node.
676 DeleteNodeNotInCSEMaps(N);
677}
678
679void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
Dan Gohmane7b0dde2009-01-25 16:20:37 +0000680 assert(N != AllNodes.begin() && "Cannot delete the entry node!");
681 assert(N->use_empty() && "Cannot delete a node that is not dead!");
Dan Gohman534c8a22009-01-19 22:39:36 +0000682
Dan Gohman86aa16a2008-09-30 18:30:35 +0000683 // Drop all of the operands and decrement used node's use counts.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +0000684 N->DropOperands();
Bill Wendling8ec2a4a2008-10-19 20:51:12 +0000685
Dan Gohman534c8a22009-01-19 22:39:36 +0000686 DeallocateNode(N);
687}
688
689void SelectionDAG::DeallocateNode(SDNode *N) {
690 if (N->OperandsNeedDelete)
Chris Lattnerf17b4222007-02-04 07:28:00 +0000691 delete[] N->OperandList;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000692
Dan Gohman534c8a22009-01-19 22:39:36 +0000693 // Set the opcode to DELETED_NODE to help catch bugs when node
694 // memory is reallocated.
695 N->NodeType = ISD::DELETED_NODE;
696
Dan Gohman2e834902008-08-26 01:44:34 +0000697 NodeAllocator.Deallocate(AllNodes.remove(N));
Daniel Dunbarb827e522009-12-16 20:10:05 +0000698
Evan Cheng563fe3c2010-03-25 01:38:16 +0000699 // If any of the SDDbgValue nodes refer to this SDNode, invalidate them.
Benjamin Kramere1fc29b2011-06-18 13:13:44 +0000700 ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N);
Evan Cheng563fe3c2010-03-25 01:38:16 +0000701 for (unsigned i = 0, e = DbgVals.size(); i != e; ++i)
702 DbgVals[i]->setIsInvalidated();
Chris Lattnerc738d002005-08-29 21:59:31 +0000703}
704
Chris Lattner19732782005-08-16 18:17:10 +0000705/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
706/// correspond to it. This is useful when we're about to delete or repurpose
707/// the node. We don't want future request for structurally identical nodes
708/// to return N anymore.
Dan Gohmand3fe1742008-09-13 01:54:27 +0000709bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner1e89e362005-09-02 19:15:44 +0000710 bool Erased = false;
Chris Lattner9c667932005-01-07 21:09:16 +0000711 switch (N->getOpcode()) {
Dan Gohmand3fe1742008-09-13 01:54:27 +0000712 case ISD::HANDLENODE: return false; // noop.
Chris Lattnerd47675e2005-08-09 20:20:18 +0000713 case ISD::CONDCODE:
714 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
715 "Cond code doesn't exist!");
Craig Topperc0196b12014-04-14 00:51:57 +0000716 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != nullptr;
717 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = nullptr;
Chris Lattnerd47675e2005-08-09 20:20:18 +0000718 break;
Bill Wendling24c79f22008-09-16 21:48:12 +0000719 case ISD::ExternalSymbol:
720 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner9c667932005-01-07 21:09:16 +0000721 break;
Chris Lattneraf5dbfc2009-06-25 18:45:50 +0000722 case ISD::TargetExternalSymbol: {
723 ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
724 Erased = TargetExternalSymbols.erase(
725 std::pair<std::string,unsigned char>(ESN->getSymbol(),
726 ESN->getTargetFlags()));
Andrew Lenharth4b3932a2005-10-23 03:40:17 +0000727 break;
Chris Lattneraf5dbfc2009-06-25 18:45:50 +0000728 }
Duncan Sandsd42c8122007-10-17 13:49:58 +0000729 case ISD::VALUETYPE: {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000730 EVT VT = cast<VTSDNode>(N)->getVT();
Duncan Sands13237ac2008-06-06 12:08:01 +0000731 if (VT.isExtended()) {
Duncan Sandsd42c8122007-10-17 13:49:58 +0000732 Erased = ExtendedValueTypeNodes.erase(VT);
733 } else {
Craig Topperc0196b12014-04-14 00:51:57 +0000734 Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != nullptr;
735 ValueTypeNodes[VT.getSimpleVT().SimpleTy] = nullptr;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000736 }
Chris Lattner0b6ba902005-07-10 00:07:11 +0000737 break;
Duncan Sandsd42c8122007-10-17 13:49:58 +0000738 }
Chris Lattner9c667932005-01-07 21:09:16 +0000739 default:
Chris Lattnerfcb16472006-08-11 18:38:11 +0000740 // Remove it from the CSE Map.
Duncan Sandsd2e70b52010-12-12 13:22:50 +0000741 assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
742 assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
Chris Lattnerfcb16472006-08-11 18:38:11 +0000743 Erased = CSEMap.RemoveNode(N);
Chris Lattner9c667932005-01-07 21:09:16 +0000744 break;
745 }
Chris Lattner1e89e362005-09-02 19:15:44 +0000746#ifndef NDEBUG
Scott Michelcf0da6c2009-02-17 22:15:04 +0000747 // Verify that the node was actually in one of the CSE maps, unless it has a
Chris Lattner1e89e362005-09-02 19:15:44 +0000748 // flag result (which cannot be CSE'd) or is one of the special cases that are
749 // not subject to CSE.
Chris Lattner3e5fbd72010-12-21 02:38:05 +0000750 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue &&
Duncan Sands835bdca2008-10-27 15:30:53 +0000751 !N->isMachineOpcode() && !doNotCSE(N)) {
Dan Gohmana7644dd2007-06-19 14:13:56 +0000752 N->dump(this);
David Greened93137d2010-01-05 01:24:36 +0000753 dbgs() << "\n";
Torok Edwinfbcc6632009-07-14 16:55:14 +0000754 llvm_unreachable("Node is not in map!");
Chris Lattner1e89e362005-09-02 19:15:44 +0000755 }
756#endif
Dan Gohmand3fe1742008-09-13 01:54:27 +0000757 return Erased;
Chris Lattner9c667932005-01-07 21:09:16 +0000758}
759
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000760/// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
761/// maps and modified in place. Add it back to the CSE maps, unless an identical
762/// node already exists, in which case transfer all its users to the existing
763/// node. This transfer can potentially trigger recursive merging.
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000764///
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000765void
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000766SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000767 // For node types that aren't CSE'd, just act as if no identical node
768 // already exists.
769 if (!doNotCSE(N)) {
770 SDNode *Existing = CSEMap.GetOrInsertNode(N);
771 if (Existing != N) {
772 // If there was already an existing matching node, use ReplaceAllUsesWith
773 // to replace the dead one with the existing one. This can cause
774 // recursive merging of other unrelated nodes down the line.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000775 ReplaceAllUsesWith(N, Existing);
Evan Cheng34ef1db2008-07-08 20:06:39 +0000776
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000777 // N is now dead. Inform the listeners and delete it.
778 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
779 DUL->NodeDeleted(N, Existing);
Dan Gohmanf1d38be2009-01-25 16:29:12 +0000780 DeleteNodeNotInCSEMaps(N);
781 return;
782 }
783 }
Evan Cheng34ef1db2008-07-08 20:06:39 +0000784
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000785 // If the node doesn't already exist, we updated it. Inform listeners.
786 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
787 DUL->NodeUpdated(N);
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000788}
789
Chris Lattnerf34156e2006-01-28 09:32:45 +0000790/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000791/// were replaced with those specified. If this node is never memoized,
Chris Lattnerf34156e2006-01-28 09:32:45 +0000792/// return null, otherwise return a pointer to the slot it would take. If a
793/// node already exists with these operands, the slot will be non-null.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000794SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000795 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000796 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000797 return nullptr;
Evan Cheng34ef1db2008-07-08 20:06:39 +0000798
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000799 SDValue Ops[] = { Op };
Jim Laskeyf576b422006-10-27 23:46:08 +0000800 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +0000801 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000802 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000803 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000804 return Node;
Chris Lattnerf34156e2006-01-28 09:32:45 +0000805}
806
807/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000808/// were replaced with those specified. If this node is never memoized,
Chris Lattnerf34156e2006-01-28 09:32:45 +0000809/// return null, otherwise return a pointer to the slot it would take. If a
810/// node already exists with these operands, the slot will be non-null.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000811SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000812 SDValue Op1, SDValue Op2,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000813 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000814 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000815 return nullptr;
Duncan Sands835bdca2008-10-27 15:30:53 +0000816
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000817 SDValue Ops[] = { Op1, Op2 };
Jim Laskeyf576b422006-10-27 23:46:08 +0000818 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +0000819 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000820 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000821 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000822 return Node;
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000823}
824
825
826/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
Scott Michelcf0da6c2009-02-17 22:15:04 +0000827/// were replaced with those specified. If this node is never memoized,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000828/// return null, otherwise return a pointer to the slot it would take. If a
829/// node already exists with these operands, the slot will be non-null.
Craig Topper8c0b4d02014-04-28 05:57:50 +0000830SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
Chris Lattner1ee75ce2006-08-07 23:03:03 +0000831 void *&InsertPos) {
Duncan Sands835bdca2008-10-27 15:30:53 +0000832 if (doNotCSE(N))
Craig Topperc0196b12014-04-14 00:51:57 +0000833 return nullptr;
Evan Cheng34ef1db2008-07-08 20:06:39 +0000834
Jim Laskeyf576b422006-10-27 23:46:08 +0000835 FoldingSetNodeID ID;
Craig Topper8c0b4d02014-04-28 05:57:50 +0000836 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
Duncan Sands835bdca2008-10-27 15:30:53 +0000837 AddNodeIDCustom(ID, N);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000838 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Daniel Dunbarb827e522009-12-16 20:10:05 +0000839 return Node;
Chris Lattnerf34156e2006-01-28 09:32:45 +0000840}
Chris Lattnerab0de9d2005-08-17 19:00:20 +0000841
Benjamin Kramerf6fb58a2010-11-20 15:53:24 +0000842#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +0000843/// VerifyNodeCommon - Sanity check the given node. Aborts if it is invalid.
844static void VerifyNodeCommon(SDNode *N) {
Duncan Sandsb0e39382008-07-21 10:20:31 +0000845 switch (N->getOpcode()) {
846 default:
847 break;
Duncan Sands17e678b2008-10-29 14:22:20 +0000848 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +0000849 EVT VT = N->getValueType(0);
Duncan Sands17e678b2008-10-29 14:22:20 +0000850 assert(N->getNumValues() == 1 && "Too many results!");
851 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
852 "Wrong return type!");
853 assert(N->getNumOperands() == 2 && "Wrong number of operands!");
854 assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
855 "Mismatched operand types!");
856 assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
857 "Wrong operand type!");
858 assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
859 "Wrong return type size");
860 break;
861 }
Duncan Sandsb0e39382008-07-21 10:20:31 +0000862 case ISD::BUILD_VECTOR: {
Duncan Sands17e678b2008-10-29 14:22:20 +0000863 assert(N->getNumValues() == 1 && "Too many results!");
864 assert(N->getValueType(0).isVector() && "Wrong return type!");
Duncan Sandsb0e39382008-07-21 10:20:31 +0000865 assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
Duncan Sands17e678b2008-10-29 14:22:20 +0000866 "Wrong number of operands!");
Owen Anderson53aa7a92009-08-10 22:56:29 +0000867 EVT EltVT = N->getValueType(0).getVectorElementType();
Eli Friedmanb7910b72011-09-09 21:04:06 +0000868 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Rafael Espindolab93db662009-04-24 12:40:33 +0000869 assert((I->getValueType() == EltVT ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000870 (EltVT.isInteger() && I->getValueType().isInteger() &&
871 EltVT.bitsLE(I->getValueType()))) &&
872 "Wrong operand type!");
Eli Friedmanb7910b72011-09-09 21:04:06 +0000873 assert(I->getValueType() == N->getOperand(0).getValueType() &&
874 "Operands must all have the same type");
875 }
Duncan Sandsb0e39382008-07-21 10:20:31 +0000876 break;
877 }
878 }
879}
880
Duncan Sands7c601de2010-11-20 11:25:00 +0000881/// VerifySDNode - Sanity check the given SDNode. Aborts if it is invalid.
882static void VerifySDNode(SDNode *N) {
883 // The SDNode allocators cannot be used to allocate nodes with fields that are
884 // not present in an SDNode!
885 assert(!isa<MemSDNode>(N) && "Bad MemSDNode!");
886 assert(!isa<ShuffleVectorSDNode>(N) && "Bad ShuffleVectorSDNode!");
887 assert(!isa<ConstantSDNode>(N) && "Bad ConstantSDNode!");
888 assert(!isa<ConstantFPSDNode>(N) && "Bad ConstantFPSDNode!");
889 assert(!isa<GlobalAddressSDNode>(N) && "Bad GlobalAddressSDNode!");
890 assert(!isa<FrameIndexSDNode>(N) && "Bad FrameIndexSDNode!");
891 assert(!isa<JumpTableSDNode>(N) && "Bad JumpTableSDNode!");
892 assert(!isa<ConstantPoolSDNode>(N) && "Bad ConstantPoolSDNode!");
893 assert(!isa<BasicBlockSDNode>(N) && "Bad BasicBlockSDNode!");
894 assert(!isa<SrcValueSDNode>(N) && "Bad SrcValueSDNode!");
895 assert(!isa<MDNodeSDNode>(N) && "Bad MDNodeSDNode!");
896 assert(!isa<RegisterSDNode>(N) && "Bad RegisterSDNode!");
897 assert(!isa<BlockAddressSDNode>(N) && "Bad BlockAddressSDNode!");
898 assert(!isa<EHLabelSDNode>(N) && "Bad EHLabelSDNode!");
899 assert(!isa<ExternalSymbolSDNode>(N) && "Bad ExternalSymbolSDNode!");
900 assert(!isa<CondCodeSDNode>(N) && "Bad CondCodeSDNode!");
901 assert(!isa<CvtRndSatSDNode>(N) && "Bad CvtRndSatSDNode!");
902 assert(!isa<VTSDNode>(N) && "Bad VTSDNode!");
903 assert(!isa<MachineSDNode>(N) && "Bad MachineSDNode!");
904
905 VerifyNodeCommon(N);
906}
907
908/// VerifyMachineNode - Sanity check the given MachineNode. Aborts if it is
909/// invalid.
910static void VerifyMachineNode(SDNode *N) {
911 // The MachineNode allocators cannot be used to allocate nodes with fields
912 // that are not present in a MachineNode!
913 // Currently there are no such nodes.
914
915 VerifyNodeCommon(N);
916}
Benjamin Kramerf6fb58a2010-11-20 15:53:24 +0000917#endif // NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +0000918
Owen Anderson53aa7a92009-08-10 22:56:29 +0000919/// getEVTAlignment - Compute the default alignment value for the
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000920/// given type.
921///
Owen Anderson53aa7a92009-08-10 22:56:29 +0000922unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
Chris Lattner229907c2011-07-18 04:54:35 +0000923 Type *Ty = VT == MVT::iPTR ?
Owen Anderson55f1c092009-08-13 21:58:54 +0000924 PointerType::get(Type::getInt8Ty(*getContext()), 0) :
Owen Anderson117c9e82009-08-12 00:36:31 +0000925 VT.getTypeForEVT(*getContext());
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000926
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000927 return TM.getTargetLowering()->getDataLayout()->getABITypeAlignment(Ty);
Dan Gohmane8d8d2e2008-07-08 23:46:32 +0000928}
Chris Lattner9c667932005-01-07 21:09:16 +0000929
Dale Johannesen8ba713212009-02-07 02:15:05 +0000930// EntryNode could meaningfully have debug info if we can find it...
Devang Patel7bbc1e52011-12-15 18:21:18 +0000931SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL)
Craig Topperc0196b12014-04-14 00:51:57 +0000932 : TM(tm), TSI(*tm.getSelectionDAGInfo()), TLI(nullptr), OptLevel(OL),
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000933 EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
Daniel Sanders50b80412013-11-15 12:56:49 +0000934 Root(getEntryNode()), NewNodesMustHaveLegalTypes(false),
Craig Topperc0196b12014-04-14 00:51:57 +0000935 UpdateListeners(nullptr) {
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000936 AllNodes.push_back(&EntryNode);
Dale Johannesen49de0602010-03-10 22:13:47 +0000937 DbgInfo = new SDDbgInfo();
Dan Gohmanac37f9a2008-08-23 00:50:30 +0000938}
939
Juergen Ributzka659ce002014-01-28 01:20:14 +0000940void SelectionDAG::init(MachineFunction &mf, const TargetLowering *tli) {
Dan Gohmane1a9a782008-08-27 23:52:12 +0000941 MF = &mf;
Juergen Ributzkab3487102013-11-19 21:20:17 +0000942 TLI = tli;
Eric Christopherdfda92b2009-08-22 00:40:45 +0000943 Context = &mf.getFunction()->getContext();
Dan Gohmane1a9a782008-08-27 23:52:12 +0000944}
945
Chris Lattner600d3082003-08-11 14:57:33 +0000946SelectionDAG::~SelectionDAG() {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000947 assert(!UpdateListeners && "Dangling registered DAGUpdateListeners");
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000948 allnodes_clear();
Dale Johannesen49de0602010-03-10 22:13:47 +0000949 delete DbgInfo;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000950}
951
952void SelectionDAG::allnodes_clear() {
Dan Gohman2e834902008-08-26 01:44:34 +0000953 assert(&*AllNodes.begin() == &EntryNode);
954 AllNodes.remove(AllNodes.begin());
Dan Gohman534c8a22009-01-19 22:39:36 +0000955 while (!AllNodes.empty())
956 DeallocateNode(AllNodes.begin());
Chris Lattner600d3082003-08-11 14:57:33 +0000957}
958
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +0000959BinarySDNode *SelectionDAG::GetBinarySDNode(unsigned Opcode, SDLoc DL,
960 SDVTList VTs, SDValue N1,
961 SDValue N2, bool nuw, bool nsw,
962 bool exact) {
963 if (isBinOpWithFlags(Opcode)) {
964 BinaryWithFlagsSDNode *FN = new (NodeAllocator) BinaryWithFlagsSDNode(
965 Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
966 FN->setHasNoUnsignedWrap(nuw);
967 FN->setHasNoSignedWrap(nsw);
968 FN->setIsExact(exact);
969
970 return FN;
971 }
972
973 BinarySDNode *N = new (NodeAllocator)
974 BinarySDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs, N1, N2);
975 return N;
976}
977
Dan Gohmane1a9a782008-08-27 23:52:12 +0000978void SelectionDAG::clear() {
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000979 allnodes_clear();
980 OperandAllocator.Reset();
981 CSEMap.clear();
982
983 ExtendedValueTypeNodes.clear();
Bill Wendling24c79f22008-09-16 21:48:12 +0000984 ExternalSymbols.clear();
985 TargetExternalSymbols.clear();
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000986 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
Craig Topperc0196b12014-04-14 00:51:57 +0000987 static_cast<CondCodeSDNode*>(nullptr));
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000988 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
Craig Topperc0196b12014-04-14 00:51:57 +0000989 static_cast<SDNode*>(nullptr));
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000990
Craig Topperc0196b12014-04-14 00:51:57 +0000991 EntryNode.UseList = nullptr;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000992 AllNodes.push_back(&EntryNode);
993 Root = getEntryNode();
Evan Cheng4d1aa2a2010-03-29 20:48:30 +0000994 DbgInfo->clear();
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000995}
996
Andrew Trickef9de2a2013-05-25 02:42:55 +0000997SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Nadav Rotem38b3b832011-09-27 11:16:47 +0000998 return VT.bitsGT(Op.getValueType()) ?
999 getNode(ISD::ANY_EXTEND, DL, VT, Op) :
1000 getNode(ISD::TRUNCATE, DL, VT, Op);
1001}
1002
Andrew Trickef9de2a2013-05-25 02:42:55 +00001003SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands18a956c2009-10-13 21:04:12 +00001004 return VT.bitsGT(Op.getValueType()) ?
1005 getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
1006 getNode(ISD::TRUNCATE, DL, VT, Op);
1007}
1008
Andrew Trickef9de2a2013-05-25 02:42:55 +00001009SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) {
Duncan Sands18a956c2009-10-13 21:04:12 +00001010 return VT.bitsGT(Op.getValueType()) ?
1011 getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
1012 getNode(ISD::TRUNCATE, DL, VT, Op);
1013}
1014
Matt Arsenault5f2fd4b2014-05-07 18:26:58 +00001015SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, SDLoc SL, EVT VT) {
1016 if (VT.bitsLE(Op.getValueType()))
1017 return getNode(ISD::TRUNCATE, SL, VT, Op);
1018
1019 TargetLowering::BooleanContent BType = TLI->getBooleanContents(VT.isVector());
1020 return getNode(TLI->getExtendForContent(BType), SL, VT, Op);
1021}
1022
Andrew Trickef9de2a2013-05-25 02:42:55 +00001023SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, SDLoc DL, EVT VT) {
Dan Gohman1d459e42009-12-11 21:31:27 +00001024 assert(!VT.isVector() &&
1025 "getZeroExtendInReg should use the vector element type instead of "
1026 "the vector type!");
Bill Wendlingc4093182009-01-30 22:23:15 +00001027 if (Op.getValueType() == VT) return Op;
Dan Gohman1d459e42009-12-11 21:31:27 +00001028 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
1029 APInt Imm = APInt::getLowBitsSet(BitWidth,
Bill Wendlingc4093182009-01-30 22:23:15 +00001030 VT.getSizeInBits());
1031 return getNode(ISD::AND, DL, Op.getValueType(), Op,
1032 getConstant(Imm, Op.getValueType()));
1033}
1034
Bob Wilsonc5890052009-01-22 17:39:32 +00001035/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
1036///
Andrew Trickef9de2a2013-05-25 02:42:55 +00001037SDValue SelectionDAG::getNOT(SDLoc DL, SDValue Val, EVT VT) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001038 EVT EltVT = VT.getScalarType();
Dan Gohmane014b692009-04-20 22:51:43 +00001039 SDValue NegOne =
1040 getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
Bill Wendlingcab9a2e2009-01-30 22:11:22 +00001041 return getNode(ISD::XOR, DL, VT, Val, NegOne);
1042}
1043
Pete Cooper7fd1d722014-05-12 23:26:58 +00001044SDValue SelectionDAG::getLogicalNOT(SDLoc DL, SDValue Val, EVT VT) {
1045 EVT EltVT = VT.getScalarType();
1046 SDValue TrueValue;
1047 switch (TLI->getBooleanContents(VT.isVector())) {
1048 case TargetLowering::ZeroOrOneBooleanContent:
1049 case TargetLowering::UndefinedBooleanContent:
1050 TrueValue = getConstant(1, VT);
1051 break;
1052 case TargetLowering::ZeroOrNegativeOneBooleanContent:
1053 TrueValue = getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()),
1054 VT);
1055 break;
1056 }
1057 return getNode(ISD::XOR, DL, VT, Val, TrueValue);
1058}
1059
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001060SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT, bool isO) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001061 EVT EltVT = VT.getScalarType();
Dan Gohmanfb58faf2009-01-27 20:39:34 +00001062 assert((EltVT.getSizeInBits() >= 64 ||
1063 (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
1064 "getConstant with a uint64_t value that doesn't fit in the type!");
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001065 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT, isO);
Dan Gohman65f63eb2008-02-08 22:59:30 +00001066}
1067
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001068SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT, bool isO)
1069{
1070 return getConstant(*ConstantInt::get(*Context, Val), VT, isT, isO);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001071}
1072
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001073SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT,
1074 bool isO) {
Duncan Sands13237ac2008-06-06 12:08:01 +00001075 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman7a7742c2007-12-12 22:21:26 +00001076
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001077 EVT EltVT = VT.getScalarType();
Duncan Sandsf2641e12011-09-06 19:07:46 +00001078 const ConstantInt *Elt = &Val;
Chris Lattner3f16b202006-08-11 21:01:22 +00001079
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001080 const TargetLowering *TLI = TM.getTargetLowering();
1081
Duncan Sandsf2641e12011-09-06 19:07:46 +00001082 // In some cases the vector type is legal but the element type is illegal and
1083 // needs to be promoted, for example v8i8 on ARM. In this case, promote the
1084 // inserted value (the type does not need to match the vector element type).
1085 // Any extra bits introduced will be truncated away.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001086 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00001087 TargetLowering::TypePromoteInteger) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001088 EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001089 APInt NewVal = Elt->getValue().zext(EltVT.getSizeInBits());
1090 Elt = ConstantInt::get(*getContext(), NewVal);
1091 }
Daniel Sanders50b80412013-11-15 12:56:49 +00001092 // In other cases the element type is illegal and needs to be expanded, for
1093 // example v2i64 on MIPS32. In this case, find the nearest legal type, split
1094 // the value into n parts and use a vector type with n-times the elements.
1095 // Then bitcast to the type requested.
1096 // Legalizing constants too early makes the DAGCombiner's job harder so we
1097 // only legalize if the DAG tells us we must produce legal types.
1098 else if (NewNodesMustHaveLegalTypes && VT.isVector() &&
1099 TLI->getTypeAction(*getContext(), EltVT) ==
1100 TargetLowering::TypeExpandInteger) {
1101 APInt NewVal = Elt->getValue();
1102 EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1103 unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits();
1104 unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits;
1105 EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts);
1106
1107 // Check the temporary vector is the correct size. If this fails then
1108 // getTypeToTransformTo() probably returned a type whose size (in bits)
1109 // isn't a power-of-2 factor of the requested type size.
1110 assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits());
1111
1112 SmallVector<SDValue, 2> EltParts;
1113 for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i) {
1114 EltParts.push_back(getConstant(NewVal.lshr(i * ViaEltSizeInBits)
1115 .trunc(ViaEltSizeInBits),
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001116 ViaEltVT, isT, isO));
Daniel Sanders50b80412013-11-15 12:56:49 +00001117 }
1118
1119 // EltParts is currently in little endian order. If we actually want
1120 // big-endian order then reverse it now.
1121 if (TLI->isBigEndian())
1122 std::reverse(EltParts.begin(), EltParts.end());
1123
1124 // The elements must be reversed when the element order is different
1125 // to the endianness of the elements (because the BITCAST is itself a
1126 // vector shuffle in this situation). However, we do not need any code to
1127 // perform this reversal because getConstant() is producing a vector
1128 // splat.
1129 // This situation occurs in MIPS MSA.
1130
1131 SmallVector<SDValue, 8> Ops;
1132 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i)
1133 Ops.insert(Ops.end(), EltParts.begin(), EltParts.end());
1134
1135 SDValue Result = getNode(ISD::BITCAST, SDLoc(), VT,
1136 getNode(ISD::BUILD_VECTOR, SDLoc(), ViaVecVT,
Craig Topper48d114b2014-04-26 18:35:24 +00001137 Ops));
Daniel Sanders50b80412013-11-15 12:56:49 +00001138 return Result;
1139 }
Duncan Sandsf2641e12011-09-06 19:07:46 +00001140
1141 assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
1142 "APInt size does not match type size!");
Chris Lattner3f16b202006-08-11 21:01:22 +00001143 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskeyf576b422006-10-27 23:46:08 +00001144 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001145 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001146 ID.AddPointer(Elt);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001147 ID.AddBoolean(isO);
Craig Topperc0196b12014-04-14 00:51:57 +00001148 void *IP = nullptr;
1149 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001150 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001151 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001152 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001153
Dan Gohman7a7742c2007-12-12 22:21:26 +00001154 if (!N) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001155 N = new (NodeAllocator) ConstantSDNode(isT, isO, Elt, EltVT);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001156 CSEMap.InsertNode(N, IP);
1157 AllNodes.push_back(N);
1158 }
1159
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001160 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001161 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001162 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001163 Ops.assign(VT.getVectorNumElements(), Result);
Craig Topper48d114b2014-04-26 18:35:24 +00001164 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohman7a7742c2007-12-12 22:21:26 +00001165 }
1166 return Result;
Chris Lattner600d3082003-08-11 14:57:33 +00001167}
1168
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001169SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001170 return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget);
Chris Lattner72733e52008-01-17 07:00:52 +00001171}
1172
1173
Owen Anderson53aa7a92009-08-10 22:56:29 +00001174SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001175 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001176}
1177
Owen Anderson53aa7a92009-08-10 22:56:29 +00001178SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
Duncan Sands13237ac2008-06-06 12:08:01 +00001179 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001180
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001181 EVT EltVT = VT.getScalarType();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001182
Chris Lattner381dddc2005-02-17 20:17:32 +00001183 // Do the map lookup using the actual bit pattern for the floating point
1184 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1185 // we don't have issues with SNANs.
Chris Lattner0c2e5412006-08-11 21:55:30 +00001186 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskeyf576b422006-10-27 23:46:08 +00001187 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001188 AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
Dan Gohmanec270fb2008-09-12 18:08:03 +00001189 ID.AddPointer(&V);
Craig Topperc0196b12014-04-14 00:51:57 +00001190 void *IP = nullptr;
1191 SDNode *N = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001192 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands13237ac2008-06-06 12:08:01 +00001193 if (!VT.isVector())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001194 return SDValue(N, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001195
Evan Cheng9458e6a2007-06-29 21:36:04 +00001196 if (!N) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001197 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
Evan Cheng9458e6a2007-06-29 21:36:04 +00001198 CSEMap.InsertNode(N, IP);
1199 AllNodes.push_back(N);
1200 }
1201
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001202 SDValue Result(N, 0);
Duncan Sands13237ac2008-06-06 12:08:01 +00001203 if (VT.isVector()) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001204 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00001205 Ops.assign(VT.getVectorNumElements(), Result);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001206 // FIXME SDLoc info might be appropriate here
Craig Topper48d114b2014-04-26 18:35:24 +00001207 Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Ops);
Dan Gohmana8665142007-06-25 16:23:39 +00001208 }
1209 return Result;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001210}
1211
Owen Anderson53aa7a92009-08-10 22:56:29 +00001212SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00001213 EVT EltVT = VT.getScalarType();
Owen Anderson9f944592009-08-11 20:47:22 +00001214 if (EltVT==MVT::f32)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001215 return getConstantFP(APFloat((float)Val), VT, isTarget);
Dale Johannesen51c16952010-05-07 21:35:53 +00001216 else if (EltVT==MVT::f64)
Dale Johannesend246b2c2007-08-30 00:23:21 +00001217 return getConstantFP(APFloat(Val), VT, isTarget);
Hal Finkel6dbdd432012-12-30 19:03:32 +00001218 else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 ||
1219 EltVT==MVT::f16) {
Dale Johannesen51c16952010-05-07 21:35:53 +00001220 bool ignored;
1221 APFloat apf = APFloat(Val);
Tim Northover29178a32013-01-22 09:46:31 +00001222 apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
Dale Johannesen51c16952010-05-07 21:35:53 +00001223 &ignored);
1224 return getConstantFP(apf, VT, isTarget);
Craig Topperee4dab52012-02-05 08:31:47 +00001225 } else
1226 llvm_unreachable("Unsupported type in getConstantFP");
Dale Johannesend246b2c2007-08-30 00:23:21 +00001227}
1228
Andrew Trickef9de2a2013-05-25 02:42:55 +00001229SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001230 EVT VT, int64_t Offset,
Chris Lattner8e34f982009-06-25 21:21:14 +00001231 bool isTargetGA,
1232 unsigned char TargetFlags) {
1233 assert((TargetFlags == 0 || isTargetGA) &&
1234 "Cannot set target flags on target-independent globals");
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001235 const TargetLowering *TLI = TM.getTargetLowering();
Eric Christopherdfda92b2009-08-22 00:40:45 +00001236
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001237 // Truncate (with sign-extension) the offset value to the pointer size.
Matt Arsenault36f5eb52013-11-17 00:06:39 +00001238 unsigned BitWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001239 if (BitWidth < 64)
Richard Smith228e6d42012-08-24 23:29:28 +00001240 Offset = SignExtend64(Offset, BitWidth);
Dan Gohman2fe6bee2008-10-18 02:06:02 +00001241
Chris Lattner8e34f982009-06-25 21:21:14 +00001242 unsigned Opc;
Rafael Espindola59f7eba2014-05-28 18:15:43 +00001243 if (GV->isThreadLocal())
Lauro Ramos Venancio25188892007-04-20 21:38:10 +00001244 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1245 else
1246 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikove8fa50f2008-03-11 22:38:53 +00001247
Jim Laskeyf576b422006-10-27 23:46:08 +00001248 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001249 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001250 ID.AddPointer(GV);
1251 ID.AddInteger(Offset);
Chris Lattner8e34f982009-06-25 21:21:14 +00001252 ID.AddInteger(TargetFlags);
Pete Cooper91244262012-07-30 20:23:19 +00001253 ID.AddInteger(GV->getType()->getAddressSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00001254 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001255 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman3a113ec2009-01-25 16:21:38 +00001256 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001257
Andrew Trickef9de2a2013-05-25 02:42:55 +00001258 SDNode *N = new (NodeAllocator) GlobalAddressSDNode(Opc, DL.getIROrder(),
1259 DL.getDebugLoc(), GV, VT,
Dan Gohman01c65a22010-03-18 18:49:47 +00001260 Offset, TargetFlags);
Chris Lattner3f16b202006-08-11 21:01:22 +00001261 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001262 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001263 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001264}
1265
Owen Anderson53aa7a92009-08-10 22:56:29 +00001266SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
Chris Lattner0c2e5412006-08-11 21:55:30 +00001267 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskeyf576b422006-10-27 23:46:08 +00001268 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001269 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001270 ID.AddInteger(FI);
Craig Topperc0196b12014-04-14 00:51:57 +00001271 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001272 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001273 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001274
Dan Gohman01c65a22010-03-18 18:49:47 +00001275 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001276 CSEMap.InsertNode(N, IP);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001277 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001278 return SDValue(N, 0);
Chris Lattnerbbe0e7d2005-08-25 00:43:01 +00001279}
1280
Owen Anderson53aa7a92009-08-10 22:56:29 +00001281SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001282 unsigned char TargetFlags) {
1283 assert((TargetFlags == 0 || isTarget) &&
1284 "Cannot set target flags on target-independent jump tables");
Chris Lattner0c2e5412006-08-11 21:55:30 +00001285 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskeyf576b422006-10-27 23:46:08 +00001286 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001287 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001288 ID.AddInteger(JTI);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001289 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001290 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001291 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001292 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001293
Dan Gohman01c65a22010-03-18 18:49:47 +00001294 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1295 TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001296 CSEMap.InsertNode(N, IP);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001297 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001298 return SDValue(N, 0);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001299}
1300
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001301SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001302 unsigned Alignment, int Offset,
Eric Christopherdfda92b2009-08-22 00:40:45 +00001303 bool isTarget,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001304 unsigned char TargetFlags) {
1305 assert((TargetFlags == 0 || isTarget) &&
1306 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001307 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001308 Alignment =
1309 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Chris Lattner0c2e5412006-08-11 21:55:30 +00001310 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001311 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001312 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001313 ID.AddInteger(Alignment);
1314 ID.AddInteger(Offset);
Chris Lattner8e372832006-08-14 20:12:44 +00001315 ID.AddPointer(C);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001316 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001317 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001318 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001319 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001320
Dan Gohman01c65a22010-03-18 18:49:47 +00001321 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1322 Alignment, TargetFlags);
Chris Lattner0c2e5412006-08-11 21:55:30 +00001323 CSEMap.InsertNode(N, IP);
Chris Lattner407c6412005-08-25 05:03:06 +00001324 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001325 return SDValue(N, 0);
Chris Lattner407c6412005-08-25 05:03:06 +00001326}
1327
Chris Lattner061a1ea2005-01-07 07:46:32 +00001328
Owen Anderson53aa7a92009-08-10 22:56:29 +00001329SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001330 unsigned Alignment, int Offset,
Chris Lattnerb3586b62009-06-25 21:35:31 +00001331 bool isTarget,
1332 unsigned char TargetFlags) {
1333 assert((TargetFlags == 0 || isTarget) &&
1334 "Cannot set target flags on target-independent globals");
Dan Gohman64d6c6f2008-09-16 22:05:41 +00001335 if (Alignment == 0)
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001336 Alignment =
1337 TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType());
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001338 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskeyf576b422006-10-27 23:46:08 +00001339 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001340 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001341 ID.AddInteger(Alignment);
1342 ID.AddInteger(Offset);
Jim Grosbachaf136f72011-09-27 20:59:33 +00001343 C->addSelectionDAGCSEId(ID);
Chris Lattnerb3586b62009-06-25 21:35:31 +00001344 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001345 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001346 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001347 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001348
Dan Gohman01c65a22010-03-18 18:49:47 +00001349 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1350 Alignment, TargetFlags);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001351 CSEMap.InsertNode(N, IP);
1352 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001353 return SDValue(N, 0);
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001354}
1355
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001356SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1357 unsigned char TargetFlags) {
1358 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001359 AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None);
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001360 ID.AddInteger(Index);
1361 ID.AddInteger(Offset);
1362 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001363 void *IP = nullptr;
Jakob Stoklund Olesen505715d2012-08-07 22:37:05 +00001364 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1365 return SDValue(E, 0);
1366
1367 SDNode *N = new (NodeAllocator) TargetIndexSDNode(Index, VT, Offset,
1368 TargetFlags);
1369 CSEMap.InsertNode(N, IP);
1370 AllNodes.push_back(N);
1371 return SDValue(N, 0);
1372}
1373
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001374SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001375 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001376 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001377 ID.AddPointer(MBB);
Craig Topperc0196b12014-04-14 00:51:57 +00001378 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001379 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001380 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001381
Dan Gohman01c65a22010-03-18 18:49:47 +00001382 SDNode *N = new (NodeAllocator) BasicBlockSDNode(MBB);
Chris Lattner3f16b202006-08-11 21:01:22 +00001383 CSEMap.InsertNode(N, IP);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001384 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001385 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001386}
1387
Owen Anderson53aa7a92009-08-10 22:56:29 +00001388SDValue SelectionDAG::getValueType(EVT VT) {
Owen Anderson9f944592009-08-11 20:47:22 +00001389 if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1390 ValueTypeNodes.size())
1391 ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001392
Duncan Sands13237ac2008-06-06 12:08:01 +00001393 SDNode *&N = VT.isExtended() ?
Owen Anderson9f944592009-08-11 20:47:22 +00001394 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
Duncan Sandsd42c8122007-10-17 13:49:58 +00001395
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001396 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001397 N = new (NodeAllocator) VTSDNode(VT);
Duncan Sandsd42c8122007-10-17 13:49:58 +00001398 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001399 return SDValue(N, 0);
Chris Lattner0b6ba902005-07-10 00:07:11 +00001400}
1401
Owen Anderson53aa7a92009-08-10 22:56:29 +00001402SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
Bill Wendling24c79f22008-09-16 21:48:12 +00001403 SDNode *&N = ExternalSymbols[Sym];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001404 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001405 N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001406 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001407 return SDValue(N, 0);
Andrew Lenharth4b3932a2005-10-23 03:40:17 +00001408}
1409
Owen Anderson53aa7a92009-08-10 22:56:29 +00001410SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
Chris Lattneraf5dbfc2009-06-25 18:45:50 +00001411 unsigned char TargetFlags) {
1412 SDNode *&N =
1413 TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1414 TargetFlags)];
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001415 if (N) return SDValue(N, 0);
Dan Gohman01c65a22010-03-18 18:49:47 +00001416 N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001417 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001418 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001419}
1420
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001421SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
Chris Lattnerd47675e2005-08-09 20:20:18 +00001422 if ((unsigned)Cond >= CondCodeNodes.size())
1423 CondCodeNodes.resize(Cond+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00001424
Craig Topperc0196b12014-04-14 00:51:57 +00001425 if (!CondCodeNodes[Cond]) {
Dan Gohman01c65a22010-03-18 18:49:47 +00001426 CondCodeSDNode *N = new (NodeAllocator) CondCodeSDNode(Cond);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00001427 CondCodeNodes[Cond] = N;
1428 AllNodes.push_back(N);
Chris Lattner14e060f2005-08-09 20:40:02 +00001429 }
Bill Wendling022d18f2009-12-18 23:32:53 +00001430
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001431 return SDValue(CondCodeNodes[Cond], 0);
Chris Lattnerd47675e2005-08-09 20:20:18 +00001432}
1433
Nate Begeman5f829d82009-04-29 05:20:52 +00001434// commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1435// the shuffle mask M that point at N1 to point at N2, and indices that point
1436// N2 to point at N1.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001437static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) {
1438 std::swap(N1, N2);
1439 int NElts = M.size();
1440 for (int i = 0; i != NElts; ++i) {
1441 if (M[i] >= NElts)
1442 M[i] -= NElts;
1443 else if (M[i] >= 0)
1444 M[i] += NElts;
1445 }
1446}
1447
Andrew Trickef9de2a2013-05-25 02:42:55 +00001448SDValue SelectionDAG::getVectorShuffle(EVT VT, SDLoc dl, SDValue N1,
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001449 SDValue N2, const int *Mask) {
Craig Topper0ecb26a2013-08-09 04:37:24 +00001450 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1451 "Invalid VECTOR_SHUFFLE");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001452
1453 // Canonicalize shuffle undef, undef -> undef
1454 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
Dan Gohman6b041362009-07-09 00:46:33 +00001455 return getUNDEF(VT);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001456
Eric Christopherdfda92b2009-08-22 00:40:45 +00001457 // Validate that all indices in Mask are within the range of the elements
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001458 // input to the shuffle.
Nate Begeman5f829d82009-04-29 05:20:52 +00001459 unsigned NElts = VT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001460 SmallVector<int, 8> MaskVec;
Nate Begeman5f829d82009-04-29 05:20:52 +00001461 for (unsigned i = 0; i != NElts; ++i) {
1462 assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001463 MaskVec.push_back(Mask[i]);
1464 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001465
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001466 // Canonicalize shuffle v, v -> v, undef
1467 if (N1 == N2) {
1468 N2 = getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001469 for (unsigned i = 0; i != NElts; ++i)
1470 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001471 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001472
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001473 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
1474 if (N1.getOpcode() == ISD::UNDEF)
1475 commuteShuffle(N1, N2, MaskVec);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001476
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001477 // Canonicalize all index into lhs, -> shuffle lhs, undef
1478 // Canonicalize all index into rhs, -> shuffle rhs, undef
1479 bool AllLHS = true, AllRHS = true;
1480 bool N2Undef = N2.getOpcode() == ISD::UNDEF;
Nate Begeman5f829d82009-04-29 05:20:52 +00001481 for (unsigned i = 0; i != NElts; ++i) {
1482 if (MaskVec[i] >= (int)NElts) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001483 if (N2Undef)
1484 MaskVec[i] = -1;
1485 else
1486 AllLHS = false;
1487 } else if (MaskVec[i] >= 0) {
1488 AllRHS = false;
1489 }
1490 }
1491 if (AllLHS && AllRHS)
1492 return getUNDEF(VT);
Nate Begeman5f829d82009-04-29 05:20:52 +00001493 if (AllLHS && !N2Undef)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001494 N2 = getUNDEF(VT);
1495 if (AllRHS) {
1496 N1 = getUNDEF(VT);
1497 commuteShuffle(N1, N2, MaskVec);
1498 }
Eric Christopherdfda92b2009-08-22 00:40:45 +00001499
Craig Topper9a39b072013-08-08 08:03:12 +00001500 // If Identity shuffle return that node.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001501 bool Identity = true;
Nate Begeman5f829d82009-04-29 05:20:52 +00001502 for (unsigned i = 0; i != NElts; ++i) {
1503 if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001504 }
Craig Topper0ecb26a2013-08-09 04:37:24 +00001505 if (Identity && NElts)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001506 return N1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001507
Benjamin Kramer6bca8ef2014-04-27 11:41:06 +00001508 // Shuffling a constant splat doesn't change the result.
1509 if (N2Undef && N1.getOpcode() == ISD::BUILD_VECTOR)
1510 if (cast<BuildVectorSDNode>(N1)->getConstantSplatValue())
1511 return N1;
1512
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001513 FoldingSetNodeID ID;
1514 SDValue Ops[2] = { N1, N2 };
Craig Topper633d99b2014-04-27 23:22:43 +00001515 AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops);
Nate Begeman5f829d82009-04-29 05:20:52 +00001516 for (unsigned i = 0; i != NElts; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001517 ID.AddInteger(MaskVec[i]);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001518
Craig Topperc0196b12014-04-14 00:51:57 +00001519 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001520 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001521 return SDValue(E, 0);
Eric Christopherdfda92b2009-08-22 00:40:45 +00001522
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001523 // Allocate the mask array for the node out of the BumpPtrAllocator, since
1524 // SDNode doesn't have access to it. This memory will be "leaked" when
1525 // the node is deallocated, but recovered when the NodeAllocator is released.
1526 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1527 memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int));
Eric Christopherdfda92b2009-08-22 00:40:45 +00001528
Dan Gohman01c65a22010-03-18 18:49:47 +00001529 ShuffleVectorSDNode *N =
Jack Carter170a5f22013-09-09 22:02:08 +00001530 new (NodeAllocator) ShuffleVectorSDNode(VT, dl.getIROrder(),
1531 dl.getDebugLoc(), N1, N2,
1532 MaskAlloc);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001533 CSEMap.InsertNode(N, IP);
1534 AllNodes.push_back(N);
1535 return SDValue(N, 0);
1536}
1537
Andrew Trickef9de2a2013-05-25 02:42:55 +00001538SDValue SelectionDAG::getConvertRndSat(EVT VT, SDLoc dl,
Dale Johannesen3a09f552009-02-03 23:04:43 +00001539 SDValue Val, SDValue DTy,
1540 SDValue STy, SDValue Rnd, SDValue Sat,
1541 ISD::CvtCode Code) {
Mon P Wang3f0e0a62009-02-05 04:47:42 +00001542 // If the src and dest types are the same and the conversion is between
1543 // integer types of the same sign or two floats, no conversion is necessary.
1544 if (DTy == STy &&
1545 (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001546 return Val;
1547
1548 FoldingSetNodeID ID;
Mon P Wangfc032ce2009-11-07 04:46:25 +00001549 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
Craig Topper633d99b2014-04-27 23:22:43 +00001550 AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00001551 void* IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001552 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen3a09f552009-02-03 23:04:43 +00001553 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001554
Jack Carter170a5f22013-09-09 22:02:08 +00001555 CvtRndSatSDNode *N = new (NodeAllocator) CvtRndSatSDNode(VT, dl.getIROrder(),
1556 dl.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00001557 Ops, Code);
Dale Johannesen3a09f552009-02-03 23:04:43 +00001558 CSEMap.InsertNode(N, IP);
1559 AllNodes.push_back(N);
1560 return SDValue(N, 0);
1561}
1562
Owen Anderson53aa7a92009-08-10 22:56:29 +00001563SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00001564 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001565 AddNodeIDNode(ID, ISD::Register, getVTList(VT), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001566 ID.AddInteger(RegNo);
Craig Topperc0196b12014-04-14 00:51:57 +00001567 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001568 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001569 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001570
Dan Gohman01c65a22010-03-18 18:49:47 +00001571 SDNode *N = new (NodeAllocator) RegisterSDNode(RegNo, VT);
Chris Lattner3f16b202006-08-11 21:01:22 +00001572 CSEMap.InsertNode(N, IP);
1573 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001574 return SDValue(N, 0);
Chris Lattner3f16b202006-08-11 21:01:22 +00001575}
1576
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001577SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
1578 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001579 AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None);
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001580 ID.AddPointer(RegMask);
Craig Topperc0196b12014-04-14 00:51:57 +00001581 void *IP = nullptr;
Jakob Stoklund Olesen9349351d2012-01-18 23:52:12 +00001582 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1583 return SDValue(E, 0);
1584
1585 SDNode *N = new (NodeAllocator) RegisterMaskSDNode(RegMask);
1586 CSEMap.InsertNode(N, IP);
1587 AllNodes.push_back(N);
1588 return SDValue(N, 0);
1589}
1590
Andrew Trickef9de2a2013-05-25 02:42:55 +00001591SDValue SelectionDAG::getEHLabel(SDLoc dl, SDValue Root, MCSymbol *Label) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00001592 FoldingSetNodeID ID;
1593 SDValue Ops[] = { Root };
Craig Topper633d99b2014-04-27 23:22:43 +00001594 AddNodeIDNode(ID, ISD::EH_LABEL, getVTList(MVT::Other), Ops);
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001595 ID.AddPointer(Label);
Craig Topperc0196b12014-04-14 00:51:57 +00001596 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001597 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00001598 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001599
Jack Carter170a5f22013-09-09 22:02:08 +00001600 SDNode *N = new (NodeAllocator) EHLabelSDNode(dl.getIROrder(),
1601 dl.getDebugLoc(), Root, Label);
Dale Johannesen839acbb2009-01-29 00:47:48 +00001602 CSEMap.InsertNode(N, IP);
1603 AllNodes.push_back(N);
1604 return SDValue(N, 0);
1605}
1606
Chris Lattneree2fbbc2010-03-14 02:33:54 +00001607
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001608SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
Michael Liaoabb87d42012-09-12 21:43:09 +00001609 int64_t Offset,
Dan Gohman7a6611792009-11-20 23:18:13 +00001610 bool isTarget,
1611 unsigned char TargetFlags) {
Dan Gohman6c938802009-10-30 01:27:03 +00001612 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1613
1614 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001615 AddNodeIDNode(ID, Opc, getVTList(VT), None);
Dan Gohman6c938802009-10-30 01:27:03 +00001616 ID.AddPointer(BA);
Michael Liaoabb87d42012-09-12 21:43:09 +00001617 ID.AddInteger(Offset);
Dan Gohman7a6611792009-11-20 23:18:13 +00001618 ID.AddInteger(TargetFlags);
Craig Topperc0196b12014-04-14 00:51:57 +00001619 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00001620 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman6c938802009-10-30 01:27:03 +00001621 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00001622
Michael Liaoabb87d42012-09-12 21:43:09 +00001623 SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset,
1624 TargetFlags);
Dan Gohman6c938802009-10-30 01:27:03 +00001625 CSEMap.InsertNode(N, IP);
1626 AllNodes.push_back(N);
1627 return SDValue(N, 0);
1628}
1629
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001630SDValue SelectionDAG::getSrcValue(const Value *V) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001631 assert((!V || V->getType()->isPointerTy()) &&
Chris Lattner3f16b202006-08-11 21:01:22 +00001632 "SrcValue is not a pointer?");
1633
Jim Laskeyf576b422006-10-27 23:46:08 +00001634 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001635 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
Chris Lattner3f16b202006-08-11 21:01:22 +00001636 ID.AddPointer(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001637
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))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001640 return SDValue(E, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001641
Dan Gohman01c65a22010-03-18 18:49:47 +00001642 SDNode *N = new (NodeAllocator) SrcValueSDNode(V);
Dan Gohman2d489b52008-02-06 22:27:42 +00001643 CSEMap.InsertNode(N, IP);
1644 AllNodes.push_back(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001645 return SDValue(N, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001646}
1647
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001648/// getMDNode - Return an MDNodeSDNode which holds an MDNode.
1649SDValue SelectionDAG::getMDNode(const MDNode *MD) {
1650 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001651 AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001652 ID.AddPointer(MD);
Wesley Peck527da1b2010-11-23 03:31:01 +00001653
Craig Topperc0196b12014-04-14 00:51:57 +00001654 void *IP = nullptr;
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001655 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1656 return SDValue(E, 0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001657
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001658 SDNode *N = new (NodeAllocator) MDNodeSDNode(MD);
1659 CSEMap.InsertNode(N, IP);
1660 AllNodes.push_back(N);
1661 return SDValue(N, 0);
1662}
1663
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001664/// getAddrSpaceCast - Return an AddrSpaceCastSDNode.
1665SDValue SelectionDAG::getAddrSpaceCast(SDLoc dl, EVT VT, SDValue Ptr,
1666 unsigned SrcAS, unsigned DestAS) {
1667 SDValue Ops[] = {Ptr};
1668 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00001669 AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001670 ID.AddInteger(SrcAS);
1671 ID.AddInteger(DestAS);
1672
Craig Topperc0196b12014-04-14 00:51:57 +00001673 void *IP = nullptr;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001674 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1675 return SDValue(E, 0);
1676
1677 SDNode *N = new (NodeAllocator) AddrSpaceCastSDNode(dl.getIROrder(),
1678 dl.getDebugLoc(),
1679 VT, Ptr, SrcAS, DestAS);
1680 CSEMap.InsertNode(N, IP);
1681 AllNodes.push_back(N);
1682 return SDValue(N, 0);
1683}
Chris Lattner3b9f02a2010-04-07 05:20:54 +00001684
Duncan Sands41826032009-01-31 15:50:11 +00001685/// getShiftAmountOperand - Return the specified value casted to
1686/// the target's desired shift amount type.
Owen Andersoncd526fa2011-03-07 18:29:47 +00001687SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001688 EVT OpTy = Op.getValueType();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001689 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);
Duncan Sands41826032009-01-31 15:50:11 +00001690 if (OpTy == ShTy || OpTy.isVector()) return Op;
1691
1692 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001693 return getNode(Opcode, SDLoc(Op), ShTy, Op);
Duncan Sands41826032009-01-31 15:50:11 +00001694}
1695
Chris Lattner9eb7a822007-10-15 17:47:20 +00001696/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1697/// specified value type.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001698SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
Chris Lattner9eb7a822007-10-15 17:47:20 +00001699 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Dan Gohman203d53e2009-09-23 21:07:02 +00001700 unsigned ByteSize = VT.getStoreSize();
Chris Lattner229907c2011-07-18 04:54:35 +00001701 Type *Ty = VT.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001702 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang5c755ff2008-07-05 20:40:31 +00001703 unsigned StackAlign =
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001704 std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001705
David Greene1fbe0542009-11-12 20:49:22 +00001706 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001707 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Chris Lattner9eb7a822007-10-15 17:47:20 +00001708}
1709
Duncan Sands445071c2008-12-09 21:33:20 +00001710/// CreateStackTemporary - Create a stack temporary suitable for holding
1711/// either of the specified value types.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001712SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
Duncan Sands445071c2008-12-09 21:33:20 +00001713 unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1714 VT2.getStoreSizeInBits())/8;
Chris Lattner229907c2011-07-18 04:54:35 +00001715 Type *Ty1 = VT1.getTypeForEVT(*getContext());
1716 Type *Ty2 = VT2.getTypeForEVT(*getContext());
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001717 const TargetLowering *TLI = TM.getTargetLowering();
1718 const DataLayout *TD = TLI->getDataLayout();
Duncan Sands445071c2008-12-09 21:33:20 +00001719 unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1720 TD->getPrefTypeAlignment(Ty2));
1721
1722 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00001723 int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001724 return getFrameIndex(FrameIdx, TLI->getPointerTy());
Duncan Sands445071c2008-12-09 21:33:20 +00001725}
1726
Owen Anderson53aa7a92009-08-10 22:56:29 +00001727SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001728 SDValue N2, ISD::CondCode Cond, SDLoc dl) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00001729 // These setcc operations always fold.
1730 switch (Cond) {
1731 default: break;
1732 case ISD::SETFALSE:
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001733 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001734 case ISD::SETTRUE:
Tim Northover950fcc02013-09-06 12:38:12 +00001735 case ISD::SETTRUE2: {
1736 const TargetLowering *TLI = TM.getTargetLowering();
1737 TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector());
1738 return getConstant(
1739 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
1740 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001741
Chris Lattner393d96a2006-04-27 05:01:07 +00001742 case ISD::SETOEQ:
1743 case ISD::SETOGT:
1744 case ISD::SETOGE:
1745 case ISD::SETOLT:
1746 case ISD::SETOLE:
1747 case ISD::SETONE:
1748 case ISD::SETO:
1749 case ISD::SETUO:
1750 case ISD::SETUEQ:
1751 case ISD::SETUNE:
Duncan Sands13237ac2008-06-06 12:08:01 +00001752 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattner393d96a2006-04-27 05:01:07 +00001753 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00001754 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001755
Gabor Greiff304a7a2008-08-28 21:40:38 +00001756 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001757 const APInt &C2 = N2C->getAPIntValue();
Gabor Greiff304a7a2008-08-28 21:40:38 +00001758 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001759 const APInt &C1 = N1C->getAPIntValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001760
Chris Lattner061a1ea2005-01-07 07:46:32 +00001761 switch (Cond) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001762 default: llvm_unreachable("Unknown integer setcc!");
Chris Lattnerb07e2d22005-01-18 02:52:03 +00001763 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1764 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohmanbd2fa562008-02-29 01:47:35 +00001765 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1766 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1767 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1768 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1769 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1770 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1771 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1772 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001773 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00001774 }
Chris Lattner6b03a0c2005-04-07 18:14:58 +00001775 }
Gabor Greiff304a7a2008-08-28 21:40:38 +00001776 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1777 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001778 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattner061a1ea2005-01-07 07:46:32 +00001779 switch (Cond) {
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001780 default: break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001781 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001782 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001783 // fall through
1784 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001785 case ISD::SETNE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001786 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001787 // fall through
1788 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001789 R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001790 case ISD::SETLT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001791 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001792 // fall through
1793 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001794 case ISD::SETGT: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001795 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001796 // fall through
1797 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001798 case ISD::SETLE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001799 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001800 // fall through
1801 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001802 R==APFloat::cmpEqual, VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001803 case ISD::SETGE: if (R==APFloat::cmpUnordered)
Dale Johannesen84935752009-02-06 23:05:02 +00001804 return getUNDEF(VT);
Dale Johannesenda7469f2007-08-31 17:03:33 +00001805 // fall through
1806 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001807 R==APFloat::cmpEqual, VT);
1808 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1809 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1810 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1811 R==APFloat::cmpEqual, VT);
1812 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1813 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1814 R==APFloat::cmpLessThan, VT);
1815 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1816 R==APFloat::cmpUnordered, VT);
1817 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1818 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001819 }
1820 } else {
1821 // Ensure that the constant occurs on the RHS.
Tom Stellardcd428182013-09-28 02:50:38 +00001822 ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond);
1823 MVT CompVT = N1.getValueType().getSimpleVT();
1824 if (!TM.getTargetLowering()->isCondCodeLegal(SwappedCond, CompVT))
1825 return SDValue();
1826
1827 return getSetCC(dl, VT, N2, N1, SwappedCond);
Chris Lattner061a1ea2005-01-07 07:46:32 +00001828 }
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00001829 }
1830
Chris Lattnerd47675e2005-08-09 20:20:18 +00001831 // Could not fold it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001832 return SDValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00001833}
1834
Dan Gohman1f372ed2008-02-25 21:11:39 +00001835/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1836/// use this predicate to simplify operations downstream.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001837bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
Chris Lattnerf3989ab2009-07-07 23:28:46 +00001838 // This predicate is not safe for vector operations.
1839 if (Op.getValueType().isVector())
1840 return false;
Eric Christopherdfda92b2009-08-22 00:40:45 +00001841
Dan Gohman1d459e42009-12-11 21:31:27 +00001842 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman1f372ed2008-02-25 21:11:39 +00001843 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1844}
1845
Dan Gohman309d3d52007-06-22 14:59:07 +00001846/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1847/// this predicate to simplify operations downstream. Mask is known to be zero
1848/// for bits that V cannot have.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001849bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
Dan Gohman309d3d52007-06-22 14:59:07 +00001850 unsigned Depth) const {
Dan Gohman1f372ed2008-02-25 21:11:39 +00001851 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001852 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Dan Gohman309d3d52007-06-22 14:59:07 +00001853 return (KnownZero & Mask) == Mask;
1854}
1855
Jay Foada0653a32014-05-14 21:14:37 +00001856/// Determine which bits of Op are known to be either zero or one and return
1857/// them in the KnownZero/KnownOne bitsets.
1858void SelectionDAG::computeKnownBits(SDValue Op, APInt &KnownZero,
1859 APInt &KnownOne, unsigned Depth) const {
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001860 const TargetLowering *TLI = TM.getTargetLowering();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001861 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
Dan Gohman7e22a5d2008-02-13 23:13:32 +00001862
Dan Gohmanf990faf2008-02-13 00:35:47 +00001863 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001864 if (Depth == 6)
Dan Gohman309d3d52007-06-22 14:59:07 +00001865 return; // Limit search depth.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001866
Dan Gohmanf990faf2008-02-13 00:35:47 +00001867 APInt KnownZero2, KnownOne2;
Dan Gohman309d3d52007-06-22 14:59:07 +00001868
1869 switch (Op.getOpcode()) {
1870 case ISD::Constant:
1871 // We know all of the bits for a constant!
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001872 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue();
1873 KnownZero = ~KnownOne;
Jay Foad5a29c362014-05-15 12:12:55 +00001874 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001875 case ISD::AND:
1876 // If either the LHS or the RHS are Zero, the result is zero.
Jay Foada0653a32014-05-14 21:14:37 +00001877 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1878 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00001879
1880 // Output known-1 bits are only known if set in both the LHS & RHS.
1881 KnownOne &= KnownOne2;
1882 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1883 KnownZero |= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001884 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001885 case ISD::OR:
Jay Foada0653a32014-05-14 21:14:37 +00001886 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1887 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001888
Dan Gohman309d3d52007-06-22 14:59:07 +00001889 // Output known-0 bits are only known if clear in both the LHS & RHS.
1890 KnownZero &= KnownZero2;
1891 // Output known-1 are known to be set if set in either the LHS | RHS.
1892 KnownOne |= KnownOne2;
Jay Foad5a29c362014-05-15 12:12:55 +00001893 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001894 case ISD::XOR: {
Jay Foada0653a32014-05-14 21:14:37 +00001895 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1896 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001897
Dan Gohman309d3d52007-06-22 14:59:07 +00001898 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanf990faf2008-02-13 00:35:47 +00001899 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohman309d3d52007-06-22 14:59:07 +00001900 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1901 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1902 KnownZero = KnownZeroOut;
Jay Foad5a29c362014-05-15 12:12:55 +00001903 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001904 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00001905 case ISD::MUL: {
Jay Foada0653a32014-05-14 21:14:37 +00001906 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1907 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001908
1909 // If low bits are zero in either operand, output low known-0 bits.
1910 // Also compute a conserative estimate for high known-0 bits.
1911 // More trickiness is possible, but this is sufficient for the
1912 // interesting case of alignment computation.
Jay Foad25a5e4c2010-12-01 08:53:58 +00001913 KnownOne.clearAllBits();
Dan Gohman72ec3f42008-04-28 17:02:21 +00001914 unsigned TrailZ = KnownZero.countTrailingOnes() +
1915 KnownZero2.countTrailingOnes();
1916 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman5a3eecd2008-05-07 00:35:55 +00001917 KnownZero2.countLeadingOnes(),
1918 BitWidth) - BitWidth;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001919
1920 TrailZ = std::min(TrailZ, BitWidth);
1921 LeadZ = std::min(LeadZ, BitWidth);
1922 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1923 APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001924 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001925 }
1926 case ISD::UDIV: {
1927 // For the purposes of computing leading zeros we can conservatively
1928 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1962c2b2008-05-02 21:30:02 +00001929 // be less than the denominator.
Jay Foada0653a32014-05-14 21:14:37 +00001930 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001931 unsigned LeadZ = KnownZero2.countLeadingOnes();
1932
Jay Foad25a5e4c2010-12-01 08:53:58 +00001933 KnownOne2.clearAllBits();
1934 KnownZero2.clearAllBits();
Jay Foada0653a32014-05-14 21:14:37 +00001935 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman1962c2b2008-05-02 21:30:02 +00001936 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1937 if (RHSUnknownLeadingOnes != BitWidth)
1938 LeadZ = std::min(BitWidth,
1939 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00001940
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001941 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ);
Jay Foad5a29c362014-05-15 12:12:55 +00001942 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00001943 }
Dan Gohman309d3d52007-06-22 14:59:07 +00001944 case ISD::SELECT:
Jay Foada0653a32014-05-14 21:14:37 +00001945 computeKnownBits(Op.getOperand(2), KnownZero, KnownOne, Depth+1);
1946 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001947
Dan Gohman309d3d52007-06-22 14:59:07 +00001948 // Only known if known in both the LHS and RHS.
1949 KnownOne &= KnownOne2;
1950 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001951 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001952 case ISD::SELECT_CC:
Jay Foada0653a32014-05-14 21:14:37 +00001953 computeKnownBits(Op.getOperand(3), KnownZero, KnownOne, Depth+1);
1954 computeKnownBits(Op.getOperand(2), KnownZero2, KnownOne2, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001955
Dan Gohman309d3d52007-06-22 14:59:07 +00001956 // Only known if known in both the LHS and RHS.
1957 KnownOne &= KnownOne2;
1958 KnownZero &= KnownZero2;
Jay Foad5a29c362014-05-15 12:12:55 +00001959 break;
Bill Wendling5424e6d2008-11-22 07:24:01 +00001960 case ISD::SADDO:
1961 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00001962 case ISD::SSUBO:
1963 case ISD::USUBO:
1964 case ISD::SMULO:
1965 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00001966 if (Op.getResNo() != 1)
Jay Foad5a29c362014-05-15 12:12:55 +00001967 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00001968 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00001969 case ISD::SETCC:
1970 // If we know the result of a setcc has the top bits zero, use this info.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001971 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sandsf2641e12011-09-06 19:07:46 +00001972 TargetLowering::ZeroOrOneBooleanContent && BitWidth > 1)
Dan Gohmanf990faf2008-02-13 00:35:47 +00001973 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00001974 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001975 case ISD::SHL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001976 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00001977 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001978 unsigned ShAmt = SA->getZExtValue();
Dan Gohman9db0aa82008-02-26 18:50:50 +00001979
1980 // If the shift count is an invalid immediate, don't do anything.
1981 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00001982 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00001983
Jay Foada0653a32014-05-14 21:14:37 +00001984 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohman9db0aa82008-02-26 18:50:50 +00001985 KnownZero <<= ShAmt;
1986 KnownOne <<= ShAmt;
Dan Gohmanf990faf2008-02-13 00:35:47 +00001987 // low bits known zero.
Dan Gohman9db0aa82008-02-26 18:50:50 +00001988 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00001989 }
Jay Foad5a29c362014-05-15 12:12:55 +00001990 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00001991 case ISD::SRL:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001992 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
Dan Gohman309d3d52007-06-22 14:59:07 +00001993 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001994 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00001995
Dan Gohman9db0aa82008-02-26 18:50:50 +00001996 // If the shift count is an invalid immediate, don't do anything.
1997 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00001998 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00001999
Jay Foada0653a32014-05-14 21:14:37 +00002000 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002001 KnownZero = KnownZero.lshr(ShAmt);
2002 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002003
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002004 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Dan Gohman309d3d52007-06-22 14:59:07 +00002005 KnownZero |= HighBits; // High bits known zero.
2006 }
Jay Foad5a29c362014-05-15 12:12:55 +00002007 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002008 case ISD::SRA:
2009 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002010 unsigned ShAmt = SA->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002011
Dan Gohman9db0aa82008-02-26 18:50:50 +00002012 // If the shift count is an invalid immediate, don't do anything.
2013 if (ShAmt >= BitWidth)
Jay Foad5a29c362014-05-15 12:12:55 +00002014 break;
Dan Gohman9db0aa82008-02-26 18:50:50 +00002015
Dan Gohman309d3d52007-06-22 14:59:07 +00002016 // If any of the demanded bits are produced by the sign extension, we also
2017 // demand the input sign bit.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002018 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002019
Jay Foada0653a32014-05-14 21:14:37 +00002020 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002021 KnownZero = KnownZero.lshr(ShAmt);
2022 KnownOne = KnownOne.lshr(ShAmt);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002023
Dan Gohman309d3d52007-06-22 14:59:07 +00002024 // Handle the sign bits.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002025 APInt SignBit = APInt::getSignBit(BitWidth);
2026 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002027
Dan Gohmanb717fda2008-02-20 16:30:17 +00002028 if (KnownZero.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002029 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002030 } else if (KnownOne.intersects(SignBit)) {
Dan Gohman309d3d52007-06-22 14:59:07 +00002031 KnownOne |= HighBits; // New bits are known one.
2032 }
2033 }
Jay Foad5a29c362014-05-15 12:12:55 +00002034 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002035 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002036 EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002037 unsigned EBits = EVT.getScalarType().getSizeInBits();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002038
2039 // Sign extension. Compute the demanded bits in the result that are not
Dan Gohman309d3d52007-06-22 14:59:07 +00002040 // present in the input.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002041 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002042
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002043 APInt InSignBit = APInt::getSignBit(EBits);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002044 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002045
Dan Gohman309d3d52007-06-22 14:59:07 +00002046 // If the sign extended bits are demanded, we know that the sign
2047 // bit is demanded.
Jay Foad583abbc2010-12-07 08:25:19 +00002048 InSignBit = InSignBit.zext(BitWidth);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002049 if (NewBits.getBoolValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002050 InputDemandedBits |= InSignBit;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002051
Jay Foada0653a32014-05-14 21:14:37 +00002052 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002053 KnownOne &= InputDemandedBits;
2054 KnownZero &= InputDemandedBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002055
Dan Gohman309d3d52007-06-22 14:59:07 +00002056 // If the sign bit of the input is known set or clear, then we know the
2057 // top bits of the result.
Dan Gohmanb717fda2008-02-20 16:30:17 +00002058 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohman309d3d52007-06-22 14:59:07 +00002059 KnownZero |= NewBits;
2060 KnownOne &= ~NewBits;
Dan Gohmanb717fda2008-02-20 16:30:17 +00002061 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohman309d3d52007-06-22 14:59:07 +00002062 KnownOne |= NewBits;
2063 KnownZero &= ~NewBits;
2064 } else { // Input sign bit unknown
2065 KnownZero &= ~NewBits;
2066 KnownOne &= ~NewBits;
2067 }
Jay Foad5a29c362014-05-15 12:12:55 +00002068 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002069 }
2070 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002071 case ISD::CTTZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002072 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002073 case ISD::CTLZ_ZERO_UNDEF:
Dan Gohman309d3d52007-06-22 14:59:07 +00002074 case ISD::CTPOP: {
Dan Gohmanf990faf2008-02-13 00:35:47 +00002075 unsigned LowBits = Log2_32(BitWidth)+1;
2076 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Jay Foad25a5e4c2010-12-01 08:53:58 +00002077 KnownOne.clearAllBits();
Jay Foad5a29c362014-05-15 12:12:55 +00002078 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002079 }
2080 case ISD::LOAD: {
Rafael Espindola80c540e2012-03-31 18:14:00 +00002081 LoadSDNode *LD = cast<LoadSDNode>(Op);
Nadav Rotem4536d582013-03-20 22:53:44 +00002082 // If this is a ZEXTLoad and we are looking at the loaded value.
2083 if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002084 EVT VT = LD->getMemoryVT();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002085 unsigned MemBits = VT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002086 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
Rafael Espindola80c540e2012-03-31 18:14:00 +00002087 } else if (const MDNode *Ranges = LD->getRanges()) {
Jingyue Wu37fcb592014-06-19 16:50:16 +00002088 computeKnownBitsFromRangeMetadata(*Ranges, KnownZero);
Dan Gohman309d3d52007-06-22 14:59:07 +00002089 }
Jay Foad5a29c362014-05-15 12:12:55 +00002090 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002091 }
2092 case ISD::ZERO_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002093 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002094 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002095 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Jay Foad583abbc2010-12-07 08:25:19 +00002096 KnownZero = KnownZero.trunc(InBits);
2097 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002098 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002099 KnownZero = KnownZero.zext(BitWidth);
2100 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002101 KnownZero |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002102 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002103 }
2104 case ISD::SIGN_EXTEND: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002105 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002106 unsigned InBits = InVT.getScalarType().getSizeInBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002107 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002108
Jay Foad583abbc2010-12-07 08:25:19 +00002109 KnownZero = KnownZero.trunc(InBits);
2110 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002111 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002112
2113 // Note if the sign bit is known to be zero or one.
2114 bool SignBitKnownZero = KnownZero.isNegative();
2115 bool SignBitKnownOne = KnownOne.isNegative();
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002116
Jay Foad583abbc2010-12-07 08:25:19 +00002117 KnownZero = KnownZero.zext(BitWidth);
2118 KnownOne = KnownOne.zext(BitWidth);
Dan Gohmanf990faf2008-02-13 00:35:47 +00002119
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002120 // If the sign bit is known zero or one, the top bits match.
2121 if (SignBitKnownZero)
Dan Gohman309d3d52007-06-22 14:59:07 +00002122 KnownZero |= NewBits;
Dan Gohmane1d9ee62008-02-13 22:28:48 +00002123 else if (SignBitKnownOne)
Dan Gohman309d3d52007-06-22 14:59:07 +00002124 KnownOne |= NewBits;
Jay Foad5a29c362014-05-15 12:12:55 +00002125 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002126 }
2127 case ISD::ANY_EXTEND: {
Evan Cheng9ec512d2012-12-06 19:13:27 +00002128 EVT InVT = Op.getOperand(0).getValueType();
2129 unsigned InBits = InVT.getScalarType().getSizeInBits();
2130 KnownZero = KnownZero.trunc(InBits);
2131 KnownOne = KnownOne.trunc(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002132 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Evan Cheng9ec512d2012-12-06 19:13:27 +00002133 KnownZero = KnownZero.zext(BitWidth);
2134 KnownOne = KnownOne.zext(BitWidth);
Jay Foad5a29c362014-05-15 12:12:55 +00002135 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002136 }
2137 case ISD::TRUNCATE: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002138 EVT InVT = Op.getOperand(0).getValueType();
Dan Gohman1d459e42009-12-11 21:31:27 +00002139 unsigned InBits = InVT.getScalarType().getSizeInBits();
Jay Foad583abbc2010-12-07 08:25:19 +00002140 KnownZero = KnownZero.zext(InBits);
2141 KnownOne = KnownOne.zext(InBits);
Jay Foada0653a32014-05-14 21:14:37 +00002142 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Jay Foad583abbc2010-12-07 08:25:19 +00002143 KnownZero = KnownZero.trunc(BitWidth);
2144 KnownOne = KnownOne.trunc(BitWidth);
Dan Gohman309d3d52007-06-22 14:59:07 +00002145 break;
2146 }
2147 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002148 EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Duncan Sands13237ac2008-06-06 12:08:01 +00002149 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Jay Foada0653a32014-05-14 21:14:37 +00002150 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002151 KnownZero |= (~InMask);
Nadav Rotem839a06e2012-07-16 18:34:53 +00002152 KnownOne &= (~KnownZero);
Jay Foad5a29c362014-05-15 12:12:55 +00002153 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002154 }
Chris Lattnerafc8f132007-12-22 21:26:52 +00002155 case ISD::FGETSIGN:
2156 // All bits are zero except the low bit.
Dan Gohmanf990faf2008-02-13 00:35:47 +00002157 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Jay Foad5a29c362014-05-15 12:12:55 +00002158 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002159
Dan Gohman72ec3f42008-04-28 17:02:21 +00002160 case ISD::SUB: {
2161 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
2162 // We know that the top bits of C-X are clear if X contains less bits
2163 // than C (i.e. no wrap-around can happen). For example, 20-X is
2164 // positive if we can prove that X is >= 0 and < 16.
2165 if (CLHS->getAPIntValue().isNonNegative()) {
2166 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
2167 // NLZ can't be BitWidth with no sign bit
2168 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Jay Foada0653a32014-05-14 21:14:37 +00002169 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002170
2171 // If all of the MaskV bits are known to be zero, then we know the
2172 // output top bits are zero, because we now know that the output is
2173 // from [0-C].
2174 if ((KnownZero2 & MaskV) == MaskV) {
2175 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
2176 // Top bits known zero.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002177 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002178 }
2179 }
2180 }
2181 }
2182 // fall through
Chris Lattner440b2802010-12-19 20:38:28 +00002183 case ISD::ADD:
2184 case ISD::ADDE: {
Dan Gohman309d3d52007-06-22 14:59:07 +00002185 // Output known-0 bits are known if clear or set in both the low clear bits
2186 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
2187 // low 3 bits clear.
Jay Foada0653a32014-05-14 21:14:37 +00002188 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002189 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
2190
Jay Foada0653a32014-05-14 21:14:37 +00002191 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002192 KnownZeroOut = std::min(KnownZeroOut,
2193 KnownZero2.countTrailingOnes());
2194
Chris Lattner440b2802010-12-19 20:38:28 +00002195 if (Op.getOpcode() == ISD::ADD) {
2196 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002197 break;
Chris Lattner440b2802010-12-19 20:38:28 +00002198 }
2199
2200 // With ADDE, a carry bit may be added in, so we can only use this
2201 // information if we know (at least) that the low two bits are clear. We
2202 // then return to the caller that the low bit is unknown but that other bits
2203 // are known zero.
2204 if (KnownZeroOut >= 2) // ADDE
2205 KnownZero |= APInt::getBitsSet(BitWidth, 1, KnownZeroOut);
Jay Foad5a29c362014-05-15 12:12:55 +00002206 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002207 }
Dan Gohman72ec3f42008-04-28 17:02:21 +00002208 case ISD::SREM:
2209 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands33274982010-01-29 09:45:26 +00002210 const APInt &RA = Rem->getAPIntValue().abs();
2211 if (RA.isPowerOf2()) {
2212 APInt LowBits = RA - 1;
Jay Foada0653a32014-05-14 21:14:37 +00002213 computeKnownBits(Op.getOperand(0), KnownZero2,KnownOne2,Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002214
Duncan Sands33274982010-01-29 09:45:26 +00002215 // The low bits of the first operand are unchanged by the srem.
2216 KnownZero = KnownZero2 & LowBits;
2217 KnownOne = KnownOne2 & LowBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002218
Duncan Sands33274982010-01-29 09:45:26 +00002219 // If the first operand is non-negative or has all low bits zero, then
2220 // the upper bits are all zero.
2221 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
2222 KnownZero |= ~LowBits;
2223
2224 // If the first operand is negative and not all low bits are zero, then
2225 // the upper bits are all one.
2226 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
2227 KnownOne |= ~LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002228 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002229 }
2230 }
Jay Foad5a29c362014-05-15 12:12:55 +00002231 break;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002232 case ISD::UREM: {
2233 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf3c4d7f2008-07-03 00:52:03 +00002234 const APInt &RA = Rem->getAPIntValue();
Dan Gohmancf0e3ac2008-05-06 00:51:48 +00002235 if (RA.isPowerOf2()) {
2236 APInt LowBits = (RA - 1);
Rafael Espindola92945ee2014-05-30 15:00:45 +00002237 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth + 1);
2238
2239 // The upper bits are all zero, the lower ones are unchanged.
2240 KnownZero = KnownZero2 | ~LowBits;
2241 KnownOne = KnownOne2 & LowBits;
Dan Gohman72ec3f42008-04-28 17:02:21 +00002242 break;
2243 }
2244 }
2245
2246 // Since the result is less than or equal to either operand, any leading
2247 // zero bits in either operand must also exist in the result.
Jay Foada0653a32014-05-14 21:14:37 +00002248 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
2249 computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
Dan Gohman72ec3f42008-04-28 17:02:21 +00002250
2251 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
2252 KnownZero2.countLeadingOnes());
Jay Foad25a5e4c2010-12-01 08:53:58 +00002253 KnownOne.clearAllBits();
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002254 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders);
Jay Foad5a29c362014-05-15 12:12:55 +00002255 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002256 }
Chris Lattner46c01a32011-02-13 22:25:43 +00002257 case ISD::FrameIndex:
2258 case ISD::TargetFrameIndex:
2259 if (unsigned Align = InferPtrAlignment(Op)) {
2260 // The low bits are known zero if the pointer is aligned.
2261 KnownZero = APInt::getLowBitsSet(BitWidth, Log2_32(Align));
Jay Foad5a29c362014-05-15 12:12:55 +00002262 break;
Chris Lattner46c01a32011-02-13 22:25:43 +00002263 }
2264 break;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002265
Dan Gohman309d3d52007-06-22 14:59:07 +00002266 default:
Evan Cheng88f91372011-05-24 01:48:22 +00002267 if (Op.getOpcode() < ISD::BUILTIN_OP_END)
2268 break;
2269 // Fallthrough
Dan Gohman309d3d52007-06-22 14:59:07 +00002270 case ISD::INTRINSIC_WO_CHAIN:
2271 case ISD::INTRINSIC_W_CHAIN:
2272 case ISD::INTRINSIC_VOID:
Evan Cheng88f91372011-05-24 01:48:22 +00002273 // Allow the target to implement this method for its nodes.
Jay Foada0653a32014-05-14 21:14:37 +00002274 TLI->computeKnownBitsForTargetNode(Op, KnownZero, KnownOne, *this, Depth);
Jay Foad5a29c362014-05-15 12:12:55 +00002275 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002276 }
Jay Foad5a29c362014-05-15 12:12:55 +00002277
2278 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman309d3d52007-06-22 14:59:07 +00002279}
2280
2281/// ComputeNumSignBits - Return the number of times the sign bit of the
2282/// register is replicated into the other bits. We know that at least 1 bit
2283/// is always equal to the sign bit (itself), but other cases can give us
2284/// information. For example, immediately after an "SRA X, 2", we know that
2285/// the top 3 bits are all equal to each other, so we return 3.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002286unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002287 const TargetLowering *TLI = TM.getTargetLowering();
Owen Anderson53aa7a92009-08-10 22:56:29 +00002288 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00002289 assert(VT.isInteger() && "Invalid VT!");
Dan Gohman1d459e42009-12-11 21:31:27 +00002290 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002291 unsigned Tmp, Tmp2;
Dan Gohman6d5f1202008-05-23 02:28:01 +00002292 unsigned FirstAnswer = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002293
Dan Gohman309d3d52007-06-22 14:59:07 +00002294 if (Depth == 6)
2295 return 1; // Limit search depth.
2296
2297 switch (Op.getOpcode()) {
2298 default: break;
2299 case ISD::AssertSext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002300 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002301 return VTBits-Tmp+1;
2302 case ISD::AssertZext:
Duncan Sands13237ac2008-06-06 12:08:01 +00002303 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002304 return VTBits-Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002305
Dan Gohman309d3d52007-06-22 14:59:07 +00002306 case ISD::Constant: {
Dan Gohman10f34072008-03-03 23:35:36 +00002307 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
Cameron Zwarich3cf92802011-02-24 10:00:20 +00002308 return Val.getNumSignBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002309 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002310
Dan Gohman309d3d52007-06-22 14:59:07 +00002311 case ISD::SIGN_EXTEND:
Jack Carter170a5f22013-09-09 22:02:08 +00002312 Tmp =
2313 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002314 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002315
Dan Gohman309d3d52007-06-22 14:59:07 +00002316 case ISD::SIGN_EXTEND_INREG:
2317 // Max of the input and what this extends.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002318 Tmp =
2319 cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002320 Tmp = VTBits-Tmp+1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002321
Dan Gohman309d3d52007-06-22 14:59:07 +00002322 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2323 return std::max(Tmp, Tmp2);
2324
2325 case ISD::SRA:
2326 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2327 // SRA X, C -> adds C sign bits.
2328 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002329 Tmp += C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002330 if (Tmp > VTBits) Tmp = VTBits;
2331 }
2332 return Tmp;
2333 case ISD::SHL:
2334 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2335 // shl destroys sign bits.
2336 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmaneffb8942008-09-12 16:56:44 +00002337 if (C->getZExtValue() >= VTBits || // Bad shift.
2338 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
2339 return Tmp - C->getZExtValue();
Dan Gohman309d3d52007-06-22 14:59:07 +00002340 }
2341 break;
2342 case ISD::AND:
2343 case ISD::OR:
2344 case ISD::XOR: // NOT is handled here.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002345 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohman309d3d52007-06-22 14:59:07 +00002346 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002347 if (Tmp != 1) {
2348 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2349 FirstAnswer = std::min(Tmp, Tmp2);
2350 // We computed what we know about the sign bits as our first
2351 // answer. Now proceed to the generic code that uses
Jay Foada0653a32014-05-14 21:14:37 +00002352 // computeKnownBits, and pick whichever answer is better.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002353 }
2354 break;
Dan Gohman309d3d52007-06-22 14:59:07 +00002355
2356 case ISD::SELECT:
Dan Gohmanfe136182008-05-20 20:59:51 +00002357 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002358 if (Tmp == 1) return 1; // Early out.
Dan Gohmanfe136182008-05-20 20:59:51 +00002359 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002360 return std::min(Tmp, Tmp2);
Bill Wendling5424e6d2008-11-22 07:24:01 +00002361
2362 case ISD::SADDO:
2363 case ISD::UADDO:
Bill Wendlingdb8ec2d2008-12-09 22:08:41 +00002364 case ISD::SSUBO:
2365 case ISD::USUBO:
2366 case ISD::SMULO:
2367 case ISD::UMULO:
Bill Wendling5424e6d2008-11-22 07:24:01 +00002368 if (Op.getResNo() != 1)
2369 break;
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002370 // The boolean result conforms to getBooleanContents. Fall through.
Dan Gohman309d3d52007-06-22 14:59:07 +00002371 case ISD::SETCC:
2372 // If setcc returns 0/-1, all bits are sign bits.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00002373 if (TLI->getBooleanContents(Op.getValueType().isVector()) ==
Duncan Sands8d6e2e12008-11-23 15:47:28 +00002374 TargetLowering::ZeroOrNegativeOneBooleanContent)
Dan Gohman309d3d52007-06-22 14:59:07 +00002375 return VTBits;
2376 break;
2377 case ISD::ROTL:
2378 case ISD::ROTR:
2379 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002380 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002381
Dan Gohman309d3d52007-06-22 14:59:07 +00002382 // Handle rotate right by N like a rotate left by 32-N.
2383 if (Op.getOpcode() == ISD::ROTR)
2384 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2385
2386 // If we aren't rotating out all of the known-in sign bits, return the
2387 // number that are left. This handles rotl(sext(x), 1) for example.
2388 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2389 if (Tmp > RotAmt+1) return Tmp-RotAmt;
2390 }
2391 break;
2392 case ISD::ADD:
2393 // Add can have at most one carry bit. Thus we know that the output
2394 // is, at worst, one more bit than the inputs.
2395 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2396 if (Tmp == 1) return 1; // Early out.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002397
Dan Gohman309d3d52007-06-22 14:59:07 +00002398 // Special case decrementing a value (ADD X, -1):
Dan Gohman4f356bb2009-02-24 02:00:40 +00002399 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman309d3d52007-06-22 14:59:07 +00002400 if (CRHS->isAllOnesValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002401 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002402 computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002403
Dan Gohman309d3d52007-06-22 14:59:07 +00002404 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2405 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002406 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002407 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002408
Dan Gohman309d3d52007-06-22 14:59:07 +00002409 // If we are subtracting one from a positive number, there is no carry
2410 // out of the result.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002411 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002412 return Tmp;
2413 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002414
Dan Gohman309d3d52007-06-22 14:59:07 +00002415 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2416 if (Tmp2 == 1) return 1;
David Blaikie46a9f012012-01-20 21:51:11 +00002417 return std::min(Tmp, Tmp2)-1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002418
Dan Gohman309d3d52007-06-22 14:59:07 +00002419 case ISD::SUB:
2420 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2421 if (Tmp2 == 1) return 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002422
Dan Gohman309d3d52007-06-22 14:59:07 +00002423 // Handle NEG.
2424 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohmanb72127a2008-03-13 22:13:53 +00002425 if (CLHS->isNullValue()) {
Dan Gohmanf19609a2008-02-27 01:23:58 +00002426 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002427 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
Dan Gohman309d3d52007-06-22 14:59:07 +00002428 // If the input is known to be 0 or 1, the output is 0/-1, which is all
2429 // sign bits set.
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002430 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
Dan Gohman309d3d52007-06-22 14:59:07 +00002431 return VTBits;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002432
Dan Gohman309d3d52007-06-22 14:59:07 +00002433 // If the input is known to be positive (the sign bit is known clear),
2434 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002435 if (KnownZero.isNegative())
Dan Gohman309d3d52007-06-22 14:59:07 +00002436 return Tmp2;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002437
Dan Gohman309d3d52007-06-22 14:59:07 +00002438 // Otherwise, we treat this like a SUB.
2439 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002440
Dan Gohman309d3d52007-06-22 14:59:07 +00002441 // Sub can have at most one carry bit. Thus we know that the output
2442 // is, at worst, one more bit than the inputs.
2443 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2444 if (Tmp == 1) return 1; // Early out.
David Blaikie46a9f012012-01-20 21:51:11 +00002445 return std::min(Tmp, Tmp2)-1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002446 case ISD::TRUNCATE:
2447 // FIXME: it's tricky to do anything useful for this, but it is an important
2448 // case for targets like X86.
2449 break;
2450 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002451
Nadav Rotem4536d582013-03-20 22:53:44 +00002452 // If we are looking at the loaded value of the SDNode.
2453 if (Op.getResNo() == 0) {
2454 // Handle LOADX separately here. EXTLOAD case will fallthrough.
2455 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
2456 unsigned ExtType = LD->getExtensionType();
2457 switch (ExtType) {
2458 default: break;
2459 case ISD::SEXTLOAD: // '17' bits known
2460 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2461 return VTBits-Tmp+1;
2462 case ISD::ZEXTLOAD: // '16' bits known
2463 Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2464 return VTBits-Tmp;
2465 }
Dan Gohman309d3d52007-06-22 14:59:07 +00002466 }
2467 }
2468
2469 // Allow the target to implement this method for its nodes.
2470 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00002471 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
Dan Gohman309d3d52007-06-22 14:59:07 +00002472 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2473 Op.getOpcode() == ISD::INTRINSIC_VOID) {
Matt Arsenaultcf6f6882014-04-04 20:13:13 +00002474 unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, *this, Depth);
Dan Gohman6d5f1202008-05-23 02:28:01 +00002475 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohman309d3d52007-06-22 14:59:07 +00002476 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002477
Dan Gohman309d3d52007-06-22 14:59:07 +00002478 // Finally, if we can prove that the top bits of the result are 0's or 1's,
2479 // use this information.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002480 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00002481 computeKnownBits(Op, KnownZero, KnownOne, Depth);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002482
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00002483 APInt Mask;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002484 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohman309d3d52007-06-22 14:59:07 +00002485 Mask = KnownZero;
Dan Gohmanf19609a2008-02-27 01:23:58 +00002486 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohman309d3d52007-06-22 14:59:07 +00002487 Mask = KnownOne;
2488 } else {
2489 // Nothing known.
Dan Gohman6d5f1202008-05-23 02:28:01 +00002490 return FirstAnswer;
Dan Gohman309d3d52007-06-22 14:59:07 +00002491 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002492
Dan Gohman309d3d52007-06-22 14:59:07 +00002493 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
2494 // the number of identical bits in the top of the input value.
Dan Gohmanf19609a2008-02-27 01:23:58 +00002495 Mask = ~Mask;
2496 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohman309d3d52007-06-22 14:59:07 +00002497 // Return # leading zeros. We use 'min' here in case Val was zero before
2498 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohman6d5f1202008-05-23 02:28:01 +00002499 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohman309d3d52007-06-22 14:59:07 +00002500}
2501
Chris Lattner46c01a32011-02-13 22:25:43 +00002502/// isBaseWithConstantOffset - Return true if the specified operand is an
2503/// ISD::ADD with a ConstantSDNode on the right-hand side, or if it is an
2504/// ISD::OR with a ConstantSDNode that is guaranteed to have the same
2505/// semantics as an ADD. This handles the equivalence:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002506/// X|Cst == X+Cst iff X&Cst = 0.
Chris Lattner46c01a32011-02-13 22:25:43 +00002507bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
2508 if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
2509 !isa<ConstantSDNode>(Op.getOperand(1)))
2510 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002511
2512 if (Op.getOpcode() == ISD::OR &&
Chris Lattner46c01a32011-02-13 22:25:43 +00002513 !MaskedValueIsZero(Op.getOperand(0),
2514 cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue()))
2515 return false;
Owen Andersonb2c80da2011-02-25 21:41:48 +00002516
Chris Lattner46c01a32011-02-13 22:25:43 +00002517 return true;
2518}
2519
2520
Dan Gohmand0d5e682009-09-03 20:34:31 +00002521bool SelectionDAG::isKnownNeverNaN(SDValue Op) const {
2522 // If we're told that NaNs won't happen, assume they won't.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002523 if (getTarget().Options.NoNaNsFPMath)
Dan Gohmand0d5e682009-09-03 20:34:31 +00002524 return true;
2525
2526 // If the value is a constant, we can obviously see if it is a NaN or not.
2527 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2528 return !C->getValueAPF().isNaN();
2529
2530 // TODO: Recognize more cases here.
2531
2532 return false;
2533}
Chris Lattnerbd9acad2006-10-14 00:41:01 +00002534
Dan Gohman38605212010-02-24 06:52:40 +00002535bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
2536 // If the value is a constant, we can obviously see if it is a zero or not.
2537 if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2538 return !C->isZero();
2539
2540 // TODO: Recognize more cases here.
Evan Cheng88f91372011-05-24 01:48:22 +00002541 switch (Op.getOpcode()) {
2542 default: break;
2543 case ISD::OR:
2544 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2545 return !C->isNullValue();
2546 break;
2547 }
Dan Gohman38605212010-02-24 06:52:40 +00002548
2549 return false;
2550}
2551
2552bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
2553 // Check the obvious case.
2554 if (A == B) return true;
2555
2556 // For for negative and positive zero.
2557 if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
2558 if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
2559 if (CA->isZero() && CB->isZero()) return true;
2560
2561 // Otherwise they may not be equal.
2562 return false;
2563}
2564
Chris Lattner061a1ea2005-01-07 07:46:32 +00002565/// getNode - Gets or creates the specified node.
Chris Lattner600d3082003-08-11 14:57:33 +00002566///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002567SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT) {
Jim Laskeyf576b422006-10-27 23:46:08 +00002568 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00002569 AddNodeIDNode(ID, Opcode, getVTList(VT), None);
Craig Topperc0196b12014-04-14 00:51:57 +00002570 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002571 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002572 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002573
Jack Carter170a5f22013-09-09 22:02:08 +00002574 SDNode *N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(),
2575 DL.getDebugLoc(), getVTList(VT));
Chris Lattnerfcb16472006-08-11 18:38:11 +00002576 CSEMap.InsertNode(N, IP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002577
Chris Lattnerfcb16472006-08-11 18:38:11 +00002578 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002579#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002580 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002581#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002582 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002583}
2584
Andrew Trickef9de2a2013-05-25 02:42:55 +00002585SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002586 EVT VT, SDValue Operand) {
Juergen Ributzkafcd2e942014-04-02 22:21:01 +00002587 // Constant fold unary operations with an integer constant operand. Even
2588 // opaque constant will be folded, because the folding of unary operations
2589 // doesn't create new constants with different values. Nevertheless, the
2590 // opaque flag is preserved during folding to prevent future folding with
2591 // other constants.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002592 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002593 const APInt &Val = C->getAPIntValue();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002594 switch (Opcode) {
2595 default: break;
Evan Cheng34173f02008-03-06 17:42:34 +00002596 case ISD::SIGN_EXTEND:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002597 return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), VT,
2598 C->isTargetOpcode(), C->isOpaque());
Chris Lattner8c393c22005-09-02 00:17:32 +00002599 case ISD::ANY_EXTEND:
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002600 case ISD::ZERO_EXTEND:
Evan Cheng34173f02008-03-06 17:42:34 +00002601 case ISD::TRUNCATE:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002602 return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), VT,
2603 C->isTargetOpcode(), C->isOpaque());
Dale Johannesen7d67e542007-09-19 23:55:34 +00002604 case ISD::UINT_TO_FP:
2605 case ISD::SINT_TO_FP: {
Tim Northover29178a32013-01-22 09:46:31 +00002606 APFloat apf(EVTToAPFloatSemantics(VT),
2607 APInt::getNullValue(VT.getSizeInBits()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00002608 (void)apf.convertFromAPInt(Val,
Dan Gohmanbd2fa562008-02-29 01:47:35 +00002609 Opcode==ISD::SINT_TO_FP,
2610 APFloat::rmNearestTiesToEven);
Dale Johannesen7d67e542007-09-19 23:55:34 +00002611 return getConstantFP(apf, VT);
2612 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002613 case ISD::BITCAST:
Owen Anderson9f944592009-08-11 20:47:22 +00002614 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Tim Northover29178a32013-01-22 09:46:31 +00002615 return getConstantFP(APFloat(APFloat::IEEEsingle, Val), VT);
Owen Anderson9f944592009-08-11 20:47:22 +00002616 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Tim Northover29178a32013-01-22 09:46:31 +00002617 return getConstantFP(APFloat(APFloat::IEEEdouble, Val), VT);
Chris Lattnera1874602005-12-23 05:30:37 +00002618 break;
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002619 case ISD::BSWAP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002620 return getConstant(Val.byteSwap(), VT, C->isTargetOpcode(),
2621 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002622 case ISD::CTPOP:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002623 return getConstant(Val.countPopulation(), VT, C->isTargetOpcode(),
2624 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002625 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002626 case ISD::CTLZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002627 return getConstant(Val.countLeadingZeros(), VT, C->isTargetOpcode(),
2628 C->isOpaque());
Nate Begeman1e1eb5e2006-01-16 08:07:10 +00002629 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002630 case ISD::CTTZ_ZERO_UNDEF:
Juergen Ributzkae2e16842014-03-25 18:01:20 +00002631 return getConstant(Val.countTrailingZeros(), VT, C->isTargetOpcode(),
2632 C->isOpaque());
Chris Lattner061a1ea2005-01-07 07:46:32 +00002633 }
2634 }
2635
Dale Johannesen446b9002007-08-31 23:34:27 +00002636 // Constant fold unary operations with a floating point constant operand.
Gabor Greiff304a7a2008-08-28 21:40:38 +00002637 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
Dale Johannesen446b9002007-08-31 23:34:27 +00002638 APFloat V = C->getValueAPF(); // make copy
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002639 switch (Opcode) {
2640 case ISD::FNEG:
2641 V.changeSign();
2642 return getConstantFP(V, VT);
2643 case ISD::FABS:
2644 V.clearSign();
2645 return getConstantFP(V, VT);
2646 case ISD::FCEIL: {
2647 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
2648 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002649 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002650 break;
2651 }
2652 case ISD::FTRUNC: {
2653 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
2654 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002655 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002656 break;
2657 }
2658 case ISD::FFLOOR: {
2659 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
2660 if (fs == APFloat::opOK || fs == APFloat::opInexact)
Dale Johannesene5facd52007-10-16 23:38:29 +00002661 return getConstantFP(V, VT);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002662 break;
2663 }
2664 case ISD::FP_EXTEND: {
2665 bool ignored;
2666 // This can return overflow, underflow, or inexact; we don't care.
2667 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00002668 (void)V.convert(EVTToAPFloatSemantics(VT),
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002669 APFloat::rmNearestTiesToEven, &ignored);
2670 return getConstantFP(V, VT);
2671 }
2672 case ISD::FP_TO_SINT:
2673 case ISD::FP_TO_UINT: {
2674 integerPart x[2];
2675 bool ignored;
2676 assert(integerPartWidth >= 64);
2677 // FIXME need to be more flexible about rounding mode.
2678 APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(),
2679 Opcode==ISD::FP_TO_SINT,
2680 APFloat::rmTowardZero, &ignored);
2681 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
Dale Johannesen446b9002007-08-31 23:34:27 +00002682 break;
Ulrich Weigand3abb3432012-10-29 18:35:49 +00002683 APInt api(VT.getSizeInBits(), x);
2684 return getConstant(api, VT);
2685 }
2686 case ISD::BITCAST:
2687 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2688 return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2689 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2690 return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2691 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002692 }
Dale Johannesen446b9002007-08-31 23:34:27 +00002693 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00002694
Gabor Greiff304a7a2008-08-28 21:40:38 +00002695 unsigned OpOpcode = Operand.getNode()->getOpcode();
Chris Lattner061a1ea2005-01-07 07:46:32 +00002696 switch (Opcode) {
Chris Lattner96e809c2005-01-21 18:01:22 +00002697 case ISD::TokenFactor:
Duncan Sands3d960942008-12-01 11:41:29 +00002698 case ISD::MERGE_VALUES:
Dan Gohman550c9af2008-08-14 20:04:46 +00002699 case ISD::CONCAT_VECTORS:
Duncan Sands3d960942008-12-01 11:41:29 +00002700 return Operand; // Factor, merge or concat of one node? No need.
Torok Edwinfbcc6632009-07-14 16:55:14 +00002701 case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
Chris Lattner18d67182007-04-09 05:23:13 +00002702 case ISD::FP_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002703 assert(VT.isFloatingPoint() &&
2704 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner52188502008-01-16 17:59:31 +00002705 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Dan Gohmancecad352009-12-14 23:40:38 +00002706 assert((!VT.isVector() ||
2707 VT.getVectorNumElements() ==
2708 Operand.getValueType().getVectorNumElements()) &&
2709 "Vector element count mismatch!");
Chris Lattner5c7bda42008-03-11 06:21:08 +00002710 if (Operand.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002711 return getUNDEF(VT);
Chris Lattner18d67182007-04-09 05:23:13 +00002712 break;
Chris Lattner5c7bda42008-03-11 06:21:08 +00002713 case ISD::SIGN_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002714 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002715 "Invalid SIGN_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002716 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002717 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2718 "Invalid sext node, dst < src!");
2719 assert((!VT.isVector() ||
2720 VT.getVectorNumElements() ==
2721 Operand.getValueType().getVectorNumElements()) &&
2722 "Vector element count mismatch!");
Nadav Rotem9450fcf2013-01-20 08:35:56 +00002723 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2724 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2725 else if (OpOpcode == ISD::UNDEF)
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002726 // sext(undef) = 0, because the top bits will all be the same.
2727 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002728 break;
2729 case ISD::ZERO_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002730 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002731 "Invalid ZERO_EXTEND!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002732 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002733 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2734 "Invalid zext node, dst < src!");
2735 assert((!VT.isVector() ||
2736 VT.getVectorNumElements() ==
2737 Operand.getValueType().getVectorNumElements()) &&
2738 "Vector element count mismatch!");
Chris Lattnerb32d9312005-04-07 19:43:53 +00002739 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Scott Michelcf0da6c2009-02-17 22:15:04 +00002740 return getNode(ISD::ZERO_EXTEND, DL, VT,
Dale Johannesendb393622009-02-03 01:55:44 +00002741 Operand.getNode()->getOperand(0));
Evan Chengc5c2cfa2011-03-15 02:22:10 +00002742 else if (OpOpcode == ISD::UNDEF)
2743 // zext(undef) = 0, because the top bits will be zero.
2744 return getConstant(0, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002745 break;
Chris Lattner8c393c22005-09-02 00:17:32 +00002746 case ISD::ANY_EXTEND:
Duncan Sands13237ac2008-06-06 12:08:01 +00002747 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002748 "Invalid ANY_EXTEND!");
Chris Lattner8c393c22005-09-02 00:17:32 +00002749 if (Operand.getValueType() == VT) return Operand; // noop extension
Dan Gohmancecad352009-12-14 23:40:38 +00002750 assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2751 "Invalid anyext node, dst < src!");
2752 assert((!VT.isVector() ||
2753 VT.getVectorNumElements() ==
2754 Operand.getValueType().getVectorNumElements()) &&
2755 "Vector element count mismatch!");
Dan Gohman600f62b2010-06-24 14:30:44 +00002756
Dan Gohman08837892010-06-18 00:08:30 +00002757 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2758 OpOpcode == ISD::ANY_EXTEND)
Chris Lattner8c393c22005-09-02 00:17:32 +00002759 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
Dale Johannesendb393622009-02-03 01:55:44 +00002760 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Evan Chengd2f3b012011-03-14 18:15:55 +00002761 else if (OpOpcode == ISD::UNDEF)
2762 return getUNDEF(VT);
Dan Gohman600f62b2010-06-24 14:30:44 +00002763
2764 // (ext (trunx x)) -> x
2765 if (OpOpcode == ISD::TRUNCATE) {
2766 SDValue OpOp = Operand.getNode()->getOperand(0);
2767 if (OpOp.getValueType() == VT)
2768 return OpOp;
2769 }
Chris Lattner8c393c22005-09-02 00:17:32 +00002770 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002771 case ISD::TRUNCATE:
Duncan Sands13237ac2008-06-06 12:08:01 +00002772 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattner18d67182007-04-09 05:23:13 +00002773 "Invalid TRUNCATE!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002774 if (Operand.getValueType() == VT) return Operand; // noop truncate
Dan Gohmancecad352009-12-14 23:40:38 +00002775 assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) &&
2776 "Invalid truncate node, src < dst!");
2777 assert((!VT.isVector() ||
2778 VT.getVectorNumElements() ==
2779 Operand.getValueType().getVectorNumElements()) &&
2780 "Vector element count mismatch!");
Chris Lattner061a1ea2005-01-07 07:46:32 +00002781 if (OpOpcode == ISD::TRUNCATE)
Dale Johannesendb393622009-02-03 01:55:44 +00002782 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002783 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2784 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattner4d5ba992005-01-07 21:56:24 +00002785 // If the source is smaller than the dest, we still need an extend.
Dan Gohmancecad352009-12-14 23:40:38 +00002786 if (Operand.getNode()->getOperand(0).getValueType().getScalarType()
2787 .bitsLT(VT.getScalarType()))
Dale Johannesendb393622009-02-03 01:55:44 +00002788 return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002789 if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
Dale Johannesendb393622009-02-03 01:55:44 +00002790 return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
Craig Topper201c1a32012-01-15 01:05:11 +00002791 return Operand.getNode()->getOperand(0);
Chris Lattner4d5ba992005-01-07 21:56:24 +00002792 }
Craig Topper201c1a32012-01-15 01:05:11 +00002793 if (OpOpcode == ISD::UNDEF)
2794 return getUNDEF(VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00002795 break;
Wesley Peck527da1b2010-11-23 03:31:01 +00002796 case ISD::BITCAST:
Chris Lattner36e663d2005-12-23 00:16:34 +00002797 // Basic sanity checking.
Duncan Sands13237ac2008-06-06 12:08:01 +00002798 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Wesley Peck527da1b2010-11-23 03:31:01 +00002799 && "Cannot BITCAST between types of different sizes!");
Chris Lattner36e663d2005-12-23 00:16:34 +00002800 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002801 if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x)
2802 return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
Chris Lattnera9e77d12006-04-04 01:02:22 +00002803 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002804 return getUNDEF(VT);
Chris Lattner36e663d2005-12-23 00:16:34 +00002805 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002806 case ISD::SCALAR_TO_VECTOR:
Duncan Sands13237ac2008-06-06 12:08:01 +00002807 assert(VT.isVector() && !Operand.getValueType().isVector() &&
Duncan Sandse4ff21b2009-04-18 20:16:54 +00002808 (VT.getVectorElementType() == Operand.getValueType() ||
2809 (VT.getVectorElementType().isInteger() &&
2810 Operand.getValueType().isInteger() &&
2811 VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002812 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnera1f25b02008-03-08 23:43:36 +00002813 if (OpOpcode == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00002814 return getUNDEF(VT);
Chris Lattnera1f25b02008-03-08 23:43:36 +00002815 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2816 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2817 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2818 Operand.getConstantOperandVal(1) == 0 &&
2819 Operand.getOperand(0).getValueType() == VT)
2820 return Operand.getOperand(0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002821 break;
Chris Lattner0ea81f92005-04-09 03:02:46 +00002822 case ISD::FNEG:
Mon P Wangcf9ba822009-01-31 06:07:45 +00002823 // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002824 if (getTarget().Options.UnsafeFPMath && OpOpcode == ISD::FSUB)
Dale Johannesendb393622009-02-03 01:55:44 +00002825 return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1),
Gabor Greiff304a7a2008-08-28 21:40:38 +00002826 Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002827 if (OpOpcode == ISD::FNEG) // --X -> X
Gabor Greiff304a7a2008-08-28 21:40:38 +00002828 return Operand.getNode()->getOperand(0);
Chris Lattner0ea81f92005-04-09 03:02:46 +00002829 break;
2830 case ISD::FABS:
2831 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
Dale Johannesendb393622009-02-03 01:55:44 +00002832 return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0));
Chris Lattner0ea81f92005-04-09 03:02:46 +00002833 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00002834 }
2835
Chris Lattnerf9c19152005-08-25 19:12:10 +00002836 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00002837 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002838 if (VT != MVT::Glue) { // Don't CSE flag producing nodes
Jim Laskeyf576b422006-10-27 23:46:08 +00002839 FoldingSetNodeID ID;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002840 SDValue Ops[1] = { Operand };
Craig Topper633d99b2014-04-27 23:22:43 +00002841 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00002842 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00002843 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002844 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00002845
Jack Carter170a5f22013-09-09 22:02:08 +00002846 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2847 DL.getDebugLoc(), VTs, Operand);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00002848 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002849 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00002850 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
2851 DL.getDebugLoc(), VTs, Operand);
Chris Lattnerf9c19152005-08-25 19:12:10 +00002852 }
Duncan Sandsb0e39382008-07-21 10:20:31 +00002853
Chris Lattner061a1ea2005-01-07 07:46:32 +00002854 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002855#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00002856 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00002857#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002858 return SDValue(N, 0);
Chris Lattner600d3082003-08-11 14:57:33 +00002859}
2860
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002861SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, EVT VT,
2862 SDNode *Cst1, SDNode *Cst2) {
Jim Grosbachcad4cd62014-04-09 23:28:11 +00002863 // If the opcode is a target-specific ISD node, there's nothing we can
2864 // do here and the operand rules may not line up with the below, so
2865 // bail early.
2866 if (Opcode >= ISD::BUILTIN_OP_END)
2867 return SDValue();
2868
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002869 SmallVector<std::pair<ConstantSDNode *, ConstantSDNode *>, 4> Inputs;
2870 SmallVector<SDValue, 4> Outputs;
2871 EVT SVT = VT.getScalarType();
Bill Wendling162c26d2008-09-24 10:16:24 +00002872
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002873 ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1);
2874 ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002875 if (Scalar1 && Scalar2 && (Scalar1->isOpaque() || Scalar2->isOpaque()))
2876 return SDValue();
2877
2878 if (Scalar1 && Scalar2)
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002879 // Scalar instruction.
2880 Inputs.push_back(std::make_pair(Scalar1, Scalar2));
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002881 else {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002882 // For vectors extract each constant element into Inputs so we can constant
2883 // fold them individually.
2884 BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1);
2885 BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2);
2886 if (!BV1 || !BV2)
2887 return SDValue();
2888
2889 assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!");
2890
2891 for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) {
2892 ConstantSDNode *V1 = dyn_cast<ConstantSDNode>(BV1->getOperand(I));
2893 ConstantSDNode *V2 = dyn_cast<ConstantSDNode>(BV2->getOperand(I));
2894 if (!V1 || !V2) // Not a constant, bail.
2895 return SDValue();
2896
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00002897 if (V1->isOpaque() || V2->isOpaque())
2898 return SDValue();
2899
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002900 // Avoid BUILD_VECTOR nodes that perform implicit truncation.
2901 // FIXME: This is valid and could be handled by truncating the APInts.
2902 if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT)
2903 return SDValue();
2904
2905 Inputs.push_back(std::make_pair(V1, V2));
2906 }
Bill Wendling162c26d2008-09-24 10:16:24 +00002907 }
2908
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002909 // We have a number of constant values, constant fold them element by element.
2910 for (unsigned I = 0, E = Inputs.size(); I != E; ++I) {
2911 const APInt &C1 = Inputs[I].first->getAPIntValue();
2912 const APInt &C2 = Inputs[I].second->getAPIntValue();
2913
2914 switch (Opcode) {
2915 case ISD::ADD:
2916 Outputs.push_back(getConstant(C1 + C2, SVT));
2917 break;
2918 case ISD::SUB:
2919 Outputs.push_back(getConstant(C1 - C2, SVT));
2920 break;
2921 case ISD::MUL:
2922 Outputs.push_back(getConstant(C1 * C2, SVT));
2923 break;
2924 case ISD::UDIV:
2925 if (!C2.getBoolValue())
2926 return SDValue();
2927 Outputs.push_back(getConstant(C1.udiv(C2), SVT));
2928 break;
2929 case ISD::UREM:
2930 if (!C2.getBoolValue())
2931 return SDValue();
2932 Outputs.push_back(getConstant(C1.urem(C2), SVT));
2933 break;
2934 case ISD::SDIV:
2935 if (!C2.getBoolValue())
2936 return SDValue();
2937 Outputs.push_back(getConstant(C1.sdiv(C2), SVT));
2938 break;
2939 case ISD::SREM:
2940 if (!C2.getBoolValue())
2941 return SDValue();
2942 Outputs.push_back(getConstant(C1.srem(C2), SVT));
2943 break;
2944 case ISD::AND:
2945 Outputs.push_back(getConstant(C1 & C2, SVT));
2946 break;
2947 case ISD::OR:
2948 Outputs.push_back(getConstant(C1 | C2, SVT));
2949 break;
2950 case ISD::XOR:
2951 Outputs.push_back(getConstant(C1 ^ C2, SVT));
2952 break;
2953 case ISD::SHL:
2954 Outputs.push_back(getConstant(C1 << C2, SVT));
2955 break;
2956 case ISD::SRL:
2957 Outputs.push_back(getConstant(C1.lshr(C2), SVT));
2958 break;
2959 case ISD::SRA:
2960 Outputs.push_back(getConstant(C1.ashr(C2), SVT));
2961 break;
2962 case ISD::ROTL:
2963 Outputs.push_back(getConstant(C1.rotl(C2), SVT));
2964 break;
2965 case ISD::ROTR:
2966 Outputs.push_back(getConstant(C1.rotr(C2), SVT));
2967 break;
2968 default:
2969 return SDValue();
2970 }
2971 }
2972
Benjamin Kramer6dd9f8f2014-05-02 21:28:49 +00002973 assert((Scalar1 && Scalar2) || (VT.getVectorNumElements() == Outputs.size() &&
2974 "Expected a scalar or vector!"));
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002975
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002976 // Handle the scalar case first.
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002977 if (!VT.isVector())
Benjamin Kramer548ffa22013-02-04 15:19:18 +00002978 return Outputs.back();
2979
Benjamin Kramer42d262f2014-05-02 12:35:22 +00002980 // We may have a vector type but a scalar result. Create a splat.
2981 Outputs.resize(VT.getVectorNumElements(), Outputs.back());
2982
2983 // Build a big vector out of the scalar elements we generated.
Craig Topper48d114b2014-04-26 18:35:24 +00002984 return getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Outputs);
Bill Wendling162c26d2008-09-24 10:16:24 +00002985}
2986
Andrew Trickef9de2a2013-05-25 02:42:55 +00002987SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, SDValue N1,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00002988 SDValue N2, bool nuw, bool nsw, bool exact) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00002989 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2990 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
Chris Lattner4e550eb2005-01-16 02:23:22 +00002991 switch (Opcode) {
Chris Lattner16713612008-01-22 19:09:33 +00002992 default: break;
Chris Lattner9b75e142005-01-19 18:01:40 +00002993 case ISD::TokenFactor:
Owen Anderson9f944592009-08-11 20:47:22 +00002994 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2995 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner16713612008-01-22 19:09:33 +00002996 // Fold trivial token factors.
2997 if (N1.getOpcode() == ISD::EntryToken) return N2;
2998 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohman94798d32008-10-01 15:11:19 +00002999 if (N1 == N2) return N1;
Chris Lattner9b75e142005-01-19 18:01:40 +00003000 break;
Dan Gohman550c9af2008-08-14 20:04:46 +00003001 case ISD::CONCAT_VECTORS:
Nadav Rotema62368c2012-07-15 08:38:23 +00003002 // Concat of UNDEFs is UNDEF.
3003 if (N1.getOpcode() == ISD::UNDEF &&
3004 N2.getOpcode() == ISD::UNDEF)
3005 return getUNDEF(VT);
3006
Dan Gohman550c9af2008-08-14 20:04:46 +00003007 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3008 // one big BUILD_VECTOR.
3009 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3010 N2.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003011 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3012 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003013 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003014 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003015 }
3016 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003017 case ISD::AND:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003018 assert(VT.isInteger() && "This operator does not apply to FP types!");
3019 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003020 N1.getValueType() == VT && "Binary operator types must match!");
3021 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
3022 // worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003023 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003024 return N2;
Chris Lattner720d8992008-01-26 01:05:42 +00003025 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
3026 return N1;
Chris Lattner16713612008-01-22 19:09:33 +00003027 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003028 case ISD::OR:
3029 case ISD::XOR:
Dan Gohman057240f2008-06-02 22:27:05 +00003030 case ISD::ADD:
3031 case ISD::SUB:
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003032 assert(VT.isInteger() && "This operator does not apply to FP types!");
3033 assert(N1.getValueType() == N2.getValueType() &&
Chris Lattner16713612008-01-22 19:09:33 +00003034 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman057240f2008-06-02 22:27:05 +00003035 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
3036 // it's worth handling here.
Dan Gohmanb72127a2008-03-13 22:13:53 +00003037 if (N2C && N2C->isNullValue())
Chris Lattner16713612008-01-22 19:09:33 +00003038 return N1;
3039 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003040 case ISD::UDIV:
3041 case ISD::UREM:
Chris Lattner51836bb2005-05-15 05:39:08 +00003042 case ISD::MULHU:
3043 case ISD::MULHS:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003044 case ISD::MUL:
3045 case ISD::SDIV:
3046 case ISD::SREM:
Dan Gohman1f3411d2009-01-22 21:58:43 +00003047 assert(VT.isInteger() && "This operator does not apply to FP types!");
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003048 assert(N1.getValueType() == N2.getValueType() &&
3049 N1.getValueType() == VT && "Binary operator types must match!");
3050 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003051 case ISD::FADD:
3052 case ISD::FSUB:
3053 case ISD::FMUL:
3054 case ISD::FDIV:
3055 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003056 if (getTarget().Options.UnsafeFPMath) {
Dan Gohman1275e282009-01-23 19:10:37 +00003057 if (Opcode == ISD::FADD) {
3058 // 0+x --> x
3059 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
3060 if (CFP->getValueAPF().isZero())
3061 return N2;
3062 // x+0 --> x
3063 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3064 if (CFP->getValueAPF().isZero())
3065 return N1;
3066 } else if (Opcode == ISD::FSUB) {
3067 // x-0 --> x
3068 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
3069 if (CFP->getValueAPF().isZero())
3070 return N1;
Michael Ilseman0666f052012-09-10 17:00:37 +00003071 } else if (Opcode == ISD::FMUL) {
3072 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1);
3073 SDValue V = N2;
3074
3075 // If the first operand isn't the constant, try the second
3076 if (!CFP) {
3077 CFP = dyn_cast<ConstantFPSDNode>(N2);
3078 V = N1;
3079 }
3080
3081 if (CFP) {
3082 // 0*x --> 0
3083 if (CFP->isZero())
3084 return SDValue(CFP,0);
3085 // 1*x --> x
3086 if (CFP->isExactlyValue(1.0))
3087 return V;
3088 }
Dan Gohman1275e282009-01-23 19:10:37 +00003089 }
Dan Gohman1f3411d2009-01-22 21:58:43 +00003090 }
Dale Johannesenbb4656c2010-05-15 18:38:02 +00003091 assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
Chris Lattner4e550eb2005-01-16 02:23:22 +00003092 assert(N1.getValueType() == N2.getValueType() &&
3093 N1.getValueType() == VT && "Binary operator types must match!");
3094 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003095 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
3096 assert(N1.getValueType() == VT &&
Duncan Sands13237ac2008-06-06 12:08:01 +00003097 N1.getValueType().isFloatingPoint() &&
3098 N2.getValueType().isFloatingPoint() &&
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003099 "Invalid FCOPYSIGN!");
3100 break;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003101 case ISD::SHL:
3102 case ISD::SRA:
3103 case ISD::SRL:
Nate Begeman1b8121b2006-01-11 21:21:00 +00003104 case ISD::ROTL:
3105 case ISD::ROTR:
Chris Lattner4e550eb2005-01-16 02:23:22 +00003106 assert(VT == N1.getValueType() &&
3107 "Shift operators return type must be the same as their first arg");
Duncan Sands13237ac2008-06-06 12:08:01 +00003108 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003109 "Shifts only work on integers");
Michael Liao6af16fc2013-03-01 18:40:30 +00003110 assert((!VT.isVector() || VT == N2.getValueType()) &&
3111 "Vector shift amounts must be in the same as their first arg");
Chris Lattnere95d1952011-02-13 19:09:16 +00003112 // Verify that the shift amount VT is bit enough to hold valid shift
3113 // amounts. This catches things like trying to shift an i1024 value by an
3114 // i8, which is easy to fall into in generic code that uses
3115 // TLI.getShiftAmount().
3116 assert(N2.getValueType().getSizeInBits() >=
Owen Andersonb2c80da2011-02-25 21:41:48 +00003117 Log2_32_Ceil(N1.getValueType().getSizeInBits()) &&
Chris Lattnere95d1952011-02-13 19:09:16 +00003118 "Invalid use of small shift amount with oversized value!");
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003119
3120 // Always fold shifts of i1 values so the code generator doesn't need to
3121 // handle them. Since we know the size of the shift has to be less than the
3122 // size of the value, the shift/rotate count is guaranteed to be zero.
Owen Anderson9f944592009-08-11 20:47:22 +00003123 if (VT == MVT::i1)
Chris Lattner6b2c4f62008-07-02 17:01:57 +00003124 return N1;
Evan Cheng166a4e62010-01-06 19:38:29 +00003125 if (N2C && N2C->isNullValue())
3126 return N1;
Chris Lattner4e550eb2005-01-16 02:23:22 +00003127 break;
Chris Lattner0b6ba902005-07-10 00:07:11 +00003128 case ISD::FP_ROUND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003129 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003130 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003131 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003132 "Cannot FP_ROUND_INREG integer types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003133 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003134 "FP_ROUND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003135 "type is vector!");
3136 assert((!EVT.isVector() ||
3137 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3138 "Vector element counts must match in FP_ROUND_INREG");
Duncan Sands11dd4242008-06-08 20:54:56 +00003139 assert(EVT.bitsLE(VT) && "Not rounding down!");
Duncan Sandsd278d352011-10-18 12:44:00 +00003140 (void)EVT;
Chris Lattner16713612008-01-22 19:09:33 +00003141 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner0b6ba902005-07-10 00:07:11 +00003142 break;
3143 }
Chris Lattner72733e52008-01-17 07:00:52 +00003144 case ISD::FP_ROUND:
Duncan Sands13237ac2008-06-06 12:08:01 +00003145 assert(VT.isFloatingPoint() &&
3146 N1.getValueType().isFloatingPoint() &&
Duncan Sands11dd4242008-06-08 20:54:56 +00003147 VT.bitsLE(N1.getValueType()) &&
Chris Lattner72733e52008-01-17 07:00:52 +00003148 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner16713612008-01-22 19:09:33 +00003149 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner72733e52008-01-17 07:00:52 +00003150 break;
Nate Begeman43144a22005-08-30 02:44:00 +00003151 case ISD::AssertSext:
Chris Lattner16713612008-01-22 19:09:33 +00003152 case ISD::AssertZext: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003153 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner16713612008-01-22 19:09:33 +00003154 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003155 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner16713612008-01-22 19:09:33 +00003156 "Cannot *_EXTEND_INREG FP types");
Dan Gohman1d459e42009-12-11 21:31:27 +00003157 assert(!EVT.isVector() &&
3158 "AssertSExt/AssertZExt type should be the vector element type "
3159 "rather than the vector type!");
Duncan Sands11dd4242008-06-08 20:54:56 +00003160 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sands56689502008-02-10 10:08:52 +00003161 if (VT == EVT) return N1; // noop assertion.
Chris Lattner16713612008-01-22 19:09:33 +00003162 break;
3163 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003164 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003165 EVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner0b6ba902005-07-10 00:07:11 +00003166 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands13237ac2008-06-06 12:08:01 +00003167 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner0b6ba902005-07-10 00:07:11 +00003168 "Cannot *_EXTEND_INREG FP types");
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003169 assert(EVT.isVector() == VT.isVector() &&
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003170 "SIGN_EXTEND_INREG type should be vector iff the operand "
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003171 "type is vector!");
3172 assert((!EVT.isVector() ||
3173 EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
3174 "Vector element counts must match in SIGN_EXTEND_INREG");
3175 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner16713612008-01-22 19:09:33 +00003176 if (EVT == VT) return N1; // Not actually extending
Chris Lattner0b6ba902005-07-10 00:07:11 +00003177
Chris Lattner16713612008-01-22 19:09:33 +00003178 if (N1C) {
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003179 APInt Val = N1C->getAPIntValue();
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003180 unsigned FromBits = EVT.getScalarType().getSizeInBits();
Dan Gohmanbd2fa562008-02-29 01:47:35 +00003181 Val <<= Val.getBitWidth()-FromBits;
Evan Chenga3cb0902008-03-06 08:20:51 +00003182 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattner751817c2006-05-06 23:05:41 +00003183 return getConstant(Val, VT);
3184 }
Chris Lattner16713612008-01-22 19:09:33 +00003185 break;
3186 }
3187 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnera1f25b02008-03-08 23:43:36 +00003188 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
3189 if (N1.getOpcode() == ISD::UNDEF)
Dale Johannesen84935752009-02-06 23:05:02 +00003190 return getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003191
Chris Lattner16713612008-01-22 19:09:33 +00003192 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
3193 // expanding copies of large vectors from registers.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003194 if (N2C &&
3195 N1.getOpcode() == ISD::CONCAT_VECTORS &&
Chris Lattner16713612008-01-22 19:09:33 +00003196 N1.getNumOperands() > 0) {
3197 unsigned Factor =
Duncan Sands13237ac2008-06-06 12:08:01 +00003198 N1.getOperand(0).getValueType().getVectorNumElements();
Dale Johannesendb393622009-02-03 01:55:44 +00003199 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
Dan Gohmaneffb8942008-09-12 16:56:44 +00003200 N1.getOperand(N2C->getZExtValue() / Factor),
3201 getConstant(N2C->getZExtValue() % Factor,
3202 N2.getValueType()));
Chris Lattner16713612008-01-22 19:09:33 +00003203 }
3204
3205 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
3206 // expanding large vector constants.
Bob Wilson59dbbb22009-04-13 22:05:19 +00003207 if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
3208 SDValue Elt = N1.getOperand(N2C->getZExtValue());
James Molloy1e5c6112012-09-10 14:01:21 +00003209
3210 if (VT != Elt.getValueType())
Bob Wilson59dbbb22009-04-13 22:05:19 +00003211 // If the vector element type is not legal, the BUILD_VECTOR operands
James Molloy1e5c6112012-09-10 14:01:21 +00003212 // are promoted and implicitly truncated, and the result implicitly
3213 // extended. Make that explicit here.
3214 Elt = getAnyExtOrTrunc(Elt, DL, VT);
Michael Ilsemand5f91512012-09-10 16:56:31 +00003215
Bob Wilson59dbbb22009-04-13 22:05:19 +00003216 return Elt;
3217 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003218
Chris Lattner16713612008-01-22 19:09:33 +00003219 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
3220 // operations are lowered to scalars.
Dan Gohman7e3c3922008-08-13 21:51:37 +00003221 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
Mon P Wangd74e0022010-02-01 22:15:09 +00003222 // If the indices are the same, return the inserted element else
3223 // if the indices are known different, extract the element from
Dan Gohmanef04ed52009-01-29 16:10:46 +00003224 // the original vector.
Bill Wendlingde4b2252010-04-30 22:19:17 +00003225 SDValue N1Op2 = N1.getOperand(2);
3226 ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2.getNode());
3227
3228 if (N1Op2C && N2C) {
3229 if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
3230 if (VT == N1.getOperand(1).getValueType())
3231 return N1.getOperand(1);
3232 else
3233 return getSExtOrTrunc(N1.getOperand(1), DL, VT);
3234 }
3235
Dale Johannesendb393622009-02-03 01:55:44 +00003236 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
Bill Wendlingde4b2252010-04-30 22:19:17 +00003237 }
Dan Gohman7e3c3922008-08-13 21:51:37 +00003238 }
Chris Lattner16713612008-01-22 19:09:33 +00003239 break;
3240 case ISD::EXTRACT_ELEMENT:
Dan Gohmaneffb8942008-09-12 16:56:44 +00003241 assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands33ff5c82008-06-25 20:24:48 +00003242 assert(!N1.getValueType().isVector() && !VT.isVector() &&
3243 (N1.getValueType().isInteger() == VT.isInteger()) &&
Eli Friedman04c50252011-08-02 18:38:35 +00003244 N1.getValueType() != VT &&
Duncan Sands33ff5c82008-06-25 20:24:48 +00003245 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands87de65f2008-03-12 20:30:08 +00003246
Chris Lattner16713612008-01-22 19:09:33 +00003247 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
3248 // 64-bit integers into 32-bit parts. Instead of building the extract of
Scott Michelcf0da6c2009-02-17 22:15:04 +00003249 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
Chris Lattner16713612008-01-22 19:09:33 +00003250 if (N1.getOpcode() == ISD::BUILD_PAIR)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003251 return N1.getOperand(N2C->getZExtValue());
Duncan Sands87de65f2008-03-12 20:30:08 +00003252
Chris Lattner16713612008-01-22 19:09:33 +00003253 // EXTRACT_ELEMENT of a constant int is also very common.
3254 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003255 unsigned ElementSize = VT.getSizeInBits();
Dan Gohmaneffb8942008-09-12 16:56:44 +00003256 unsigned Shift = ElementSize * N2C->getZExtValue();
Dan Gohmand8ea0402008-03-24 16:38:05 +00003257 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
3258 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner16713612008-01-22 19:09:33 +00003259 }
3260 break;
David Greeneb6f16112011-01-26 15:38:49 +00003261 case ISD::EXTRACT_SUBVECTOR: {
3262 SDValue Index = N2;
3263 if (VT.isSimple() && N1.getValueType().isSimple()) {
3264 assert(VT.isVector() && N1.getValueType().isVector() &&
3265 "Extract subvector VTs must be a vectors!");
Jack Carter170a5f22013-09-09 22:02:08 +00003266 assert(VT.getVectorElementType() ==
3267 N1.getValueType().getVectorElementType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003268 "Extract subvector VTs must have the same element type!");
Craig Topperd9c27832013-08-15 02:44:19 +00003269 assert(VT.getSimpleVT() <= N1.getSimpleValueType() &&
David Greeneb6f16112011-01-26 15:38:49 +00003270 "Extract subvector must be from larger vector to smaller vector!");
3271
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003272 if (isa<ConstantSDNode>(Index.getNode())) {
3273 assert((VT.getVectorNumElements() +
3274 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greeneb6f16112011-01-26 15:38:49 +00003275 <= N1.getValueType().getVectorNumElements())
3276 && "Extract subvector overflow!");
3277 }
3278
3279 // Trivial extraction.
Craig Topperd9c27832013-08-15 02:44:19 +00003280 if (VT.getSimpleVT() == N1.getSimpleValueType())
David Greeneb6f16112011-01-26 15:38:49 +00003281 return N1;
3282 }
Duncan Sandse7b462b2008-02-20 17:38:09 +00003283 break;
Chris Lattner16713612008-01-22 19:09:33 +00003284 }
David Greeneb6f16112011-01-26 15:38:49 +00003285 }
Chris Lattner16713612008-01-22 19:09:33 +00003286
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003287 // Perform trivial constant folding.
3288 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1.getNode(), N2.getNode());
3289 if (SV.getNode()) return SV;
3290
3291 // Canonicalize constant to RHS if commutative.
3292 if (N1C && !N2C && isCommutativeBinOp(Opcode)) {
3293 std::swap(N1C, N2C);
3294 std::swap(N1, N2);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003295 }
3296
Chris Lattner16713612008-01-22 19:09:33 +00003297 // Constant fold FP operations.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003298 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
3299 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
Chris Lattner0b6ba902005-07-10 00:07:11 +00003300 if (N1CFP) {
Chris Lattner16713612008-01-22 19:09:33 +00003301 if (!N2CFP && isCommutativeBinOp(Opcode)) {
Benjamin Kramer548ffa22013-02-04 15:19:18 +00003302 // Canonicalize constant to RHS if commutative.
Chris Lattner16713612008-01-22 19:09:33 +00003303 std::swap(N1CFP, N2CFP);
3304 std::swap(N1, N2);
Ulrich Weigand3abb3432012-10-29 18:35:49 +00003305 } else if (N2CFP) {
Dale Johannesen446b9002007-08-31 23:34:27 +00003306 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
3307 APFloat::opStatus s;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003308 switch (Opcode) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00003309 case ISD::FADD:
Dale Johannesen446b9002007-08-31 23:34:27 +00003310 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner16713612008-01-22 19:09:33 +00003311 if (s != APFloat::opInvalidOp)
Dale Johannesen446b9002007-08-31 23:34:27 +00003312 return getConstantFP(V1, VT);
3313 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003314 case ISD::FSUB:
Dale Johannesen446b9002007-08-31 23:34:27 +00003315 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
3316 if (s!=APFloat::opInvalidOp)
3317 return getConstantFP(V1, VT);
3318 break;
3319 case ISD::FMUL:
3320 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
3321 if (s!=APFloat::opInvalidOp)
3322 return getConstantFP(V1, VT);
3323 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003324 case ISD::FDIV:
Dale Johannesen446b9002007-08-31 23:34:27 +00003325 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
3326 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3327 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003328 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00003329 case ISD::FREM :
Dale Johannesen446b9002007-08-31 23:34:27 +00003330 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
3331 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
3332 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003333 break;
Dale Johannesen446b9002007-08-31 23:34:27 +00003334 case ISD::FCOPYSIGN:
3335 V1.copySign(V2);
3336 return getConstantFP(V1, VT);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003337 default: break;
3338 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003339 }
Owen Anderson6f1ee162012-04-10 22:46:53 +00003340
3341 if (Opcode == ISD::FP_ROUND) {
3342 APFloat V = N1CFP->getValueAPF(); // make copy
3343 bool ignored;
3344 // This can return overflow, underflow, or inexact; we don't care.
3345 // FIXME need to be more flexible about rounding mode.
Tim Northover29178a32013-01-22 09:46:31 +00003346 (void)V.convert(EVTToAPFloatSemantics(VT),
Owen Anderson6f1ee162012-04-10 22:46:53 +00003347 APFloat::rmNearestTiesToEven, &ignored);
3348 return getConstantFP(V, VT);
3349 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003350 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003351
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003352 // Canonicalize an UNDEF to the RHS, even over a constant.
3353 if (N1.getOpcode() == ISD::UNDEF) {
3354 if (isCommutativeBinOp(Opcode)) {
3355 std::swap(N1, N2);
3356 } else {
3357 switch (Opcode) {
3358 case ISD::FP_ROUND_INREG:
3359 case ISD::SIGN_EXTEND_INREG:
3360 case ISD::SUB:
3361 case ISD::FSUB:
3362 case ISD::FDIV:
3363 case ISD::FREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003364 case ISD::SRA:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003365 return N1; // fold op(undef, arg2) -> undef
3366 case ISD::UDIV:
3367 case ISD::SDIV:
3368 case ISD::UREM:
3369 case ISD::SREM:
Chris Lattner78da6792006-05-08 17:29:49 +00003370 case ISD::SRL:
3371 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003372 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003373 return getConstant(0, VT); // fold op(undef, arg2) -> 0
3374 // For vectors, we can't easily build an all zero vector, just return
3375 // the LHS.
3376 return N2;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003377 }
3378 }
3379 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003380
3381 // Fold a bunch of operators when the RHS is undef.
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003382 if (N2.getOpcode() == ISD::UNDEF) {
3383 switch (Opcode) {
Evan Chengdf1690d2008-03-25 20:08:07 +00003384 case ISD::XOR:
3385 if (N1.getOpcode() == ISD::UNDEF)
3386 // Handle undef ^ undef -> 0 special case. This is a common
3387 // idiom (misuse).
3388 return getConstant(0, VT);
3389 // fallthrough
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003390 case ISD::ADD:
Chris Lattner362621c2007-03-04 20:01:46 +00003391 case ISD::ADDC:
3392 case ISD::ADDE:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003393 case ISD::SUB:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003394 case ISD::UDIV:
3395 case ISD::SDIV:
3396 case ISD::UREM:
3397 case ISD::SREM:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003398 return N2; // fold op(arg1, undef) -> undef
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003399 case ISD::FADD:
3400 case ISD::FSUB:
3401 case ISD::FMUL:
3402 case ISD::FDIV:
3403 case ISD::FREM:
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003404 if (getTarget().Options.UnsafeFPMath)
Dan Gohman7b6b5dd2009-06-04 17:12:12 +00003405 return N2;
3406 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003407 case ISD::MUL:
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003408 case ISD::AND:
Chris Lattner78da6792006-05-08 17:29:49 +00003409 case ISD::SRL:
3410 case ISD::SHL:
Duncan Sands13237ac2008-06-06 12:08:01 +00003411 if (!VT.isVector())
Chris Lattner01a26c72007-04-25 00:00:45 +00003412 return getConstant(0, VT); // fold op(arg1, undef) -> 0
3413 // For vectors, we can't easily build an all zero vector, just return
3414 // the LHS.
3415 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003416 case ISD::OR:
Duncan Sands13237ac2008-06-06 12:08:01 +00003417 if (!VT.isVector())
Duncan Sands3ed76882009-02-01 18:06:53 +00003418 return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
Chris Lattner01a26c72007-04-25 00:00:45 +00003419 // For vectors, we can't easily build an all one vector, just return
3420 // the LHS.
3421 return N1;
Chris Lattner78da6792006-05-08 17:29:49 +00003422 case ISD::SRA:
3423 return N1;
Chris Lattnerbc1b2622006-04-20 05:39:12 +00003424 }
3425 }
Chris Lattner0b6ba902005-07-10 00:07:11 +00003426
Chris Lattner724f7ee2005-05-11 18:57:39 +00003427 // Memoize this node if possible.
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003428 BinarySDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003429 SDVTList VTs = getVTList(VT);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003430 const bool BinOpHasFlags = isBinOpWithFlags(Opcode);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003431 if (VT != MVT::Glue) {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003432 SDValue Ops[] = {N1, N2};
Jim Laskeyf576b422006-10-27 23:46:08 +00003433 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003434 AddNodeIDNode(ID, Opcode, VTs, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003435 if (BinOpHasFlags)
3436 AddBinaryNodeIDCustom(ID, Opcode, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00003437 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003438 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003439 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003440
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003441 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
3442
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003443 CSEMap.InsertNode(N, IP);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003444 } else {
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00003445
3446 N = GetBinarySDNode(Opcode, DL, VTs, N1, N2, nuw, nsw, exact);
Chris Lattner724f7ee2005-05-11 18:57:39 +00003447 }
3448
Chris Lattner061a1ea2005-01-07 07:46:32 +00003449 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003450#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003451 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003452#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003453 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003454}
3455
Andrew Trickef9de2a2013-05-25 02:42:55 +00003456SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003457 SDValue N1, SDValue N2, SDValue N3) {
Chris Lattner061a1ea2005-01-07 07:46:32 +00003458 // Perform various simplifications.
Gabor Greiff304a7a2008-08-28 21:40:38 +00003459 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Chris Lattner061a1ea2005-01-07 07:46:32 +00003460 switch (Opcode) {
Owen Anderson32baf992013-05-09 22:27:13 +00003461 case ISD::FMA: {
3462 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3463 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
3464 ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
3465 if (N1CFP && N2CFP && N3CFP) {
3466 APFloat V1 = N1CFP->getValueAPF();
3467 const APFloat &V2 = N2CFP->getValueAPF();
3468 const APFloat &V3 = N3CFP->getValueAPF();
3469 APFloat::opStatus s =
3470 V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
3471 if (s != APFloat::opInvalidOp)
3472 return getConstantFP(V1, VT);
3473 }
3474 break;
3475 }
Dan Gohman550c9af2008-08-14 20:04:46 +00003476 case ISD::CONCAT_VECTORS:
3477 // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
3478 // one big BUILD_VECTOR.
3479 if (N1.getOpcode() == ISD::BUILD_VECTOR &&
3480 N2.getOpcode() == ISD::BUILD_VECTOR &&
3481 N3.getOpcode() == ISD::BUILD_VECTOR) {
Gabor Greif59f99702010-07-22 17:18:03 +00003482 SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(),
3483 N1.getNode()->op_end());
Dan Gohmandd41bba2010-06-21 19:47:52 +00003484 Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end());
3485 Elts.append(N3.getNode()->op_begin(), N3.getNode()->op_end());
Craig Topper48d114b2014-04-26 18:35:24 +00003486 return getNode(ISD::BUILD_VECTOR, DL, VT, Elts);
Dan Gohman550c9af2008-08-14 20:04:46 +00003487 }
3488 break;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003489 case ISD::SETCC: {
Chris Lattnerbd9acad2006-10-14 00:41:01 +00003490 // Use FoldSetCC to simplify SETCC's.
Dale Johannesenf1163e92009-02-03 00:47:48 +00003491 SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003492 if (Simp.getNode()) return Simp;
Chris Lattnerd47675e2005-08-09 20:20:18 +00003493 break;
3494 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003495 case ISD::SELECT:
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003496 if (N1C) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003497 if (N1C->getZExtValue())
David Blaikie46a9f012012-01-20 21:51:11 +00003498 return N2; // select true, X, Y -> X
3499 return N3; // select false, X, Y -> Y
Anton Korobeynikov035eaac2008-02-20 11:10:28 +00003500 }
Chris Lattner061a1ea2005-01-07 07:46:32 +00003501
3502 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattner061a1ea2005-01-07 07:46:32 +00003503 break;
Chris Lattner00f05892006-03-19 23:56:04 +00003504 case ISD::VECTOR_SHUFFLE:
Torok Edwinfbcc6632009-07-14 16:55:14 +00003505 llvm_unreachable("should use getVectorShuffle constructor!");
David Greenebab5e6e2011-01-26 19:13:22 +00003506 case ISD::INSERT_SUBVECTOR: {
3507 SDValue Index = N3;
3508 if (VT.isSimple() && N1.getValueType().isSimple()
3509 && N2.getValueType().isSimple()) {
3510 assert(VT.isVector() && N1.getValueType().isVector() &&
3511 N2.getValueType().isVector() &&
3512 "Insert subvector VTs must be a vectors");
3513 assert(VT == N1.getValueType() &&
3514 "Dest and insert subvector source types must match!");
Craig Topperd9c27832013-08-15 02:44:19 +00003515 assert(N2.getSimpleValueType() <= N1.getSimpleValueType() &&
David Greenebab5e6e2011-01-26 19:13:22 +00003516 "Insert subvector must be from smaller vector to larger vector!");
Matt Beaumont-Gay29c8c8f2011-02-01 22:12:50 +00003517 if (isa<ConstantSDNode>(Index.getNode())) {
3518 assert((N2.getValueType().getVectorNumElements() +
3519 cast<ConstantSDNode>(Index.getNode())->getZExtValue()
David Greenebab5e6e2011-01-26 19:13:22 +00003520 <= VT.getVectorNumElements())
3521 && "Insert subvector overflow!");
3522 }
3523
3524 // Trivial insertion.
Craig Topperd9c27832013-08-15 02:44:19 +00003525 if (VT.getSimpleVT() == N2.getSimpleValueType())
David Greenebab5e6e2011-01-26 19:13:22 +00003526 return N2;
3527 }
3528 break;
3529 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003530 case ISD::BITCAST:
Dan Gohmana8665142007-06-25 16:23:39 +00003531 // Fold bit_convert nodes from a type to themselves.
3532 if (N1.getValueType() == VT)
3533 return N1;
Chris Lattnera77cb3c2007-04-12 05:58:43 +00003534 break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00003535 }
3536
Chris Lattnerf9c19152005-08-25 19:12:10 +00003537 // Memoize node if it doesn't produce a flag.
3538 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00003539 SDVTList VTs = getVTList(VT);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003540 if (VT != MVT::Glue) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003541 SDValue Ops[] = { N1, N2, N3 };
Jim Laskeyf576b422006-10-27 23:46:08 +00003542 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00003543 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00003544 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00003545 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003546 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00003547
Jack Carter170a5f22013-09-09 22:02:08 +00003548 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3549 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00003550 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003551 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00003552 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
3553 DL.getDebugLoc(), VTs, N1, N2, N3);
Chris Lattnerf9c19152005-08-25 19:12:10 +00003554 }
Daniel Dunbarb827e522009-12-16 20:10:05 +00003555
Chris Lattner061a1ea2005-01-07 07:46:32 +00003556 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003557#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00003558 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00003559#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003560 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00003561}
3562
Andrew Trickef9de2a2013-05-25 02:42:55 +00003563SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003564 SDValue N1, SDValue N2, SDValue N3,
3565 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003566 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00003567 return getNode(Opcode, DL, VT, Ops);
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00003568}
3569
Andrew Trickef9de2a2013-05-25 02:42:55 +00003570SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00003571 SDValue N1, SDValue N2, SDValue N3,
3572 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003573 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00003574 return getNode(Opcode, DL, VT, Ops);
Chris Lattner36db1ed2005-07-10 00:29:18 +00003575}
3576
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003577/// getStackArgumentTokenFactor - Compute a TokenFactor to force all
3578/// the incoming stack arguments to be loaded from the stack.
3579SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
3580 SmallVector<SDValue, 8> ArgChains;
3581
3582 // Include the original chain at the beginning of the list. When this is
3583 // used by target LowerCall hooks, this helps legalize find the
3584 // CALLSEQ_BEGIN node.
3585 ArgChains.push_back(Chain);
3586
3587 // Add a chain value for each stack argument.
3588 for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
3589 UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
3590 if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3591 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3592 if (FI->getIndex() < 0)
3593 ArgChains.push_back(SDValue(L, 1));
3594
3595 // Build a tokenfactor for all the chains.
Craig Topper48d114b2014-04-26 18:35:24 +00003596 return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003597}
3598
Dan Gohman544ab2c2008-04-12 04:36:06 +00003599/// getMemsetValue - Vectorized representation of the memset value
3600/// operand.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003601static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003602 SDLoc dl) {
Evan Cheng61399372010-04-02 19:36:14 +00003603 assert(Value.getOpcode() != ISD::UNDEF);
3604
Chris Lattnerd3aa3aa2010-02-24 22:44:06 +00003605 unsigned NumBits = VT.getScalarType().getSizeInBits();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003606 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003607 assert(C->getAPIntValue().getBitWidth() == 8);
3608 APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
Duncan Sands13237ac2008-06-06 12:08:01 +00003609 if (VT.isInteger())
Evan Chengef377ad2008-05-15 08:39:06 +00003610 return DAG.getConstant(Val, VT);
Tim Northover29178a32013-01-22 09:46:31 +00003611 return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), VT);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003612 }
Evan Chengef377ad2008-05-15 08:39:06 +00003613
Dale Johannesenabf66b82009-02-03 22:26:09 +00003614 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value);
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003615 if (NumBits > 8) {
3616 // Use a multiplication with 0x010101... to extend the input to the
3617 // required length.
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00003618 APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
Benjamin Kramer2fdea4c2011-01-02 19:44:58 +00003619 Value = DAG.getNode(ISD::MUL, dl, VT, Value, DAG.getConstant(Magic, VT));
Evan Chengef377ad2008-05-15 08:39:06 +00003620 }
3621
3622 return Value;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003623}
3624
Dan Gohman544ab2c2008-04-12 04:36:06 +00003625/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
3626/// used when a memcpy is turned into a memset when the source is a constant
3627/// string ptr.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003628static SDValue getMemsetStringVal(EVT VT, SDLoc dl, SelectionDAG &DAG,
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003629 const TargetLowering &TLI, StringRef Str) {
Evan Chengda3db112008-06-30 07:31:25 +00003630 // Handle vector with all elements zero.
3631 if (Str.empty()) {
3632 if (VT.isInteger())
3633 return DAG.getConstant(0, VT);
Duncan Sands14627772010-11-03 12:17:33 +00003634 else if (VT == MVT::f32 || VT == MVT::f64)
Evan Cheng43cd9e32010-04-01 06:04:33 +00003635 return DAG.getConstantFP(0.0, VT);
3636 else if (VT.isVector()) {
3637 unsigned NumElts = VT.getVectorNumElements();
3638 MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
Wesley Peck527da1b2010-11-23 03:31:01 +00003639 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003640 DAG.getConstant(0, EVT::getVectorVT(*DAG.getContext(),
3641 EltVT, NumElts)));
3642 } else
3643 llvm_unreachable("Expected type!");
Evan Chengda3db112008-06-30 07:31:25 +00003644 }
3645
Duncan Sands13237ac2008-06-06 12:08:01 +00003646 assert(!VT.isVector() && "Can't handle vector type here!");
Evan Chengc8444b12013-01-10 22:13:27 +00003647 unsigned NumVTBits = VT.getSizeInBits();
3648 unsigned NumVTBytes = NumVTBits / 8;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003649 unsigned NumBytes = std::min(NumVTBytes, unsigned(Str.size()));
3650
Evan Chengc8444b12013-01-10 22:13:27 +00003651 APInt Val(NumVTBits, 0);
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003652 if (TLI.isLittleEndian()) {
3653 for (unsigned i = 0; i != NumBytes; ++i)
3654 Val |= (uint64_t)(unsigned char)Str[i] << i*8;
3655 } else {
3656 for (unsigned i = 0; i != NumBytes; ++i)
3657 Val |= (uint64_t)(unsigned char)Str[i] << (NumVTBytes-i-1)*8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003658 }
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003659
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00003660 // If the "cost" of materializing the integer immediate is less than the cost
3661 // of a load, then it is cost effective to turn the load into the immediate.
Juergen Ributzka659ce002014-01-28 01:20:14 +00003662 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
3663 if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty))
Evan Cheng79e2ca92012-12-10 23:21:26 +00003664 return DAG.getConstant(Val, VT);
Craig Topperc0196b12014-04-14 00:51:57 +00003665 return SDValue(nullptr, 0);
Rafael Espindola846c19dd2007-10-19 10:41:11 +00003666}
3667
Scott Michelcf0da6c2009-02-17 22:15:04 +00003668/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengef377ad2008-05-15 08:39:06 +00003669///
Andrew Tricke2431c62013-05-25 03:08:10 +00003670static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset, SDLoc dl,
Dan Gohman544ab2c2008-04-12 04:36:06 +00003671 SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003672 EVT VT = Base.getValueType();
Andrew Tricke2431c62013-05-25 03:08:10 +00003673 return DAG.getNode(ISD::ADD, dl,
Dale Johannesendb393622009-02-03 01:55:44 +00003674 VT, Base, DAG.getConstant(Offset, VT));
Dan Gohman544ab2c2008-04-12 04:36:06 +00003675}
3676
Evan Chengef377ad2008-05-15 08:39:06 +00003677/// isMemSrcFromString - Returns true if memcpy source is a string constant.
3678///
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003679static bool isMemSrcFromString(SDValue Src, StringRef &Str) {
Evan Chengef377ad2008-05-15 08:39:06 +00003680 unsigned SrcDelta = 0;
Craig Topperc0196b12014-04-14 00:51:57 +00003681 GlobalAddressSDNode *G = nullptr;
Evan Chengef377ad2008-05-15 08:39:06 +00003682 if (Src.getOpcode() == ISD::GlobalAddress)
3683 G = cast<GlobalAddressSDNode>(Src);
3684 else if (Src.getOpcode() == ISD::ADD &&
3685 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
3686 Src.getOperand(1).getOpcode() == ISD::Constant) {
3687 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
Dan Gohmaneffb8942008-09-12 16:56:44 +00003688 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
Evan Chengef377ad2008-05-15 08:39:06 +00003689 }
3690 if (!G)
3691 return false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003692
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003693 return getConstantStringInfo(G->getGlobal(), Str, SrcDelta, false);
Evan Chengef377ad2008-05-15 08:39:06 +00003694}
Dan Gohman544ab2c2008-04-12 04:36:06 +00003695
Evan Cheng43cd9e32010-04-01 06:04:33 +00003696/// FindOptimalMemOpLowering - Determines the optimial series memory ops
3697/// to replace the memset / memcpy. Return true if the number of memory ops
3698/// is below the threshold. It returns the types of the sequence of
3699/// memory ops to perform memset / memcpy by reference.
3700static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003701 unsigned Limit, uint64_t Size,
3702 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003703 bool IsMemset,
3704 bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00003705 bool MemcpyStrSrc,
Evan Cheng79e2ca92012-12-10 23:21:26 +00003706 bool AllowOverlap,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003707 SelectionDAG &DAG,
3708 const TargetLowering &TLI) {
3709 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3710 "Expecting memcpy / memset source to meet alignment requirement!");
Eric Christopherea336c72011-07-06 22:41:18 +00003711 // If 'SrcAlign' is zero, that means the memory operation does not need to
3712 // load the value, i.e. memset or memcpy from constant string. Otherwise,
3713 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3714 // is the specified alignment of the memory operation. If it is zero, that
3715 // means it's possible to change the alignment of the destination.
3716 // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does
3717 // not need to be loaded.
Evan Cheng61399372010-04-02 19:36:14 +00003718 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00003719 IsMemset, ZeroMemset, MemcpyStrSrc,
Dan Gohman4d273f42010-04-16 20:22:43 +00003720 DAG.getMachineFunction());
Evan Chengef377ad2008-05-15 08:39:06 +00003721
Chris Lattner28dc6c12010-03-07 07:45:08 +00003722 if (VT == MVT::Other) {
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003723 unsigned AS = 0;
3724 if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment(AS) ||
3725 TLI.allowsUnalignedMemoryAccesses(VT, AS)) {
Evan Cheng272a2f82010-04-05 23:33:29 +00003726 VT = TLI.getPointerTy();
Evan Chengef377ad2008-05-15 08:39:06 +00003727 } else {
Evan Cheng43cd9e32010-04-01 06:04:33 +00003728 switch (DstAlign & 7) {
Owen Anderson9f944592009-08-11 20:47:22 +00003729 case 0: VT = MVT::i64; break;
3730 case 4: VT = MVT::i32; break;
3731 case 2: VT = MVT::i16; break;
3732 default: VT = MVT::i8; break;
Evan Chengef377ad2008-05-15 08:39:06 +00003733 }
3734 }
3735
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003736 MVT LVT = MVT::i64;
Evan Chengef377ad2008-05-15 08:39:06 +00003737 while (!TLI.isTypeLegal(LVT))
Owen Andersonc6daf8f2009-08-11 21:59:30 +00003738 LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
Duncan Sands13237ac2008-06-06 12:08:01 +00003739 assert(LVT.isInteger());
Evan Chengef377ad2008-05-15 08:39:06 +00003740
Duncan Sands11dd4242008-06-08 20:54:56 +00003741 if (VT.bitsGT(LVT))
Evan Chengef377ad2008-05-15 08:39:06 +00003742 VT = LVT;
3743 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003744
Dan Gohman544ab2c2008-04-12 04:36:06 +00003745 unsigned NumMemOps = 0;
3746 while (Size != 0) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003747 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003748 while (VTSize > Size) {
Evan Chengef377ad2008-05-15 08:39:06 +00003749 // For now, only use non-vector load / store's for the left-over pieces.
Evan Cheng04e55182012-12-12 00:42:09 +00003750 EVT NewVT = VT;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003751 unsigned NewVTSize;
Evan Cheng04e55182012-12-12 00:42:09 +00003752
3753 bool Found = false;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003754 if (VT.isVector() || VT.isFloatingPoint()) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00003755 NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32;
Evan Cheng04e55182012-12-12 00:42:09 +00003756 if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003757 TLI.isSafeMemOpType(NewVT.getSimpleVT()))
Evan Cheng04e55182012-12-12 00:42:09 +00003758 Found = true;
3759 else if (NewVT == MVT::i64 &&
3760 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) &&
Evan Chengc3d1aca2012-12-12 01:32:07 +00003761 TLI.isSafeMemOpType(MVT::f64)) {
Evan Cheng04e55182012-12-12 00:42:09 +00003762 // i64 is usually not legal on 32-bit targets, but f64 may be.
3763 NewVT = MVT::f64;
3764 Found = true;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003765 }
Evan Cheng79e2ca92012-12-10 23:21:26 +00003766 }
3767
Evan Cheng04e55182012-12-12 00:42:09 +00003768 if (!Found) {
3769 do {
3770 NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1);
3771 if (NewVT == MVT::i8)
3772 break;
Evan Chengc3d1aca2012-12-12 01:32:07 +00003773 } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT()));
Evan Cheng04e55182012-12-12 00:42:09 +00003774 }
3775 NewVTSize = NewVT.getSizeInBits() / 8;
3776
Evan Cheng79e2ca92012-12-10 23:21:26 +00003777 // If the new VT cannot cover all of the remaining bits, then consider
3778 // issuing a (or a pair of) unaligned and overlapping load / store.
3779 // FIXME: Only does this for 64-bit or more since we don't have proper
3780 // cost model for unaligned load / store.
3781 bool Fast;
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003782 unsigned AS = 0;
Evan Chengb7d3d032012-12-12 20:43:23 +00003783 if (NumMemOps && AllowOverlap &&
3784 VTSize >= 8 && NewVTSize < Size &&
Matt Arsenault1b55dd92014-02-05 23:16:05 +00003785 TLI.allowsUnalignedMemoryAccesses(VT, AS, &Fast) && Fast)
Evan Cheng79e2ca92012-12-10 23:21:26 +00003786 VTSize = Size;
3787 else {
3788 VT = NewVT;
3789 VTSize = NewVTSize;
Evan Chengef377ad2008-05-15 08:39:06 +00003790 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003791 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003792
Evan Chengb7d3d032012-12-12 20:43:23 +00003793 if (++NumMemOps > Limit)
3794 return false;
3795
Dan Gohman544ab2c2008-04-12 04:36:06 +00003796 MemOps.push_back(VT);
3797 Size -= VTSize;
3798 }
3799
3800 return true;
3801}
3802
Andrew Trickef9de2a2013-05-25 02:42:55 +00003803static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng85eea4e2010-03-30 18:08:53 +00003804 SDValue Chain, SDValue Dst,
3805 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003806 unsigned Align, bool isVol,
3807 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003808 MachinePointerInfo DstPtrInfo,
3809 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003810 // Turn a memcpy of undef to nop.
3811 if (Src.getOpcode() == ISD::UNDEF)
3812 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003813
Dan Gohman714663a2008-05-29 19:42:22 +00003814 // Expand memcpy to a series of load and store ops if the size operand falls
3815 // below a certain threshold.
Duncan Sands6c25ca42010-11-05 15:20:29 +00003816 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3817 // rather than maybe a humongous number of loads and stores.
Evan Cheng61399372010-04-02 19:36:14 +00003818 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003819 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003820 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003821 MachineFunction &MF = DAG.getMachineFunction();
3822 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendlingc9b22d72012-10-09 07:45:08 +00003823 bool OptSize =
Bill Wendling698e84f2012-12-30 10:32:01 +00003824 MF.getFunction()->getAttributes().
3825 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003826 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3827 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3828 DstAlignCanChange = true;
3829 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3830 if (Align > SrcAlign)
3831 SrcAlign = Align;
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003832 StringRef Str;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003833 bool CopyFromStr = isMemSrcFromString(Src, Str);
3834 bool isZeroStr = CopyFromStr && Str.empty();
Evan Cheng3ae2b792011-01-06 06:52:41 +00003835 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00003836
Evan Cheng4c014c82010-04-01 18:19:11 +00003837 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003838 (DstAlignCanChange ? 0 : Align),
Evan Chengebe47c82010-04-08 07:37:57 +00003839 (isZeroStr ? 0 : SrcAlign),
Evan Cheng962711e2012-12-12 02:34:41 +00003840 false, false, CopyFromStr, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003841 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00003842
Evan Cheng43cd9e32010-04-01 06:04:33 +00003843 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003844 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003845 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Lang Hamesdd478042013-01-31 20:23:43 +00003846
3847 // Don't promote to an alignment that would require dynamic stack
Stephen Lincfe7f352013-07-08 00:37:03 +00003848 // realignment.
Lang Hamesdd478042013-01-31 20:23:43 +00003849 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
3850 if (!TRI->needsStackRealignment(MF))
3851 while (NewAlign > Align &&
3852 TLI.getDataLayout()->exceedsNaturalStackAlignment(NewAlign))
3853 NewAlign /= 2;
3854
Evan Cheng43cd9e32010-04-01 06:04:33 +00003855 if (NewAlign > Align) {
3856 // Give the stack frame object a larger alignment if needed.
3857 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3858 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3859 Align = NewAlign;
3860 }
3861 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00003862
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003863 SmallVector<SDValue, 8> OutChains;
Evan Chengef377ad2008-05-15 08:39:06 +00003864 unsigned NumMemOps = MemOps.size();
Evan Chengda3db112008-06-30 07:31:25 +00003865 uint64_t SrcOff = 0, DstOff = 0;
Chris Lattnerbb1a1bd2009-09-20 17:32:21 +00003866 for (unsigned i = 0; i != NumMemOps; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003867 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003868 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003869 SDValue Value, Store;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003870
Evan Cheng79e2ca92012-12-10 23:21:26 +00003871 if (VTSize > Size) {
3872 // Issuing an unaligned load / store pair that overlaps with the previous
3873 // pair. Adjust the offset accordingly.
3874 assert(i == NumMemOps-1 && i != 0);
3875 SrcOff -= VTSize - Size;
3876 DstOff -= VTSize - Size;
3877 }
3878
Evan Cheng43cd9e32010-04-01 06:04:33 +00003879 if (CopyFromStr &&
3880 (isZeroStr || (VT.isInteger() && !VT.isVector()))) {
Evan Chengef377ad2008-05-15 08:39:06 +00003881 // It's unlikely a store of a vector immediate can be done in a single
3882 // instruction. It would require a load from a constantpool first.
Evan Cheng43cd9e32010-04-01 06:04:33 +00003883 // We only handle zero vectors here.
Evan Chengda3db112008-06-30 07:31:25 +00003884 // FIXME: Handle other cases where store of vector immediate is done in
3885 // a single instruction.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00003886 Value = getMemsetStringVal(VT, dl, DAG, TLI, Str.substr(SrcOff));
Evan Cheng79e2ca92012-12-10 23:21:26 +00003887 if (Value.getNode())
3888 Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003889 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Evan Cheng79e2ca92012-12-10 23:21:26 +00003890 DstPtrInfo.getWithOffset(DstOff), isVol,
3891 false, Align);
3892 }
3893
3894 if (!Store.getNode()) {
Dale Johannesen315fb722009-06-22 20:59:07 +00003895 // The type might not be legal for the target. This should only happen
3896 // if the type is smaller than a legal type, as on PPC, so the right
Dale Johannesen92c11e92009-06-24 17:11:31 +00003897 // thing to do is generate a LoadExt/StoreTrunc pair. These simplify
3898 // to Load/Store if NVT==VT.
Dale Johannesen315fb722009-06-22 20:59:07 +00003899 // FIXME does the case above also need this?
Owen Anderson117c9e82009-08-12 00:36:31 +00003900 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
Dale Johannesen92c11e92009-06-24 17:11:31 +00003901 assert(NVT.bitsGE(VT));
Stuart Hastings81c43062011-02-16 16:23:55 +00003902 Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00003903 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003904 SrcPtrInfo.getWithOffset(SrcOff), VT, isVol, false,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003905 MinAlign(SrcAlign, SrcOff));
Dale Johannesen92c11e92009-06-24 17:11:31 +00003906 Store = DAG.getTruncStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00003907 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003908 DstPtrInfo.getWithOffset(DstOff), VT, isVol,
3909 false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003910 }
3911 OutChains.push_back(Store);
3912 SrcOff += VTSize;
3913 DstOff += VTSize;
Evan Cheng79e2ca92012-12-10 23:21:26 +00003914 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00003915 }
3916
Craig Topper48d114b2014-04-26 18:35:24 +00003917 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00003918}
3919
Andrew Trickef9de2a2013-05-25 02:42:55 +00003920static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00003921 SDValue Chain, SDValue Dst,
3922 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00003923 unsigned Align, bool isVol,
3924 bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00003925 MachinePointerInfo DstPtrInfo,
3926 MachinePointerInfo SrcPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00003927 // Turn a memmove of undef to nop.
3928 if (Src.getOpcode() == ISD::UNDEF)
3929 return Chain;
Dan Gohman714663a2008-05-29 19:42:22 +00003930
3931 // Expand memmove to a series of load and store ops if the size operand falls
3932 // below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00003933 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003934 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00003935 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003936 MachineFunction &MF = DAG.getMachineFunction();
3937 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00003938 bool OptSize = MF.getFunction()->getAttributes().
3939 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003940 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
3941 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
3942 DstAlignCanChange = true;
3943 unsigned SrcAlign = DAG.InferPtrAlignment(Src);
3944 if (Align > SrcAlign)
3945 SrcAlign = Align;
Evan Cheng3ae2b792011-01-06 06:52:41 +00003946 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003947
Evan Cheng4c014c82010-04-01 18:19:11 +00003948 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
Evan Cheng962711e2012-12-12 02:34:41 +00003949 (DstAlignCanChange ? 0 : Align), SrcAlign,
3950 false, false, false, false, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003951 return SDValue();
Dan Gohman714663a2008-05-29 19:42:22 +00003952
Evan Cheng43cd9e32010-04-01 06:04:33 +00003953 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00003954 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003955 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00003956 if (NewAlign > Align) {
3957 // Give the stack frame object a larger alignment if needed.
3958 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
3959 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
3960 Align = NewAlign;
3961 }
3962 }
Dan Gohman714663a2008-05-29 19:42:22 +00003963
Evan Cheng43cd9e32010-04-01 06:04:33 +00003964 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003965 SmallVector<SDValue, 8> LoadValues;
3966 SmallVector<SDValue, 8> LoadChains;
3967 SmallVector<SDValue, 8> OutChains;
Dan Gohman714663a2008-05-29 19:42:22 +00003968 unsigned NumMemOps = MemOps.size();
3969 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003970 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003971 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00003972 SDValue Value;
Dan Gohman714663a2008-05-29 19:42:22 +00003973
Dale Johannesenabf66b82009-02-03 22:26:09 +00003974 Value = DAG.getLoad(VT, dl, Chain,
Andrew Tricke2431c62013-05-25 03:08:10 +00003975 getMemBasePlusOffset(Src, SrcOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003976 SrcPtrInfo.getWithOffset(SrcOff), isVol,
Pete Cooper82cd9e82011-11-08 18:42:53 +00003977 false, false, SrcAlign);
Dan Gohman714663a2008-05-29 19:42:22 +00003978 LoadValues.push_back(Value);
3979 LoadChains.push_back(Value.getValue(1));
3980 SrcOff += VTSize;
3981 }
Craig Topper48d114b2014-04-26 18:35:24 +00003982 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Dan Gohman714663a2008-05-29 19:42:22 +00003983 OutChains.clear();
3984 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003985 EVT VT = MemOps[i];
Duncan Sands13237ac2008-06-06 12:08:01 +00003986 unsigned VTSize = VT.getSizeInBits() / 8;
Rafael Espindola44fee4e2013-10-01 13:32:03 +00003987 SDValue Store;
Dan Gohman714663a2008-05-29 19:42:22 +00003988
Dale Johannesenabf66b82009-02-03 22:26:09 +00003989 Store = DAG.getStore(Chain, dl, LoadValues[i],
Andrew Tricke2431c62013-05-25 03:08:10 +00003990 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00003991 DstPtrInfo.getWithOffset(DstOff), isVol, false, Align);
Dan Gohman714663a2008-05-29 19:42:22 +00003992 OutChains.push_back(Store);
3993 DstOff += VTSize;
3994 }
3995
Craig Topper48d114b2014-04-26 18:35:24 +00003996 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman714663a2008-05-29 19:42:22 +00003997}
3998
Serge Pavlov8ec39992013-09-17 16:24:42 +00003999/// \brief Lower the call to 'memset' intrinsic function into a series of store
4000/// operations.
4001///
4002/// \param DAG Selection DAG where lowered code is placed.
4003/// \param dl Link to corresponding IR location.
4004/// \param Chain Control flow dependency.
4005/// \param Dst Pointer to destination memory location.
4006/// \param Src Value of byte to write into the memory.
4007/// \param Size Number of bytes to write.
4008/// \param Align Alignment of the destination in bytes.
4009/// \param isVol True if destination is volatile.
4010/// \param DstPtrInfo IR information on the memory pointer.
4011/// \returns New head in the control flow, if lowering was successful, empty
4012/// SDValue otherwise.
4013///
4014/// The function tries to replace 'llvm.memset' intrinsic with several store
4015/// operations and value calculation code. This is usually profitable for small
4016/// memory size.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004017static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl,
Evan Cheng43cd9e32010-04-01 06:04:33 +00004018 SDValue Chain, SDValue Dst,
4019 SDValue Src, uint64_t Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004020 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004021 MachinePointerInfo DstPtrInfo) {
Evan Cheng61399372010-04-02 19:36:14 +00004022 // Turn a memset of undef to nop.
4023 if (Src.getOpcode() == ISD::UNDEF)
4024 return Chain;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004025
4026 // Expand memset to a series of load/store ops if the size operand
4027 // falls below a certain threshold.
Evan Cheng61399372010-04-02 19:36:14 +00004028 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004029 std::vector<EVT> MemOps;
Evan Cheng43cd9e32010-04-01 06:04:33 +00004030 bool DstAlignCanChange = false;
Evan Cheng3ae2b792011-01-06 06:52:41 +00004031 MachineFunction &MF = DAG.getMachineFunction();
4032 MachineFrameInfo *MFI = MF.getFrameInfo();
Bill Wendling698e84f2012-12-30 10:32:01 +00004033 bool OptSize = MF.getFunction()->getAttributes().
4034 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004035 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
4036 if (FI && !MFI->isFixedObjectIndex(FI->getIndex()))
4037 DstAlignCanChange = true;
Lang Hames58dba012011-10-26 23:50:43 +00004038 bool IsZeroVal =
Evan Cheng61399372010-04-02 19:36:14 +00004039 isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue();
Evan Cheng3ae2b792011-01-06 06:52:41 +00004040 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
Evan Cheng43cd9e32010-04-01 06:04:33 +00004041 Size, (DstAlignCanChange ? 0 : Align), 0,
Evan Cheng962711e2012-12-12 02:34:41 +00004042 true, IsZeroVal, false, true, DAG, TLI))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004043 return SDValue();
Dan Gohman544ab2c2008-04-12 04:36:06 +00004044
Evan Cheng43cd9e32010-04-01 06:04:33 +00004045 if (DstAlignCanChange) {
Chris Lattner229907c2011-07-18 04:54:35 +00004046 Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00004047 unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Cheng43cd9e32010-04-01 06:04:33 +00004048 if (NewAlign > Align) {
4049 // Give the stack frame object a larger alignment if needed.
4050 if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign)
4051 MFI->setObjectAlignment(FI->getIndex(), NewAlign);
4052 Align = NewAlign;
4053 }
4054 }
4055
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004056 SmallVector<SDValue, 8> OutChains;
Dan Gohmanda440542008-04-28 17:15:20 +00004057 uint64_t DstOff = 0;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004058 unsigned NumMemOps = MemOps.size();
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004059
4060 // Find the largest store and generate the bit pattern for it.
4061 EVT LargestVT = MemOps[0];
4062 for (unsigned i = 1; i < NumMemOps; i++)
4063 if (MemOps[i].bitsGT(LargestVT))
4064 LargestVT = MemOps[i];
4065 SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
4066
Dan Gohman544ab2c2008-04-12 04:36:06 +00004067 for (unsigned i = 0; i < NumMemOps; i++) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004068 EVT VT = MemOps[i];
Evan Cheng79e2ca92012-12-10 23:21:26 +00004069 unsigned VTSize = VT.getSizeInBits() / 8;
4070 if (VTSize > Size) {
4071 // Issuing an unaligned load / store pair that overlaps with the previous
4072 // pair. Adjust the offset accordingly.
4073 assert(i == NumMemOps-1 && i != 0);
4074 DstOff -= VTSize - Size;
4075 }
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004076
4077 // If this store is smaller than the largest store see whether we can get
4078 // the smaller value for free with a truncate.
4079 SDValue Value = MemSetValue;
4080 if (VT.bitsLT(LargestVT)) {
4081 if (!LargestVT.isVector() && !VT.isVector() &&
4082 TLI.isTruncateFree(LargestVT, VT))
4083 Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
4084 else
4085 Value = getMemsetValue(Src, VT, DAG, dl);
4086 }
4087 assert(Value.getValueType() == VT && "Value with wrong type.");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004088 SDValue Store = DAG.getStore(Chain, dl, Value,
Andrew Tricke2431c62013-05-25 03:08:10 +00004089 getMemBasePlusOffset(Dst, DstOff, dl, DAG),
Chris Lattner2510de22010-09-21 05:40:29 +00004090 DstPtrInfo.getWithOffset(DstOff),
Dale Johannesened0d8402010-11-18 01:35:23 +00004091 isVol, false, Align);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004092 OutChains.push_back(Store);
Benjamin Kramer25e6e062011-01-02 19:57:05 +00004093 DstOff += VT.getSizeInBits() / 8;
Evan Cheng79e2ca92012-12-10 23:21:26 +00004094 Size -= VTSize;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004095 }
4096
Craig Topper48d114b2014-04-26 18:35:24 +00004097 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004098}
4099
Andrew Trickef9de2a2013-05-25 02:42:55 +00004100SDValue SelectionDAG::getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004101 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004102 unsigned Align, bool isVol, bool AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004103 MachinePointerInfo DstPtrInfo,
4104 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004105 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004106
4107 // Check to see if we should lower the memcpy to loads and stores first.
4108 // For cases within the target-specified limits, this is the best choice.
4109 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4110 if (ConstantSize) {
4111 // Memcpy with size zero? Just return the original chain.
4112 if (ConstantSize->isNullValue())
4113 return Chain;
4114
Evan Cheng43cd9e32010-04-01 06:04:33 +00004115 SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
4116 ConstantSize->getZExtValue(),Align,
Chris Lattner2510de22010-09-21 05:40:29 +00004117 isVol, false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004118 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004119 return Result;
4120 }
4121
4122 // Then check to see if we should lower the memcpy with target-specific
4123 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004124 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004125 TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align,
Mon P Wangc576ee92010-04-04 03:10:48 +00004126 isVol, AlwaysInline,
Chris Lattner2510de22010-09-21 05:40:29 +00004127 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004128 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004129 return Result;
4130
4131 // If we really need inline code and the target declined to provide it,
4132 // use a (potentially long) sequence of loads and stores.
4133 if (AlwaysInline) {
4134 assert(ConstantSize && "AlwaysInline requires a constant size!");
Dale Johannesenabf66b82009-02-03 22:26:09 +00004135 return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004136 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004137 true, DstPtrInfo, SrcPtrInfo);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004138 }
4139
Dan Gohmanf38547c2010-04-05 20:24:08 +00004140 // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
4141 // memcpy is not guaranteed to be safe. libc memcpys aren't required to
4142 // respect volatile, so they may do things like read or write memory
4143 // beyond the given memory regions. But fixing this isn't easy, and most
4144 // people don't care.
4145
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004146 const TargetLowering *TLI = TM.getTargetLowering();
4147
Dan Gohman544ab2c2008-04-12 04:36:06 +00004148 // Emit a library call.
4149 TargetLowering::ArgListTy Args;
4150 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004151 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004152 Entry.Node = Dst; Args.push_back(Entry);
4153 Entry.Node = Src; Args.push_back(Entry);
4154 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004155 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004156 TargetLowering::CallLoweringInfo CLI(*this);
4157 CLI.setDebugLoc(dl).setChain(Chain)
4158 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY),
4159 Type::getVoidTy(*getContext()),
4160 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
4161 TLI->getPointerTy()), &Args, 0)
4162 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004163 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004164
Dan Gohman544ab2c2008-04-12 04:36:06 +00004165 return CallResult.second;
4166}
4167
Andrew Trickef9de2a2013-05-25 02:42:55 +00004168SDValue SelectionDAG::getMemmove(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004169 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004170 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004171 MachinePointerInfo DstPtrInfo,
4172 MachinePointerInfo SrcPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004173 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004174
Dan Gohman714663a2008-05-29 19:42:22 +00004175 // Check to see if we should lower the memmove to loads and stores first.
4176 // For cases within the target-specified limits, this is the best choice.
4177 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4178 if (ConstantSize) {
4179 // Memmove with size zero? Just return the original chain.
4180 if (ConstantSize->isNullValue())
4181 return Chain;
4182
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004183 SDValue Result =
Dale Johannesenabf66b82009-02-03 22:26:09 +00004184 getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
Mon P Wangc576ee92010-04-04 03:10:48 +00004185 ConstantSize->getZExtValue(), Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004186 false, DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004187 if (Result.getNode())
Dan Gohman714663a2008-05-29 19:42:22 +00004188 return Result;
4189 }
Dan Gohman544ab2c2008-04-12 04:36:06 +00004190
4191 // Then check to see if we should lower the memmove with target-specific
4192 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004193 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004194 TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004195 DstPtrInfo, SrcPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004196 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004197 return Result;
4198
Mon P Wangbf862242010-04-06 08:27:51 +00004199 // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
4200 // not be safe. See memcpy above for more details.
4201
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004202 const TargetLowering *TLI = TM.getTargetLowering();
4203
Dan Gohman544ab2c2008-04-12 04:36:06 +00004204 // Emit a library call.
4205 TargetLowering::ArgListTy Args;
4206 TargetLowering::ArgListEntry Entry;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004207 Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004208 Entry.Node = Dst; Args.push_back(Entry);
4209 Entry.Node = Src; Args.push_back(Entry);
4210 Entry.Node = Size; Args.push_back(Entry);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004211 // FIXME: pass in SDLoc
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004212 TargetLowering::CallLoweringInfo CLI(*this);
4213 CLI.setDebugLoc(dl).setChain(Chain)
4214 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
4215 Type::getVoidTy(*getContext()),
4216 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
4217 TLI->getPointerTy()), &Args, 0)
4218 .setDiscardResult();
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004219 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004220
Dan Gohman544ab2c2008-04-12 04:36:06 +00004221 return CallResult.second;
4222}
4223
Andrew Trickef9de2a2013-05-25 02:42:55 +00004224SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004225 SDValue Src, SDValue Size,
Mon P Wangc576ee92010-04-04 03:10:48 +00004226 unsigned Align, bool isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004227 MachinePointerInfo DstPtrInfo) {
Chandler Carruth121dbf82013-02-25 14:29:38 +00004228 assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
Dan Gohman544ab2c2008-04-12 04:36:06 +00004229
4230 // Check to see if we should lower the memset to stores first.
4231 // For cases within the target-specified limits, this is the best choice.
4232 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4233 if (ConstantSize) {
4234 // Memset with size zero? Just return the original chain.
4235 if (ConstantSize->isNullValue())
4236 return Chain;
4237
Mon P Wangc576ee92010-04-04 03:10:48 +00004238 SDValue Result =
4239 getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
Chris Lattner2510de22010-09-21 05:40:29 +00004240 Align, isVol, DstPtrInfo);
Mon P Wangc576ee92010-04-04 03:10:48 +00004241
Gabor Greiff304a7a2008-08-28 21:40:38 +00004242 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004243 return Result;
4244 }
4245
4246 // Then check to see if we should lower the memset with target-specific
4247 // code. If the target chooses to do this, this is the next best.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004248 SDValue Result =
Dan Gohmanbb919df2010-05-11 17:31:57 +00004249 TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol,
Chris Lattner2510de22010-09-21 05:40:29 +00004250 DstPtrInfo);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004251 if (Result.getNode())
Dan Gohman544ab2c2008-04-12 04:36:06 +00004252 return Result;
4253
Wesley Peck527da1b2010-11-23 03:31:01 +00004254 // Emit a library call.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00004255 const TargetLowering *TLI = TM.getTargetLowering();
4256 Type *IntPtrTy = TLI->getDataLayout()->getIntPtrType(*getContext());
Dan Gohman544ab2c2008-04-12 04:36:06 +00004257 TargetLowering::ArgListTy Args;
4258 TargetLowering::ArgListEntry Entry;
4259 Entry.Node = Dst; Entry.Ty = IntPtrTy;
4260 Args.push_back(Entry);
4261 // Extend or truncate the argument to be an i32 value for the call.
Owen Anderson9f944592009-08-11 20:47:22 +00004262 if (Src.getValueType().bitsGT(MVT::i32))
4263 Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004264 else
Owen Anderson9f944592009-08-11 20:47:22 +00004265 Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
Owen Anderson55f1c092009-08-13 21:58:54 +00004266 Entry.Node = Src;
4267 Entry.Ty = Type::getInt32Ty(*getContext());
4268 Entry.isSExt = true;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004269 Args.push_back(Entry);
Owen Anderson55f1c092009-08-13 21:58:54 +00004270 Entry.Node = Size;
4271 Entry.Ty = IntPtrTy;
4272 Entry.isSExt = false;
Dan Gohman544ab2c2008-04-12 04:36:06 +00004273 Args.push_back(Entry);
Justin Holewinskiaa583972012-05-25 16:35:28 +00004274
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00004275 // FIXME: pass in SDLoc
4276 TargetLowering::CallLoweringInfo CLI(*this);
4277 CLI.setDebugLoc(dl).setChain(Chain)
4278 .setCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET),
4279 Type::getVoidTy(*getContext()),
4280 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
4281 TLI->getPointerTy()), &Args, 0)
4282 .setDiscardResult();
4283
4284 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
Dan Gohman544ab2c2008-04-12 04:36:06 +00004285 return CallResult.second;
Rafael Espindola846c19dd2007-10-19 10:41:11 +00004286}
4287
Andrew Trickef9de2a2013-05-25 02:42:55 +00004288SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004289 SDVTList VTList, ArrayRef<SDValue> Ops,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004290 MachineMemOperand *MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004291 AtomicOrdering SuccessOrdering,
4292 AtomicOrdering FailureOrdering,
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004293 SynchronizationScope SynchScope) {
4294 FoldingSetNodeID ID;
4295 ID.AddInteger(MemVT.getRawBits());
Craig Topper8c0b4d02014-04-28 05:57:50 +00004296 AddNodeIDNode(ID, Opcode, VTList, Ops);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004297 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004298 void* IP = nullptr;
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004299 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4300 cast<AtomicSDNode>(E)->refineAlignment(MMO);
4301 return SDValue(E, 0);
4302 }
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004303
4304 // Allocate the operands array for the node out of the BumpPtrAllocator, since
4305 // SDNode doesn't have access to it. This memory will be "leaked" when
4306 // the node is deallocated, but recovered when the allocator is released.
4307 // If the number of operands is less than 5 we use AtomicSDNode's internal
4308 // storage.
Craig Topper8c0b4d02014-04-28 05:57:50 +00004309 unsigned NumOps = Ops.size();
4310 SDUse *DynOps = NumOps > 4 ? OperandAllocator.Allocate<SDUse>(NumOps)
4311 : nullptr;
Benjamin Kramerc3c807b2013-09-29 11:18:56 +00004312
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004313 SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(),
4314 dl.getDebugLoc(), VTList, MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004315 Ops.data(), DynOps, NumOps, MMO,
Tim Northovere94a5182014-03-11 10:48:52 +00004316 SuccessOrdering, FailureOrdering,
4317 SynchScope);
Amara Emersonb4ad2f32013-09-26 12:22:36 +00004318 CSEMap.InsertNode(N, IP);
4319 AllNodes.push_back(N);
4320 return SDValue(N, 0);
4321}
4322
4323SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Craig Topper8c0b4d02014-04-28 05:57:50 +00004324 SDVTList VTList, ArrayRef<SDValue> Ops,
Tim Northovere94a5182014-03-11 10:48:52 +00004325 MachineMemOperand *MMO,
4326 AtomicOrdering Ordering,
4327 SynchronizationScope SynchScope) {
Craig Topper8c0b4d02014-04-28 05:57:50 +00004328 return getAtomic(Opcode, dl, MemVT, VTList, Ops, MMO, Ordering,
Tim Northovere94a5182014-03-11 10:48:52 +00004329 Ordering, SynchScope);
4330}
4331
Tim Northover420a2162014-06-13 14:24:07 +00004332SDValue SelectionDAG::getAtomicCmpSwap(
4333 unsigned Opcode, SDLoc dl, EVT MemVT, SDVTList VTs, SDValue Chain,
4334 SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo,
4335 unsigned Alignment, AtomicOrdering SuccessOrdering,
4336 AtomicOrdering FailureOrdering, SynchronizationScope SynchScope) {
4337 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4338 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
4339 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4340
Dan Gohman48b185d2009-09-25 20:36:54 +00004341 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4342 Alignment = getEVTAlignment(MemVT);
4343
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004344 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004345
Eli Friedmane978d2f2011-09-07 02:23:42 +00004346 // FIXME: Volatile isn't really correct; we should keep track of atomic
4347 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004348 unsigned Flags = MachineMemOperand::MOVolatile;
Tim Northover420a2162014-06-13 14:24:07 +00004349 Flags |= MachineMemOperand::MOLoad;
4350 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004351
4352 MachineMemOperand *MMO =
Chris Lattner15d84c42010-09-21 04:53:42 +00004353 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment);
Dan Gohman48b185d2009-09-25 20:36:54 +00004354
Tim Northover420a2162014-06-13 14:24:07 +00004355 return getAtomicCmpSwap(Opcode, dl, MemVT, VTs, Chain, Ptr, Cmp, Swp, MMO,
4356 SuccessOrdering, FailureOrdering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004357}
4358
Tim Northover420a2162014-06-13 14:24:07 +00004359SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, SDLoc dl, EVT MemVT,
4360 SDVTList VTs, SDValue Chain, SDValue Ptr,
4361 SDValue Cmp, SDValue Swp,
4362 MachineMemOperand *MMO,
4363 AtomicOrdering SuccessOrdering,
4364 AtomicOrdering FailureOrdering,
4365 SynchronizationScope SynchScope) {
4366 assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
4367 Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004368 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
4369
Dale Johannesen839acbb2009-01-29 00:47:48 +00004370 SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
Tim Northover420a2162014-06-13 14:24:07 +00004371 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO,
4372 SuccessOrdering, FailureOrdering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004373}
4374
Andrew Trickef9de2a2013-05-25 02:42:55 +00004375SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004376 SDValue Chain,
Scott Michelcf0da6c2009-02-17 22:15:04 +00004377 SDValue Ptr, SDValue Val,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004378 const Value* PtrVal,
Eli Friedmanadec5872011-07-29 03:05:32 +00004379 unsigned Alignment,
4380 AtomicOrdering Ordering,
4381 SynchronizationScope SynchScope) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004382 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4383 Alignment = getEVTAlignment(MemVT);
4384
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004385 MachineFunction &MF = getMachineFunction();
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004386 // An atomic store does not load. An atomic load does not store.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004387 // (An atomicrmw obviously both loads and stores.)
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004388 // For now, atomics are considered to be volatile always, and they are
4389 // chained as such.
Eli Friedmane978d2f2011-09-07 02:23:42 +00004390 // FIXME: Volatile isn't really correct; we should keep track of atomic
4391 // orderings in the memoperand.
Jakob Stoklund Olesen87cb4712012-08-28 03:11:32 +00004392 unsigned Flags = MachineMemOperand::MOVolatile;
4393 if (Opcode != ISD::ATOMIC_STORE)
4394 Flags |= MachineMemOperand::MOLoad;
4395 if (Opcode != ISD::ATOMIC_LOAD)
4396 Flags |= MachineMemOperand::MOStore;
Dan Gohman48b185d2009-09-25 20:36:54 +00004397
4398 MachineMemOperand *MMO =
Chris Lattnerb5f49202010-09-21 04:46:39 +00004399 MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
Dan Gohman48b185d2009-09-25 20:36:54 +00004400 MemVT.getStoreSize(), Alignment);
4401
Eli Friedmanadec5872011-07-29 03:05:32 +00004402 return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO,
4403 Ordering, SynchScope);
Dan Gohman48b185d2009-09-25 20:36:54 +00004404}
4405
Andrew Trickef9de2a2013-05-25 02:42:55 +00004406SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Dan Gohman48b185d2009-09-25 20:36:54 +00004407 SDValue Chain,
4408 SDValue Ptr, SDValue Val,
Eli Friedmanadec5872011-07-29 03:05:32 +00004409 MachineMemOperand *MMO,
4410 AtomicOrdering Ordering,
4411 SynchronizationScope SynchScope) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004412 assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
4413 Opcode == ISD::ATOMIC_LOAD_SUB ||
4414 Opcode == ISD::ATOMIC_LOAD_AND ||
4415 Opcode == ISD::ATOMIC_LOAD_OR ||
4416 Opcode == ISD::ATOMIC_LOAD_XOR ||
4417 Opcode == ISD::ATOMIC_LOAD_NAND ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004418 Opcode == ISD::ATOMIC_LOAD_MIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004419 Opcode == ISD::ATOMIC_LOAD_MAX ||
Scott Michelcf0da6c2009-02-17 22:15:04 +00004420 Opcode == ISD::ATOMIC_LOAD_UMIN ||
Dale Johannesen839acbb2009-01-29 00:47:48 +00004421 Opcode == ISD::ATOMIC_LOAD_UMAX ||
Eli Friedman342e8df2011-08-24 20:50:09 +00004422 Opcode == ISD::ATOMIC_SWAP ||
4423 Opcode == ISD::ATOMIC_STORE) &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004424 "Invalid Atomic Op");
4425
Owen Anderson53aa7a92009-08-10 22:56:29 +00004426 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004427
Eli Friedman342e8df2011-08-24 20:50:09 +00004428 SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
4429 getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004430 SDValue Ops[] = {Chain, Ptr, Val};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004431 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004432}
4433
Andrew Trickef9de2a2013-05-25 02:42:55 +00004434SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
Eli Friedman342e8df2011-08-24 20:50:09 +00004435 EVT VT, SDValue Chain,
4436 SDValue Ptr,
Eli Friedman342e8df2011-08-24 20:50:09 +00004437 MachineMemOperand *MMO,
4438 AtomicOrdering Ordering,
4439 SynchronizationScope SynchScope) {
4440 assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
4441
4442 SDVTList VTs = getVTList(VT, MVT::Other);
Eli Friedman342e8df2011-08-24 20:50:09 +00004443 SDValue Ops[] = {Chain, Ptr};
Craig Topper8c0b4d02014-04-28 05:57:50 +00004444 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO, Ordering, SynchScope);
Eli Friedman342e8df2011-08-24 20:50:09 +00004445}
4446
Duncan Sands739a0542008-07-02 17:40:58 +00004447/// getMergeValues - Create a MERGE_VALUES node from the given operands.
Craig Topper64941d92014-04-27 19:20:57 +00004448SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, SDLoc dl) {
4449 if (Ops.size() == 1)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004450 return Ops[0];
4451
Owen Anderson53aa7a92009-08-10 22:56:29 +00004452 SmallVector<EVT, 4> VTs;
Craig Topper64941d92014-04-27 19:20:57 +00004453 VTs.reserve(Ops.size());
4454 for (unsigned i = 0; i < Ops.size(); ++i)
Dale Johannesenae7992a2009-02-02 20:47:48 +00004455 VTs.push_back(Ops[i].getValueType());
Craig Topperbb533072014-04-27 19:21:02 +00004456 return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops);
Dale Johannesenae7992a2009-02-02 20:47:48 +00004457}
4458
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004459SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004460SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004461 ArrayRef<SDValue> Ops,
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004462 EVT MemVT, MachinePointerInfo PtrInfo,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004463 unsigned Align, bool Vol,
4464 bool ReadMem, bool WriteMem) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004465 if (Align == 0) // Ensure that codegen never sees alignment 0
4466 Align = getEVTAlignment(MemVT);
4467
4468 MachineFunction &MF = getMachineFunction();
4469 unsigned Flags = 0;
4470 if (WriteMem)
4471 Flags |= MachineMemOperand::MOStore;
4472 if (ReadMem)
4473 Flags |= MachineMemOperand::MOLoad;
4474 if (Vol)
4475 Flags |= MachineMemOperand::MOVolatile;
4476 MachineMemOperand *MMO =
Chris Lattnerd2d58ad2010-09-21 04:57:15 +00004477 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align);
Dan Gohman48b185d2009-09-25 20:36:54 +00004478
Craig Topper206fcd42014-04-26 19:29:41 +00004479 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004480}
4481
4482SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004483SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList,
Craig Topper206fcd42014-04-26 19:29:41 +00004484 ArrayRef<SDValue> Ops, EVT MemVT,
4485 MachineMemOperand *MMO) {
Dan Gohman48b185d2009-09-25 20:36:54 +00004486 assert((Opcode == ISD::INTRINSIC_VOID ||
4487 Opcode == ISD::INTRINSIC_W_CHAIN ||
Dale Johannesene660f4d2010-10-26 23:11:10 +00004488 Opcode == ISD::PREFETCH ||
Nadav Rotem7c277da2012-09-06 09:17:37 +00004489 Opcode == ISD::LIFETIME_START ||
4490 Opcode == ISD::LIFETIME_END ||
Dan Gohman48b185d2009-09-25 20:36:54 +00004491 (Opcode <= INT_MAX &&
4492 (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
4493 "Opcode is not a memory-accessing opcode!");
4494
Dale Johannesen839acbb2009-01-29 00:47:48 +00004495 // Memoize the node unless it returns a flag.
4496 MemIntrinsicSDNode *N;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004497 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004498 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004499 AddNodeIDNode(ID, Opcode, VTList, Ops);
Pete Cooper91244262012-07-30 20:23:19 +00004500 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004501 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004502 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4503 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004504 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004505 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004506
Jack Carter170a5f22013-09-09 22:02:08 +00004507 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4508 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004509 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004510 CSEMap.InsertNode(N, IP);
4511 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004512 N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(),
4513 dl.getDebugLoc(), VTList, Ops,
Craig Topper206fcd42014-04-26 19:29:41 +00004514 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004515 }
4516 AllNodes.push_back(N);
4517 return SDValue(N, 0);
4518}
4519
Chris Lattnerea952f02010-09-21 17:24:05 +00004520/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4521/// MachinePointerInfo record from it. This is particularly useful because the
4522/// code generator has many cases where it doesn't bother passing in a
4523/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4524static MachinePointerInfo InferPointerInfo(SDValue Ptr, int64_t Offset = 0) {
4525 // If this is FI+Offset, we can model it.
4526 if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
4527 return MachinePointerInfo::getFixedStack(FI->getIndex(), Offset);
4528
4529 // If this is (FI+Offset1)+Offset2, we can model it.
4530 if (Ptr.getOpcode() != ISD::ADD ||
4531 !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
4532 !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
4533 return MachinePointerInfo();
Wesley Peck527da1b2010-11-23 03:31:01 +00004534
Chris Lattnerea952f02010-09-21 17:24:05 +00004535 int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4536 return MachinePointerInfo::getFixedStack(FI, Offset+
4537 cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
4538}
4539
4540/// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
4541/// MachinePointerInfo record from it. This is particularly useful because the
4542/// code generator has many cases where it doesn't bother passing in a
4543/// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
4544static MachinePointerInfo InferPointerInfo(SDValue Ptr, SDValue OffsetOp) {
4545 // If the 'Offset' value isn't a constant, we can't handle this.
4546 if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
4547 return InferPointerInfo(Ptr, OffsetNode->getSExtValue());
4548 if (OffsetOp.getOpcode() == ISD::UNDEF)
4549 return InferPointerInfo(Ptr);
4550 return MachinePointerInfo();
4551}
Wesley Peck527da1b2010-11-23 03:31:01 +00004552
Chris Lattnerea952f02010-09-21 17:24:05 +00004553
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004554SDValue
4555SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004556 EVT VT, SDLoc dl, SDValue Chain,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004557 SDValue Ptr, SDValue Offset,
4558 MachinePointerInfo PtrInfo, EVT MemVT,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004559 bool isVolatile, bool isNonTemporal, bool isInvariant,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004560 unsigned Alignment, const MDNode *TBAAInfo,
4561 const MDNode *Ranges) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004562 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004563 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004564 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4565 Alignment = getEVTAlignment(VT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004566
Dan Gohman48b185d2009-09-25 20:36:54 +00004567 unsigned Flags = MachineMemOperand::MOLoad;
4568 if (isVolatile)
4569 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004570 if (isNonTemporal)
4571 Flags |= MachineMemOperand::MONonTemporal;
Pete Cooper82cd9e82011-11-08 18:42:53 +00004572 if (isInvariant)
4573 Flags |= MachineMemOperand::MOInvariant;
Wesley Peck527da1b2010-11-23 03:31:01 +00004574
Chris Lattnerea952f02010-09-21 17:24:05 +00004575 // If we don't have a PtrInfo, infer the trivial frame index case to simplify
4576 // clients.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004577 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004578 PtrInfo = InferPointerInfo(Ptr, Offset);
Wesley Peck527da1b2010-11-23 03:31:01 +00004579
Chris Lattnerea952f02010-09-21 17:24:05 +00004580 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004581 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004582 MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004583 TBAAInfo, Ranges);
Evan Cheng1c349f12010-07-07 22:15:37 +00004584 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
Dan Gohman48b185d2009-09-25 20:36:54 +00004585}
4586
4587SDValue
Wesley Peck527da1b2010-11-23 03:31:01 +00004588SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004589 EVT VT, SDLoc dl, SDValue Chain,
Dan Gohman48b185d2009-09-25 20:36:54 +00004590 SDValue Ptr, SDValue Offset, EVT MemVT,
4591 MachineMemOperand *MMO) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004592 if (VT == MemVT) {
Dale Johannesen839acbb2009-01-29 00:47:48 +00004593 ExtType = ISD::NON_EXTLOAD;
4594 } else if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman08c0a952009-09-23 21:02:20 +00004595 assert(VT == MemVT && "Non-extending load from different memory type!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004596 } else {
4597 // Extending load.
Dan Gohmancecad352009-12-14 23:40:38 +00004598 assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
4599 "Should only be an extending load, not truncating!");
Dan Gohman08c0a952009-09-23 21:02:20 +00004600 assert(VT.isInteger() == MemVT.isInteger() &&
Dale Johannesen839acbb2009-01-29 00:47:48 +00004601 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohmancecad352009-12-14 23:40:38 +00004602 assert(VT.isVector() == MemVT.isVector() &&
4603 "Cannot use trunc store to convert to or from a vector!");
4604 assert((!VT.isVector() ||
4605 VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
4606 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004607 }
4608
4609 bool Indexed = AM != ISD::UNINDEXED;
4610 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
4611 "Unindexed load with an offset!");
4612
4613 SDVTList VTs = Indexed ?
Owen Anderson9f944592009-08-11 20:47:22 +00004614 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004615 SDValue Ops[] = { Chain, Ptr, Offset };
4616 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004617 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops);
Dan Gohman08c0a952009-09-23 21:02:20 +00004618 ID.AddInteger(MemVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004619 ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004620 MMO->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004621 MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004622 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004623 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004624 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4625 cast<LoadSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004626 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004627 }
Jack Carter170a5f22013-09-09 22:02:08 +00004628 SDNode *N = new (NodeAllocator) LoadSDNode(Ops, dl.getIROrder(),
4629 dl.getDebugLoc(), VTs, AM, ExtType,
Dan Gohman01c65a22010-03-18 18:49:47 +00004630 MemVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004631 CSEMap.InsertNode(N, IP);
4632 AllNodes.push_back(N);
4633 return SDValue(N, 0);
4634}
4635
Andrew Trickef9de2a2013-05-25 02:42:55 +00004636SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004637 SDValue Chain, SDValue Ptr,
Chris Lattner2510de22010-09-21 05:40:29 +00004638 MachinePointerInfo PtrInfo,
4639 bool isVolatile, bool isNonTemporal,
Michael Ilsemand5f91512012-09-10 16:56:31 +00004640 bool isInvariant, unsigned Alignment,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004641 const MDNode *TBAAInfo,
4642 const MDNode *Ranges) {
Chris Lattner2510de22010-09-21 05:40:29 +00004643 SDValue Undef = getUNDEF(Ptr.getValueType());
4644 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
Rafael Espindola80c540e2012-03-31 18:14:00 +00004645 PtrInfo, VT, isVolatile, isNonTemporal, isInvariant, Alignment,
4646 TBAAInfo, Ranges);
Chris Lattner2510de22010-09-21 05:40:29 +00004647}
Dale Johannesen839acbb2009-01-29 00:47:48 +00004648
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004649SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl,
4650 SDValue Chain, SDValue Ptr,
4651 MachineMemOperand *MMO) {
4652 SDValue Undef = getUNDEF(Ptr.getValueType());
4653 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
4654 VT, MMO);
4655}
4656
Andrew Trickef9de2a2013-05-25 02:42:55 +00004657SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
Chris Lattner2510de22010-09-21 05:40:29 +00004658 SDValue Chain, SDValue Ptr,
4659 MachinePointerInfo PtrInfo, EVT MemVT,
4660 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004661 unsigned Alignment, const MDNode *TBAAInfo) {
Chris Lattner2510de22010-09-21 05:40:29 +00004662 SDValue Undef = getUNDEF(Ptr.getValueType());
4663 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004664 PtrInfo, MemVT, isVolatile, isNonTemporal, false, Alignment,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004665 TBAAInfo);
Chris Lattner2510de22010-09-21 05:40:29 +00004666}
4667
4668
Richard Sandiford39c1ce42013-10-28 11:17:59 +00004669SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT,
4670 SDValue Chain, SDValue Ptr, EVT MemVT,
4671 MachineMemOperand *MMO) {
4672 SDValue Undef = getUNDEF(Ptr.getValueType());
4673 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
4674 MemVT, MMO);
4675}
4676
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004677SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004678SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004679 SDValue Offset, ISD::MemIndexedMode AM) {
4680 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
4681 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
4682 "Load is already a indexed load!");
Evan Cheng1c349f12010-07-07 22:15:37 +00004683 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
Chris Lattnerea952f02010-09-21 17:24:05 +00004684 LD->getChain(), Base, Offset, LD->getPointerInfo(),
Michael Ilsemand5f91512012-09-10 16:56:31 +00004685 LD->getMemoryVT(), LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004686 false, LD->getAlignment());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004687}
4688
Andrew Trickef9de2a2013-05-25 02:42:55 +00004689SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004690 SDValue Ptr, MachinePointerInfo PtrInfo,
David Greene39c6d012010-02-15 17:00:31 +00004691 bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004692 unsigned Alignment, const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004693 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004694 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004695 if (Alignment == 0) // Ensure that codegen never sees alignment 0
Dan Gohman48b185d2009-09-25 20:36:54 +00004696 Alignment = getEVTAlignment(Val.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004697
Dan Gohman48b185d2009-09-25 20:36:54 +00004698 unsigned Flags = MachineMemOperand::MOStore;
4699 if (isVolatile)
4700 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004701 if (isNonTemporal)
4702 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004703
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004704 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004705 PtrInfo = InferPointerInfo(Ptr);
4706
4707 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004708 MachineMemOperand *MMO =
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004709 MF.getMachineMemOperand(PtrInfo, Flags,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004710 Val.getValueType().getStoreSize(), Alignment,
4711 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004712
4713 return getStore(Chain, dl, Val, Ptr, MMO);
4714}
4715
Andrew Trickef9de2a2013-05-25 02:42:55 +00004716SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004717 SDValue Ptr, MachineMemOperand *MMO) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004718 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004719 "Invalid chain type");
Dan Gohman48b185d2009-09-25 20:36:54 +00004720 EVT VT = Val.getValueType();
Owen Anderson9f944592009-08-11 20:47:22 +00004721 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004722 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004723 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4724 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004725 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004726 ID.AddInteger(VT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004727 ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004728 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004729 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004730 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004731 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4732 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004733 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004734 }
Jack Carter170a5f22013-09-09 22:02:08 +00004735 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4736 dl.getDebugLoc(), VTs,
4737 ISD::UNINDEXED, false, VT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004738 CSEMap.InsertNode(N, IP);
4739 AllNodes.push_back(N);
4740 return SDValue(N, 0);
4741}
4742
Andrew Trickef9de2a2013-05-25 02:42:55 +00004743SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004744 SDValue Ptr, MachinePointerInfo PtrInfo,
4745 EVT SVT,bool isVolatile, bool isNonTemporal,
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004746 unsigned Alignment,
4747 const MDNode *TBAAInfo) {
Michael Ilsemand5f91512012-09-10 16:56:31 +00004748 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004749 "Invalid chain type");
Chris Lattnerbc419ba2010-09-21 05:10:45 +00004750 if (Alignment == 0) // Ensure that codegen never sees alignment 0
4751 Alignment = getEVTAlignment(SVT);
Dan Gohman48b185d2009-09-25 20:36:54 +00004752
Dan Gohman48b185d2009-09-25 20:36:54 +00004753 unsigned Flags = MachineMemOperand::MOStore;
4754 if (isVolatile)
4755 Flags |= MachineMemOperand::MOVolatile;
David Greene39c6d012010-02-15 17:00:31 +00004756 if (isNonTemporal)
4757 Flags |= MachineMemOperand::MONonTemporal;
Wesley Peck527da1b2010-11-23 03:31:01 +00004758
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004759 if (PtrInfo.V.isNull())
Chris Lattnerea952f02010-09-21 17:24:05 +00004760 PtrInfo = InferPointerInfo(Ptr);
4761
4762 MachineFunction &MF = getMachineFunction();
Dan Gohman48b185d2009-09-25 20:36:54 +00004763 MachineMemOperand *MMO =
Dan Gohmana94cc6d2010-10-20 00:31:05 +00004764 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment,
4765 TBAAInfo);
Dan Gohman48b185d2009-09-25 20:36:54 +00004766
4767 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
4768}
4769
Andrew Trickef9de2a2013-05-25 02:42:55 +00004770SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val,
Dan Gohman48b185d2009-09-25 20:36:54 +00004771 SDValue Ptr, EVT SVT,
4772 MachineMemOperand *MMO) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004773 EVT VT = Val.getValueType();
Dale Johannesen839acbb2009-01-29 00:47:48 +00004774
Michael Ilsemand5f91512012-09-10 16:56:31 +00004775 assert(Chain.getValueType() == MVT::Other &&
Nadav Rotemdb213c02011-07-14 10:37:54 +00004776 "Invalid chain type");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004777 if (VT == SVT)
Dan Gohman48b185d2009-09-25 20:36:54 +00004778 return getStore(Chain, dl, Val, Ptr, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004779
Dan Gohmancecad352009-12-14 23:40:38 +00004780 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
4781 "Should only be a truncating store, not extending!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004782 assert(VT.isInteger() == SVT.isInteger() &&
4783 "Can't do FP-INT conversion!");
Dan Gohmancecad352009-12-14 23:40:38 +00004784 assert(VT.isVector() == SVT.isVector() &&
4785 "Cannot use trunc store to convert to or from a vector!");
4786 assert((!VT.isVector() ||
4787 VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
4788 "Cannot use trunc store to change the number of vector elements!");
Dale Johannesen839acbb2009-01-29 00:47:48 +00004789
Owen Anderson9f944592009-08-11 20:47:22 +00004790 SDVTList VTs = getVTList(MVT::Other);
Dale Johannesen84935752009-02-06 23:05:02 +00004791 SDValue Undef = getUNDEF(Ptr.getValueType());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004792 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4793 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004794 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004795 ID.AddInteger(SVT.getRawBits());
David Greeneb7941b02010-02-17 20:21:42 +00004796 ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004797 MMO->isNonTemporal(), MMO->isInvariant()));
Pete Cooper91244262012-07-30 20:23:19 +00004798 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004799 void *IP = nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00004800 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
4801 cast<StoreSDNode>(E)->refineAlignment(MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004802 return SDValue(E, 0);
Dan Gohman48b185d2009-09-25 20:36:54 +00004803 }
Jack Carter170a5f22013-09-09 22:02:08 +00004804 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4805 dl.getDebugLoc(), VTs,
4806 ISD::UNINDEXED, true, SVT, MMO);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004807 CSEMap.InsertNode(N, IP);
4808 AllNodes.push_back(N);
4809 return SDValue(N, 0);
4810}
4811
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004812SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004813SelectionDAG::getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base,
Dale Johannesen839acbb2009-01-29 00:47:48 +00004814 SDValue Offset, ISD::MemIndexedMode AM) {
4815 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
4816 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
4817 "Store is already a indexed store!");
Owen Anderson9f944592009-08-11 20:47:22 +00004818 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004819 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
4820 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004821 AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00004822 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dan Gohman76a07f52009-02-03 00:08:45 +00004823 ID.AddInteger(ST->getRawSubclassData());
Pete Cooper91244262012-07-30 20:23:19 +00004824 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
Craig Topperc0196b12014-04-14 00:51:57 +00004825 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00004826 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dale Johannesen839acbb2009-01-29 00:47:48 +00004827 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00004828
Jack Carter170a5f22013-09-09 22:02:08 +00004829 SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(),
4830 dl.getDebugLoc(), VTs, AM,
Dan Gohman01c65a22010-03-18 18:49:47 +00004831 ST->isTruncatingStore(),
4832 ST->getMemoryVT(),
4833 ST->getMemOperand());
Dale Johannesen839acbb2009-01-29 00:47:48 +00004834 CSEMap.InsertNode(N, IP);
4835 AllNodes.push_back(N);
4836 return SDValue(N, 0);
4837}
4838
Andrew Trickef9de2a2013-05-25 02:42:55 +00004839SDValue SelectionDAG::getVAArg(EVT VT, SDLoc dl,
Dale Johannesenabf66b82009-02-03 22:26:09 +00004840 SDValue Chain, SDValue Ptr,
Rafael Espindola2041abd2010-06-26 18:22:20 +00004841 SDValue SV,
4842 unsigned Align) {
4843 SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, MVT::i32) };
Craig Topper48d114b2014-04-26 18:35:24 +00004844 return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops);
Dale Johannesenabf66b82009-02-03 22:26:09 +00004845}
4846
Andrew Trickef9de2a2013-05-25 02:42:55 +00004847SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topperdd5e16d2014-04-27 19:21:06 +00004848 ArrayRef<SDUse> Ops) {
4849 switch (Ops.size()) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004850 case 0: return getNode(Opcode, DL, VT);
Craig Topperdd5e16d2014-04-27 19:21:06 +00004851 case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0]));
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004852 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4853 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Dan Gohman768f2c92008-07-07 18:26:29 +00004854 default: break;
4855 }
4856
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004857 // Copy from an SDUse array into an SDValue array for use with
Dan Gohman768f2c92008-07-07 18:26:29 +00004858 // the regular getNode logic.
Craig Topperdd5e16d2014-04-27 19:21:06 +00004859 SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end());
Craig Topper48d114b2014-04-26 18:35:24 +00004860 return getNode(Opcode, DL, VT, NewOps);
Dan Gohman768f2c92008-07-07 18:26:29 +00004861}
4862
Andrew Trickef9de2a2013-05-25 02:42:55 +00004863SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT,
Craig Topper48d114b2014-04-26 18:35:24 +00004864 ArrayRef<SDValue> Ops) {
4865 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00004866 switch (NumOps) {
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004867 case 0: return getNode(Opcode, DL, VT);
4868 case 1: return getNode(Opcode, DL, VT, Ops[0]);
4869 case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4870 case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattnerb0713c72005-04-09 03:27:28 +00004871 default: break;
Chris Lattner061a1ea2005-01-07 07:46:32 +00004872 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004873
Chris Lattnerb0713c72005-04-09 03:27:28 +00004874 switch (Opcode) {
4875 default: break;
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004876 case ISD::SELECT_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004877 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004878 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
4879 "LHS and RHS of condition must have same type!");
4880 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4881 "True and False arms of SelectCC must have same type!");
4882 assert(Ops[2].getValueType() == VT &&
4883 "select_cc node must be of same type as true and false value!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004884 break;
4885 }
4886 case ISD::BR_CC: {
Chris Lattner97af9d52006-08-08 01:09:31 +00004887 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004888 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4889 "LHS/RHS of comparison should match types!");
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00004890 break;
4891 }
Chris Lattnerb0713c72005-04-09 03:27:28 +00004892 }
4893
Chris Lattner566307f2005-05-14 07:42:29 +00004894 // Memoize nodes.
Chris Lattnerf9c19152005-08-25 19:12:10 +00004895 SDNode *N;
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00004896 SDVTList VTs = getVTList(VT);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004897
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004898 if (VT != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00004899 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004900 AddNodeIDNode(ID, Opcode, VTs, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00004901 void *IP = nullptr;
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004902
Bill Wendling022d18f2009-12-18 23:32:53 +00004903 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004904 return SDValue(E, 0);
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004905
Jack Carter170a5f22013-09-09 22:02:08 +00004906 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004907 VTs, Ops);
Chris Lattner1ee75ce2006-08-07 23:03:03 +00004908 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004909 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004910 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004911 VTs, Ops);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004912 }
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004913
Chris Lattnerb0713c72005-04-09 03:27:28 +00004914 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004915#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00004916 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004917#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004918 return SDValue(N, 0);
Chris Lattner061a1ea2005-01-07 07:46:32 +00004919}
4920
Andrew Trickef9de2a2013-05-25 02:42:55 +00004921SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL,
Craig Topper48d114b2014-04-26 18:35:24 +00004922 ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) {
4923 return getNode(Opcode, DL, getVTList(ResultTys), Ops);
Chris Lattner3bf4be42006-08-14 23:31:51 +00004924}
4925
Andrew Trickef9de2a2013-05-25 02:42:55 +00004926SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Craig Topper48d114b2014-04-26 18:35:24 +00004927 ArrayRef<SDValue> Ops) {
Chris Lattner65879ca2006-08-16 22:57:46 +00004928 if (VTList.NumVTs == 1)
Craig Topper48d114b2014-04-26 18:35:24 +00004929 return getNode(Opcode, DL, VTList.VTs[0], Ops);
Chris Lattnerd5531332005-05-14 06:20:26 +00004930
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004931#if 0
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004932 switch (Opcode) {
Chris Lattner669e8c22005-05-14 07:25:05 +00004933 // FIXME: figure out how to safely handle things like
4934 // int foo(int x) { return 1 << (x & 255); }
4935 // int bar() { return foo(256); }
Chris Lattner669e8c22005-05-14 07:25:05 +00004936 case ISD::SRA_PARTS:
4937 case ISD::SRL_PARTS:
4938 case ISD::SHL_PARTS:
4939 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Owen Anderson9f944592009-08-11 20:47:22 +00004940 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004941 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004942 else if (N3.getOpcode() == ISD::AND)
4943 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
4944 // If the and is only masking out bits that cannot effect the shift,
4945 // eliminate the and.
Dan Gohman6bd3ef82010-01-09 02:13:55 +00004946 unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
Chris Lattner669e8c22005-05-14 07:25:05 +00004947 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00004948 return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
Chris Lattner669e8c22005-05-14 07:25:05 +00004949 }
4950 break;
Chris Lattnerde0a4b12005-07-10 01:55:33 +00004951 }
Daniel Dunbarac0ca922009-07-19 01:38:38 +00004952#endif
Chris Lattnerd5531332005-05-14 06:20:26 +00004953
Chris Lattnerf9c19152005-08-25 19:12:10 +00004954 // Memoize the node unless it returns a flag.
4955 SDNode *N;
Craig Topper48d114b2014-04-26 18:35:24 +00004956 unsigned NumOps = Ops.size();
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004957 if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
Jim Laskeyf576b422006-10-27 23:46:08 +00004958 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00004959 AddNodeIDNode(ID, Opcode, VTList, Ops);
Craig Topperc0196b12014-04-14 00:51:57 +00004960 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00004961 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004962 return SDValue(E, 0);
Bill Wendling022d18f2009-12-18 23:32:53 +00004963
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004964 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00004965 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
4966 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004967 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00004968 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
4969 DL.getDebugLoc(), VTList, Ops[0],
4970 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004971 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00004972 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
4973 DL.getDebugLoc(), VTList, Ops[0],
4974 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004975 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004976 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004977 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004978 }
Chris Lattner1ee75ce2006-08-07 23:03:03 +00004979 CSEMap.InsertNode(N, IP);
Chris Lattnerf9c19152005-08-25 19:12:10 +00004980 } else {
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004981 if (NumOps == 1) {
Jack Carter170a5f22013-09-09 22:02:08 +00004982 N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(),
4983 DL.getDebugLoc(), VTList, Ops[0]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004984 } else if (NumOps == 2) {
Jack Carter170a5f22013-09-09 22:02:08 +00004985 N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(),
4986 DL.getDebugLoc(), VTList, Ops[0],
4987 Ops[1]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004988 } else if (NumOps == 3) {
Jack Carter170a5f22013-09-09 22:02:08 +00004989 N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(),
4990 DL.getDebugLoc(), VTList, Ops[0],
4991 Ops[1], Ops[2]);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004992 } else {
Jack Carter170a5f22013-09-09 22:02:08 +00004993 N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(),
Craig Topperbb533072014-04-27 19:21:02 +00004994 VTList, Ops);
Dan Gohman7f8b6d52008-07-07 23:02:41 +00004995 }
Chris Lattnerf9c19152005-08-25 19:12:10 +00004996 }
Chris Lattner006f56b2005-05-14 06:42:57 +00004997 AllNodes.push_back(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00004998#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00004999 VerifySDNode(N);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005000#endif
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005001 return SDValue(N, 0);
Chris Lattnerd5531332005-05-14 06:20:26 +00005002}
5003
Andrew Trickef9de2a2013-05-25 02:42:55 +00005004SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList) {
Craig Topper48d114b2014-04-26 18:35:24 +00005005 return getNode(Opcode, DL, VTList, ArrayRef<SDValue>());
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005006}
5007
Andrew Trickef9de2a2013-05-25 02:42:55 +00005008SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005009 SDValue N1) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005010 SDValue Ops[] = { N1 };
Craig Topper48d114b2014-04-26 18:35:24 +00005011 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005012}
5013
Andrew Trickef9de2a2013-05-25 02:42:55 +00005014SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005015 SDValue N1, SDValue N2) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005016 SDValue Ops[] = { N1, N2 };
Craig Topper48d114b2014-04-26 18:35:24 +00005017 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005018}
5019
Andrew Trickef9de2a2013-05-25 02:42:55 +00005020SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005021 SDValue N1, SDValue N2, SDValue N3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005022 SDValue Ops[] = { N1, N2, N3 };
Craig Topper48d114b2014-04-26 18:35:24 +00005023 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005024}
5025
Andrew Trickef9de2a2013-05-25 02:42:55 +00005026SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005027 SDValue N1, SDValue N2, SDValue N3,
5028 SDValue N4) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005029 SDValue Ops[] = { N1, N2, N3, N4 };
Craig Topper48d114b2014-04-26 18:35:24 +00005030 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005031}
5032
Andrew Trickef9de2a2013-05-25 02:42:55 +00005033SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList,
Bill Wendling1b6a3bc2009-01-28 22:17:52 +00005034 SDValue N1, SDValue N2, SDValue N3,
5035 SDValue N4, SDValue N5) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005036 SDValue Ops[] = { N1, N2, N3, N4, N5 };
Craig Topper48d114b2014-04-26 18:35:24 +00005037 return getNode(Opcode, DL, VTList, Ops);
Dan Gohmanb08c8bf2007-10-08 15:49:58 +00005038}
5039
Owen Anderson53aa7a92009-08-10 22:56:29 +00005040SDVTList SelectionDAG::getVTList(EVT VT) {
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00005041 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattner88fa11c2005-11-08 23:30:28 +00005042}
5043
Owen Anderson53aa7a92009-08-10 22:56:29 +00005044SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005045 FoldingSetNodeID ID;
5046 ID.AddInteger(2U);
5047 ID.AddInteger(VT1.getRawBits());
5048 ID.AddInteger(VT2.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +00005049
Craig Topperc0196b12014-04-14 00:51:57 +00005050 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005051 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005052 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005053 EVT *Array = Allocator.Allocate<EVT>(2);
5054 Array[0] = VT1;
5055 Array[1] = VT2;
5056 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
5057 VTListMap.InsertNode(Result, IP);
5058 }
5059 return Result->getSDVTList();
Chris Lattner88fa11c2005-11-08 23:30:28 +00005060}
Dan Gohman17059682008-07-17 19:10:17 +00005061
Owen Anderson53aa7a92009-08-10 22:56:29 +00005062SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005063 FoldingSetNodeID ID;
5064 ID.AddInteger(3U);
5065 ID.AddInteger(VT1.getRawBits());
5066 ID.AddInteger(VT2.getRawBits());
5067 ID.AddInteger(VT3.getRawBits());
Dan Gohman17059682008-07-17 19:10:17 +00005068
Craig Topperc0196b12014-04-14 00:51:57 +00005069 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005070 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005071 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005072 EVT *Array = Allocator.Allocate<EVT>(3);
5073 Array[0] = VT1;
5074 Array[1] = VT2;
5075 Array[2] = VT3;
5076 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
5077 VTListMap.InsertNode(Result, IP);
5078 }
5079 return Result->getSDVTList();
Chris Lattnerf98411a2006-08-15 17:46:01 +00005080}
5081
Owen Anderson53aa7a92009-08-10 22:56:29 +00005082SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005083 FoldingSetNodeID ID;
5084 ID.AddInteger(4U);
5085 ID.AddInteger(VT1.getRawBits());
5086 ID.AddInteger(VT2.getRawBits());
5087 ID.AddInteger(VT3.getRawBits());
5088 ID.AddInteger(VT4.getRawBits());
Bill Wendling2d598632008-12-01 23:28:22 +00005089
Craig Topperc0196b12014-04-14 00:51:57 +00005090 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005091 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005092 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005093 EVT *Array = Allocator.Allocate<EVT>(4);
5094 Array[0] = VT1;
5095 Array[1] = VT2;
5096 Array[2] = VT3;
5097 Array[3] = VT4;
5098 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
5099 VTListMap.InsertNode(Result, IP);
5100 }
5101 return Result->getSDVTList();
Bill Wendling2d598632008-12-01 23:28:22 +00005102}
5103
Craig Topperabb4ac72014-04-16 06:10:51 +00005104SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) {
5105 unsigned NumVTs = VTs.size();
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005106 FoldingSetNodeID ID;
5107 ID.AddInteger(NumVTs);
5108 for (unsigned index = 0; index < NumVTs; index++) {
5109 ID.AddInteger(VTs[index].getRawBits());
Chris Lattnerf98411a2006-08-15 17:46:01 +00005110 }
5111
Craig Topperc0196b12014-04-14 00:51:57 +00005112 void *IP = nullptr;
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005113 SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
Craig Topperc0196b12014-04-14 00:51:57 +00005114 if (!Result) {
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005115 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
Craig Topperabb4ac72014-04-16 06:10:51 +00005116 std::copy(VTs.begin(), VTs.end(), Array);
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005117 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
5118 VTListMap.InsertNode(Result, IP);
Chris Lattnerf98411a2006-08-15 17:46:01 +00005119 }
Wan Xiaofei2f8dc082013-10-22 08:02:02 +00005120 return Result->getSDVTList();
Chris Lattner3bf4be42006-08-14 23:31:51 +00005121}
5122
5123
Chris Lattnerf34156e2006-01-28 09:32:45 +00005124/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
5125/// specified operands. If the resultant node already exists in the DAG,
5126/// this does not modify the specified node, instead it returns the node that
5127/// already exists. If the resultant node does not exist in the DAG, the
5128/// input node is returned. As a degenerate case, if you specify the same
5129/// input operands as the node already has, the input node is returned.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005130SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005131 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005132
Chris Lattnerf34156e2006-01-28 09:32:45 +00005133 // Check to see if there is no change.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005134 if (Op == N->getOperand(0)) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005135
Chris Lattnerf34156e2006-01-28 09:32:45 +00005136 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005137 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005138 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005139 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005140
Dan Gohmanebeccb42008-07-21 22:38:59 +00005141 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005142 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005143 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005144 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005145
Chris Lattnerf34156e2006-01-28 09:32:45 +00005146 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005147 N->OperandList[0].set(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005148
Chris Lattnerf34156e2006-01-28 09:32:45 +00005149 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005150 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005151 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005152}
5153
Dan Gohman92c11ac2010-06-18 15:30:29 +00005154SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
Chris Lattnerf34156e2006-01-28 09:32:45 +00005155 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005156
Chris Lattnerf34156e2006-01-28 09:32:45 +00005157 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005158 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005159 return N; // No operands changed, just return the input node.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005160
Chris Lattnerf34156e2006-01-28 09:32:45 +00005161 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005162 void *InsertPos = nullptr;
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005163 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005164 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005165
Dan Gohmanebeccb42008-07-21 22:38:59 +00005166 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005167 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005168 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005169 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005170
Chris Lattnerf34156e2006-01-28 09:32:45 +00005171 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005172 if (N->OperandList[0] != Op1)
5173 N->OperandList[0].set(Op1);
5174 if (N->OperandList[1] != Op2)
5175 N->OperandList[1].set(Op2);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005176
Chris Lattnerf34156e2006-01-28 09:32:45 +00005177 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005178 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005179 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005180}
5181
Dan Gohman92c11ac2010-06-18 15:30:29 +00005182SDNode *SelectionDAG::
5183UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005184 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005185 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005186}
5187
Dan Gohman92c11ac2010-06-18 15:30:29 +00005188SDNode *SelectionDAG::
5189UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005190 SDValue Op3, SDValue Op4) {
5191 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005192 return UpdateNodeOperands(N, Ops);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005193}
5194
Dan Gohman92c11ac2010-06-18 15:30:29 +00005195SDNode *SelectionDAG::
5196UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005197 SDValue Op3, SDValue Op4, SDValue Op5) {
5198 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
Craig Topper8c0b4d02014-04-28 05:57:50 +00005199 return UpdateNodeOperands(N, Ops);
Chris Lattner580b12a2006-01-28 10:09:25 +00005200}
5201
Dan Gohman92c11ac2010-06-18 15:30:29 +00005202SDNode *SelectionDAG::
Craig Topper8c0b4d02014-04-28 05:57:50 +00005203UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) {
5204 unsigned NumOps = Ops.size();
Chris Lattner97af9d52006-08-08 01:09:31 +00005205 assert(N->getNumOperands() == NumOps &&
Chris Lattnerf34156e2006-01-28 09:32:45 +00005206 "Update with wrong number of operands");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005207
Chris Lattnerf34156e2006-01-28 09:32:45 +00005208 // Check to see if there is no change.
Chris Lattnerf34156e2006-01-28 09:32:45 +00005209 bool AnyChange = false;
5210 for (unsigned i = 0; i != NumOps; ++i) {
5211 if (Ops[i] != N->getOperand(i)) {
5212 AnyChange = true;
5213 break;
5214 }
5215 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005216
Chris Lattnerf34156e2006-01-28 09:32:45 +00005217 // No operands changed, just return the input node.
Dan Gohman92c11ac2010-06-18 15:30:29 +00005218 if (!AnyChange) return N;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005219
Chris Lattnerf34156e2006-01-28 09:32:45 +00005220 // See if the modified node already exists.
Craig Topperc0196b12014-04-14 00:51:57 +00005221 void *InsertPos = nullptr;
Craig Topper8c0b4d02014-04-28 05:57:50 +00005222 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos))
Dan Gohman92c11ac2010-06-18 15:30:29 +00005223 return Existing;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005224
Dan Gohman2f83b472008-05-02 00:05:03 +00005225 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005226 if (InsertPos)
Dan Gohmand3fe1742008-09-13 01:54:27 +00005227 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005228 InsertPos = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005229
Chris Lattnerf34156e2006-01-28 09:32:45 +00005230 // Now we update the operands.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005231 for (unsigned i = 0; i != NumOps; ++i)
5232 if (N->OperandList[i] != Ops[i])
5233 N->OperandList[i].set(Ops[i]);
Chris Lattnerf34156e2006-01-28 09:32:45 +00005234
5235 // If this gets put into a CSE map, add it.
Chris Lattner1ee75ce2006-08-07 23:03:03 +00005236 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Dan Gohman92c11ac2010-06-18 15:30:29 +00005237 return N;
Chris Lattnerf34156e2006-01-28 09:32:45 +00005238}
5239
Dan Gohman91697632008-07-07 20:57:48 +00005240/// DropOperands - Release the operands and set this node to have
Dan Gohman17059682008-07-17 19:10:17 +00005241/// zero operands.
Dan Gohman91697632008-07-07 20:57:48 +00005242void SDNode::DropOperands() {
Dan Gohman91697632008-07-07 20:57:48 +00005243 // Unlike the code in MorphNodeTo that does this, we don't need to
5244 // watch for dead nodes here.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005245 for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
5246 SDUse &Use = *I++;
5247 Use.set(SDValue());
5248 }
Chris Lattneredfc7e52007-02-04 02:49:29 +00005249}
Chris Lattner19732782005-08-16 18:17:10 +00005250
Dan Gohman17059682008-07-17 19:10:17 +00005251/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
5252/// machine opcode.
Chris Lattner9d0d7152005-12-01 18:00:57 +00005253///
Dan Gohman17059682008-07-17 19:10:17 +00005254SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005255 EVT VT) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005256 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005257 return SelectNodeTo(N, MachineOpc, VTs, None);
Chris Lattner45e1ce42005-08-24 23:00:29 +00005258}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005259
Dan Gohman17059682008-07-17 19:10:17 +00005260SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005261 EVT VT, SDValue Op1) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005262 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005263 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005264 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005265}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005266
Dan Gohman17059682008-07-17 19:10:17 +00005267SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005268 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005269 SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005270 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005271 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005272 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005273}
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005274
Dan Gohman17059682008-07-17 19:10:17 +00005275SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005276 EVT VT, SDValue Op1,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005277 SDValue Op2, SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005278 SDVTList VTs = getVTList(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005279 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005280 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattner19732782005-08-16 18:17:10 +00005281}
Chris Lattner466fece2005-08-21 22:30:30 +00005282
Dan Gohman17059682008-07-17 19:10:17 +00005283SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005284 EVT VT, ArrayRef<SDValue> Ops) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005285 SDVTList VTs = getVTList(VT);
Craig Topper481fb282014-04-27 19:21:11 +00005286 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005287}
5288
Dan Gohman17059682008-07-17 19:10:17 +00005289SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005290 EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005291 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005292 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005293}
5294
Dan Gohman17059682008-07-17 19:10:17 +00005295SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005296 EVT VT1, EVT VT2) {
Dan Gohman22e97072008-07-02 23:23:19 +00005297 SDVTList VTs = getVTList(VT1, VT2);
Craig Topper481fb282014-04-27 19:21:11 +00005298 return SelectNodeTo(N, MachineOpc, VTs, None);
Dan Gohman22e97072008-07-02 23:23:19 +00005299}
5300
Dan Gohman17059682008-07-17 19:10:17 +00005301SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005302 EVT VT1, EVT VT2, EVT VT3,
Craig Topper481fb282014-04-27 19:21:11 +00005303 ArrayRef<SDValue> Ops) {
Dan Gohman22e97072008-07-02 23:23:19 +00005304 SDVTList VTs = getVTList(VT1, VT2, VT3);
Craig Topper481fb282014-04-27 19:21:11 +00005305 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005306}
5307
Bill Wendling2d598632008-12-01 23:28:22 +00005308SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005309 EVT VT1, EVT VT2, EVT VT3, EVT VT4,
Craig Topper481fb282014-04-27 19:21:11 +00005310 ArrayRef<SDValue> Ops) {
Bill Wendling2d598632008-12-01 23:28:22 +00005311 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
Craig Topper481fb282014-04-27 19:21:11 +00005312 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005313}
5314
Scott Michelcf0da6c2009-02-17 22:15:04 +00005315SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005316 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005317 SDValue Op1) {
Dan Gohman22e97072008-07-02 23:23:19 +00005318 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005319 SDValue Ops[] = { Op1 };
Craig Topper481fb282014-04-27 19:21:11 +00005320 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Andrew Lenharth683352382006-01-23 21:51:14 +00005321}
Andrew Lenharthc2856382006-01-23 20:59:12 +00005322
Scott Michelcf0da6c2009-02-17 22:15:04 +00005323SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005324 EVT VT1, EVT VT2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005325 SDValue Op1, SDValue Op2) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005326 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005327 SDValue Ops[] = { Op1, Op2 };
Craig Topper481fb282014-04-27 19:21:11 +00005328 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005329}
5330
Dan Gohman17059682008-07-17 19:10:17 +00005331SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005332 EVT VT1, EVT VT2,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005333 SDValue Op1, SDValue Op2,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005334 SDValue Op3) {
Chris Lattnera5a3eaf2006-08-15 19:11:05 +00005335 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005336 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005337 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Dan Gohman22e97072008-07-02 23:23:19 +00005338}
5339
Dan Gohman17059682008-07-17 19:10:17 +00005340SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Owen Anderson53aa7a92009-08-10 22:56:29 +00005341 EVT VT1, EVT VT2, EVT VT3,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005342 SDValue Op1, SDValue Op2,
Bill Wendling2d598632008-12-01 23:28:22 +00005343 SDValue Op3) {
5344 SDVTList VTs = getVTList(VT1, VT2, VT3);
5345 SDValue Ops[] = { Op1, Op2, Op3 };
Craig Topper481fb282014-04-27 19:21:11 +00005346 return SelectNodeTo(N, MachineOpc, VTs, Ops);
Bill Wendling2d598632008-12-01 23:28:22 +00005347}
5348
5349SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
Craig Topper481fb282014-04-27 19:21:11 +00005350 SDVTList VTs,ArrayRef<SDValue> Ops) {
Craig Topper131de822014-04-27 19:21:16 +00005351 N = MorphNodeTo(N, ~MachineOpc, VTs, Ops);
Chris Lattner625916d2010-02-23 23:01:35 +00005352 // Reset the NodeID to -1.
5353 N->setNodeId(-1);
5354 return N;
Dan Gohman17059682008-07-17 19:10:17 +00005355}
5356
Andrew Trickef9de2a2013-05-25 02:42:55 +00005357/// UpdadeSDLocOnMergedSDNode - If the opt level is -O0 then it throws away
Devang Patel7bbc1e52011-12-15 18:21:18 +00005358/// the line number information on the merged node since it is not possible to
5359/// preserve the information that operation is associated with multiple lines.
5360/// This will make the debugger working better at -O0, were there is a higher
5361/// probability having other instructions associated with that line.
5362///
Andrew Trickef9de2a2013-05-25 02:42:55 +00005363/// For IROrder, we keep the smaller of the two
5364SDNode *SelectionDAG::UpdadeSDLocOnMergedSDNode(SDNode *N, SDLoc OLoc) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005365 DebugLoc NLoc = N->getDebugLoc();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005366 if (!(NLoc.isUnknown()) && (OptLevel == CodeGenOpt::None) &&
5367 (OLoc.getDebugLoc() != NLoc)) {
Devang Patel7bbc1e52011-12-15 18:21:18 +00005368 N->setDebugLoc(DebugLoc());
5369 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005370 unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
5371 N->setIROrder(Order);
Devang Patel7bbc1e52011-12-15 18:21:18 +00005372 return N;
5373}
5374
Chris Lattneraf197502010-02-28 21:36:14 +00005375/// MorphNodeTo - This *mutates* the specified node to have the specified
Dan Gohman17059682008-07-17 19:10:17 +00005376/// return type, opcode, and operands.
5377///
5378/// Note that MorphNodeTo returns the resultant node. If there is already a
5379/// node of the specified opcode and operands, it returns that node instead of
Andrew Trickef9de2a2013-05-25 02:42:55 +00005380/// the current one. Note that the SDLoc need not be the same.
Dan Gohman17059682008-07-17 19:10:17 +00005381///
5382/// Using MorphNodeTo is faster than creating a new node and swapping it in
5383/// with ReplaceAllUsesWith both because it often avoids allocating a new
Gabor Greif66ccf602008-08-30 22:16:05 +00005384/// node, and because it doesn't require CSE recalculation for any of
Dan Gohman17059682008-07-17 19:10:17 +00005385/// the node's users.
5386///
5387SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
Craig Topper131de822014-04-27 19:21:16 +00005388 SDVTList VTs, ArrayRef<SDValue> Ops) {
5389 unsigned NumOps = Ops.size();
Dan Gohman22e97072008-07-02 23:23:19 +00005390 // If an identical node already exists, use it.
Craig Topperc0196b12014-04-14 00:51:57 +00005391 void *IP = nullptr;
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005392 if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
Dan Gohman17059682008-07-17 19:10:17 +00005393 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005394 AddNodeIDNode(ID, Opc, VTs, Ops);
Bill Wendling022d18f2009-12-18 23:32:53 +00005395 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Andrew Trickef9de2a2013-05-25 02:42:55 +00005396 return UpdadeSDLocOnMergedSDNode(ON, SDLoc(N));
Dan Gohman17059682008-07-17 19:10:17 +00005397 }
Chris Lattner9d0d7152005-12-01 18:00:57 +00005398
Dan Gohmand3fe1742008-09-13 01:54:27 +00005399 if (!RemoveNodeFromCSEMaps(N))
Craig Topperc0196b12014-04-14 00:51:57 +00005400 IP = nullptr;
Chris Lattner486edfb2007-02-04 02:32:44 +00005401
Dan Gohman17059682008-07-17 19:10:17 +00005402 // Start the morphing.
5403 N->NodeType = Opc;
5404 N->ValueList = VTs.VTs;
5405 N->NumValues = VTs.NumVTs;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005406
Dan Gohman17059682008-07-17 19:10:17 +00005407 // Clear the operands list, updating used nodes to remove this from their
5408 // use list. Keep track of any operands that become dead as a result.
5409 SmallPtrSet<SDNode*, 16> DeadNodeSet;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005410 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
5411 SDUse &Use = *I++;
5412 SDNode *Used = Use.getNode();
5413 Use.set(SDValue());
Dan Gohman17059682008-07-17 19:10:17 +00005414 if (Used->use_empty())
5415 DeadNodeSet.insert(Used);
5416 }
5417
Dan Gohman48b185d2009-09-25 20:36:54 +00005418 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
5419 // Initialize the memory references information.
Craig Topperc0196b12014-04-14 00:51:57 +00005420 MN->setMemRefs(nullptr, nullptr);
Dan Gohman48b185d2009-09-25 20:36:54 +00005421 // If NumOps is larger than the # of operands we can have in a
5422 // MachineSDNode, reallocate the operand list.
5423 if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
5424 if (MN->OperandsNeedDelete)
5425 delete[] MN->OperandList;
5426 if (NumOps > array_lengthof(MN->LocalOperands))
5427 // We're creating a final node that will live unmorphed for the
5428 // remainder of the current SelectionDAG iteration, so we can allocate
5429 // the operands directly out of a pool with no recycling metadata.
5430 MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
Craig Topper131de822014-04-27 19:21:16 +00005431 Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005432 else
Craig Topper131de822014-04-27 19:21:16 +00005433 MN->InitOperands(MN->LocalOperands, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005434 MN->OperandsNeedDelete = false;
5435 } else
Craig Topper131de822014-04-27 19:21:16 +00005436 MN->InitOperands(MN->OperandList, Ops.data(), NumOps);
Dan Gohman48b185d2009-09-25 20:36:54 +00005437 } else {
5438 // If NumOps is larger than the # of operands we currently have, reallocate
5439 // the operand list.
5440 if (NumOps > N->NumOperands) {
5441 if (N->OperandsNeedDelete)
5442 delete[] N->OperandList;
Craig Topper131de822014-04-27 19:21:16 +00005443 N->InitOperands(new SDUse[NumOps], Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005444 N->OperandsNeedDelete = true;
Dan Gohman48b185d2009-09-25 20:36:54 +00005445 } else
Craig Topper131de822014-04-27 19:21:16 +00005446 N->InitOperands(N->OperandList, Ops.data(), NumOps);
Dan Gohman17059682008-07-17 19:10:17 +00005447 }
5448
5449 // Delete any nodes that are still dead after adding the uses for the
5450 // new operands.
Chris Lattnere89ca7c2010-03-01 07:43:08 +00005451 if (!DeadNodeSet.empty()) {
5452 SmallVector<SDNode *, 16> DeadNodes;
5453 for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
5454 E = DeadNodeSet.end(); I != E; ++I)
5455 if ((*I)->use_empty())
5456 DeadNodes.push_back(*I);
5457 RemoveDeadNodes(DeadNodes);
5458 }
Dan Gohman91697632008-07-07 20:57:48 +00005459
Dan Gohman17059682008-07-17 19:10:17 +00005460 if (IP)
5461 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng34b70ee2006-08-26 08:00:10 +00005462 return N;
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005463}
5464
Chris Lattnerf090f7e2005-11-19 01:44:53 +00005465
Dan Gohman32f71d72009-09-25 18:54:59 +00005466/// getMachineNode - These are used for target selectors to create a new node
5467/// with specified return type(s), MachineInstr opcode, and operands.
Evan Chengd3f1db92006-02-09 07:15:23 +00005468///
Dan Gohman32f71d72009-09-25 18:54:59 +00005469/// Note that getMachineNode returns the resultant node. If there is already a
Evan Chengd3f1db92006-02-09 07:15:23 +00005470/// node of the specified opcode and operands, it returns that node instead of
5471/// the current one.
Dan Gohmana22f2d82009-10-10 01:29:16 +00005472MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005473SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005474 SDVTList VTs = getVTList(VT);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005475 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005476}
Bill Wendlinga434d932009-01-29 09:01:55 +00005477
Dan Gohmana22f2d82009-10-10 01:29:16 +00005478MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005479SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, SDValue Op1) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005480 SDVTList VTs = getVTList(VT);
5481 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005482 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005483}
Bill Wendlinga434d932009-01-29 09:01:55 +00005484
Dan Gohmana22f2d82009-10-10 01:29:16 +00005485MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005486SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005487 SDValue Op1, SDValue Op2) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005488 SDVTList VTs = getVTList(VT);
5489 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005490 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005491}
Bill Wendlinga434d932009-01-29 09:01:55 +00005492
Dan Gohmana22f2d82009-10-10 01:29:16 +00005493MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005494SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005495 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005496 SDVTList VTs = getVTList(VT);
5497 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005498 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005499}
Bill Wendlinga434d932009-01-29 09:01:55 +00005500
Dan Gohmana22f2d82009-10-10 01:29:16 +00005501MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005502SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT,
Michael Liaob53d8962013-04-19 22:22:57 +00005503 ArrayRef<SDValue> Ops) {
Dan Gohman48b185d2009-09-25 20:36:54 +00005504 SDVTList VTs = getVTList(VT);
Michael Liaob53d8962013-04-19 22:22:57 +00005505 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005506}
Bill Wendlinga434d932009-01-29 09:01:55 +00005507
Dan Gohmana22f2d82009-10-10 01:29:16 +00005508MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005509SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, EVT VT2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005510 SDVTList VTs = getVTList(VT1, VT2);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00005511 return getMachineNode(Opcode, dl, VTs, None);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005512}
Bill Wendlinga434d932009-01-29 09:01:55 +00005513
Dan Gohmana22f2d82009-10-10 01:29:16 +00005514MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005515SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005516 EVT VT1, EVT VT2, SDValue Op1) {
Dan Gohmande912e22009-04-09 23:54:40 +00005517 SDVTList VTs = getVTList(VT1, VT2);
Dan Gohman48b185d2009-09-25 20:36:54 +00005518 SDValue Ops[] = { Op1 };
Michael Liaob53d8962013-04-19 22:22:57 +00005519 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005520}
Bill Wendlinga434d932009-01-29 09:01:55 +00005521
Dan Gohmana22f2d82009-10-10 01:29:16 +00005522MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005523SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005524 EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005525 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005526 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005527 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005528}
5529
Dan Gohmana22f2d82009-10-10 01:29:16 +00005530MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005531SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005532 EVT VT1, EVT VT2, SDValue Op1,
5533 SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005534 SDVTList VTs = getVTList(VT1, VT2);
Bill Wendlinga434d932009-01-29 09:01:55 +00005535 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005536 return getMachineNode(Opcode, dl, VTs, Ops);
Bill Wendlinga434d932009-01-29 09:01:55 +00005537}
5538
Dan Gohmana22f2d82009-10-10 01:29:16 +00005539MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005540SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005541 EVT VT1, EVT VT2,
Michael Liaob53d8962013-04-19 22:22:57 +00005542 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005543 SDVTList VTs = getVTList(VT1, VT2);
Michael Liaob53d8962013-04-19 22:22:57 +00005544 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005545}
Bill Wendlinga434d932009-01-29 09:01:55 +00005546
Dan Gohmana22f2d82009-10-10 01:29:16 +00005547MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005548SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005549 EVT VT1, EVT VT2, EVT VT3,
5550 SDValue Op1, SDValue Op2) {
Dan Gohmande912e22009-04-09 23:54:40 +00005551 SDVTList VTs = getVTList(VT1, VT2, VT3);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005552 SDValue Ops[] = { Op1, Op2 };
Michael Liaob53d8962013-04-19 22:22:57 +00005553 return getMachineNode(Opcode, dl, VTs, Ops);
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, EVT VT3,
5559 SDValue Op1, SDValue Op2, SDValue Op3) {
Dan Gohmande912e22009-04-09 23:54:40 +00005560 SDVTList VTs = getVTList(VT1, VT2, VT3);
Bill Wendlinga434d932009-01-29 09:01:55 +00005561 SDValue Ops[] = { Op1, Op2, Op3 };
Michael Liaob53d8962013-04-19 22:22:57 +00005562 return getMachineNode(Opcode, dl, VTs, Ops);
Evan Chengd3f1db92006-02-09 07:15:23 +00005563}
Bill Wendlinga434d932009-01-29 09:01:55 +00005564
Dan Gohmana22f2d82009-10-10 01:29:16 +00005565MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005566SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005567 EVT VT1, EVT VT2, EVT VT3,
Michael Liaob53d8962013-04-19 22:22:57 +00005568 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005569 SDVTList VTs = getVTList(VT1, VT2, VT3);
Michael Liaob53d8962013-04-19 22:22:57 +00005570 return getMachineNode(Opcode, dl, VTs, Ops);
Dale Johannesen839acbb2009-01-29 00:47:48 +00005571}
Bill Wendlinga434d932009-01-29 09:01:55 +00005572
Dan Gohmana22f2d82009-10-10 01:29:16 +00005573MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005574SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1,
Dan Gohmana22f2d82009-10-10 01:29:16 +00005575 EVT VT2, EVT VT3, EVT VT4,
Michael Liaob53d8962013-04-19 22:22:57 +00005576 ArrayRef<SDValue> Ops) {
Dan Gohmande912e22009-04-09 23:54:40 +00005577 SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
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,
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005583 ArrayRef<EVT> ResultTys,
Michael Liaob53d8962013-04-19 22:22:57 +00005584 ArrayRef<SDValue> Ops) {
Craig Topperabb4ac72014-04-16 06:10:51 +00005585 SDVTList VTs = getVTList(ResultTys);
Michael Liaob53d8962013-04-19 22:22:57 +00005586 return getMachineNode(Opcode, dl, VTs, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00005587}
5588
Dan Gohmana22f2d82009-10-10 01:29:16 +00005589MachineSDNode *
Andrew Trickef9de2a2013-05-25 02:42:55 +00005590SelectionDAG::getMachineNode(unsigned Opcode, SDLoc DL, SDVTList VTs,
Michael Liaob53d8962013-04-19 22:22:57 +00005591 ArrayRef<SDValue> OpsArray) {
Chris Lattner3e5fbd72010-12-21 02:38:05 +00005592 bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
Dan Gohman48b185d2009-09-25 20:36:54 +00005593 MachineSDNode *N;
Craig Topperc0196b12014-04-14 00:51:57 +00005594 void *IP = nullptr;
Michael Liaob53d8962013-04-19 22:22:57 +00005595 const SDValue *Ops = OpsArray.data();
5596 unsigned NumOps = OpsArray.size();
Dan Gohman48b185d2009-09-25 20:36:54 +00005597
5598 if (DoCSE) {
5599 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005600 AddNodeIDNode(ID, ~Opcode, VTs, OpsArray);
Craig Topperc0196b12014-04-14 00:51:57 +00005601 IP = nullptr;
Devang Patel7bbc1e52011-12-15 18:21:18 +00005602 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005603 return cast<MachineSDNode>(UpdadeSDLocOnMergedSDNode(E, DL));
Devang Patel7bbc1e52011-12-15 18:21:18 +00005604 }
Dan Gohman48b185d2009-09-25 20:36:54 +00005605 }
5606
5607 // Allocate a new MachineSDNode.
Jack Carter170a5f22013-09-09 22:02:08 +00005608 N = new (NodeAllocator) MachineSDNode(~Opcode, DL.getIROrder(),
5609 DL.getDebugLoc(), VTs);
Dan Gohman48b185d2009-09-25 20:36:54 +00005610
5611 // Initialize the operands list.
5612 if (NumOps > array_lengthof(N->LocalOperands))
5613 // We're creating a final node that will live unmorphed for the
5614 // remainder of the current SelectionDAG iteration, so we can allocate
5615 // the operands directly out of a pool with no recycling metadata.
5616 N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
5617 Ops, NumOps);
5618 else
5619 N->InitOperands(N->LocalOperands, Ops, NumOps);
5620 N->OperandsNeedDelete = false;
5621
5622 if (DoCSE)
5623 CSEMap.InsertNode(N, IP);
5624
5625 AllNodes.push_back(N);
5626#ifndef NDEBUG
Duncan Sands7c601de2010-11-20 11:25:00 +00005627 VerifyMachineNode(N);
Dan Gohman48b185d2009-09-25 20:36:54 +00005628#endif
5629 return N;
Dale Johannesen839acbb2009-01-29 00:47:48 +00005630}
Evan Chengd3f1db92006-02-09 07:15:23 +00005631
Dan Gohmanac33a902009-08-19 18:16:17 +00005632/// getTargetExtractSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005633/// TargetOpcode::EXTRACT_SUBREG nodes.
Dan Gohmanac33a902009-08-19 18:16:17 +00005634SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005635SelectionDAG::getTargetExtractSubreg(int SRIdx, SDLoc DL, EVT VT,
Dan Gohmanac33a902009-08-19 18:16:17 +00005636 SDValue Operand) {
5637 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005638 SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
Dan Gohman32f71d72009-09-25 18:54:59 +00005639 VT, Operand, SRIdxVal);
Dan Gohmanac33a902009-08-19 18:16:17 +00005640 return SDValue(Subreg, 0);
5641}
5642
Bob Wilson2a45a652009-10-08 18:49:46 +00005643/// getTargetInsertSubreg - A convenience function for creating
Chris Lattnerb06015a2010-02-09 19:54:29 +00005644/// TargetOpcode::INSERT_SUBREG nodes.
Bob Wilson2a45a652009-10-08 18:49:46 +00005645SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005646SelectionDAG::getTargetInsertSubreg(int SRIdx, SDLoc DL, EVT VT,
Bob Wilson2a45a652009-10-08 18:49:46 +00005647 SDValue Operand, SDValue Subreg) {
5648 SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
Chris Lattnerb06015a2010-02-09 19:54:29 +00005649 SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
Bob Wilson2a45a652009-10-08 18:49:46 +00005650 VT, Operand, Subreg, SRIdxVal);
5651 return SDValue(Result, 0);
5652}
5653
Evan Cheng31604a62008-03-22 01:55:50 +00005654/// getNodeIfExists - Get the specified node if it's already available, or
5655/// else return NULL.
5656SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005657 ArrayRef<SDValue> Ops, bool nuw, bool nsw,
5658 bool exact) {
5659 if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
Evan Cheng31604a62008-03-22 01:55:50 +00005660 FoldingSetNodeID ID;
Craig Topper633d99b2014-04-27 23:22:43 +00005661 AddNodeIDNode(ID, Opcode, VTList, Ops);
Andrea Di Biagio4db1abe2014-06-09 12:32:53 +00005662 if (isBinOpWithFlags(Opcode))
5663 AddBinaryNodeIDCustom(ID, nuw, nsw, exact);
Craig Topperc0196b12014-04-14 00:51:57 +00005664 void *IP = nullptr;
Bill Wendling022d18f2009-12-18 23:32:53 +00005665 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng31604a62008-03-22 01:55:50 +00005666 return E;
5667 }
Craig Topperc0196b12014-04-14 00:51:57 +00005668 return nullptr;
Evan Cheng31604a62008-03-22 01:55:50 +00005669}
5670
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005671/// getDbgValue - Creates a SDDbgValue node.
5672///
Adrian Prantl32da8892014-04-25 20:49:25 +00005673/// SDNode
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005674SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005675SelectionDAG::getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R,
5676 bool IsIndirect, uint64_t Off,
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005677 DebugLoc DL, unsigned O) {
Adrian Prantl32da8892014-04-25 20:49:25 +00005678 return new (Allocator) SDDbgValue(MDPtr, N, R, IsIndirect, Off, DL, O);
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005679}
5680
Adrian Prantl32da8892014-04-25 20:49:25 +00005681/// Constant
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005682SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005683SelectionDAG::getConstantDbgValue(MDNode *MDPtr, const Value *C,
5684 uint64_t Off,
5685 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005686 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O);
5687}
5688
Adrian Prantl32da8892014-04-25 20:49:25 +00005689/// FrameIndex
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005690SDDbgValue *
Adrian Prantl32da8892014-04-25 20:49:25 +00005691SelectionDAG::getFrameIndexDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off,
5692 DebugLoc DL, unsigned O) {
Evan Cheng4d1aa2a2010-03-29 20:48:30 +00005693 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O);
5694}
5695
Dan Gohman7d099f72010-03-03 21:33:37 +00005696namespace {
5697
Dan Gohman9cc886b2010-03-04 19:11:28 +00005698/// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
Dan Gohman7d099f72010-03-03 21:33:37 +00005699/// pointed to by a use iterator is deleted, increment the use iterator
5700/// so that it doesn't dangle.
5701///
Dan Gohman7d099f72010-03-03 21:33:37 +00005702class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
Dan Gohman7d099f72010-03-03 21:33:37 +00005703 SDNode::use_iterator &UI;
5704 SDNode::use_iterator &UE;
5705
Craig Topper7b883b32014-03-08 06:31:39 +00005706 void NodeDeleted(SDNode *N, SDNode *E) override {
Dan Gohman7d099f72010-03-03 21:33:37 +00005707 // Increment the iterator as needed.
5708 while (UI != UE && N == *UI)
5709 ++UI;
Dan Gohman7d099f72010-03-03 21:33:37 +00005710 }
5711
5712public:
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005713 RAUWUpdateListener(SelectionDAG &d,
Dan Gohman7d099f72010-03-03 21:33:37 +00005714 SDNode::use_iterator &ui,
5715 SDNode::use_iterator &ue)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005716 : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
Dan Gohman7d099f72010-03-03 21:33:37 +00005717};
5718
5719}
5720
Evan Cheng445b91a2006-08-07 22:13:29 +00005721/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005722/// This can cause recursive merging of nodes in the DAG.
5723///
Chris Lattner76858912008-02-03 03:35:22 +00005724/// This version assumes From has a single result value.
Chris Lattner373f0482005-08-26 18:36:28 +00005725///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005726void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00005727 SDNode *From = FromN.getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005728 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
Chris Lattner373f0482005-08-26 18:36:28 +00005729 "Cannot replace with this method!");
Gabor Greiff304a7a2008-08-28 21:40:38 +00005730 assert(From != To.getNode() && "Cannot replace uses of with self");
Roman Levenstein51f532f2008-04-07 10:06:32 +00005731
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005732 // Iterate over all the existing uses of From. New uses will be added
5733 // to the beginning of the use list, which we avoid visiting.
5734 // This specifically avoids visiting uses of From that arise while the
5735 // replacement is happening, because any such uses would be the result
5736 // of CSE: If an existing node looks like From after one of its operands
5737 // is replaced by To, we don't want to replace of all its users with To
5738 // too. See PR3018 for more info.
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005739 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005740 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005741 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005742 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005743
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005744 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005745 RemoveNodeFromCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005746
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005747 // A user can appear in a use list multiple times, and when this
5748 // happens the uses are usually next to each other in the list.
5749 // To help reduce the number of CSE recomputations, process all
5750 // the uses of this user that we can find this way.
5751 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005752 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005753 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005754 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005755 } while (UI != UE && *UI == User);
5756
5757 // Now that we have modified User, add it back to the CSE maps. If it
5758 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005759 AddModifiedNodeToCSEMaps(User);
Chris Lattner373f0482005-08-26 18:36:28 +00005760 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005761
5762 // If we just RAUW'd the root, take note.
5763 if (FromN == getRoot())
5764 setRoot(To);
Chris Lattner373f0482005-08-26 18:36:28 +00005765}
5766
5767/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5768/// This can cause recursive merging of nodes in the DAG.
5769///
Dan Gohman8aa28b92009-04-15 20:06:30 +00005770/// This version assumes that for each value of From, there is a
5771/// corresponding value in To in the same position with the same type.
Chris Lattner373f0482005-08-26 18:36:28 +00005772///
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005773void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
Dan Gohman8aa28b92009-04-15 20:06:30 +00005774#ifndef NDEBUG
5775 for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
5776 assert((!From->hasAnyUseOfValue(i) ||
5777 From->getValueType(i) == To->getValueType(i)) &&
5778 "Cannot use this version of ReplaceAllUsesWith!");
5779#endif
Dan Gohman17059682008-07-17 19:10:17 +00005780
5781 // Handle the trivial case.
5782 if (From == To)
5783 return;
5784
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005785 // Iterate over just the existing users of From. See the comments in
5786 // the ReplaceAllUsesWith above.
5787 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005788 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005789 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005790 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005791
Chris Lattner373f0482005-08-26 18:36:28 +00005792 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005793 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005794
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005795 // A user can appear in a use list multiple times, and when this
5796 // happens the uses are usually next to each other in the list.
5797 // To help reduce the number of CSE recomputations, process all
5798 // the uses of this user that we can find this way.
5799 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005800 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005801 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005802 Use.setNode(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005803 } while (UI != UE && *UI == User);
5804
5805 // Now that we have modified User, add it back to the CSE maps. If it
5806 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005807 AddModifiedNodeToCSEMaps(User);
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005808 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005809
5810 // If we just RAUW'd the root, take note.
5811 if (From == getRoot().getNode())
5812 setRoot(SDValue(To, getRoot().getResNo()));
Chris Lattnerab0de9d2005-08-17 19:00:20 +00005813}
5814
Chris Lattner373f0482005-08-26 18:36:28 +00005815/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5816/// This can cause recursive merging of nodes in the DAG.
5817///
5818/// This version can replace From with any result values. To must match the
5819/// number and types of values returned by From.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005820void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
Chris Lattner76858912008-02-03 03:35:22 +00005821 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005822 return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005823
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005824 // Iterate over just the existing users of From. See the comments in
5825 // the ReplaceAllUsesWith above.
5826 SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005827 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmancd0b1bf2009-01-19 21:44:21 +00005828 while (UI != UE) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005829 SDNode *User = *UI;
Roman Levenstein51f532f2008-04-07 10:06:32 +00005830
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005831 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005832 RemoveNodeFromCSEMaps(User);
Roman Levenstein51f532f2008-04-07 10:06:32 +00005833
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005834 // A user can appear in a use list multiple times, and when this
5835 // happens the uses are usually next to each other in the list.
5836 // To help reduce the number of CSE recomputations, process all
5837 // the uses of this user that we can find this way.
5838 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005839 SDUse &Use = UI.getUse();
5840 const SDValue &ToOp = To[Use.getResNo()];
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005841 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005842 Use.set(ToOp);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005843 } while (UI != UE && *UI == User);
5844
5845 // Now that we have modified User, add it back to the CSE maps. If it
5846 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005847 AddModifiedNodeToCSEMaps(User);
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005848 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005849
5850 // If we just RAUW'd the root, take note.
5851 if (From == getRoot().getNode())
5852 setRoot(SDValue(To[getRoot().getResNo()]));
Chris Lattnerd7ee4d82005-08-24 22:44:39 +00005853}
5854
Chris Lattner375e1a72006-02-17 21:58:01 +00005855/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005856/// uses of other values produced by From.getNode() alone. The Deleted
5857/// vector is handled the same way as for ReplaceAllUsesWith.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005858void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
Dan Gohman17059682008-07-17 19:10:17 +00005859 // Handle the really simple, really trivial case efficiently.
5860 if (From == To) return;
5861
Chris Lattner375e1a72006-02-17 21:58:01 +00005862 // Handle the simple, trivial, case efficiently.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005863 if (From.getNode()->getNumValues() == 1) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005864 ReplaceAllUsesWith(From, To);
Chris Lattner375e1a72006-02-17 21:58:01 +00005865 return;
5866 }
Chris Lattnerb2b9d6f2008-02-03 06:49:24 +00005867
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005868 // Iterate over just the existing users of From. See the comments in
5869 // the ReplaceAllUsesWith above.
5870 SDNode::use_iterator UI = From.getNode()->use_begin(),
5871 UE = From.getNode()->use_end();
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005872 RAUWUpdateListener Listener(*this, UI, UE);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005873 while (UI != UE) {
5874 SDNode *User = *UI;
5875 bool UserRemovedFromCSEMaps = false;
Chris Lattner375e1a72006-02-17 21:58:01 +00005876
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005877 // A user can appear in a use list multiple times, and when this
5878 // happens the uses are usually next to each other in the list.
5879 // To help reduce the number of CSE recomputations, process all
5880 // the uses of this user that we can find this way.
5881 do {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005882 SDUse &Use = UI.getUse();
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005883
5884 // Skip uses of different values from the same node.
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005885 if (Use.getResNo() != From.getResNo()) {
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005886 ++UI;
5887 continue;
Chris Lattner375e1a72006-02-17 21:58:01 +00005888 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005889
5890 // If this node hasn't been modified yet, it's still in the CSE maps,
5891 // so remove its old self from the CSE maps.
5892 if (!UserRemovedFromCSEMaps) {
5893 RemoveNodeFromCSEMaps(User);
5894 UserRemovedFromCSEMaps = true;
5895 }
5896
5897 ++UI;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005898 Use.set(To);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005899 } while (UI != UE && *UI == User);
5900
5901 // We are iterating over all uses of the From node, so if a use
5902 // doesn't use the specific value, no changes are made.
5903 if (!UserRemovedFromCSEMaps)
5904 continue;
5905
Chris Lattner3cfb56d2007-10-15 06:10:22 +00005906 // Now that we have modified User, add it back to the CSE maps. If it
5907 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005908 AddModifiedNodeToCSEMaps(User);
Dan Gohman17059682008-07-17 19:10:17 +00005909 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005910
5911 // If we just RAUW'd the root, take note.
5912 if (From == getRoot())
5913 setRoot(To);
Dan Gohman17059682008-07-17 19:10:17 +00005914}
5915
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005916namespace {
5917 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
5918 /// to record information about a use.
5919 struct UseMemo {
5920 SDNode *User;
5921 unsigned Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005922 SDUse *Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005923 };
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005924
5925 /// operator< - Sort Memos by User.
5926 bool operator<(const UseMemo &L, const UseMemo &R) {
5927 return (intptr_t)L.User < (intptr_t)R.User;
5928 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005929}
5930
Dan Gohman17059682008-07-17 19:10:17 +00005931/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005932/// uses of other values produced by From.getNode() alone. The same value
5933/// may appear in both the From and To list. The Deleted vector is
Dan Gohman17059682008-07-17 19:10:17 +00005934/// handled the same way as for ReplaceAllUsesWith.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005935void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
5936 const SDValue *To,
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005937 unsigned Num){
Dan Gohman17059682008-07-17 19:10:17 +00005938 // Handle the simple, trivial case efficiently.
5939 if (Num == 1)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005940 return ReplaceAllUsesOfValueWith(*From, *To);
Dan Gohman17059682008-07-17 19:10:17 +00005941
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005942 // Read up all the uses and make records of them. This helps
5943 // processing new uses that are introduced during the
5944 // replacement process.
5945 SmallVector<UseMemo, 4> Uses;
5946 for (unsigned i = 0; i != Num; ++i) {
5947 unsigned FromResNo = From[i].getResNo();
5948 SDNode *FromNode = From[i].getNode();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005949 for (SDNode::use_iterator UI = FromNode->use_begin(),
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005950 E = FromNode->use_end(); UI != E; ++UI) {
5951 SDUse &Use = UI.getUse();
5952 if (Use.getResNo() == FromResNo) {
5953 UseMemo Memo = { *UI, i, &Use };
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005954 Uses.push_back(Memo);
5955 }
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005956 }
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005957 }
Dan Gohman17059682008-07-17 19:10:17 +00005958
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005959 // Sort the uses, so that all the uses from a given User are together.
5960 std::sort(Uses.begin(), Uses.end());
5961
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005962 for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
5963 UseIndex != UseIndexEnd; ) {
Dan Gohman17059682008-07-17 19:10:17 +00005964 // We know that this user uses some value of From. If it is the right
5965 // value, update it.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005966 SDNode *User = Uses[UseIndex].User;
5967
5968 // This node is about to morph, remove its old self from the CSE maps.
Dan Gohman17059682008-07-17 19:10:17 +00005969 RemoveNodeFromCSEMaps(User);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005970
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005971 // The Uses array is sorted, so all the uses for a given User
5972 // are next to each other in the list.
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005973 // To help reduce the number of CSE recomputations, process all
5974 // the uses of this user that we can find this way.
5975 do {
5976 unsigned i = Uses[UseIndex].Index;
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005977 SDUse &Use = *Uses[UseIndex].Use;
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005978 ++UseIndex;
5979
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00005980 Use.set(To[i]);
Dan Gohmanf1d38be2009-01-25 16:29:12 +00005981 } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
5982
Dan Gohman17059682008-07-17 19:10:17 +00005983 // Now that we have modified User, add it back to the CSE maps. If it
5984 // already exists there, recursively merge the results together.
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00005985 AddModifiedNodeToCSEMaps(User);
Chris Lattner375e1a72006-02-17 21:58:01 +00005986 }
5987}
5988
Evan Cheng9631a602006-08-01 08:20:41 +00005989/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengbba1ebd2006-08-02 22:00:34 +00005990/// based on their topological order. It returns the maximum id and a vector
5991/// of the SDNodes* in assigned order by reference.
Dan Gohman86aa16a2008-09-30 18:30:35 +00005992unsigned SelectionDAG::AssignTopologicalOrder() {
Evan Chengbba1ebd2006-08-02 22:00:34 +00005993
Dan Gohman86aa16a2008-09-30 18:30:35 +00005994 unsigned DAGSize = 0;
Evan Cheng9631a602006-08-01 08:20:41 +00005995
Dan Gohman86aa16a2008-09-30 18:30:35 +00005996 // SortedPos tracks the progress of the algorithm. Nodes before it are
5997 // sorted, nodes after it are unsorted. When the algorithm completes
5998 // it is at the end of the list.
5999 allnodes_iterator SortedPos = allnodes_begin();
6000
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006001 // Visit all the nodes. Move nodes with no operands to the front of
6002 // the list immediately. Annotate nodes that do have operands with their
Dan Gohman86aa16a2008-09-30 18:30:35 +00006003 // operand count. Before we do this, the Node Id fields of the nodes
6004 // may contain arbitrary values. After, the Node Id fields for nodes
6005 // before SortedPos will contain the topological sort index, and the
6006 // Node Id fields for nodes At SortedPos and after will contain the
6007 // count of outstanding operands.
6008 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
6009 SDNode *N = I++;
Adam Nemet7d394302014-05-31 16:23:17 +00006010 checkForCycles(N, this);
Dan Gohman86aa16a2008-09-30 18:30:35 +00006011 unsigned Degree = N->getNumOperands();
6012 if (Degree == 0) {
6013 // A node with no uses, add it to the result array immediately.
6014 N->setNodeId(DAGSize++);
6015 allnodes_iterator Q = N;
6016 if (Q != SortedPos)
6017 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
David Greene3b2a68c2010-01-20 00:59:23 +00006018 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006019 ++SortedPos;
6020 } else {
6021 // Temporarily use the Node Id as scratch space for the degree count.
6022 N->setNodeId(Degree);
Evan Cheng9631a602006-08-01 08:20:41 +00006023 }
6024 }
6025
Chad Rosier5d1f5d22012-05-21 17:13:41 +00006026 // Visit all the nodes. As we iterate, move nodes into sorted order,
Dan Gohman86aa16a2008-09-30 18:30:35 +00006027 // such that by the time the end is reached all nodes will be sorted.
6028 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
6029 SDNode *N = I;
Adam Nemet7d394302014-05-31 16:23:17 +00006030 checkForCycles(N, this);
David Greene3b2a68c2010-01-20 00:59:23 +00006031 // N is in sorted position, so all its uses have one less operand
6032 // that needs to be sorted.
Dan Gohman86aa16a2008-09-30 18:30:35 +00006033 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
6034 UI != UE; ++UI) {
6035 SDNode *P = *UI;
6036 unsigned Degree = P->getNodeId();
David Greene3b2a68c2010-01-20 00:59:23 +00006037 assert(Degree != 0 && "Invalid node degree");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006038 --Degree;
6039 if (Degree == 0) {
6040 // All of P's operands are sorted, so P may sorted now.
6041 P->setNodeId(DAGSize++);
6042 if (P != SortedPos)
6043 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
David Greene3b2a68c2010-01-20 00:59:23 +00006044 assert(SortedPos != AllNodes.end() && "Overran node list");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006045 ++SortedPos;
6046 } else {
6047 // Update P's outstanding operand count.
6048 P->setNodeId(Degree);
6049 }
6050 }
David Greene3b2a68c2010-01-20 00:59:23 +00006051 if (I == SortedPos) {
David Greene893047d2010-02-09 23:03:05 +00006052#ifndef NDEBUG
6053 SDNode *S = ++I;
6054 dbgs() << "Overran sorted position:\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006055 S->dumprFull(this); dbgs() << "\n";
Adam Nemetb4690e32014-05-31 16:23:20 +00006056 dbgs() << "Checking if this is due to cycles\n";
6057 checkForCycles(this, true);
David Greene893047d2010-02-09 23:03:05 +00006058#endif
Craig Topperc0196b12014-04-14 00:51:57 +00006059 llvm_unreachable(nullptr);
David Greene3b2a68c2010-01-20 00:59:23 +00006060 }
Dan Gohman86aa16a2008-09-30 18:30:35 +00006061 }
6062
6063 assert(SortedPos == AllNodes.end() &&
6064 "Topological sort incomplete!");
6065 assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
6066 "First node in topological sort is not the entry token!");
6067 assert(AllNodes.front().getNodeId() == 0 &&
6068 "First node in topological sort has non-zero id!");
6069 assert(AllNodes.front().getNumOperands() == 0 &&
6070 "First node in topological sort has operands!");
6071 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
6072 "Last node in topologic sort has unexpected id!");
6073 assert(AllNodes.back().use_empty() &&
6074 "Last node in topologic sort has users!");
Dan Gohman8dfa51c2008-11-21 19:10:41 +00006075 assert(DAGSize == allnodes_size() && "Node count mismatch!");
Dan Gohman86aa16a2008-09-30 18:30:35 +00006076 return DAGSize;
Evan Cheng9631a602006-08-01 08:20:41 +00006077}
6078
Evan Cheng563fe3c2010-03-25 01:38:16 +00006079/// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
6080/// value is produced by SD.
Dale Johannesene0983522010-04-26 20:06:49 +00006081void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) {
6082 DbgInfo->add(DB, SD, isParameter);
Evan Cheng563fe3c2010-03-25 01:38:16 +00006083 if (SD)
6084 SD->setHasDebugValue(true);
Dale Johannesen49de0602010-03-10 22:13:47 +00006085}
Evan Cheng29eefc12006-07-27 06:39:06 +00006086
Devang Patelefc6b162011-01-25 23:27:42 +00006087/// TransferDbgValues - Transfer SDDbgValues.
6088void SelectionDAG::TransferDbgValues(SDValue From, SDValue To) {
6089 if (From == To || !From.getNode()->getHasDebugValue())
6090 return;
6091 SDNode *FromNode = From.getNode();
6092 SDNode *ToNode = To.getNode();
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006093 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode);
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006094 SmallVector<SDDbgValue *, 2> ClonedDVs;
Benjamin Kramere1fc29b2011-06-18 13:13:44 +00006095 for (ArrayRef<SDDbgValue *>::iterator I = DVs.begin(), E = DVs.end();
Devang Patelefc6b162011-01-25 23:27:42 +00006096 I != E; ++I) {
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006097 SDDbgValue *Dbg = *I;
6098 if (Dbg->getKind() == SDDbgValue::SDNODE) {
6099 SDDbgValue *Clone = getDbgValue(Dbg->getMDPtr(), ToNode, To.getResNo(),
Adrian Prantl32da8892014-04-25 20:49:25 +00006100 Dbg->isIndirect(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006101 Dbg->getOffset(), Dbg->getDebugLoc(),
6102 Dbg->getOrder());
6103 ClonedDVs.push_back(Clone);
Devang Patelefc6b162011-01-25 23:27:42 +00006104 }
6105 }
Craig Toppere1c1d362013-07-03 05:11:49 +00006106 for (SmallVectorImpl<SDDbgValue *>::iterator I = ClonedDVs.begin(),
Devang Patelb7ae3cc2011-02-18 22:43:42 +00006107 E = ClonedDVs.end(); I != E; ++I)
6108 AddDbgValue(*I, ToNode, false);
Devang Patelefc6b162011-01-25 23:27:42 +00006109}
6110
Jim Laskeyd66e6162005-08-17 20:08:02 +00006111//===----------------------------------------------------------------------===//
6112// SDNode Class
6113//===----------------------------------------------------------------------===//
Chris Lattner19732782005-08-16 18:17:10 +00006114
Chris Lattner3bf17b62007-02-04 02:41:42 +00006115HandleSDNode::~HandleSDNode() {
Dan Gohman91697632008-07-07 20:57:48 +00006116 DropOperands();
Chris Lattner3bf17b62007-02-04 02:41:42 +00006117}
6118
Andrew Trickef9de2a2013-05-25 02:42:55 +00006119GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
6120 DebugLoc DL, const GlobalValue *GA,
Owen Anderson53aa7a92009-08-10 22:56:29 +00006121 EVT VT, int64_t o, unsigned char TF)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006122 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
Dan Gohman8422e572010-04-17 15:32:28 +00006123 TheGlobal = GA;
Lauro Ramos Venancio4e919082007-04-21 20:56:26 +00006124}
Chris Lattner3bf17b62007-02-04 02:41:42 +00006125
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00006126AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, DebugLoc dl, EVT VT,
6127 SDValue X, unsigned SrcAS,
6128 unsigned DestAS)
6129 : UnarySDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT), X),
6130 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
6131
Andrew Trickef9de2a2013-05-25 02:42:55 +00006132MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
6133 EVT memvt, MachineMemOperand *mmo)
6134 : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006135 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006136 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006137 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
David Greeneb7941b02010-02-17 20:21:42 +00006138 assert(isNonTemporal() == MMO->isNonTemporal() &&
6139 "Non-temporal encoding error!");
Dan Gohman48b185d2009-09-25 20:36:54 +00006140 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Dale Johannesen666bf202009-01-28 21:18:29 +00006141}
6142
Andrew Trickef9de2a2013-05-25 02:42:55 +00006143MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
Craig Topperbb533072014-04-27 19:21:02 +00006144 ArrayRef<SDValue> Ops, EVT memvt, MachineMemOperand *mmo)
6145 : SDNode(Opc, Order, dl, VTs, Ops),
Dan Gohman48b185d2009-09-25 20:36:54 +00006146 MemoryVT(memvt), MMO(mmo) {
David Greeneb7941b02010-02-17 20:21:42 +00006147 SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006148 MMO->isNonTemporal(), MMO->isInvariant());
Dan Gohman48b185d2009-09-25 20:36:54 +00006149 assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
6150 assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
Mon P Wang6a490372008-06-25 08:15:39 +00006151}
6152
Jim Laskeyf576b422006-10-27 23:46:08 +00006153/// Profile - Gather unique data for the node.
6154///
Dan Gohman2da2bed2008-08-20 15:58:01 +00006155void SDNode::Profile(FoldingSetNodeID &ID) const {
Jim Laskeyf576b422006-10-27 23:46:08 +00006156 AddNodeIDNode(ID, this);
6157}
6158
Owen Anderson3b1665e2009-08-25 22:27:22 +00006159namespace {
6160 struct EVTArray {
6161 std::vector<EVT> VTs;
Wesley Peck527da1b2010-11-23 03:31:01 +00006162
Owen Anderson3b1665e2009-08-25 22:27:22 +00006163 EVTArray() {
6164 VTs.reserve(MVT::LAST_VALUETYPE);
6165 for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
6166 VTs.push_back(MVT((MVT::SimpleValueType)i));
6167 }
6168 };
6169}
6170
Owen Anderson53aa7a92009-08-10 22:56:29 +00006171static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs;
Owen Anderson3b1665e2009-08-25 22:27:22 +00006172static ManagedStatic<EVTArray> SimpleVTArray;
Chris Lattner56d60ea2009-08-22 04:07:34 +00006173static ManagedStatic<sys::SmartMutex<true> > VTMutex;
Owen Anderson5defd562009-06-25 17:09:00 +00006174
Chris Lattner88fa11c2005-11-08 23:30:28 +00006175/// getValueTypeList - Return a pointer to the specified value type.
6176///
Owen Anderson53aa7a92009-08-10 22:56:29 +00006177const EVT *SDNode::getValueTypeList(EVT VT) {
Duncan Sands13237ac2008-06-06 12:08:01 +00006178 if (VT.isExtended()) {
Owen Anderson63010bb2009-08-22 06:32:36 +00006179 sys::SmartScopedLock<true> Lock(*VTMutex);
Owen Anderson5defd562009-06-25 17:09:00 +00006180 return &(*EVTs->insert(VT).first);
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006181 } else {
Duncan Sands14627772010-11-03 12:17:33 +00006182 assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE &&
Duncan Sandse4d66702010-05-10 04:54:28 +00006183 "Value type out of range!");
Owen Anderson3b1665e2009-08-25 22:27:22 +00006184 return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006185 }
Chris Lattner88fa11c2005-11-08 23:30:28 +00006186}
Duncan Sandsbbbfbe92007-10-16 09:56:48 +00006187
Chris Lattner40e79822005-01-12 18:37:47 +00006188/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
6189/// indicated value. This method ignores uses of other values defined by this
6190/// operation.
Evan Chengd37645c2006-02-05 06:29:23 +00006191bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner40e79822005-01-12 18:37:47 +00006192 assert(Value < getNumValues() && "Bad value!");
6193
Roman Levenstein51f532f2008-04-07 10:06:32 +00006194 // TODO: Only iterate over uses of a given value of the node
6195 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006196 if (UI.getUse().getResNo() == Value) {
Roman Levenstein51f532f2008-04-07 10:06:32 +00006197 if (NUses == 0)
6198 return false;
6199 --NUses;
6200 }
Chris Lattner40e79822005-01-12 18:37:47 +00006201 }
6202
6203 // Found exactly the right number of uses?
6204 return NUses == 0;
6205}
6206
6207
Evan Cheng358c3d12007-08-02 05:29:38 +00006208/// hasAnyUseOfValue - Return true if there are any use of the indicated
6209/// value. This method ignores uses of other values defined by this operation.
6210bool SDNode::hasAnyUseOfValue(unsigned Value) const {
6211 assert(Value < getNumValues() && "Bad value!");
6212
Dan Gohman7a510c22008-07-09 22:39:01 +00006213 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006214 if (UI.getUse().getResNo() == Value)
Dan Gohman7a510c22008-07-09 22:39:01 +00006215 return true;
Evan Cheng358c3d12007-08-02 05:29:38 +00006216
6217 return false;
6218}
6219
6220
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006221/// isOnlyUserOf - Return true if this node is the only use of N.
Evan Cheng9456dd82006-11-03 07:31:32 +00006222///
Dan Gohmanbb5f43e2008-07-27 18:06:42 +00006223bool SDNode::isOnlyUserOf(SDNode *N) const {
Evan Chengd37645c2006-02-05 06:29:23 +00006224 bool Seen = false;
6225 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohman91e5dcb2008-07-27 20:43:25 +00006226 SDNode *User = *I;
Evan Chengd37645c2006-02-05 06:29:23 +00006227 if (User == this)
6228 Seen = true;
6229 else
6230 return false;
6231 }
6232
6233 return Seen;
6234}
6235
Evan Cheng9456dd82006-11-03 07:31:32 +00006236/// isOperand - Return true if this node is an operand of N.
6237///
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006238bool SDValue::isOperandOf(SDNode *N) const {
Evan Cheng23e75f52006-03-03 06:42:32 +00006239 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
6240 if (*this == N->getOperand(i))
6241 return true;
6242 return false;
6243}
6244
Evan Cheng567d2e52008-03-04 00:41:45 +00006245bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng6b08ae82006-03-03 06:24:54 +00006246 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Dan Gohman8e4ac9b2009-01-26 04:35:06 +00006247 if (this == N->OperandList[i].getNode())
Evan Cheng6b08ae82006-03-03 06:24:54 +00006248 return true;
6249 return false;
6250}
Evan Chengd37645c2006-02-05 06:29:23 +00006251
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006252/// reachesChainWithoutSideEffects - Return true if this operand (which must
Scott Michelcf0da6c2009-02-17 22:15:04 +00006253/// be a chain) reaches the specified operand without crossing any
Wesley Peck527da1b2010-11-23 03:31:01 +00006254/// side-effecting instructions on any chain path. In practice, this looks
6255/// through token factors and non-volatile loads. In order to remain efficient,
Owen Andersonb92b13d2010-09-18 04:45:14 +00006256/// this only looks a couple of nodes in, it does not do an exhaustive search.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006257bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006258 unsigned Depth) const {
6259 if (*this == Dest) return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006260
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006261 // Don't search too deeply, we just want to be able to see through
6262 // TokenFactor's etc.
6263 if (Depth == 0) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006264
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006265 // If this is a token factor, all inputs to the TF happen in parallel. If any
Owen Andersonb92b13d2010-09-18 04:45:14 +00006266 // of the operands of the TF does not reach dest, then we cannot do the xform.
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006267 if (getOpcode() == ISD::TokenFactor) {
6268 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersonb92b13d2010-09-18 04:45:14 +00006269 if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
6270 return false;
6271 return true;
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006272 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006273
Chris Lattner2e50a6f2008-01-16 05:49:24 +00006274 // Loads don't have side effects, look through them.
6275 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
6276 if (!Ld->isVolatile())
6277 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
6278 }
6279 return false;
6280}
6281
Lang Hames5a004992011-07-07 04:31:51 +00006282/// hasPredecessor - Return true if N is a predecessor of this node.
6283/// N is either an operand of this node, or can be reached by recursively
6284/// traversing up the operands.
6285/// NOTE: This is an expensive method. Use it carefully.
6286bool SDNode::hasPredecessor(const SDNode *N) const {
6287 SmallPtrSet<const SDNode *, 32> Visited;
6288 SmallVector<const SDNode *, 16> Worklist;
6289 return hasPredecessorHelper(N, Visited, Worklist);
6290}
Dan Gohmancd139c02009-10-28 03:44:30 +00006291
Craig Topperb94011f2013-07-14 04:42:23 +00006292bool
6293SDNode::hasPredecessorHelper(const SDNode *N,
6294 SmallPtrSet<const SDNode *, 32> &Visited,
6295 SmallVectorImpl<const SDNode *> &Worklist) const {
Lang Hames5a004992011-07-07 04:31:51 +00006296 if (Visited.empty()) {
6297 Worklist.push_back(this);
6298 } else {
6299 // Take a look in the visited set. If we've already encountered this node
6300 // we needn't search further.
6301 if (Visited.count(N))
6302 return true;
6303 }
6304
6305 // Haven't visited N yet. Continue the search.
6306 while (!Worklist.empty()) {
6307 const SDNode *M = Worklist.pop_back_val();
6308 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
6309 SDNode *Op = M->getOperand(i).getNode();
Dan Gohmancd139c02009-10-28 03:44:30 +00006310 if (Visited.insert(Op))
6311 Worklist.push_back(Op);
Lang Hames5a004992011-07-07 04:31:51 +00006312 if (Op == N)
6313 return true;
Dan Gohmancd139c02009-10-28 03:44:30 +00006314 }
Lang Hames5a004992011-07-07 04:31:51 +00006315 }
Dan Gohmancd139c02009-10-28 03:44:30 +00006316
6317 return false;
Evan Chengc176f032006-11-03 03:05:24 +00006318}
6319
Evan Cheng5d9fd972006-10-04 00:56:09 +00006320uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
6321 assert(Num < NumOperands && "Invalid child # of SDNode!");
Dan Gohmaneffb8942008-09-12 16:56:44 +00006322 return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
Evan Cheng5d9fd972006-10-04 00:56:09 +00006323}
6324
Mon P Wang32f8bb92009-11-30 02:42:02 +00006325SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
6326 assert(N->getNumValues() == 1 &&
6327 "Can't unroll a vector with multiple results!");
6328
6329 EVT VT = N->getValueType(0);
6330 unsigned NE = VT.getVectorNumElements();
6331 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006332 SDLoc dl(N);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006333
6334 SmallVector<SDValue, 8> Scalars;
6335 SmallVector<SDValue, 4> Operands(N->getNumOperands());
6336
6337 // If ResNE is 0, fully unroll the vector op.
6338 if (ResNE == 0)
6339 ResNE = NE;
6340 else if (NE > ResNE)
6341 NE = ResNE;
6342
6343 unsigned i;
6344 for (i= 0; i != NE; ++i) {
Bill Wendlingde4b2252010-04-30 22:19:17 +00006345 for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
Mon P Wang32f8bb92009-11-30 02:42:02 +00006346 SDValue Operand = N->getOperand(j);
6347 EVT OperandVT = Operand.getValueType();
6348 if (OperandVT.isVector()) {
6349 // A vector operand; extract a single element.
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006350 const TargetLowering *TLI = TM.getTargetLowering();
Mon P Wang32f8bb92009-11-30 02:42:02 +00006351 EVT OperandEltVT = OperandVT.getVectorElementType();
6352 Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl,
6353 OperandEltVT,
6354 Operand,
Tom Stellardd42c5942013-08-05 22:22:01 +00006355 getConstant(i, TLI->getVectorIdxTy()));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006356 } else {
6357 // A scalar operand; just use it as is.
6358 Operands[j] = Operand;
6359 }
6360 }
6361
6362 switch (N->getOpcode()) {
6363 default:
Craig Topper48d114b2014-04-26 18:35:24 +00006364 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006365 break;
Nadav Rotem52202fb2011-09-13 19:17:42 +00006366 case ISD::VSELECT:
Craig Topper48d114b2014-04-26 18:35:24 +00006367 Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands));
Nadav Rotem52202fb2011-09-13 19:17:42 +00006368 break;
Mon P Wang32f8bb92009-11-30 02:42:02 +00006369 case ISD::SHL:
6370 case ISD::SRA:
6371 case ISD::SRL:
6372 case ISD::ROTL:
6373 case ISD::ROTR:
6374 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
Jack Carter170a5f22013-09-09 22:02:08 +00006375 getShiftAmountOperand(Operands[0].getValueType(),
6376 Operands[1])));
Mon P Wang32f8bb92009-11-30 02:42:02 +00006377 break;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00006378 case ISD::SIGN_EXTEND_INREG:
6379 case ISD::FP_ROUND_INREG: {
6380 EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
6381 Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6382 Operands[0],
6383 getValueType(ExtVT)));
6384 }
Mon P Wang32f8bb92009-11-30 02:42:02 +00006385 }
6386 }
6387
6388 for (; i < ResNE; ++i)
6389 Scalars.push_back(getUNDEF(EltVT));
6390
6391 return getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00006392 EVT::getVectorVT(*getContext(), EltVT, ResNE), Scalars);
Mon P Wang32f8bb92009-11-30 02:42:02 +00006393}
6394
Evan Chengf5938d52009-12-09 01:36:00 +00006395
Wesley Peck527da1b2010-11-23 03:31:01 +00006396/// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a
6397/// location that is 'Dist' units away from the location that the 'Base' load
Evan Chengf5938d52009-12-09 01:36:00 +00006398/// is loading from.
Wesley Peck527da1b2010-11-23 03:31:01 +00006399bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base,
Evan Chengf5938d52009-12-09 01:36:00 +00006400 unsigned Bytes, int Dist) const {
6401 if (LD->getChain() != Base->getChain())
6402 return false;
6403 EVT VT = LD->getValueType(0);
6404 if (VT.getSizeInBits() / 8 != Bytes)
6405 return false;
6406
6407 SDValue Loc = LD->getOperand(1);
6408 SDValue BaseLoc = Base->getOperand(1);
6409 if (Loc.getOpcode() == ISD::FrameIndex) {
6410 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6411 return false;
6412 const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo();
6413 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6414 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6415 int FS = MFI->getObjectSize(FI);
6416 int BFS = MFI->getObjectSize(BFI);
6417 if (FS != BFS || FS != (int)Bytes) return false;
6418 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6419 }
Chris Lattner46c01a32011-02-13 22:25:43 +00006420
6421 // Handle X+C
6422 if (isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6423 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6424 return true;
Evan Chengf5938d52009-12-09 01:36:00 +00006425
Craig Topperc0196b12014-04-14 00:51:57 +00006426 const GlobalValue *GV1 = nullptr;
6427 const GlobalValue *GV2 = nullptr;
Evan Chengf5938d52009-12-09 01:36:00 +00006428 int64_t Offset1 = 0;
6429 int64_t Offset2 = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006430 const TargetLowering *TLI = TM.getTargetLowering();
6431 bool isGA1 = TLI->isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6432 bool isGA2 = TLI->isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
Evan Chengf5938d52009-12-09 01:36:00 +00006433 if (isGA1 && isGA2 && GV1 == GV2)
6434 return Offset1 == (Offset2 + Dist*Bytes);
6435 return false;
6436}
6437
6438
Evan Cheng34a23ea2009-12-09 01:04:59 +00006439/// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
6440/// it cannot be inferred.
Evan Cheng17500092009-12-09 01:10:37 +00006441unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
Evan Chengd938faf2009-12-09 01:53:58 +00006442 // If this is a GlobalAddress + cst, return the alignment.
Dan Gohmanbcaf6812010-04-15 01:51:59 +00006443 const GlobalValue *GV;
Evan Chengd938faf2009-12-09 01:53:58 +00006444 int64_t GVOffset = 0;
Bill Wendlinga3cd3502013-06-19 21:36:55 +00006445 const TargetLowering *TLI = TM.getTargetLowering();
6446 if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
Matt Arsenaultdfb3e702013-11-16 20:50:54 +00006447 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006448 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);
Jay Foada0653a32014-05-14 21:14:37 +00006449 llvm::computeKnownBits(const_cast<GlobalValue*>(GV), KnownZero, KnownOne,
6450 TLI->getDataLayout());
Eli Friedmane7ab1a22011-11-28 22:48:22 +00006451 unsigned AlignBits = KnownZero.countTrailingOnes();
6452 unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0;
6453 if (Align)
6454 return MinAlign(Align, GVOffset);
Evan Cheng43cd9e32010-04-01 06:04:33 +00006455 }
Evan Chengd938faf2009-12-09 01:53:58 +00006456
Evan Cheng34a23ea2009-12-09 01:04:59 +00006457 // If this is a direct reference to a stack slot, use information about the
6458 // stack slot's alignment.
6459 int FrameIdx = 1 << 31;
6460 int64_t FrameOffset = 0;
6461 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
6462 FrameIdx = FI->getIndex();
Chris Lattner46c01a32011-02-13 22:25:43 +00006463 } else if (isBaseWithConstantOffset(Ptr) &&
Evan Cheng34a23ea2009-12-09 01:04:59 +00006464 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
Chris Lattner46c01a32011-02-13 22:25:43 +00006465 // Handle FI+Cst
Evan Cheng34a23ea2009-12-09 01:04:59 +00006466 FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6467 FrameOffset = Ptr.getConstantOperandVal(1);
6468 }
6469
6470 if (FrameIdx != (1 << 31)) {
Evan Cheng34a23ea2009-12-09 01:04:59 +00006471 const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo();
Evan Cheng2d412f02009-12-09 01:17:24 +00006472 unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
6473 FrameOffset);
Evan Cheng2d412f02009-12-09 01:17:24 +00006474 return FIInfoAlign;
Evan Cheng34a23ea2009-12-09 01:04:59 +00006475 }
6476
6477 return 0;
6478}
6479
Juergen Ributzkab3487102013-11-19 21:20:17 +00006480/// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
6481/// which is split (or expanded) into two not necessarily identical pieces.
6482std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const {
6483 // Currently all types are split in half.
6484 EVT LoVT, HiVT;
6485 if (!VT.isVector()) {
6486 LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT);
6487 } else {
6488 unsigned NumElements = VT.getVectorNumElements();
6489 assert(!(NumElements & 1) && "Splitting vector, but not in half!");
6490 LoVT = HiVT = EVT::getVectorVT(*getContext(), VT.getVectorElementType(),
6491 NumElements/2);
6492 }
6493 return std::make_pair(LoVT, HiVT);
6494}
6495
6496/// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
6497/// low/high part.
6498std::pair<SDValue, SDValue>
6499SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT,
6500 const EVT &HiVT) {
6501 assert(LoVT.getVectorNumElements() + HiVT.getVectorNumElements() <=
6502 N.getValueType().getVectorNumElements() &&
6503 "More vector elements requested than available!");
6504 SDValue Lo, Hi;
6505 Lo = getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N,
6506 getConstant(0, TLI->getVectorIdxTy()));
6507 Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N,
6508 getConstant(LoVT.getVectorNumElements(), TLI->getVectorIdxTy()));
6509 return std::make_pair(Lo, Hi);
6510}
6511
Matt Arsenault9ec3cf22014-04-11 17:47:30 +00006512void SelectionDAG::ExtractVectorElements(SDValue Op,
6513 SmallVectorImpl<SDValue> &Args,
6514 unsigned Start, unsigned Count) {
6515 EVT VT = Op.getValueType();
6516 if (Count == 0)
6517 Count = VT.getVectorNumElements();
6518
6519 EVT EltVT = VT.getVectorElementType();
6520 EVT IdxTy = TLI->getVectorIdxTy();
6521 SDLoc SL(Op);
6522 for (unsigned i = Start, e = Start + Count; i != e; ++i) {
6523 Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
6524 Op, getConstant(i, IdxTy)));
6525 }
6526}
6527
Sanjiv Guptaccd30942009-04-29 04:43:24 +00006528// getAddressSpace - Return the address space this GlobalAddress belongs to.
6529unsigned GlobalAddressSDNode::getAddressSpace() const {
6530 return getGlobal()->getType()->getAddressSpace();
6531}
6532
6533
Chris Lattner229907c2011-07-18 04:54:35 +00006534Type *ConstantPoolSDNode::getType() const {
Evan Cheng45fe3bc2006-09-12 21:00:35 +00006535 if (isMachineConstantPoolEntry())
6536 return Val.MachineCPVal->getType();
6537 return Val.ConstVal->getType();
6538}
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006539
Bob Wilson85cefe82009-03-02 23:24:16 +00006540bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
6541 APInt &SplatUndef,
6542 unsigned &SplatBitSize,
6543 bool &HasAnyUndefs,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006544 unsigned MinSplatBits,
Matt Arsenaultb598f7b2014-02-24 21:01:18 +00006545 bool isBigEndian) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006546 EVT VT = getValueType(0);
Bob Wilson85cefe82009-03-02 23:24:16 +00006547 assert(VT.isVector() && "Expected a vector type");
6548 unsigned sz = VT.getSizeInBits();
6549 if (MinSplatBits > sz)
6550 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006551
Bob Wilson85cefe82009-03-02 23:24:16 +00006552 SplatValue = APInt(sz, 0);
6553 SplatUndef = APInt(sz, 0);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006554
Bob Wilson85cefe82009-03-02 23:24:16 +00006555 // Get the bits. Bits with undefined values (when the corresponding element
6556 // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
6557 // in SplatValue. If any of the values are not constant, give up and return
6558 // false.
6559 unsigned int nOps = getNumOperands();
6560 assert(nOps > 0 && "isConstantSplat has 0-size build vector");
6561 unsigned EltBitSize = VT.getVectorElementType().getSizeInBits();
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006562
6563 for (unsigned j = 0; j < nOps; ++j) {
6564 unsigned i = isBigEndian ? nOps-1-j : j;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006565 SDValue OpVal = getOperand(i);
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006566 unsigned BitPos = j * EltBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006567
Bob Wilson85cefe82009-03-02 23:24:16 +00006568 if (OpVal.getOpcode() == ISD::UNDEF)
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006569 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
Bob Wilson85cefe82009-03-02 23:24:16 +00006570 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
Jay Foad583abbc2010-12-07 08:25:19 +00006571 SplatValue |= CN->getAPIntValue().zextOrTrunc(EltBitSize).
Dan Gohmanecd40a32010-04-12 02:24:01 +00006572 zextOrTrunc(sz) << BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006573 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
Bob Wilson5b15d012009-03-04 17:47:01 +00006574 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;
Bob Wilson85cefe82009-03-02 23:24:16 +00006575 else
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006576 return false;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006577 }
6578
Bob Wilson85cefe82009-03-02 23:24:16 +00006579 // The build_vector is all constants or undefs. Find the smallest element
6580 // size that splats the vector.
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006581
Bob Wilson85cefe82009-03-02 23:24:16 +00006582 HasAnyUndefs = (SplatUndef != 0);
6583 while (sz > 8) {
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006584
Bob Wilson85cefe82009-03-02 23:24:16 +00006585 unsigned HalfSize = sz / 2;
Jay Foad583abbc2010-12-07 08:25:19 +00006586 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
6587 APInt LowValue = SplatValue.trunc(HalfSize);
6588 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
6589 APInt LowUndef = SplatUndef.trunc(HalfSize);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006590
Bob Wilson85cefe82009-03-02 23:24:16 +00006591 // If the two halves do not match (ignoring undef bits), stop here.
6592 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
6593 MinSplatBits > HalfSize)
6594 break;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006595
Bob Wilson85cefe82009-03-02 23:24:16 +00006596 SplatValue = HighValue | LowValue;
6597 SplatUndef = HighUndef & LowUndef;
Eric Christopherdfda92b2009-08-22 00:40:45 +00006598
Bob Wilson85cefe82009-03-02 23:24:16 +00006599 sz = HalfSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006600 }
6601
Bob Wilson85cefe82009-03-02 23:24:16 +00006602 SplatBitSize = sz;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006603 return true;
6604}
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006605
Andrea Di Biagio5b0aacf2014-03-22 01:47:22 +00006606ConstantSDNode *BuildVectorSDNode::getConstantSplatValue() const {
Matt Arsenault985b9de2014-03-17 18:58:01 +00006607 SDValue Op0 = getOperand(0);
Andrea Di Biagio5b0aacf2014-03-22 01:47:22 +00006608 if (Op0.getOpcode() != ISD::Constant)
6609 return nullptr;
6610
6611 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
6612 if (getOperand(i) != Op0)
Matt Arsenault985b9de2014-03-17 18:58:01 +00006613 return nullptr;
Matt Arsenault985b9de2014-03-17 18:58:01 +00006614
6615 return cast<ConstantSDNode>(Op0);
6616}
6617
Juergen Ributzka73844052014-01-13 20:51:35 +00006618bool BuildVectorSDNode::isConstant() const {
6619 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
6620 unsigned Opc = getOperand(i).getOpcode();
6621 if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP)
6622 return false;
6623 }
6624 return true;
6625}
6626
Owen Anderson53aa7a92009-08-10 22:56:29 +00006627bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
Nate Begeman5f829d82009-04-29 05:20:52 +00006628 // Find the first non-undef value in the shuffle mask.
6629 unsigned i, e;
6630 for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
6631 /* search */;
6632
Nate Begeman39b59db2009-04-29 18:13:31 +00006633 assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
Eric Christopherdfda92b2009-08-22 00:40:45 +00006634
Nate Begeman5f829d82009-04-29 05:20:52 +00006635 // Make sure all remaining elements are either undef or the same as the first
6636 // non-undef value.
6637 for (int Idx = Mask[i]; i != e; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006638 if (Mask[i] >= 0 && Mask[i] != Idx)
6639 return false;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006640 return true;
6641}
David Greene09851602010-01-20 20:13:31 +00006642
Adam Nemetb4690e32014-05-31 16:23:20 +00006643#ifndef NDEBUG
David Greene09851602010-01-20 20:13:31 +00006644static void checkForCyclesHelper(const SDNode *N,
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006645 SmallPtrSet<const SDNode*, 32> &Visited,
Adam Nemet7d394302014-05-31 16:23:17 +00006646 SmallPtrSet<const SDNode*, 32> &Checked,
6647 const llvm::SelectionDAG *DAG) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006648 // If this node has already been checked, don't check it again.
6649 if (Checked.count(N))
David Greened8ecd5e2010-02-23 17:37:50 +00006650 return;
Wesley Peck527da1b2010-11-23 03:31:01 +00006651
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006652 // If a node has already been visited on this depth-first walk, reject it as
6653 // a cycle.
6654 if (!Visited.insert(N)) {
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006655 errs() << "Detected cycle in SelectionDAG\n";
Adam Nemet7d394302014-05-31 16:23:17 +00006656 dbgs() << "Offending node:\n";
6657 N->dumprFull(DAG); dbgs() << "\n";
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006658 abort();
David Greene09851602010-01-20 20:13:31 +00006659 }
Wesley Peck527da1b2010-11-23 03:31:01 +00006660
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006661 for(unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Adam Nemet7d394302014-05-31 16:23:17 +00006662 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked, DAG);
Wesley Peck527da1b2010-11-23 03:31:01 +00006663
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006664 Checked.insert(N);
6665 Visited.erase(N);
David Greene09851602010-01-20 20:13:31 +00006666}
Chris Lattner9b7cfd32010-02-24 21:34:04 +00006667#endif
David Greene09851602010-01-20 20:13:31 +00006668
Adam Nemet7d394302014-05-31 16:23:17 +00006669void llvm::checkForCycles(const llvm::SDNode *N,
Adam Nemetb4690e32014-05-31 16:23:20 +00006670 const llvm::SelectionDAG *DAG,
6671 bool force) {
6672#ifndef NDEBUG
6673 bool check = force;
David Greene09851602010-01-20 20:13:31 +00006674#ifdef XDEBUG
Adam Nemetb4690e32014-05-31 16:23:20 +00006675 check = true;
6676#endif // XDEBUG
6677 if (check) {
6678 assert(N && "Checking nonexistent SDNode");
6679 SmallPtrSet<const SDNode*, 32> visited;
6680 SmallPtrSet<const SDNode*, 32> checked;
6681 checkForCyclesHelper(N, visited, checked, DAG);
6682 }
6683#endif // !NDEBUG
David Greene09851602010-01-20 20:13:31 +00006684}
6685
Adam Nemetb4690e32014-05-31 16:23:20 +00006686void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) {
6687 checkForCycles(DAG->getRoot().getNode(), DAG, force);
David Greene09851602010-01-20 20:13:31 +00006688}