blob: 002821d0a6d596087856639751f780155da1db6e [file] [log] [blame]
Chris Lattnerc3aae252005-01-07 07:46:32 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +00009//
Chris Lattnerc3aae252005-01-07 07:46:32 +000010// This implements the SelectionDAG class.
Chris Lattner78ec3112003-08-11 14:57:33 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner78ec3112003-08-11 14:57:33 +000013#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000014#include "llvm/Constants.h"
Eric Christopher0d2b0ab2008-06-26 00:31:12 +000015#include "llvm/Analysis/ValueTracking.h"
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +000016#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000017#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000018#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000020#include "llvm/Assembly/Writer.h"
Dan Gohman707e0182008-04-12 04:36:06 +000021#include "llvm/CallingConv.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000027#include "llvm/Support/MathExtras.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000028#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000029#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000030#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000031#include "llvm/Target/TargetInstrInfo.h"
32#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000033#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000034#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000035#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000036#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000037#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000038#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000039#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000040using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000041
Chris Lattner0b3e5252006-08-15 19:11:05 +000042/// makeVTList - Return an instance of the SDVTList struct initialized with the
43/// specified members.
Duncan Sands83ec4b62008-06-06 12:08:01 +000044static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner0b3e5252006-08-15 19:11:05 +000045 SDVTList Res = {VTs, NumVTs};
46 return Res;
47}
48
Duncan Sands83ec4b62008-06-06 12:08:01 +000049static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
50 switch (VT.getSimpleVT()) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000051 default: assert(0 && "Unknown FP format");
52 case MVT::f32: return &APFloat::IEEEsingle;
53 case MVT::f64: return &APFloat::IEEEdouble;
54 case MVT::f80: return &APFloat::x87DoubleExtended;
55 case MVT::f128: return &APFloat::IEEEquad;
56 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
57 }
58}
59
Chris Lattnerf8dc0612008-02-03 06:49:24 +000060SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
61
Jim Laskey58b968b2005-08-17 20:08:02 +000062//===----------------------------------------------------------------------===//
63// ConstantFPSDNode Class
64//===----------------------------------------------------------------------===//
65
66/// isExactlyValue - We don't rely on operator== working on double values, as
67/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
68/// As such, this method can be used to do an exact bit-for-bit comparison of
69/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000070bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000071 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000072}
73
Duncan Sands83ec4b62008-06-06 12:08:01 +000074bool ConstantFPSDNode::isValueValidForType(MVT VT,
Dale Johannesenf04afdb2007-08-30 00:23:21 +000075 const APFloat& Val) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000076 assert(VT.isFloatingPoint() && "Can only convert between FP types");
Chris Lattnerec4a5672008-03-05 06:48:13 +000077
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000078 // PPC long double cannot be converted to any other type.
79 if (VT == MVT::ppcf128 ||
80 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000081 return false;
82
Dale Johannesenf04afdb2007-08-30 00:23:21 +000083 // convert modifies in place, so make a copy.
84 APFloat Val2 = APFloat(Val);
Chris Lattnerec4a5672008-03-05 06:48:13 +000085 return Val2.convert(*MVTToAPFloatSemantics(VT),
86 APFloat::rmNearestTiesToEven) == APFloat::opOK;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000087}
88
Jim Laskey58b968b2005-08-17 20:08:02 +000089//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000090// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000091//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000092
Evan Chenga8df1662006-03-27 06:58:47 +000093/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000094/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000095bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000096 // Look through a bit convert.
97 if (N->getOpcode() == ISD::BIT_CONVERT)
98 N = N->getOperand(0).Val;
99
Evan Chenga8df1662006-03-27 06:58:47 +0000100 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000101
102 unsigned i = 0, e = N->getNumOperands();
103
104 // Skip over all of the undef values.
105 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
106 ++i;
107
108 // Do not accept an all-undef vector.
109 if (i == e) return false;
110
111 // Do not accept build_vectors that aren't all constants or which have non-~0
112 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000113 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000114 if (isa<ConstantSDNode>(NotZero)) {
115 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
116 return false;
117 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000118 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
119 convertToAPInt().isAllOnesValue())
120 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000121 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000122 return false;
123
124 // Okay, we have at least one ~0 value, check to see if the rest match or are
125 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000126 for (++i; i != e; ++i)
127 if (N->getOperand(i) != NotZero &&
128 N->getOperand(i).getOpcode() != ISD::UNDEF)
129 return false;
130 return true;
131}
132
133
Evan Cheng4a147842006-03-26 09:50:58 +0000134/// isBuildVectorAllZeros - Return true if the specified node is a
135/// BUILD_VECTOR where all of the elements are 0 or undef.
136bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000137 // Look through a bit convert.
138 if (N->getOpcode() == ISD::BIT_CONVERT)
139 N = N->getOperand(0).Val;
140
Evan Cheng4a147842006-03-26 09:50:58 +0000141 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000142
143 unsigned i = 0, e = N->getNumOperands();
144
145 // Skip over all of the undef values.
146 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
147 ++i;
148
149 // Do not accept an all-undef vector.
150 if (i == e) return false;
151
152 // Do not accept build_vectors that aren't all constants or which have non-~0
153 // elements.
154 SDOperand Zero = N->getOperand(i);
155 if (isa<ConstantSDNode>(Zero)) {
156 if (!cast<ConstantSDNode>(Zero)->isNullValue())
157 return false;
158 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000159 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000160 return false;
161 } else
162 return false;
163
164 // Okay, we have at least one ~0 value, check to see if the rest match or are
165 // undefs.
166 for (++i; i != e; ++i)
167 if (N->getOperand(i) != Zero &&
168 N->getOperand(i).getOpcode() != ISD::UNDEF)
169 return false;
170 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000171}
172
Evan Chengefec7512008-02-18 23:04:32 +0000173/// isScalarToVector - Return true if the specified node is a
174/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
175/// element is not an undef.
176bool ISD::isScalarToVector(const SDNode *N) {
177 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
178 return true;
179
180 if (N->getOpcode() != ISD::BUILD_VECTOR)
181 return false;
182 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
183 return false;
184 unsigned NumElems = N->getNumOperands();
185 for (unsigned i = 1; i < NumElems; ++i) {
186 SDOperand V = N->getOperand(i);
187 if (V.getOpcode() != ISD::UNDEF)
188 return false;
189 }
190 return true;
191}
192
193
Evan Chengbb81d972008-01-31 09:59:15 +0000194/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengfc718542008-02-04 23:10:38 +0000195/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Chengbb81d972008-01-31 09:59:15 +0000196/// is 0).
197bool ISD::isDebugLabel(const SDNode *N) {
198 SDOperand Zero;
199 if (N->getOpcode() == ISD::LABEL)
200 Zero = N->getOperand(2);
201 else if (N->isTargetOpcode() &&
202 N->getTargetOpcode() == TargetInstrInfo::LABEL)
203 // Chain moved to last operand.
204 Zero = N->getOperand(1);
205 else
206 return false;
207 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
208}
209
Chris Lattnerc3aae252005-01-07 07:46:32 +0000210/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211/// when given the operation for (X op Y).
212ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213 // To perform this operation, we just need to swap the L and G bits of the
214 // operation.
215 unsigned OldL = (Operation >> 2) & 1;
216 unsigned OldG = (Operation >> 1) & 1;
217 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
218 (OldL << 1) | // New G bit
219 (OldG << 2)); // New L bit.
220}
221
222/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223/// 'op' is a valid SetCC operation.
224ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225 unsigned Operation = Op;
226 if (isInteger)
227 Operation ^= 7; // Flip L, G, E bits, but not U.
228 else
229 Operation ^= 15; // Flip all of the condition bits.
230 if (Operation > ISD::SETTRUE2)
231 Operation &= ~8; // Don't let N and U bits get set.
232 return ISD::CondCode(Operation);
233}
234
235
236/// isSignedOp - For an integer comparison, return 1 if the comparison is a
237/// signed operation and 2 if the result is an unsigned comparison. Return zero
238/// if the operation does not depend on the sign of the input (setne and seteq).
239static int isSignedOp(ISD::CondCode Opcode) {
240 switch (Opcode) {
241 default: assert(0 && "Illegal integer setcc operation!");
242 case ISD::SETEQ:
243 case ISD::SETNE: return 0;
244 case ISD::SETLT:
245 case ISD::SETLE:
246 case ISD::SETGT:
247 case ISD::SETGE: return 1;
248 case ISD::SETULT:
249 case ISD::SETULE:
250 case ISD::SETUGT:
251 case ISD::SETUGE: return 2;
252 }
253}
254
255/// getSetCCOrOperation - Return the result of a logical OR between different
256/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
257/// returns SETCC_INVALID if it is not possible to represent the resultant
258/// comparison.
259ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
260 bool isInteger) {
261 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
262 // Cannot fold a signed integer setcc with an unsigned integer setcc.
263 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000264
Chris Lattnerc3aae252005-01-07 07:46:32 +0000265 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000266
Chris Lattnerc3aae252005-01-07 07:46:32 +0000267 // If the N and U bits get set then the resultant comparison DOES suddenly
268 // care about orderedness, and is true when ordered.
269 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000270 Op &= ~16; // Clear the U bit if the N bit is set.
271
272 // Canonicalize illegal integer setcc's.
273 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
274 Op = ISD::SETNE;
275
Chris Lattnerc3aae252005-01-07 07:46:32 +0000276 return ISD::CondCode(Op);
277}
278
279/// getSetCCAndOperation - Return the result of a logical AND between different
280/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
281/// function returns zero if it is not possible to represent the resultant
282/// comparison.
283ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
284 bool isInteger) {
285 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
286 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000287 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000288
289 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000290 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
291
292 // Canonicalize illegal integer setcc's.
293 if (isInteger) {
294 switch (Result) {
295 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000296 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
Dan Gohmand64a78c2008-05-14 18:17:09 +0000297 case ISD::SETOEQ: // SETEQ & SETU[LG]E
Chris Lattner883a52d2006-06-28 18:29:47 +0000298 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
299 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
300 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000301 }
302 }
303
304 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000305}
306
Chris Lattnerb48da392005-01-23 04:39:44 +0000307const TargetMachine &SelectionDAG::getTarget() const {
308 return TLI.getTargetMachine();
309}
310
Jim Laskey58b968b2005-08-17 20:08:02 +0000311//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000312// SDNode Profile Support
313//===----------------------------------------------------------------------===//
314
Jim Laskeydef69b92006-10-27 23:52:51 +0000315/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
316///
Jim Laskey583bd472006-10-27 23:46:08 +0000317static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
318 ID.AddInteger(OpC);
319}
320
321/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
322/// solely with their pointer.
Dan Gohman844731a2008-05-13 00:00:25 +0000323static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
Jim Laskey583bd472006-10-27 23:46:08 +0000324 ID.AddPointer(VTList.VTs);
325}
326
Jim Laskeydef69b92006-10-27 23:52:51 +0000327/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
328///
Jim Laskey583bd472006-10-27 23:46:08 +0000329static void AddNodeIDOperands(FoldingSetNodeID &ID,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000330 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000331 for (; NumOps; --NumOps, ++Ops) {
332 ID.AddPointer(Ops->Val);
333 ID.AddInteger(Ops->ResNo);
334 }
Jim Laskey583bd472006-10-27 23:46:08 +0000335}
336
Jim Laskey583bd472006-10-27 23:46:08 +0000337static void AddNodeIDNode(FoldingSetNodeID &ID,
338 unsigned short OpC, SDVTList VTList,
Dan Gohman35b31be2008-04-17 23:02:12 +0000339 SDOperandPtr OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000340 AddNodeIDOpcode(ID, OpC);
341 AddNodeIDValueTypes(ID, VTList);
342 AddNodeIDOperands(ID, OpList, N);
343}
344
Roman Levenstein9cac5252008-04-16 16:15:27 +0000345
Jim Laskeydef69b92006-10-27 23:52:51 +0000346/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
347/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000348static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
349 AddNodeIDOpcode(ID, N->getOpcode());
350 // Add the return value info.
351 AddNodeIDValueTypes(ID, N->getVTList());
352 // Add the operand info.
353 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
354
355 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000356 switch (N->getOpcode()) {
357 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000358 case ISD::ARG_FLAGS:
359 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
360 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000361 case ISD::TargetConstant:
362 case ISD::Constant:
Chris Lattner19fc1d32008-02-20 06:28:01 +0000363 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000364 break;
365 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000366 case ISD::ConstantFP: {
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000367 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000368 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000369 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000370 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000371 case ISD::GlobalAddress:
372 case ISD::TargetGlobalTLSAddress:
373 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000374 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
375 ID.AddPointer(GA->getGlobal());
376 ID.AddInteger(GA->getOffset());
377 break;
378 }
379 case ISD::BasicBlock:
380 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
381 break;
382 case ISD::Register:
383 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
384 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000385 case ISD::SRCVALUE:
386 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
387 break;
388 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000389 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohman69de1932008-02-06 22:27:42 +0000390 ID.AddPointer(MO.getValue());
391 ID.AddInteger(MO.getFlags());
392 ID.AddInteger(MO.getOffset());
393 ID.AddInteger(MO.getSize());
394 ID.AddInteger(MO.getAlignment());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000395 break;
396 }
397 case ISD::FrameIndex:
398 case ISD::TargetFrameIndex:
399 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
400 break;
401 case ISD::JumpTable:
402 case ISD::TargetJumpTable:
403 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
404 break;
405 case ISD::ConstantPool:
406 case ISD::TargetConstantPool: {
407 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
408 ID.AddInteger(CP->getAlignment());
409 ID.AddInteger(CP->getOffset());
410 if (CP->isMachineConstantPoolEntry())
411 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
412 else
413 ID.AddPointer(CP->getConstVal());
414 break;
415 }
416 case ISD::LOAD: {
417 LoadSDNode *LD = cast<LoadSDNode>(N);
418 ID.AddInteger(LD->getAddressingMode());
419 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000420 ID.AddInteger(LD->getMemoryVT().getRawBits());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000421 ID.AddInteger(LD->getAlignment());
422 ID.AddInteger(LD->isVolatile());
423 break;
424 }
425 case ISD::STORE: {
426 StoreSDNode *ST = cast<StoreSDNode>(N);
427 ID.AddInteger(ST->getAddressingMode());
428 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000429 ID.AddInteger(ST->getMemoryVT().getRawBits());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000430 ID.AddInteger(ST->getAlignment());
431 ID.AddInteger(ST->isVolatile());
432 break;
433 }
Mon P Wang28873102008-06-25 08:15:39 +0000434 case ISD::ATOMIC_CMP_SWAP:
435 case ISD::ATOMIC_LOAD_ADD:
436 case ISD::ATOMIC_SWAP:
437 case ISD::ATOMIC_LOAD_SUB:
438 case ISD::ATOMIC_LOAD_AND:
439 case ISD::ATOMIC_LOAD_OR:
440 case ISD::ATOMIC_LOAD_XOR:
441 case ISD::ATOMIC_LOAD_NAND:
442 case ISD::ATOMIC_LOAD_MIN:
443 case ISD::ATOMIC_LOAD_MAX:
444 case ISD::ATOMIC_LOAD_UMIN:
445 case ISD::ATOMIC_LOAD_UMAX: {
446 AtomicSDNode *AT = cast<AtomicSDNode>(N);
447 ID.AddInteger(AT->getAlignment());
448 ID.AddInteger(AT->isVolatile());
449 break;
Jim Laskey583bd472006-10-27 23:46:08 +0000450 }
Mon P Wang28873102008-06-25 08:15:39 +0000451 } // end switch (N->getOpcode())
Jim Laskey583bd472006-10-27 23:46:08 +0000452}
453
454//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000455// SelectionDAG Class
456//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000457
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000458/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000459/// SelectionDAG.
460void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000461 // Create a dummy node (which is not added to allnodes), that adds a reference
462 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000463 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000464
Chris Lattner190a4182006-08-04 17:45:20 +0000465 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000466
Chris Lattner190a4182006-08-04 17:45:20 +0000467 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000468 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000469 if (I->use_empty())
470 DeadNodes.push_back(I);
471
472 // Process the worklist, deleting the nodes and adding their uses to the
473 // worklist.
474 while (!DeadNodes.empty()) {
475 SDNode *N = DeadNodes.back();
476 DeadNodes.pop_back();
477
478 // Take the node out of the appropriate CSE map.
479 RemoveNodeFromCSEMaps(N);
480
481 // Next, brutally remove the operand list. This is safe to do, as there are
482 // no cycles in the graph.
483 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000484 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000485 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000486
487 // Now that we removed this operand, see if there are no uses of it left.
488 if (Operand->use_empty())
489 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000490 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000491 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000492 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000493 }
Chris Lattner190a4182006-08-04 17:45:20 +0000494 N->OperandList = 0;
495 N->NumOperands = 0;
496
497 // Finally, remove N itself.
498 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000499 }
500
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000501 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000502 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000503}
504
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000505void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Cheng130a6472006-10-12 20:34:05 +0000506 SmallVector<SDNode*, 16> DeadNodes;
507 DeadNodes.push_back(N);
508
509 // Process the worklist, deleting the nodes and adding their uses to the
510 // worklist.
511 while (!DeadNodes.empty()) {
512 SDNode *N = DeadNodes.back();
513 DeadNodes.pop_back();
514
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000515 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +0000516 UpdateListener->NodeDeleted(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000517
Evan Cheng130a6472006-10-12 20:34:05 +0000518 // Take the node out of the appropriate CSE map.
519 RemoveNodeFromCSEMaps(N);
520
521 // Next, brutally remove the operand list. This is safe to do, as there are
522 // no cycles in the graph.
523 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000524 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000525 Operand->removeUser(std::distance(N->op_begin(), I), N);
Evan Cheng130a6472006-10-12 20:34:05 +0000526
527 // Now that we removed this operand, see if there are no uses of it left.
528 if (Operand->use_empty())
529 DeadNodes.push_back(Operand);
530 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000531 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000532 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000533 }
Evan Cheng130a6472006-10-12 20:34:05 +0000534 N->OperandList = 0;
535 N->NumOperands = 0;
536
537 // Finally, remove N itself.
Evan Cheng130a6472006-10-12 20:34:05 +0000538 AllNodes.erase(N);
539 }
540}
541
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000542void SelectionDAG::DeleteNode(SDNode *N) {
543 assert(N->use_empty() && "Cannot delete a node that is not dead!");
544
545 // First take this out of the appropriate CSE map.
546 RemoveNodeFromCSEMaps(N);
547
Chris Lattner1e111c72005-09-07 05:37:01 +0000548 // Finally, remove uses due to operands of this node, remove from the
549 // AllNodes list, and delete the node.
550 DeleteNodeNotInCSEMaps(N);
551}
552
553void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
554
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000555 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000556 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000557
558 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000559 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000560 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Roman Levensteindc1adac2008-04-07 10:06:32 +0000561 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000562 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000563 }
Chris Lattner65113b22005-11-08 22:07:03 +0000564 N->OperandList = 0;
565 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000566
567 delete N;
568}
569
Chris Lattner149c58c2005-08-16 18:17:10 +0000570/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
571/// correspond to it. This is useful when we're about to delete or repurpose
572/// the node. We don't want future request for structurally identical nodes
573/// to return N anymore.
574void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000575 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000576 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000577 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000578 case ISD::STRING:
579 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
580 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000581 case ISD::CONDCODE:
582 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
583 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000584 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000585 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
586 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000587 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000588 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000589 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000590 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000591 Erased =
592 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000593 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000594 case ISD::VALUETYPE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000595 MVT VT = cast<VTSDNode>(N)->getVT();
596 if (VT.isExtended()) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000597 Erased = ExtendedValueTypeNodes.erase(VT);
598 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000599 Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
600 ValueTypeNodes[VT.getSimpleVT()] = 0;
Duncan Sandsf411b832007-10-17 13:49:58 +0000601 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000602 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000603 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000604 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000605 // Remove it from the CSE Map.
606 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000607 break;
608 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000609#ifndef NDEBUG
610 // Verify that the node was actually in one of the CSE maps, unless it has a
611 // flag result (which cannot be CSE'd) or is one of the special cases that are
612 // not subject to CSE.
613 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000614 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000615 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000616 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000617 assert(0 && "Node is not in map!");
618 }
619#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000620}
621
Chris Lattner8b8749f2005-08-17 19:00:20 +0000622/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
623/// has been taken out and modified in some way. If the specified node already
624/// exists in the CSE maps, do not modify the maps, but return the existing node
625/// instead. If it doesn't exist, add it and return null.
626///
627SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
628 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000629 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000630 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000631
Chris Lattner9f8cc692005-12-19 22:21:21 +0000632 // Check that remaining values produced are not flags.
633 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
634 if (N->getValueType(i) == MVT::Flag)
635 return 0; // Never CSE anything that produces a flag.
636
Chris Lattnera5682852006-08-07 23:03:03 +0000637 SDNode *New = CSEMap.GetOrInsertNode(N);
638 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000639 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000640}
641
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000642/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
643/// were replaced with those specified. If this node is never memoized,
644/// return null, otherwise return a pointer to the slot it would take. If a
645/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000646SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
647 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000648 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000649 return 0; // Never add these nodes.
650
651 // Check that remaining values produced are not flags.
652 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
653 if (N->getValueType(i) == MVT::Flag)
654 return 0; // Never CSE anything that produces a flag.
655
Chris Lattner63e3f142007-02-04 07:28:00 +0000656 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000657 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000658 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000659 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000660}
661
662/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
663/// were replaced with those specified. If this node is never memoized,
664/// return null, otherwise return a pointer to the slot it would take. If a
665/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000666SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
667 SDOperand Op1, SDOperand Op2,
668 void *&InsertPos) {
669 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
670 return 0; // Never add these nodes.
671
672 // Check that remaining values produced are not flags.
673 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
674 if (N->getValueType(i) == MVT::Flag)
675 return 0; // Never CSE anything that produces a flag.
676
Chris Lattner63e3f142007-02-04 07:28:00 +0000677 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000678 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000679 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000680 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
681}
682
683
684/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
685/// were replaced with those specified. If this node is never memoized,
686/// return null, otherwise return a pointer to the slot it would take. If a
687/// node already exists with these operands, the slot will be non-null.
688SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000689 SDOperandPtr Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000690 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000691 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000692 return 0; // Never add these nodes.
693
694 // Check that remaining values produced are not flags.
695 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
696 if (N->getValueType(i) == MVT::Flag)
697 return 0; // Never CSE anything that produces a flag.
698
Jim Laskey583bd472006-10-27 23:46:08 +0000699 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000700 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000701
Evan Cheng9629aba2006-10-11 01:47:58 +0000702 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
703 ID.AddInteger(LD->getAddressingMode());
704 ID.AddInteger(LD->getExtensionType());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000705 ID.AddInteger(LD->getMemoryVT().getRawBits());
Evan Cheng9629aba2006-10-11 01:47:58 +0000706 ID.AddInteger(LD->getAlignment());
707 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000708 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
709 ID.AddInteger(ST->getAddressingMode());
710 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +0000711 ID.AddInteger(ST->getMemoryVT().getRawBits());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000712 ID.AddInteger(ST->getAlignment());
713 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000714 }
Jim Laskey583bd472006-10-27 23:46:08 +0000715
Chris Lattnera5682852006-08-07 23:03:03 +0000716 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000717}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000718
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000719
Chris Lattner78ec3112003-08-11 14:57:33 +0000720SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000721 while (!AllNodes.empty()) {
722 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000723 N->SetNextInBucket(0);
Roman Levensteindc1adac2008-04-07 10:06:32 +0000724 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000725 delete [] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000726 }
Chris Lattner65113b22005-11-08 22:07:03 +0000727 N->OperandList = 0;
728 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000729 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000730 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000731}
732
Duncan Sands83ec4b62008-06-06 12:08:01 +0000733SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000734 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000735 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
Duncan Sands83ec4b62008-06-06 12:08:01 +0000736 VT.getSizeInBits());
Chris Lattner0f2287b2005-04-13 02:38:18 +0000737 return getNode(ISD::AND, Op.getValueType(), Op,
738 getConstant(Imm, Op.getValueType()));
739}
740
Chris Lattner36ce6912005-11-29 06:21:05 +0000741SDOperand SelectionDAG::getString(const std::string &Val) {
742 StringSDNode *&N = StringNodes[Val];
743 if (!N) {
744 N = new StringSDNode(Val);
745 AllNodes.push_back(N);
746 }
747 return SDOperand(N, 0);
748}
749
Duncan Sands83ec4b62008-06-06 12:08:01 +0000750SDOperand SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
751 MVT EltVT =
752 VT.isVector() ? VT.getVectorElementType() : VT;
Dan Gohman6394b092008-02-08 22:59:30 +0000753
Duncan Sands83ec4b62008-06-06 12:08:01 +0000754 return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
Dan Gohman6394b092008-02-08 22:59:30 +0000755}
756
Duncan Sands83ec4b62008-06-06 12:08:01 +0000757SDOperand SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
758 assert(VT.isInteger() && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000759
Duncan Sands83ec4b62008-06-06 12:08:01 +0000760 MVT EltVT =
761 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000762
Duncan Sands83ec4b62008-06-06 12:08:01 +0000763 assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
Dan Gohman6394b092008-02-08 22:59:30 +0000764 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000765
766 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000767 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000768 AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000769 ID.Add(Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000770 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000771 SDNode *N = NULL;
772 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000773 if (!VT.isVector())
Dan Gohman89081322007-12-12 22:21:26 +0000774 return SDOperand(N, 0);
775 if (!N) {
776 N = new ConstantSDNode(isT, Val, EltVT);
777 CSEMap.InsertNode(N, IP);
778 AllNodes.push_back(N);
779 }
780
781 SDOperand Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000782 if (VT.isVector()) {
Dan Gohman89081322007-12-12 22:21:26 +0000783 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000784 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman89081322007-12-12 22:21:26 +0000785 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
786 }
787 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000788}
789
Chris Lattner0bd48932008-01-17 07:00:52 +0000790SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
791 return getConstant(Val, TLI.getPointerTy(), isTarget);
792}
793
794
Duncan Sands83ec4b62008-06-06 12:08:01 +0000795SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
796 assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000797
Duncan Sands83ec4b62008-06-06 12:08:01 +0000798 MVT EltVT =
799 VT.isVector() ? VT.getVectorElementType() : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000800
Chris Lattnerd8658612005-02-17 20:17:32 +0000801 // Do the map lookup using the actual bit pattern for the floating point
802 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
803 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000804 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000805 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000806 AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000807 ID.Add(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000808 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000809 SDNode *N = NULL;
810 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
Duncan Sands83ec4b62008-06-06 12:08:01 +0000811 if (!VT.isVector())
Evan Chengc908dcd2007-06-29 21:36:04 +0000812 return SDOperand(N, 0);
813 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000814 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000815 CSEMap.InsertNode(N, IP);
816 AllNodes.push_back(N);
817 }
818
Dan Gohman7f321562007-06-25 16:23:39 +0000819 SDOperand Result(N, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000820 if (VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000821 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000822 Ops.assign(VT.getVectorNumElements(), Result);
Dan Gohman7f321562007-06-25 16:23:39 +0000823 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
824 }
825 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000826}
827
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828SDOperand SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
829 MVT EltVT =
830 VT.isVector() ? VT.getVectorElementType() : VT;
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000831 if (EltVT==MVT::f32)
832 return getConstantFP(APFloat((float)Val), VT, isTarget);
833 else
834 return getConstantFP(APFloat(Val), VT, isTarget);
835}
836
Chris Lattnerc3aae252005-01-07 07:46:32 +0000837SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000838 MVT VT, int Offset,
Chris Lattner61b09412006-08-11 21:01:22 +0000839 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000840 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000841
842 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
843 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000844 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000845 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
846 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
847 }
848
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000849 if (GVar && GVar->isThreadLocal())
850 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
851 else
852 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000853
Jim Laskey583bd472006-10-27 23:46:08 +0000854 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000855 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000856 ID.AddPointer(GV);
857 ID.AddInteger(Offset);
858 void *IP = 0;
859 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
860 return SDOperand(E, 0);
861 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
862 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000863 AllNodes.push_back(N);
864 return SDOperand(N, 0);
865}
866
Duncan Sands83ec4b62008-06-06 12:08:01 +0000867SDOperand SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000868 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000869 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000870 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000871 ID.AddInteger(FI);
872 void *IP = 0;
873 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
874 return SDOperand(E, 0);
875 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
876 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000877 AllNodes.push_back(N);
878 return SDOperand(N, 0);
879}
880
Duncan Sands83ec4b62008-06-06 12:08:01 +0000881SDOperand SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000882 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000883 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000884 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000885 ID.AddInteger(JTI);
886 void *IP = 0;
887 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
888 return SDOperand(E, 0);
889 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
890 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000891 AllNodes.push_back(N);
892 return SDOperand(N, 0);
893}
894
Duncan Sands83ec4b62008-06-06 12:08:01 +0000895SDOperand SelectionDAG::getConstantPool(Constant *C, MVT VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000896 unsigned Alignment, int Offset,
897 bool isTarget) {
898 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000899 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000900 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000901 ID.AddInteger(Alignment);
902 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000903 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000904 void *IP = 0;
905 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
906 return SDOperand(E, 0);
907 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
908 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000909 AllNodes.push_back(N);
910 return SDOperand(N, 0);
911}
912
Chris Lattnerc3aae252005-01-07 07:46:32 +0000913
Duncan Sands83ec4b62008-06-06 12:08:01 +0000914SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
Evan Chengd6594ae2006-09-12 21:00:35 +0000915 unsigned Alignment, int Offset,
916 bool isTarget) {
917 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000918 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000919 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000920 ID.AddInteger(Alignment);
921 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000922 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000923 void *IP = 0;
924 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
925 return SDOperand(E, 0);
926 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
927 CSEMap.InsertNode(N, IP);
928 AllNodes.push_back(N);
929 return SDOperand(N, 0);
930}
931
932
Chris Lattnerc3aae252005-01-07 07:46:32 +0000933SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000934 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000935 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000936 ID.AddPointer(MBB);
937 void *IP = 0;
938 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
939 return SDOperand(E, 0);
940 SDNode *N = new BasicBlockSDNode(MBB);
941 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000942 AllNodes.push_back(N);
943 return SDOperand(N, 0);
944}
945
Duncan Sands276dcbd2008-03-21 09:14:45 +0000946SDOperand SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
947 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000948 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), (SDOperand*)0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +0000949 ID.AddInteger(Flags.getRawBits());
950 void *IP = 0;
951 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
952 return SDOperand(E, 0);
953 SDNode *N = new ARG_FLAGSSDNode(Flags);
954 CSEMap.InsertNode(N, IP);
955 AllNodes.push_back(N);
956 return SDOperand(N, 0);
957}
958
Duncan Sands83ec4b62008-06-06 12:08:01 +0000959SDOperand SelectionDAG::getValueType(MVT VT) {
960 if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
961 ValueTypeNodes.resize(VT.getSimpleVT()+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000962
Duncan Sands83ec4b62008-06-06 12:08:01 +0000963 SDNode *&N = VT.isExtended() ?
964 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
Duncan Sandsf411b832007-10-17 13:49:58 +0000965
966 if (N) return SDOperand(N, 0);
967 N = new VTSDNode(VT);
968 AllNodes.push_back(N);
969 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000970}
971
Duncan Sands83ec4b62008-06-06 12:08:01 +0000972SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000973 SDNode *&N = ExternalSymbols[Sym];
974 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000975 N = new ExternalSymbolSDNode(false, Sym, VT);
976 AllNodes.push_back(N);
977 return SDOperand(N, 0);
978}
979
Duncan Sands83ec4b62008-06-06 12:08:01 +0000980SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000981 SDNode *&N = TargetExternalSymbols[Sym];
982 if (N) return SDOperand(N, 0);
983 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000984 AllNodes.push_back(N);
985 return SDOperand(N, 0);
986}
987
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000988SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
989 if ((unsigned)Cond >= CondCodeNodes.size())
990 CondCodeNodes.resize(Cond+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991
Chris Lattner079a27a2005-08-09 20:40:02 +0000992 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000993 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000994 AllNodes.push_back(CondCodeNodes[Cond]);
995 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000996 return SDOperand(CondCodeNodes[Cond], 0);
997}
998
Duncan Sands83ec4b62008-06-06 12:08:01 +0000999SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001000 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001001 AddNodeIDNode(ID, ISD::Register, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001002 ID.AddInteger(RegNo);
1003 void *IP = 0;
1004 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1005 return SDOperand(E, 0);
1006 SDNode *N = new RegisterSDNode(RegNo, VT);
1007 CSEMap.InsertNode(N, IP);
1008 AllNodes.push_back(N);
1009 return SDOperand(N, 0);
1010}
1011
Dan Gohman69de1932008-02-06 22:27:42 +00001012SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +00001013 assert((!V || isa<PointerType>(V->getType())) &&
1014 "SrcValue is not a pointer?");
1015
Jim Laskey583bd472006-10-27 23:46:08 +00001016 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001017 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001018 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001019
Chris Lattner61b09412006-08-11 21:01:22 +00001020 void *IP = 0;
1021 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1022 return SDOperand(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001023
1024 SDNode *N = new SrcValueSDNode(V);
1025 CSEMap.InsertNode(N, IP);
1026 AllNodes.push_back(N);
1027 return SDOperand(N, 0);
1028}
1029
Dan Gohman36b5c132008-04-07 19:35:22 +00001030SDOperand SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001031 const Value *v = MO.getValue();
1032 assert((!v || isa<PointerType>(v->getType())) &&
1033 "SrcValue is not a pointer?");
1034
1035 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001036 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), (SDOperand*)0, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001037 ID.AddPointer(v);
1038 ID.AddInteger(MO.getFlags());
1039 ID.AddInteger(MO.getOffset());
1040 ID.AddInteger(MO.getSize());
1041 ID.AddInteger(MO.getAlignment());
1042
1043 void *IP = 0;
1044 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1045 return SDOperand(E, 0);
1046
1047 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001048 CSEMap.InsertNode(N, IP);
1049 AllNodes.push_back(N);
1050 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001051}
1052
Chris Lattner37ce9df2007-10-15 17:47:20 +00001053/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1054/// specified value type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001055SDOperand SelectionDAG::CreateStackTemporary(MVT VT) {
Chris Lattner37ce9df2007-10-15 17:47:20 +00001056 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001057 unsigned ByteSize = VT.getSizeInBits()/8;
1058 const Type *Ty = VT.getTypeForMVT();
Chris Lattner37ce9df2007-10-15 17:47:20 +00001059 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1060 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1061 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1062}
1063
1064
Duncan Sands83ec4b62008-06-06 12:08:01 +00001065SDOperand SelectionDAG::FoldSetCC(MVT VT, SDOperand N1,
Chris Lattner51dabfb2006-10-14 00:41:01 +00001066 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001067 // These setcc operations always fold.
1068 switch (Cond) {
1069 default: break;
1070 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001071 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001072 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001073 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001074
1075 case ISD::SETOEQ:
1076 case ISD::SETOGT:
1077 case ISD::SETOGE:
1078 case ISD::SETOLT:
1079 case ISD::SETOLE:
1080 case ISD::SETONE:
1081 case ISD::SETO:
1082 case ISD::SETUO:
1083 case ISD::SETUEQ:
1084 case ISD::SETUNE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001085 assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
Chris Lattnera83385f2006-04-27 05:01:07 +00001086 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001087 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001088
Chris Lattner67255a12005-04-07 18:14:58 +00001089 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001090 const APInt &C2 = N2C->getAPIntValue();
Chris Lattner67255a12005-04-07 18:14:58 +00001091 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001092 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001093
Chris Lattnerc3aae252005-01-07 07:46:32 +00001094 switch (Cond) {
1095 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001096 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1097 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001098 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1099 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1100 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1101 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1102 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1103 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1104 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1105 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001106 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001107 }
Chris Lattner67255a12005-04-07 18:14:58 +00001108 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001109 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001110 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001111 // No compile time operations on this type yet.
1112 if (N1C->getValueType(0) == MVT::ppcf128)
1113 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001114
1115 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001116 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001117 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001118 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1119 return getNode(ISD::UNDEF, VT);
1120 // fall through
1121 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1122 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1123 return getNode(ISD::UNDEF, VT);
1124 // fall through
1125 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001126 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001127 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1128 return getNode(ISD::UNDEF, VT);
1129 // fall through
1130 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1131 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1132 return getNode(ISD::UNDEF, VT);
1133 // fall through
1134 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1135 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1136 return getNode(ISD::UNDEF, VT);
1137 // fall through
1138 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001139 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001140 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1141 return getNode(ISD::UNDEF, VT);
1142 // fall through
1143 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001144 R==APFloat::cmpEqual, VT);
1145 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1146 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1147 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1148 R==APFloat::cmpEqual, VT);
1149 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1150 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1151 R==APFloat::cmpLessThan, VT);
1152 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1153 R==APFloat::cmpUnordered, VT);
1154 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1155 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001156 }
1157 } else {
1158 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001159 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001160 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001161 }
1162
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001163 // Could not fold it.
1164 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001165}
1166
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001167/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1168/// use this predicate to simplify operations downstream.
1169bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1170 unsigned BitWidth = Op.getValueSizeInBits();
1171 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1172}
1173
Dan Gohmanea859be2007-06-22 14:59:07 +00001174/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1175/// this predicate to simplify operations downstream. Mask is known to be zero
1176/// for bits that V cannot have.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001177bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001178 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001179 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001180 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1181 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1182 return (KnownZero & Mask) == Mask;
1183}
1184
1185/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1186/// known to be either zero or one and return them in the KnownZero/KnownOne
1187/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1188/// processing.
Dan Gohman977a76f2008-02-13 22:28:48 +00001189void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001190 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001191 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001192 unsigned BitWidth = Mask.getBitWidth();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001193 assert(BitWidth == Op.getValueType().getSizeInBits() &&
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001194 "Mask size mismatches value type size!");
1195
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001196 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001197 if (Depth == 6 || Mask == 0)
1198 return; // Limit search depth.
1199
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001200 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001201
1202 switch (Op.getOpcode()) {
1203 case ISD::Constant:
1204 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001205 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001206 KnownZero = ~KnownOne & Mask;
1207 return;
1208 case ISD::AND:
1209 // If either the LHS or the RHS are Zero, the result is zero.
1210 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001211 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1212 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001213 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1214 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1215
1216 // Output known-1 bits are only known if set in both the LHS & RHS.
1217 KnownOne &= KnownOne2;
1218 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1219 KnownZero |= KnownZero2;
1220 return;
1221 case ISD::OR:
1222 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001223 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1224 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001225 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1226 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1227
1228 // Output known-0 bits are only known if clear in both the LHS & RHS.
1229 KnownZero &= KnownZero2;
1230 // Output known-1 are known to be set if set in either the LHS | RHS.
1231 KnownOne |= KnownOne2;
1232 return;
1233 case ISD::XOR: {
1234 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1235 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1236 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1237 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1238
1239 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001240 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001241 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1242 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1243 KnownZero = KnownZeroOut;
1244 return;
1245 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001246 case ISD::MUL: {
1247 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1248 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1249 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1250 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1251 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1252
1253 // If low bits are zero in either operand, output low known-0 bits.
1254 // Also compute a conserative estimate for high known-0 bits.
1255 // More trickiness is possible, but this is sufficient for the
1256 // interesting case of alignment computation.
1257 KnownOne.clear();
1258 unsigned TrailZ = KnownZero.countTrailingOnes() +
1259 KnownZero2.countTrailingOnes();
1260 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001261 KnownZero2.countLeadingOnes(),
1262 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001263
1264 TrailZ = std::min(TrailZ, BitWidth);
1265 LeadZ = std::min(LeadZ, BitWidth);
1266 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1267 APInt::getHighBitsSet(BitWidth, LeadZ);
1268 KnownZero &= Mask;
1269 return;
1270 }
1271 case ISD::UDIV: {
1272 // For the purposes of computing leading zeros we can conservatively
1273 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001274 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001275 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1276 ComputeMaskedBits(Op.getOperand(0),
1277 AllOnes, KnownZero2, KnownOne2, Depth+1);
1278 unsigned LeadZ = KnownZero2.countLeadingOnes();
1279
1280 KnownOne2.clear();
1281 KnownZero2.clear();
1282 ComputeMaskedBits(Op.getOperand(1),
1283 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001284 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1285 if (RHSUnknownLeadingOnes != BitWidth)
1286 LeadZ = std::min(BitWidth,
1287 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001288
1289 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1290 return;
1291 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001292 case ISD::SELECT:
1293 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1294 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1295 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1296 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1297
1298 // Only known if known in both the LHS and RHS.
1299 KnownOne &= KnownOne2;
1300 KnownZero &= KnownZero2;
1301 return;
1302 case ISD::SELECT_CC:
1303 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1304 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1305 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1306 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1307
1308 // Only known if known in both the LHS and RHS.
1309 KnownOne &= KnownOne2;
1310 KnownZero &= KnownZero2;
1311 return;
1312 case ISD::SETCC:
1313 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001314 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1315 BitWidth > 1)
1316 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001317 return;
1318 case ISD::SHL:
1319 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1320 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmand4cf9922008-02-26 18:50:50 +00001321 unsigned ShAmt = SA->getValue();
1322
1323 // If the shift count is an invalid immediate, don't do anything.
1324 if (ShAmt >= BitWidth)
1325 return;
1326
1327 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001328 KnownZero, KnownOne, Depth+1);
1329 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001330 KnownZero <<= ShAmt;
1331 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001332 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001333 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001334 }
1335 return;
1336 case ISD::SRL:
1337 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1338 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001339 unsigned ShAmt = SA->getValue();
1340
Dan Gohmand4cf9922008-02-26 18:50:50 +00001341 // If the shift count is an invalid immediate, don't do anything.
1342 if (ShAmt >= BitWidth)
1343 return;
1344
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001345 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001346 KnownZero, KnownOne, Depth+1);
1347 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001348 KnownZero = KnownZero.lshr(ShAmt);
1349 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001350
Dan Gohman72d2fd52008-02-13 22:43:25 +00001351 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001352 KnownZero |= HighBits; // High bits known zero.
1353 }
1354 return;
1355 case ISD::SRA:
1356 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001357 unsigned ShAmt = SA->getValue();
1358
Dan Gohmand4cf9922008-02-26 18:50:50 +00001359 // If the shift count is an invalid immediate, don't do anything.
1360 if (ShAmt >= BitWidth)
1361 return;
1362
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001363 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001364 // If any of the demanded bits are produced by the sign extension, we also
1365 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001366 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1367 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001369
1370 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1371 Depth+1);
1372 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001373 KnownZero = KnownZero.lshr(ShAmt);
1374 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001375
1376 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001377 APInt SignBit = APInt::getSignBit(BitWidth);
1378 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001379
Dan Gohmanca93a432008-02-20 16:30:17 +00001380 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001381 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001382 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001383 KnownOne |= HighBits; // New bits are known one.
1384 }
1385 }
1386 return;
1387 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001388 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1389 unsigned EBits = EVT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001390
1391 // Sign extension. Compute the demanded bits in the result that are not
1392 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001393 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001394
Dan Gohman977a76f2008-02-13 22:28:48 +00001395 APInt InSignBit = APInt::getSignBit(EBits);
1396 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001397
1398 // If the sign extended bits are demanded, we know that the sign
1399 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001400 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001401 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001402 InputDemandedBits |= InSignBit;
1403
1404 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1405 KnownZero, KnownOne, Depth+1);
1406 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1407
1408 // If the sign bit of the input is known set or clear, then we know the
1409 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001410 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001411 KnownZero |= NewBits;
1412 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001413 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001414 KnownOne |= NewBits;
1415 KnownZero &= ~NewBits;
1416 } else { // Input sign bit unknown
1417 KnownZero &= ~NewBits;
1418 KnownOne &= ~NewBits;
1419 }
1420 return;
1421 }
1422 case ISD::CTTZ:
1423 case ISD::CTLZ:
1424 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001425 unsigned LowBits = Log2_32(BitWidth)+1;
1426 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
Dan Gohman317adcc2008-06-21 22:02:15 +00001427 KnownOne.clear();
Dan Gohmanea859be2007-06-22 14:59:07 +00001428 return;
1429 }
1430 case ISD::LOAD: {
1431 if (ISD::isZEXTLoad(Op.Val)) {
1432 LoadSDNode *LD = cast<LoadSDNode>(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001433 MVT VT = LD->getMemoryVT();
1434 unsigned MemBits = VT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001435 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001436 }
1437 return;
1438 }
1439 case ISD::ZERO_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001440 MVT InVT = Op.getOperand(0).getValueType();
1441 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001442 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1443 APInt InMask = Mask;
1444 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001445 KnownZero.trunc(InBits);
1446 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001447 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001448 KnownZero.zext(BitWidth);
1449 KnownOne.zext(BitWidth);
1450 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001451 return;
1452 }
1453 case ISD::SIGN_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001454 MVT InVT = Op.getOperand(0).getValueType();
1455 unsigned InBits = InVT.getSizeInBits();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001456 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001457 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1458 APInt InMask = Mask;
1459 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001460
1461 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001462 // bit is demanded. Temporarily set this bit in the mask for our callee.
1463 if (NewBits.getBoolValue())
1464 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001465
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001466 KnownZero.trunc(InBits);
1467 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001468 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1469
1470 // Note if the sign bit is known to be zero or one.
1471 bool SignBitKnownZero = KnownZero.isNegative();
1472 bool SignBitKnownOne = KnownOne.isNegative();
1473 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1474 "Sign bit can't be known to be both zero and one!");
1475
1476 // If the sign bit wasn't actually demanded by our caller, we don't
1477 // want it set in the KnownZero and KnownOne result values. Reset the
1478 // mask and reapply it to the result values.
1479 InMask = Mask;
1480 InMask.trunc(InBits);
1481 KnownZero &= InMask;
1482 KnownOne &= InMask;
1483
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001484 KnownZero.zext(BitWidth);
1485 KnownOne.zext(BitWidth);
1486
Dan Gohman977a76f2008-02-13 22:28:48 +00001487 // If the sign bit is known zero or one, the top bits match.
1488 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001489 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001490 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001491 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001492 return;
1493 }
1494 case ISD::ANY_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001495 MVT InVT = Op.getOperand(0).getValueType();
1496 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001497 APInt InMask = Mask;
1498 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001499 KnownZero.trunc(InBits);
1500 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001501 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001502 KnownZero.zext(BitWidth);
1503 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001504 return;
1505 }
1506 case ISD::TRUNCATE: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001507 MVT InVT = Op.getOperand(0).getValueType();
1508 unsigned InBits = InVT.getSizeInBits();
Dan Gohman977a76f2008-02-13 22:28:48 +00001509 APInt InMask = Mask;
1510 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001511 KnownZero.zext(InBits);
1512 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001513 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001514 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001515 KnownZero.trunc(BitWidth);
1516 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001517 break;
1518 }
1519 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001520 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1521 APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001522 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1523 KnownOne, Depth+1);
1524 KnownZero |= (~InMask) & Mask;
1525 return;
1526 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001527 case ISD::FGETSIGN:
1528 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001529 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001530 return;
1531
Dan Gohman23e8b712008-04-28 17:02:21 +00001532 case ISD::SUB: {
1533 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1534 // We know that the top bits of C-X are clear if X contains less bits
1535 // than C (i.e. no wrap-around can happen). For example, 20-X is
1536 // positive if we can prove that X is >= 0 and < 16.
1537 if (CLHS->getAPIntValue().isNonNegative()) {
1538 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1539 // NLZ can't be BitWidth with no sign bit
1540 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1541 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1542 Depth+1);
1543
1544 // If all of the MaskV bits are known to be zero, then we know the
1545 // output top bits are zero, because we now know that the output is
1546 // from [0-C].
1547 if ((KnownZero2 & MaskV) == MaskV) {
1548 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1549 // Top bits known zero.
1550 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1551 }
1552 }
1553 }
1554 }
1555 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001556 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001557 // Output known-0 bits are known if clear or set in both the low clear bits
1558 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1559 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001560 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1561 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1562 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1563 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1564
1565 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1566 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1567 KnownZeroOut = std::min(KnownZeroOut,
1568 KnownZero2.countTrailingOnes());
1569
1570 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001571 return;
1572 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001573 case ISD::SREM:
1574 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1575 APInt RA = Rem->getAPIntValue();
1576 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001577 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001578 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1579 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001580
Dan Gohman23e8b712008-04-28 17:02:21 +00001581 // The sign of a remainder is equal to the sign of the first
1582 // operand (zero being positive).
1583 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1584 KnownZero2 |= ~LowBits;
1585 else if (KnownOne2[BitWidth-1])
1586 KnownOne2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001587
Dan Gohman23e8b712008-04-28 17:02:21 +00001588 KnownZero |= KnownZero2 & Mask;
1589 KnownOne |= KnownOne2 & Mask;
1590
1591 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001592 }
1593 }
1594 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001595 case ISD::UREM: {
1596 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1597 APInt RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001598 if (RA.isPowerOf2()) {
1599 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001600 APInt Mask2 = LowBits & Mask;
1601 KnownZero |= ~LowBits & Mask;
1602 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1603 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1604 break;
1605 }
1606 }
1607
1608 // Since the result is less than or equal to either operand, any leading
1609 // zero bits in either operand must also exist in the result.
1610 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1611 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1612 Depth+1);
1613 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1614 Depth+1);
1615
1616 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1617 KnownZero2.countLeadingOnes());
1618 KnownOne.clear();
1619 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1620 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001621 }
1622 default:
1623 // Allow the target to implement this method for its nodes.
1624 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1625 case ISD::INTRINSIC_WO_CHAIN:
1626 case ISD::INTRINSIC_W_CHAIN:
1627 case ISD::INTRINSIC_VOID:
1628 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1629 }
1630 return;
1631 }
1632}
1633
1634/// ComputeNumSignBits - Return the number of times the sign bit of the
1635/// register is replicated into the other bits. We know that at least 1 bit
1636/// is always equal to the sign bit (itself), but other cases can give us
1637/// information. For example, immediately after an "SRA X, 2", we know that
1638/// the top 3 bits are all equal to each other, so we return 3.
1639unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
Duncan Sands83ec4b62008-06-06 12:08:01 +00001640 MVT VT = Op.getValueType();
1641 assert(VT.isInteger() && "Invalid VT!");
1642 unsigned VTBits = VT.getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001643 unsigned Tmp, Tmp2;
Dan Gohmana332f172008-05-23 02:28:01 +00001644 unsigned FirstAnswer = 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001645
1646 if (Depth == 6)
1647 return 1; // Limit search depth.
1648
1649 switch (Op.getOpcode()) {
1650 default: break;
1651 case ISD::AssertSext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001652 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001653 return VTBits-Tmp+1;
1654 case ISD::AssertZext:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001655 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001656 return VTBits-Tmp;
1657
1658 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001659 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1660 // If negative, return # leading ones.
1661 if (Val.isNegative())
1662 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001663
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001664 // Return # leading zeros.
1665 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001666 }
1667
1668 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001669 Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001670 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1671
1672 case ISD::SIGN_EXTEND_INREG:
1673 // Max of the input and what this extends.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001674 Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001675 Tmp = VTBits-Tmp+1;
1676
1677 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1678 return std::max(Tmp, Tmp2);
1679
1680 case ISD::SRA:
1681 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1682 // SRA X, C -> adds C sign bits.
1683 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1684 Tmp += C->getValue();
1685 if (Tmp > VTBits) Tmp = VTBits;
1686 }
1687 return Tmp;
1688 case ISD::SHL:
1689 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1690 // shl destroys sign bits.
1691 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1692 if (C->getValue() >= VTBits || // Bad shift.
1693 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1694 return Tmp - C->getValue();
1695 }
1696 break;
1697 case ISD::AND:
1698 case ISD::OR:
1699 case ISD::XOR: // NOT is handled here.
Dan Gohmana332f172008-05-23 02:28:01 +00001700 // Logical binary ops preserve the number of sign bits at the worst.
Dan Gohmanea859be2007-06-22 14:59:07 +00001701 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
Dan Gohmana332f172008-05-23 02:28:01 +00001702 if (Tmp != 1) {
1703 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1704 FirstAnswer = std::min(Tmp, Tmp2);
1705 // We computed what we know about the sign bits as our first
1706 // answer. Now proceed to the generic code that uses
1707 // ComputeMaskedBits, and pick whichever answer is better.
1708 }
1709 break;
Dan Gohmanea859be2007-06-22 14:59:07 +00001710
1711 case ISD::SELECT:
Dan Gohmanc84941b2008-05-20 20:59:51 +00001712 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001713 if (Tmp == 1) return 1; // Early out.
Dan Gohmanc84941b2008-05-20 20:59:51 +00001714 Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001715 return std::min(Tmp, Tmp2);
1716
1717 case ISD::SETCC:
1718 // If setcc returns 0/-1, all bits are sign bits.
1719 if (TLI.getSetCCResultContents() ==
1720 TargetLowering::ZeroOrNegativeOneSetCCResult)
1721 return VTBits;
1722 break;
1723 case ISD::ROTL:
1724 case ISD::ROTR:
1725 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1726 unsigned RotAmt = C->getValue() & (VTBits-1);
1727
1728 // Handle rotate right by N like a rotate left by 32-N.
1729 if (Op.getOpcode() == ISD::ROTR)
1730 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1731
1732 // If we aren't rotating out all of the known-in sign bits, return the
1733 // number that are left. This handles rotl(sext(x), 1) for example.
1734 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1735 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1736 }
1737 break;
1738 case ISD::ADD:
1739 // Add can have at most one carry bit. Thus we know that the output
1740 // is, at worst, one more bit than the inputs.
1741 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1742 if (Tmp == 1) return 1; // Early out.
1743
1744 // Special case decrementing a value (ADD X, -1):
1745 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1746 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001747 APInt KnownZero, KnownOne;
1748 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001749 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1750
1751 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1752 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001753 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001754 return VTBits;
1755
1756 // If we are subtracting one from a positive number, there is no carry
1757 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001758 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001759 return Tmp;
1760 }
1761
1762 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1763 if (Tmp2 == 1) return 1;
1764 return std::min(Tmp, Tmp2)-1;
1765 break;
1766
1767 case ISD::SUB:
1768 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1769 if (Tmp2 == 1) return 1;
1770
1771 // Handle NEG.
1772 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001773 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001774 APInt KnownZero, KnownOne;
1775 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001776 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1777 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1778 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001779 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001780 return VTBits;
1781
1782 // If the input is known to be positive (the sign bit is known clear),
1783 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001784 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001785 return Tmp2;
1786
1787 // Otherwise, we treat this like a SUB.
1788 }
1789
1790 // Sub can have at most one carry bit. Thus we know that the output
1791 // is, at worst, one more bit than the inputs.
1792 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1793 if (Tmp == 1) return 1; // Early out.
1794 return std::min(Tmp, Tmp2)-1;
1795 break;
1796 case ISD::TRUNCATE:
1797 // FIXME: it's tricky to do anything useful for this, but it is an important
1798 // case for targets like X86.
1799 break;
1800 }
1801
1802 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1803 if (Op.getOpcode() == ISD::LOAD) {
1804 LoadSDNode *LD = cast<LoadSDNode>(Op);
1805 unsigned ExtType = LD->getExtensionType();
1806 switch (ExtType) {
1807 default: break;
1808 case ISD::SEXTLOAD: // '17' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001809 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001810 return VTBits-Tmp+1;
1811 case ISD::ZEXTLOAD: // '16' bits known
Duncan Sands83ec4b62008-06-06 12:08:01 +00001812 Tmp = LD->getMemoryVT().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001813 return VTBits-Tmp;
1814 }
1815 }
1816
1817 // Allow the target to implement this method for its nodes.
1818 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1819 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1820 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1821 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1822 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
Dan Gohmana332f172008-05-23 02:28:01 +00001823 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001824 }
1825
1826 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1827 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001828 APInt KnownZero, KnownOne;
1829 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001830 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1831
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001832 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001833 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001834 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001835 Mask = KnownOne;
1836 } else {
1837 // Nothing known.
Dan Gohmana332f172008-05-23 02:28:01 +00001838 return FirstAnswer;
Dan Gohmanea859be2007-06-22 14:59:07 +00001839 }
1840
1841 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1842 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001843 Mask = ~Mask;
1844 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001845 // Return # leading zeros. We use 'min' here in case Val was zero before
1846 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmana332f172008-05-23 02:28:01 +00001847 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
Dan Gohmanea859be2007-06-22 14:59:07 +00001848}
1849
Chris Lattner51dabfb2006-10-14 00:41:01 +00001850
Evan Chenga844bde2008-02-02 04:07:54 +00001851bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1852 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1853 if (!GA) return false;
1854 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1855 if (!GV) return false;
1856 MachineModuleInfo *MMI = getMachineModuleInfo();
1857 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1858}
1859
1860
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001861/// getShuffleScalarElt - Returns the scalar element that will make up the ith
1862/// element of the result of the vector shuffle.
Evan Chengab262272008-06-25 20:52:59 +00001863SDOperand SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001864 MVT VT = N->getValueType(0);
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001865 SDOperand PermMask = N->getOperand(2);
Evan Chengab262272008-06-25 20:52:59 +00001866 SDOperand Idx = PermMask.getOperand(i);
1867 if (Idx.getOpcode() == ISD::UNDEF)
1868 return getNode(ISD::UNDEF, VT.getVectorElementType());
1869 unsigned Index = cast<ConstantSDNode>(Idx)->getValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001870 unsigned NumElems = PermMask.getNumOperands();
Evan Chengab262272008-06-25 20:52:59 +00001871 SDOperand V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
1872 Index %= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00001873
1874 if (V.getOpcode() == ISD::BIT_CONVERT) {
1875 V = V.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001876 if (V.getValueType().getVectorNumElements() != NumElems)
Evan Chengf26ffe92008-05-29 08:22:04 +00001877 return SDOperand();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001878 }
Evan Chengf26ffe92008-05-29 08:22:04 +00001879 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00001880 return (Index == 0) ? V.getOperand(0)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001881 : getNode(ISD::UNDEF, VT.getVectorElementType());
Evan Chengf26ffe92008-05-29 08:22:04 +00001882 if (V.getOpcode() == ISD::BUILD_VECTOR)
Evan Chengab262272008-06-25 20:52:59 +00001883 return V.getOperand(Index);
1884 if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
1885 return getShuffleScalarElt(V.Val, Index);
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001886 return SDOperand();
1887}
1888
1889
Chris Lattnerc3aae252005-01-07 07:46:32 +00001890/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001891///
Duncan Sands83ec4b62008-06-06 12:08:01 +00001892SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001893 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001894 AddNodeIDNode(ID, Opcode, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001895 void *IP = 0;
1896 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1897 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001898 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001899 CSEMap.InsertNode(N, IP);
1900
1901 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001902 return SDOperand(N, 0);
1903}
1904
Duncan Sands83ec4b62008-06-06 12:08:01 +00001905SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT, SDOperand Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00001906 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001907 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001908 const APInt &Val = C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001909 unsigned BitWidth = VT.getSizeInBits();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001910 switch (Opcode) {
1911 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00001912 case ISD::SIGN_EXTEND:
1913 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001914 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00001915 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00001916 case ISD::TRUNCATE:
1917 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001918 case ISD::UINT_TO_FP:
1919 case ISD::SINT_TO_FP: {
1920 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001921 // No compile time operations on this type.
1922 if (VT==MVT::ppcf128)
1923 break;
Dan Gohman6c231502008-02-29 01:47:35 +00001924 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
1925 (void)apf.convertFromAPInt(Val,
1926 Opcode==ISD::SINT_TO_FP,
1927 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001928 return getConstantFP(apf, VT);
1929 }
Chris Lattner94683772005-12-23 05:30:37 +00001930 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001931 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00001932 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001933 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00001934 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001935 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001936 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00001937 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001938 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00001939 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001940 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001941 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001942 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001943 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001944 }
1945 }
1946
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001947 // Constant fold unary operations with a floating point constant operand.
1948 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1949 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001950 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001951 switch (Opcode) {
1952 case ISD::FNEG:
1953 V.changeSign();
1954 return getConstantFP(V, VT);
1955 case ISD::FABS:
1956 V.clearSign();
1957 return getConstantFP(V, VT);
1958 case ISD::FP_ROUND:
1959 case ISD::FP_EXTEND:
1960 // This can return overflow, underflow, or inexact; we don't care.
1961 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00001962 (void)V.convert(*MVTToAPFloatSemantics(VT),
1963 APFloat::rmNearestTiesToEven);
Dale Johannesendb44bf82007-10-16 23:38:29 +00001964 return getConstantFP(V, VT);
1965 case ISD::FP_TO_SINT:
1966 case ISD::FP_TO_UINT: {
1967 integerPart x;
1968 assert(integerPartWidth >= 64);
1969 // FIXME need to be more flexible about rounding mode.
1970 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1971 Opcode==ISD::FP_TO_SINT,
1972 APFloat::rmTowardZero);
1973 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1974 break;
1975 return getConstant(x, VT);
1976 }
1977 case ISD::BIT_CONVERT:
1978 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1979 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1980 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1981 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001982 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001983 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001984 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001985 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001986
1987 unsigned OpOpcode = Operand.Val->getOpcode();
1988 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001989 case ISD::TokenFactor:
Dan Gohmanb91c89d2008-04-14 18:43:25 +00001990 case ISD::MERGE_VALUES:
1991 return Operand; // Factor or merge of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00001992 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001993 case ISD::FP_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 assert(VT.isFloatingPoint() &&
1995 Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001996 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00001997 if (Operand.getOpcode() == ISD::UNDEF)
1998 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00001999 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00002000 case ISD::SIGN_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002001 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002002 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002003 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002004 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002005 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002006 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2007 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
2008 break;
2009 case ISD::ZERO_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002010 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002011 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002012 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002013 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002014 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00002015 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00002016 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00002017 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00002018 case ISD::ANY_EXTEND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002019 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002020 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002021 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sands8e4eb092008-06-08 20:54:56 +00002022 assert(Operand.getValueType().bitsLT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002023 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00002024 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2025 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
2026 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
2027 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002028 case ISD::TRUNCATE:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002029 assert(VT.isInteger() && Operand.getValueType().isInteger() &&
Chris Lattnerff33cc42007-04-09 05:23:13 +00002030 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002031 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sands8e4eb092008-06-08 20:54:56 +00002032 assert(Operand.getValueType().bitsGT(VT)
Duncan Sandsaf47b112007-10-16 09:56:48 +00002033 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00002034 if (OpOpcode == ISD::TRUNCATE)
2035 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00002036 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2037 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002038 // If the source is smaller than the dest, we still need an extend.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002039 if (Operand.Val->getOperand(0).getValueType().bitsLT(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002040 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00002041 else if (Operand.Val->getOperand(0).getValueType().bitsGT(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00002042 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
2043 else
2044 return Operand.Val->getOperand(0);
2045 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002046 break;
Chris Lattner35481892005-12-23 00:16:34 +00002047 case ISD::BIT_CONVERT:
2048 // Basic sanity checking.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002049 assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
Reid Spencera07d5b92006-11-11 20:07:59 +00002050 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002051 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002052 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2053 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002054 if (OpOpcode == ISD::UNDEF)
2055 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002056 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002057 case ISD::SCALAR_TO_VECTOR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002058 assert(VT.isVector() && !Operand.getValueType().isVector() &&
2059 VT.getVectorElementType() == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002060 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002061 if (OpOpcode == ISD::UNDEF)
2062 return getNode(ISD::UNDEF, VT);
2063 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2064 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2065 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2066 Operand.getConstantOperandVal(1) == 0 &&
2067 Operand.getOperand(0).getValueType() == VT)
2068 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002069 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002070 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002071 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
2072 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00002073 Operand.Val->getOperand(0));
2074 if (OpOpcode == ISD::FNEG) // --X -> X
2075 return Operand.Val->getOperand(0);
2076 break;
2077 case ISD::FABS:
2078 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
2079 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
2080 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002081 }
2082
Chris Lattner43247a12005-08-25 19:12:10 +00002083 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002084 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002085 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002086 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00002087 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002088 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002089 void *IP = 0;
2090 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2091 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002092 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002093 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002094 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002095 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002096 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002097 AllNodes.push_back(N);
2098 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002099}
2100
Chris Lattner36019aa2005-04-18 03:48:41 +00002101
2102
Duncan Sands83ec4b62008-06-06 12:08:01 +00002103SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
Chris Lattnerc3aae252005-01-07 07:46:32 +00002104 SDOperand N1, SDOperand N2) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002105 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2106 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner76365122005-01-16 02:23:22 +00002107 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002108 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002109 case ISD::TokenFactor:
2110 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2111 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002112 // Fold trivial token factors.
2113 if (N1.getOpcode() == ISD::EntryToken) return N2;
2114 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002115 break;
Chris Lattner76365122005-01-16 02:23:22 +00002116 case ISD::AND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002117 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002118 N1.getValueType() == VT && "Binary operator types must match!");
2119 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2120 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002121 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002122 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002123 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2124 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002125 break;
Chris Lattner76365122005-01-16 02:23:22 +00002126 case ISD::OR:
2127 case ISD::XOR:
Dan Gohman33b625b2008-06-02 22:27:05 +00002128 case ISD::ADD:
2129 case ISD::SUB:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002130 assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002131 N1.getValueType() == VT && "Binary operator types must match!");
Dan Gohman33b625b2008-06-02 22:27:05 +00002132 // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so
2133 // it's worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002134 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002135 return N1;
2136 break;
Chris Lattner76365122005-01-16 02:23:22 +00002137 case ISD::UDIV:
2138 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002139 case ISD::MULHU:
2140 case ISD::MULHS:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002141 assert(VT.isInteger() && "This operator does not apply to FP types!");
Chris Lattner76365122005-01-16 02:23:22 +00002142 // fall through
Chris Lattner76365122005-01-16 02:23:22 +00002143 case ISD::MUL:
2144 case ISD::SDIV:
2145 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002146 case ISD::FADD:
2147 case ISD::FSUB:
2148 case ISD::FMUL:
2149 case ISD::FDIV:
2150 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002151 assert(N1.getValueType() == N2.getValueType() &&
2152 N1.getValueType() == VT && "Binary operator types must match!");
2153 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002154 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2155 assert(N1.getValueType() == VT &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002156 N1.getValueType().isFloatingPoint() &&
2157 N2.getValueType().isFloatingPoint() &&
Chris Lattnera09f8482006-03-05 05:09:38 +00002158 "Invalid FCOPYSIGN!");
2159 break;
Chris Lattner76365122005-01-16 02:23:22 +00002160 case ISD::SHL:
2161 case ISD::SRA:
2162 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002163 case ISD::ROTL:
2164 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002165 assert(VT == N1.getValueType() &&
2166 "Shift operators return type must be the same as their first arg");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002167 assert(VT.isInteger() && N2.getValueType().isInteger() &&
Chris Lattner068a81e2005-01-17 17:15:02 +00002168 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00002169 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002170 case ISD::FP_ROUND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002171 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002172 assert(VT == N1.getValueType() && "Not an inreg round!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002173 assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002174 "Cannot FP_ROUND_INREG integer types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002175 assert(EVT.bitsLE(VT) && "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002176 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002177 break;
2178 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002179 case ISD::FP_ROUND:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002180 assert(VT.isFloatingPoint() &&
2181 N1.getValueType().isFloatingPoint() &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00002182 VT.bitsLE(N1.getValueType()) &&
Chris Lattner0bd48932008-01-17 07:00:52 +00002183 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002184 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002185 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002186 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002187 case ISD::AssertZext: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002188 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002189 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002190 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002191 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002192 assert(EVT.bitsLE(VT) && "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002193 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002194 break;
2195 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002196 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002197 MVT EVT = cast<VTSDNode>(N2)->getVT();
Chris Lattner15e4b012005-07-10 00:07:11 +00002198 assert(VT == N1.getValueType() && "Not an inreg extend!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002199 assert(VT.isInteger() && EVT.isInteger() &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002200 "Cannot *_EXTEND_INREG FP types");
Duncan Sands8e4eb092008-06-08 20:54:56 +00002201 assert(EVT.bitsLE(VT) && "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002202 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002203
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002204 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002205 APInt Val = N1C->getAPIntValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002206 unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
Dan Gohman6c231502008-02-29 01:47:35 +00002207 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002208 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002209 return getConstant(Val, VT);
2210 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002211 break;
2212 }
2213 case ISD::EXTRACT_VECTOR_ELT:
2214 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2215
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002216 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2217 if (N1.getOpcode() == ISD::UNDEF)
2218 return getNode(ISD::UNDEF, VT);
2219
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002220 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2221 // expanding copies of large vectors from registers.
2222 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2223 N1.getNumOperands() > 0) {
2224 unsigned Factor =
Duncan Sands83ec4b62008-06-06 12:08:01 +00002225 N1.getOperand(0).getValueType().getVectorNumElements();
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002226 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2227 N1.getOperand(N2C->getValue() / Factor),
2228 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2229 }
2230
2231 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2232 // expanding large vector constants.
2233 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2234 return N1.getOperand(N2C->getValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002235
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002236 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2237 // operations are lowered to scalars.
2238 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2239 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2240 if (IEC == N2C)
2241 return N1.getOperand(1);
2242 else
2243 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2244 }
2245 break;
2246 case ISD::EXTRACT_ELEMENT:
2247 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands041cde22008-06-25 20:24:48 +00002248 assert(!N1.getValueType().isVector() && !VT.isVector() &&
2249 (N1.getValueType().isInteger() == VT.isInteger()) &&
2250 "Wrong types for EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002251
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002252 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2253 // 64-bit integers into 32-bit parts. Instead of building the extract of
2254 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2255 if (N1.getOpcode() == ISD::BUILD_PAIR)
2256 return N1.getOperand(N2C->getValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002257
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002258 // EXTRACT_ELEMENT of a constant int is also very common.
2259 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002260 unsigned ElementSize = VT.getSizeInBits();
Dan Gohman4c931fc2008-03-24 16:38:05 +00002261 unsigned Shift = ElementSize * N2C->getValue();
2262 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2263 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002264 }
2265 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002266 case ISD::EXTRACT_SUBVECTOR:
2267 if (N1.getValueType() == VT) // Trivial extraction.
2268 return N1;
2269 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002270 }
2271
2272 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002273 if (N2C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002274 APInt C1 = N1C->getAPIntValue(), C2 = N2C->getAPIntValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002275 switch (Opcode) {
2276 case ISD::ADD: return getConstant(C1 + C2, VT);
2277 case ISD::SUB: return getConstant(C1 - C2, VT);
2278 case ISD::MUL: return getConstant(C1 * C2, VT);
2279 case ISD::UDIV:
Dan Gohman6c231502008-02-29 01:47:35 +00002280 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002281 break;
2282 case ISD::UREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002283 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002284 break;
2285 case ISD::SDIV :
Dan Gohman6c231502008-02-29 01:47:35 +00002286 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002287 break;
2288 case ISD::SREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002289 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002290 break;
2291 case ISD::AND : return getConstant(C1 & C2, VT);
2292 case ISD::OR : return getConstant(C1 | C2, VT);
2293 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00002294 case ISD::SHL : return getConstant(C1 << C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00002295 case ISD::SRL : return getConstant(C1.lshr(C2), VT);
2296 case ISD::SRA : return getConstant(C1.ashr(C2), VT);
2297 case ISD::ROTL : return getConstant(C1.rotl(C2), VT);
2298 case ISD::ROTR : return getConstant(C1.rotr(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002299 default: break;
2300 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002301 } else { // Cannonicalize constant to RHS if commutative
2302 if (isCommutativeBinOp(Opcode)) {
2303 std::swap(N1C, N2C);
2304 std::swap(N1, N2);
2305 }
2306 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002307 }
2308
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002309 // Constant fold FP operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002310 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2311 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00002312 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002313 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2314 // Cannonicalize constant to RHS if commutative
2315 std::swap(N1CFP, N2CFP);
2316 std::swap(N1, N2);
2317 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002318 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2319 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002320 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002321 case ISD::FADD:
2322 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002323 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002324 return getConstantFP(V1, VT);
2325 break;
2326 case ISD::FSUB:
2327 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2328 if (s!=APFloat::opInvalidOp)
2329 return getConstantFP(V1, VT);
2330 break;
2331 case ISD::FMUL:
2332 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2333 if (s!=APFloat::opInvalidOp)
2334 return getConstantFP(V1, VT);
2335 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002336 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002337 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2338 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2339 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002340 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002341 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002342 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2343 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2344 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002345 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002346 case ISD::FCOPYSIGN:
2347 V1.copySign(V2);
2348 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002349 default: break;
2350 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002351 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002352 }
Chris Lattner62b57722006-04-20 05:39:12 +00002353
2354 // Canonicalize an UNDEF to the RHS, even over a constant.
2355 if (N1.getOpcode() == ISD::UNDEF) {
2356 if (isCommutativeBinOp(Opcode)) {
2357 std::swap(N1, N2);
2358 } else {
2359 switch (Opcode) {
2360 case ISD::FP_ROUND_INREG:
2361 case ISD::SIGN_EXTEND_INREG:
2362 case ISD::SUB:
2363 case ISD::FSUB:
2364 case ISD::FDIV:
2365 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002366 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002367 return N1; // fold op(undef, arg2) -> undef
2368 case ISD::UDIV:
2369 case ISD::SDIV:
2370 case ISD::UREM:
2371 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002372 case ISD::SRL:
2373 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002374 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002375 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2376 // For vectors, we can't easily build an all zero vector, just return
2377 // the LHS.
2378 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002379 }
2380 }
2381 }
2382
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002383 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002384 if (N2.getOpcode() == ISD::UNDEF) {
2385 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002386 case ISD::XOR:
2387 if (N1.getOpcode() == ISD::UNDEF)
2388 // Handle undef ^ undef -> 0 special case. This is a common
2389 // idiom (misuse).
2390 return getConstant(0, VT);
2391 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002392 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002393 case ISD::ADDC:
2394 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002395 case ISD::SUB:
2396 case ISD::FADD:
2397 case ISD::FSUB:
2398 case ISD::FMUL:
2399 case ISD::FDIV:
2400 case ISD::FREM:
2401 case ISD::UDIV:
2402 case ISD::SDIV:
2403 case ISD::UREM:
2404 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002405 return N2; // fold op(arg1, undef) -> undef
2406 case ISD::MUL:
2407 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002408 case ISD::SRL:
2409 case ISD::SHL:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002410 if (!VT.isVector())
Chris Lattner964dd862007-04-25 00:00:45 +00002411 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2412 // For vectors, we can't easily build an all zero vector, just return
2413 // the LHS.
2414 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002415 case ISD::OR:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002416 if (!VT.isVector())
2417 return getConstant(VT.getIntegerVTBitMask(), VT);
Chris Lattner964dd862007-04-25 00:00:45 +00002418 // For vectors, we can't easily build an all one vector, just return
2419 // the LHS.
2420 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002421 case ISD::SRA:
2422 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002423 }
2424 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002425
Chris Lattner27e9b412005-05-11 18:57:39 +00002426 // Memoize this node if possible.
2427 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002428 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002429 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002430 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002431 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002432 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002433 void *IP = 0;
2434 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2435 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002436 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002437 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002438 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002439 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002440 }
2441
Chris Lattnerc3aae252005-01-07 07:46:32 +00002442 AllNodes.push_back(N);
2443 return SDOperand(N, 0);
2444}
2445
Duncan Sands83ec4b62008-06-06 12:08:01 +00002446SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
Chris Lattnerc3aae252005-01-07 07:46:32 +00002447 SDOperand N1, SDOperand N2, SDOperand N3) {
2448 // Perform various simplifications.
2449 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2450 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002451 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002452 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002453 // Use FoldSetCC to simplify SETCC's.
2454 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002455 if (Simp.Val) return Simp;
2456 break;
2457 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002458 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002459 if (N1C) {
2460 if (N1C->getValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002461 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002462 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002463 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002464 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002465
2466 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002467 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002468 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002469 if (N2C) {
Chris Lattner5351e9b2005-01-07 22:49:57 +00002470 if (N2C->getValue()) // Unconditional branch
2471 return getNode(ISD::BR, MVT::Other, N1, N3);
2472 else
2473 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002474 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002475 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002476 case ISD::VECTOR_SHUFFLE:
2477 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002478 VT.isVector() && N3.getValueType().isVector() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002479 N3.getOpcode() == ISD::BUILD_VECTOR &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002480 VT.getVectorNumElements() == N3.getNumOperands() &&
Chris Lattnerfb194b92006-03-19 23:56:04 +00002481 "Illegal VECTOR_SHUFFLE node!");
2482 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002483 case ISD::BIT_CONVERT:
2484 // Fold bit_convert nodes from a type to themselves.
2485 if (N1.getValueType() == VT)
2486 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002487 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002488 }
2489
Chris Lattner43247a12005-08-25 19:12:10 +00002490 // Memoize node if it doesn't produce a flag.
2491 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002492 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002493 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002494 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002495 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002496 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002497 void *IP = 0;
2498 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2499 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002500 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002501 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002502 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002503 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002504 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002505 AllNodes.push_back(N);
2506 return SDOperand(N, 0);
2507}
2508
Duncan Sands83ec4b62008-06-06 12:08:01 +00002509SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002510 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002511 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002512 SDOperand Ops[] = { N1, N2, N3, N4 };
2513 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002514}
2515
Duncan Sands83ec4b62008-06-06 12:08:01 +00002516SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002517 SDOperand N1, SDOperand N2, SDOperand N3,
2518 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002519 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2520 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002521}
2522
Dan Gohman707e0182008-04-12 04:36:06 +00002523/// getMemsetValue - Vectorized representation of the memset value
2524/// operand.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002525static SDOperand getMemsetValue(SDOperand Value, MVT VT, SelectionDAG &DAG) {
2526 unsigned NumBits = VT.isVector() ?
2527 VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
Dan Gohman707e0182008-04-12 04:36:06 +00002528 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
Evan Chengf0df0312008-05-15 08:39:06 +00002529 APInt Val = APInt(NumBits, C->getValue() & 255);
Dan Gohman707e0182008-04-12 04:36:06 +00002530 unsigned Shift = 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002531 for (unsigned i = NumBits; i > 8; i >>= 1) {
Dan Gohman707e0182008-04-12 04:36:06 +00002532 Val = (Val << Shift) | Val;
2533 Shift <<= 1;
Dan Gohman707e0182008-04-12 04:36:06 +00002534 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002535 if (VT.isInteger())
Evan Chengf0df0312008-05-15 08:39:06 +00002536 return DAG.getConstant(Val, VT);
2537 return DAG.getConstantFP(APFloat(Val), VT);
Dan Gohman707e0182008-04-12 04:36:06 +00002538 }
Evan Chengf0df0312008-05-15 08:39:06 +00002539
2540 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2541 unsigned Shift = 8;
2542 for (unsigned i = NumBits; i > 8; i >>= 1) {
2543 Value = DAG.getNode(ISD::OR, VT,
2544 DAG.getNode(ISD::SHL, VT, Value,
2545 DAG.getConstant(Shift, MVT::i8)), Value);
2546 Shift <<= 1;
2547 }
2548
2549 return Value;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002550}
2551
Dan Gohman707e0182008-04-12 04:36:06 +00002552/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2553/// used when a memcpy is turned into a memset when the source is a constant
2554/// string ptr.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002555static SDOperand getMemsetStringVal(MVT VT, SelectionDAG &DAG,
Dan Gohman707e0182008-04-12 04:36:06 +00002556 const TargetLowering &TLI,
2557 std::string &Str, unsigned Offset) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002558 assert(!VT.isVector() && "Can't handle vector type here!");
2559 unsigned NumBits = VT.getSizeInBits();
Evan Chengf0df0312008-05-15 08:39:06 +00002560 unsigned MSB = NumBits / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002561 uint64_t Val = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002562 if (TLI.isLittleEndian())
2563 Offset = Offset + MSB - 1;
2564 for (unsigned i = 0; i != MSB; ++i) {
2565 Val = (Val << 8) | (unsigned char)Str[Offset];
2566 Offset += TLI.isLittleEndian() ? -1 : 1;
2567 }
2568 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002569}
2570
Dan Gohman707e0182008-04-12 04:36:06 +00002571/// getMemBasePlusOffset - Returns base and offset node for the
Evan Chengf0df0312008-05-15 08:39:06 +00002572///
Dan Gohman707e0182008-04-12 04:36:06 +00002573static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2574 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002575 MVT VT = Base.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00002576 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2577}
2578
Evan Chengf0df0312008-05-15 08:39:06 +00002579/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2580///
Chris Lattner03a57072008-06-28 06:24:50 +00002581static bool isMemSrcFromString(SDOperand Src, std::string &Str) {
Evan Chengf0df0312008-05-15 08:39:06 +00002582 unsigned SrcDelta = 0;
2583 GlobalAddressSDNode *G = NULL;
2584 if (Src.getOpcode() == ISD::GlobalAddress)
2585 G = cast<GlobalAddressSDNode>(Src);
2586 else if (Src.getOpcode() == ISD::ADD &&
2587 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2588 Src.getOperand(1).getOpcode() == ISD::Constant) {
2589 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
2590 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getValue();
2591 }
2592 if (!G)
2593 return false;
Dan Gohman707e0182008-04-12 04:36:06 +00002594
Evan Chengf0df0312008-05-15 08:39:06 +00002595 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
Chris Lattner03a57072008-06-28 06:24:50 +00002596 if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
Chris Lattner07c68f92008-06-27 03:18:41 +00002597 return true;
Dan Gohman707e0182008-04-12 04:36:06 +00002598
Evan Chengf0df0312008-05-15 08:39:06 +00002599 return false;
2600}
Dan Gohman707e0182008-04-12 04:36:06 +00002601
Evan Chengf0df0312008-05-15 08:39:06 +00002602/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2603/// to replace the memset / memcpy is below the threshold. It also returns the
2604/// types of the sequence of memory ops to perform memset / memcpy.
2605static
Duncan Sands83ec4b62008-06-06 12:08:01 +00002606bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
Evan Chengf0df0312008-05-15 08:39:06 +00002607 SDOperand Dst, SDOperand Src,
2608 unsigned Limit, uint64_t Size, unsigned &Align,
2609 SelectionDAG &DAG,
2610 const TargetLowering &TLI) {
2611 bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
2612
2613 std::string Str;
Chris Lattner03a57072008-06-28 06:24:50 +00002614 bool isSrcStr = isMemSrcFromString(Src, Str);
Evan Chengf0df0312008-05-15 08:39:06 +00002615 bool isSrcConst = isa<ConstantSDNode>(Src);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002616 MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
Evan Chengf0df0312008-05-15 08:39:06 +00002617 if (VT != MVT::iAny) {
2618 unsigned NewAlign = (unsigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002619 TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
Evan Chengf0df0312008-05-15 08:39:06 +00002620 // If source is a string constant, this will require an unaligned load.
2621 if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2622 if (Dst.getOpcode() != ISD::FrameIndex) {
2623 // Can't change destination alignment. It requires a unaligned store.
2624 if (AllowUnalign)
2625 VT = MVT::iAny;
2626 } else {
2627 int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2628 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2629 if (MFI->isFixedObjectIndex(FI)) {
2630 // Can't change destination alignment. It requires a unaligned store.
2631 if (AllowUnalign)
2632 VT = MVT::iAny;
2633 } else {
Evan Chengfb4db312008-06-04 23:37:54 +00002634 // Give the stack frame object a larger alignment if needed.
2635 if (MFI->getObjectAlignment(FI) < NewAlign)
2636 MFI->setObjectAlignment(FI, NewAlign);
Evan Chengf0df0312008-05-15 08:39:06 +00002637 Align = NewAlign;
2638 }
2639 }
2640 }
2641 }
2642
2643 if (VT == MVT::iAny) {
2644 if (AllowUnalign) {
2645 VT = MVT::i64;
2646 } else {
2647 switch (Align & 7) {
2648 case 0: VT = MVT::i64; break;
2649 case 4: VT = MVT::i32; break;
2650 case 2: VT = MVT::i16; break;
2651 default: VT = MVT::i8; break;
2652 }
2653 }
2654
Duncan Sands83ec4b62008-06-06 12:08:01 +00002655 MVT LVT = MVT::i64;
Evan Chengf0df0312008-05-15 08:39:06 +00002656 while (!TLI.isTypeLegal(LVT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002657 LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2658 assert(LVT.isInteger());
Evan Chengf0df0312008-05-15 08:39:06 +00002659
Duncan Sands8e4eb092008-06-08 20:54:56 +00002660 if (VT.bitsGT(LVT))
Evan Chengf0df0312008-05-15 08:39:06 +00002661 VT = LVT;
2662 }
Dan Gohman707e0182008-04-12 04:36:06 +00002663
2664 unsigned NumMemOps = 0;
2665 while (Size != 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002666 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002667 while (VTSize > Size) {
Evan Chengf0df0312008-05-15 08:39:06 +00002668 // For now, only use non-vector load / store's for the left-over pieces.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002669 if (VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002670 VT = MVT::i64;
2671 while (!TLI.isTypeLegal(VT))
Duncan Sands83ec4b62008-06-06 12:08:01 +00002672 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2673 VTSize = VT.getSizeInBits() / 8;
Evan Chengf0df0312008-05-15 08:39:06 +00002674 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002675 VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
Evan Chengf0df0312008-05-15 08:39:06 +00002676 VTSize >>= 1;
2677 }
Dan Gohman707e0182008-04-12 04:36:06 +00002678 }
Dan Gohman707e0182008-04-12 04:36:06 +00002679
2680 if (++NumMemOps > Limit)
2681 return false;
2682 MemOps.push_back(VT);
2683 Size -= VTSize;
2684 }
2685
2686 return true;
2687}
2688
2689static SDOperand getMemcpyLoadsAndStores(SelectionDAG &DAG,
2690 SDOperand Chain, SDOperand Dst,
2691 SDOperand Src, uint64_t Size,
Evan Chengf0df0312008-05-15 08:39:06 +00002692 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002693 const Value *DstSV, uint64_t DstSVOff,
2694 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002695 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2696
Dan Gohman21323f32008-05-29 19:42:22 +00002697 // Expand memcpy to a series of load and store ops if the size operand falls
2698 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002699 std::vector<MVT> MemOps;
Dan Gohman707e0182008-04-12 04:36:06 +00002700 uint64_t Limit = -1;
2701 if (!AlwaysInline)
2702 Limit = TLI.getMaxStoresPerMemcpy();
Evan Chengf0df0312008-05-15 08:39:06 +00002703 unsigned DstAlign = Align; // Destination alignment can change.
2704 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
2705 DAG, TLI))
Dan Gohman707e0182008-04-12 04:36:06 +00002706 return SDOperand();
2707
Dan Gohman707e0182008-04-12 04:36:06 +00002708 std::string Str;
Chris Lattner03a57072008-06-28 06:24:50 +00002709 bool CopyFromStr = isMemSrcFromString(Src, Str);
Dan Gohman707e0182008-04-12 04:36:06 +00002710
Evan Chengf0df0312008-05-15 08:39:06 +00002711 SmallVector<SDOperand, 8> OutChains;
2712 unsigned NumMemOps = MemOps.size();
Chris Lattner03a57072008-06-28 06:24:50 +00002713 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002714 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002715 MVT VT = MemOps[i];
2716 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002717 SDOperand Value, Store;
2718
Duncan Sands83ec4b62008-06-06 12:08:01 +00002719 if (CopyFromStr && !VT.isVector()) {
Evan Chengf0df0312008-05-15 08:39:06 +00002720 // It's unlikely a store of a vector immediate can be done in a single
2721 // instruction. It would require a load from a constantpool first.
2722 // FIXME: Handle cases where store of vector immediate is done in a
2723 // single instruction.
Dan Gohman707e0182008-04-12 04:36:06 +00002724 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
Evan Chengf0df0312008-05-15 08:39:06 +00002725 Store = DAG.getStore(Chain, Value,
2726 getMemBasePlusOffset(Dst, DstOff, DAG),
2727 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002728 } else {
2729 Value = DAG.getLoad(VT, Chain,
2730 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002731 SrcSV, SrcSVOff + SrcOff, false, Align);
Evan Chengf0df0312008-05-15 08:39:06 +00002732 Store = DAG.getStore(Chain, Value,
2733 getMemBasePlusOffset(Dst, DstOff, DAG),
2734 DstSV, DstSVOff + DstOff, false, DstAlign);
Dan Gohman707e0182008-04-12 04:36:06 +00002735 }
2736 OutChains.push_back(Store);
2737 SrcOff += VTSize;
2738 DstOff += VTSize;
2739 }
2740
2741 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2742 &OutChains[0], OutChains.size());
2743}
2744
Dan Gohman21323f32008-05-29 19:42:22 +00002745static SDOperand getMemmoveLoadsAndStores(SelectionDAG &DAG,
2746 SDOperand Chain, SDOperand Dst,
2747 SDOperand Src, uint64_t Size,
2748 unsigned Align, bool AlwaysInline,
2749 const Value *DstSV, uint64_t DstSVOff,
2750 const Value *SrcSV, uint64_t SrcSVOff){
2751 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2752
2753 // Expand memmove to a series of load and store ops if the size operand falls
2754 // below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002755 std::vector<MVT> MemOps;
Dan Gohman21323f32008-05-29 19:42:22 +00002756 uint64_t Limit = -1;
2757 if (!AlwaysInline)
2758 Limit = TLI.getMaxStoresPerMemmove();
2759 unsigned DstAlign = Align; // Destination alignment can change.
2760 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
2761 DAG, TLI))
2762 return SDOperand();
2763
Dan Gohman21323f32008-05-29 19:42:22 +00002764 uint64_t SrcOff = 0, DstOff = 0;
2765
2766 SmallVector<SDOperand, 8> LoadValues;
2767 SmallVector<SDOperand, 8> LoadChains;
2768 SmallVector<SDOperand, 8> OutChains;
2769 unsigned NumMemOps = MemOps.size();
2770 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002771 MVT VT = MemOps[i];
2772 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman21323f32008-05-29 19:42:22 +00002773 SDOperand Value, Store;
2774
2775 Value = DAG.getLoad(VT, Chain,
2776 getMemBasePlusOffset(Src, SrcOff, DAG),
2777 SrcSV, SrcSVOff + SrcOff, false, Align);
2778 LoadValues.push_back(Value);
2779 LoadChains.push_back(Value.getValue(1));
2780 SrcOff += VTSize;
2781 }
2782 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2783 &LoadChains[0], LoadChains.size());
2784 OutChains.clear();
2785 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002786 MVT VT = MemOps[i];
2787 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman21323f32008-05-29 19:42:22 +00002788 SDOperand Value, Store;
2789
2790 Store = DAG.getStore(Chain, LoadValues[i],
2791 getMemBasePlusOffset(Dst, DstOff, DAG),
2792 DstSV, DstSVOff + DstOff, false, DstAlign);
2793 OutChains.push_back(Store);
2794 DstOff += VTSize;
2795 }
2796
2797 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2798 &OutChains[0], OutChains.size());
2799}
2800
Dan Gohman707e0182008-04-12 04:36:06 +00002801static SDOperand getMemsetStores(SelectionDAG &DAG,
2802 SDOperand Chain, SDOperand Dst,
2803 SDOperand Src, uint64_t Size,
2804 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002805 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002806 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2807
2808 // Expand memset to a series of load/store ops if the size operand
2809 // falls below a certain threshold.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002810 std::vector<MVT> MemOps;
Evan Chengf0df0312008-05-15 08:39:06 +00002811 if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
2812 Size, Align, DAG, TLI))
Dan Gohman707e0182008-04-12 04:36:06 +00002813 return SDOperand();
2814
2815 SmallVector<SDOperand, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00002816 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002817
2818 unsigned NumMemOps = MemOps.size();
2819 for (unsigned i = 0; i < NumMemOps; i++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002820 MVT VT = MemOps[i];
2821 unsigned VTSize = VT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00002822 SDOperand Value = getMemsetValue(Src, VT, DAG);
2823 SDOperand Store = DAG.getStore(Chain, Value,
2824 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002825 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002826 OutChains.push_back(Store);
2827 DstOff += VTSize;
2828 }
2829
2830 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2831 &OutChains[0], OutChains.size());
2832}
2833
2834SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dst,
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002835 SDOperand Src, SDOperand Size,
Dan Gohman707e0182008-04-12 04:36:06 +00002836 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002837 const Value *DstSV, uint64_t DstSVOff,
2838 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002839
2840 // Check to see if we should lower the memcpy to loads and stores first.
2841 // For cases within the target-specified limits, this is the best choice.
2842 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2843 if (ConstantSize) {
2844 // Memcpy with size zero? Just return the original chain.
2845 if (ConstantSize->isNullValue())
2846 return Chain;
2847
2848 SDOperand Result =
2849 getMemcpyLoadsAndStores(*this, Chain, Dst, Src, ConstantSize->getValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00002850 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002851 if (Result.Val)
2852 return Result;
2853 }
2854
2855 // Then check to see if we should lower the memcpy with target-specific
2856 // code. If the target chooses to do this, this is the next best.
2857 SDOperand Result =
2858 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
2859 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002860 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002861 if (Result.Val)
2862 return Result;
2863
2864 // If we really need inline code and the target declined to provide it,
2865 // use a (potentially long) sequence of loads and stores.
2866 if (AlwaysInline) {
2867 assert(ConstantSize && "AlwaysInline requires a constant size!");
2868 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
2869 ConstantSize->getValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00002870 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002871 }
2872
2873 // Emit a library call.
2874 TargetLowering::ArgListTy Args;
2875 TargetLowering::ArgListEntry Entry;
2876 Entry.Ty = TLI.getTargetData()->getIntPtrType();
2877 Entry.Node = Dst; Args.push_back(Entry);
2878 Entry.Node = Src; Args.push_back(Entry);
2879 Entry.Node = Size; Args.push_back(Entry);
2880 std::pair<SDOperand,SDOperand> CallResult =
2881 TLI.LowerCallTo(Chain, Type::VoidTy,
2882 false, false, false, CallingConv::C, false,
2883 getExternalSymbol("memcpy", TLI.getPointerTy()),
2884 Args, *this);
2885 return CallResult.second;
2886}
2887
2888SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dst,
2889 SDOperand Src, SDOperand Size,
2890 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002891 const Value *DstSV, uint64_t DstSVOff,
2892 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002893
Dan Gohman21323f32008-05-29 19:42:22 +00002894 // Check to see if we should lower the memmove to loads and stores first.
2895 // For cases within the target-specified limits, this is the best choice.
2896 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2897 if (ConstantSize) {
2898 // Memmove with size zero? Just return the original chain.
2899 if (ConstantSize->isNullValue())
2900 return Chain;
2901
2902 SDOperand Result =
2903 getMemmoveLoadsAndStores(*this, Chain, Dst, Src, ConstantSize->getValue(),
2904 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
2905 if (Result.Val)
2906 return Result;
2907 }
Dan Gohman707e0182008-04-12 04:36:06 +00002908
2909 // Then check to see if we should lower the memmove with target-specific
2910 // code. If the target chooses to do this, this is the next best.
2911 SDOperand Result =
2912 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002913 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002914 if (Result.Val)
2915 return Result;
2916
2917 // Emit a library call.
2918 TargetLowering::ArgListTy Args;
2919 TargetLowering::ArgListEntry Entry;
2920 Entry.Ty = TLI.getTargetData()->getIntPtrType();
2921 Entry.Node = Dst; Args.push_back(Entry);
2922 Entry.Node = Src; Args.push_back(Entry);
2923 Entry.Node = Size; Args.push_back(Entry);
2924 std::pair<SDOperand,SDOperand> CallResult =
2925 TLI.LowerCallTo(Chain, Type::VoidTy,
2926 false, false, false, CallingConv::C, false,
2927 getExternalSymbol("memmove", TLI.getPointerTy()),
2928 Args, *this);
2929 return CallResult.second;
2930}
2931
2932SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dst,
2933 SDOperand Src, SDOperand Size,
2934 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002935 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002936
2937 // Check to see if we should lower the memset to stores first.
2938 // For cases within the target-specified limits, this is the best choice.
2939 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2940 if (ConstantSize) {
2941 // Memset with size zero? Just return the original chain.
2942 if (ConstantSize->isNullValue())
2943 return Chain;
2944
2945 SDOperand Result =
2946 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getValue(), Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002947 DstSV, DstSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002948 if (Result.Val)
2949 return Result;
2950 }
2951
2952 // Then check to see if we should lower the memset with target-specific
2953 // code. If the target chooses to do this, this is the next best.
2954 SDOperand Result =
2955 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002956 DstSV, DstSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002957 if (Result.Val)
2958 return Result;
2959
2960 // Emit a library call.
2961 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
2962 TargetLowering::ArgListTy Args;
2963 TargetLowering::ArgListEntry Entry;
2964 Entry.Node = Dst; Entry.Ty = IntPtrTy;
2965 Args.push_back(Entry);
2966 // Extend or truncate the argument to be an i32 value for the call.
Duncan Sands8e4eb092008-06-08 20:54:56 +00002967 if (Src.getValueType().bitsGT(MVT::i32))
Dan Gohman707e0182008-04-12 04:36:06 +00002968 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
2969 else
2970 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
2971 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
2972 Args.push_back(Entry);
2973 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
2974 Args.push_back(Entry);
2975 std::pair<SDOperand,SDOperand> CallResult =
2976 TLI.LowerCallTo(Chain, Type::VoidTy,
2977 false, false, false, CallingConv::C, false,
2978 getExternalSymbol("memset", TLI.getPointerTy()),
2979 Args, *this);
2980 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002981}
2982
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002983SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002984 SDOperand Ptr, SDOperand Cmp,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00002985 SDOperand Swp, const Value* PtrVal,
Mon P Wang28873102008-06-25 08:15:39 +00002986 unsigned Alignment) {
2987 assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002988 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
2989 SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002990 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002991 SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002992 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002993 void* IP = 0;
2994 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2995 return SDOperand(E, 0);
Dan Gohmanfd4418f2008-06-25 16:07:49 +00002996 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp,
Mon P Wang28873102008-06-25 08:15:39 +00002997 PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002998 CSEMap.InsertNode(N, IP);
2999 AllNodes.push_back(N);
3000 return SDOperand(N, 0);
3001}
3002
3003SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003004 SDOperand Ptr, SDOperand Val,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003005 const Value* PtrVal,
Mon P Wang28873102008-06-25 08:15:39 +00003006 unsigned Alignment) {
3007 assert(( Opcode == ISD::ATOMIC_LOAD_ADD || Opcode == ISD::ATOMIC_LOAD_SUB
Mon P Wang63307c32008-05-05 19:05:59 +00003008 || Opcode == ISD::ATOMIC_SWAP || Opcode == ISD::ATOMIC_LOAD_AND
3009 || Opcode == ISD::ATOMIC_LOAD_OR || Opcode == ISD::ATOMIC_LOAD_XOR
Andrew Lenharth507a58a2008-06-14 05:48:15 +00003010 || Opcode == ISD::ATOMIC_LOAD_NAND
Mon P Wang63307c32008-05-05 19:05:59 +00003011 || Opcode == ISD::ATOMIC_LOAD_MIN || Opcode == ISD::ATOMIC_LOAD_MAX
3012 || Opcode == ISD::ATOMIC_LOAD_UMIN || Opcode == ISD::ATOMIC_LOAD_UMAX)
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003013 && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003014 SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003015 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00003016 SDOperand Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003017 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003018 void* IP = 0;
3019 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3020 return SDOperand(E, 0);
Dan Gohmanfd4418f2008-06-25 16:07:49 +00003021 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val,
Mon P Wang28873102008-06-25 08:15:39 +00003022 PtrVal, Alignment);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00003023 CSEMap.InsertNode(N, IP);
3024 AllNodes.push_back(N);
3025 return SDOperand(N, 0);
3026}
3027
Duncan Sands14ea39c2008-03-27 20:23:40 +00003028SDOperand
Duncan Sandse10efce2008-03-28 09:45:24 +00003029SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003030 MVT VT, SDOperand Chain,
Duncan Sandse10efce2008-03-28 09:45:24 +00003031 SDOperand Ptr, SDOperand Offset,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003032 const Value *SV, int SVOffset, MVT EVT,
Duncan Sandse10efce2008-03-28 09:45:24 +00003033 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00003034 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3035 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00003036 if (VT != MVT::iPTR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003037 Ty = VT.getTypeForMVT();
Dan Gohman575e2f42007-06-04 15:49:41 +00003038 } else if (SV) {
3039 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3040 assert(PT && "Value for load must be a pointer");
3041 Ty = PT->getElementType();
Duncan Sands14ea39c2008-03-27 20:23:40 +00003042 }
Dan Gohman575e2f42007-06-04 15:49:41 +00003043 assert(Ty && "Could not get type information for load");
3044 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3045 }
Evan Cheng466685d2006-10-09 20:57:25 +00003046
Duncan Sands14ea39c2008-03-27 20:23:40 +00003047 if (VT == EVT) {
3048 ExtType = ISD::NON_EXTLOAD;
3049 } else if (ExtType == ISD::NON_EXTLOAD) {
3050 assert(VT == EVT && "Non-extending load from different memory type!");
3051 } else {
3052 // Extending load.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003053 if (VT.isVector())
3054 assert(EVT == VT.getVectorElementType() && "Invalid vector extload!");
Duncan Sands14ea39c2008-03-27 20:23:40 +00003055 else
Duncan Sands8e4eb092008-06-08 20:54:56 +00003056 assert(EVT.bitsLT(VT) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003057 "Should only be an extending load, not truncating!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003058 assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003059 "Cannot sign/zero extend a FP/Vector load!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003060 assert(VT.isInteger() == EVT.isInteger() &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003061 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00003062 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00003063
3064 bool Indexed = AM != ISD::UNINDEXED;
Duncan Sands43e2a032008-05-27 11:50:51 +00003065 assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
Duncan Sands14ea39c2008-03-27 20:23:40 +00003066 "Unindexed load with an offset!");
3067
3068 SDVTList VTs = Indexed ?
3069 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
3070 SDOperand Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00003071 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003072 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003073 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00003074 ID.AddInteger(ExtType);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003075 ID.AddInteger(EVT.getRawBits());
Evan Cheng466685d2006-10-09 20:57:25 +00003076 ID.AddInteger(Alignment);
3077 ID.AddInteger(isVolatile);
3078 void *IP = 0;
3079 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3080 return SDOperand(E, 0);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003081 SDNode *N = new LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3082 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00003083 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00003084 AllNodes.push_back(N);
3085 return SDOperand(N, 0);
3086}
3087
Duncan Sands83ec4b62008-06-06 12:08:01 +00003088SDOperand SelectionDAG::getLoad(MVT VT,
Duncan Sands14ea39c2008-03-27 20:23:40 +00003089 SDOperand Chain, SDOperand Ptr,
3090 const Value *SV, int SVOffset,
3091 bool isVolatile, unsigned Alignment) {
3092 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003093 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3094 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003095}
3096
Duncan Sands83ec4b62008-06-06 12:08:01 +00003097SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
Duncan Sands14ea39c2008-03-27 20:23:40 +00003098 SDOperand Chain, SDOperand Ptr,
3099 const Value *SV,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 int SVOffset, MVT EVT,
Duncan Sands14ea39c2008-03-27 20:23:40 +00003101 bool isVolatile, unsigned Alignment) {
3102 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00003103 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3104 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00003105}
3106
Evan Cheng144d8f02006-11-09 17:55:04 +00003107SDOperand
3108SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
3109 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00003110 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00003111 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3112 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00003113 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3114 LD->getChain(), Base, Offset, LD->getSrcValue(),
3115 LD->getSrcValueOffset(), LD->getMemoryVT(),
3116 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00003117}
3118
Jeff Cohend41b30d2006-11-05 19:31:28 +00003119SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003120 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003121 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003122 MVT VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00003123
Dan Gohman575e2f42007-06-04 15:49:41 +00003124 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3125 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00003126 if (VT != MVT::iPTR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003127 Ty = VT.getTypeForMVT();
Dan Gohman575e2f42007-06-04 15:49:41 +00003128 } else if (SV) {
3129 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3130 assert(PT && "Value for store must be a pointer");
3131 Ty = PT->getElementType();
3132 }
3133 assert(Ty && "Could not get type information for store");
3134 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3135 }
Evan Chengad071e12006-10-05 22:57:11 +00003136 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003137 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00003138 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003139 FoldingSetNodeID ID;
3140 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003141 ID.AddInteger(ISD::UNINDEXED);
3142 ID.AddInteger(false);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003143 ID.AddInteger(VT.getRawBits());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003144 ID.AddInteger(Alignment);
3145 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003146 void *IP = 0;
3147 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3148 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00003149 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003150 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003151 CSEMap.InsertNode(N, IP);
3152 AllNodes.push_back(N);
3153 return SDOperand(N, 0);
3154}
3155
Jeff Cohend41b30d2006-11-05 19:31:28 +00003156SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003157 SDOperand Ptr, const Value *SV,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003158 int SVOffset, MVT SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003159 bool isVolatile, unsigned Alignment) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003160 MVT VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003161
3162 if (VT == SVT)
3163 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003164
Duncan Sands8e4eb092008-06-08 20:54:56 +00003165 assert(VT.bitsGT(SVT) && "Not a truncation?");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003166 assert(VT.isInteger() == SVT.isInteger() &&
Evan Cheng8b2794a2006-10-13 21:14:26 +00003167 "Can't do FP-INT conversion!");
3168
Dan Gohman575e2f42007-06-04 15:49:41 +00003169 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3170 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00003171 if (VT != MVT::iPTR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003172 Ty = VT.getTypeForMVT();
Dan Gohman575e2f42007-06-04 15:49:41 +00003173 } else if (SV) {
3174 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3175 assert(PT && "Value for store must be a pointer");
3176 Ty = PT->getElementType();
3177 }
3178 assert(Ty && "Could not get type information for store");
3179 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3180 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00003181 SDVTList VTs = getVTList(MVT::Other);
3182 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00003183 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003184 FoldingSetNodeID ID;
3185 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003186 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003187 ID.AddInteger(1);
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003188 ID.AddInteger(SVT.getRawBits());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003189 ID.AddInteger(Alignment);
3190 ID.AddInteger(isVolatile);
3191 void *IP = 0;
3192 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3193 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003194 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003195 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003196 CSEMap.InsertNode(N, IP);
3197 AllNodes.push_back(N);
3198 return SDOperand(N, 0);
3199}
3200
Evan Cheng144d8f02006-11-09 17:55:04 +00003201SDOperand
3202SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
3203 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003204 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3205 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3206 "Store is already a indexed store!");
3207 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
3208 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
3209 FoldingSetNodeID ID;
3210 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3211 ID.AddInteger(AM);
3212 ID.AddInteger(ST->isTruncatingStore());
Duncan Sands3b3adbb2008-06-06 12:49:32 +00003213 ID.AddInteger(ST->getMemoryVT().getRawBits());
Evan Cheng9109fb12006-11-05 09:30:09 +00003214 ID.AddInteger(ST->getAlignment());
3215 ID.AddInteger(ST->isVolatile());
3216 void *IP = 0;
3217 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3218 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00003219 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003220 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng9109fb12006-11-05 09:30:09 +00003221 ST->getSrcValue(), ST->getSrcValueOffset(),
3222 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003223 CSEMap.InsertNode(N, IP);
3224 AllNodes.push_back(N);
3225 return SDOperand(N, 0);
3226}
3227
Duncan Sands83ec4b62008-06-06 12:08:01 +00003228SDOperand SelectionDAG::getVAArg(MVT VT,
Nate Begemanacc398c2006-01-25 18:21:52 +00003229 SDOperand Chain, SDOperand Ptr,
3230 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003231 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003232 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003233}
3234
Duncan Sands83ec4b62008-06-06 12:08:01 +00003235SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003236 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003237 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003238 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003239 case 1: return getNode(Opcode, VT, Ops[0]);
3240 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3241 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003242 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003243 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003244
Chris Lattneref847df2005-04-09 03:27:28 +00003245 switch (Opcode) {
3246 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003247 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003248 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003249 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3250 "LHS and RHS of condition must have same type!");
3251 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3252 "True and False arms of SelectCC must have same type!");
3253 assert(Ops[2].getValueType() == VT &&
3254 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003255 break;
3256 }
3257 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003258 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003259 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3260 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003261 break;
3262 }
Chris Lattneref847df2005-04-09 03:27:28 +00003263 }
3264
Chris Lattner385328c2005-05-14 07:42:29 +00003265 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003266 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003267 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003268 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003269 FoldingSetNodeID ID;
3270 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003271 void *IP = 0;
3272 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3273 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00003274 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003275 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003276 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00003277 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003278 }
Chris Lattneref847df2005-04-09 03:27:28 +00003279 AllNodes.push_back(N);
3280 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003281}
3282
Chris Lattner89c34632005-05-14 06:20:26 +00003283SDOperand SelectionDAG::getNode(unsigned Opcode,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003284 std::vector<MVT> &ResultTys,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003285 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003286 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3287 Ops, NumOps);
3288}
3289
3290SDOperand SelectionDAG::getNode(unsigned Opcode,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003291 const MVT *VTs, unsigned NumVTs,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003292 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003293 if (NumVTs == 1)
3294 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003295 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3296}
3297
3298SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003299 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003300 if (VTList.NumVTs == 1)
3301 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003302
Chris Lattner5f056bf2005-07-10 01:55:33 +00003303 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003304 // FIXME: figure out how to safely handle things like
3305 // int foo(int x) { return 1 << (x & 255); }
3306 // int bar() { return foo(256); }
3307#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003308 case ISD::SRA_PARTS:
3309 case ISD::SRL_PARTS:
3310 case ISD::SHL_PARTS:
3311 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003312 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003313 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3314 else if (N3.getOpcode() == ISD::AND)
3315 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3316 // If the and is only masking out bits that cannot effect the shift,
3317 // eliminate the and.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003318 unsigned NumBits = VT.getSizeInBits()*2;
Chris Lattnere89083a2005-05-14 07:25:05 +00003319 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3320 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3321 }
3322 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003323#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003324 }
Chris Lattner89c34632005-05-14 06:20:26 +00003325
Chris Lattner43247a12005-08-25 19:12:10 +00003326 // Memoize the node unless it returns a flag.
3327 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003328 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003329 FoldingSetNodeID ID;
3330 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003331 void *IP = 0;
3332 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3333 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00003334 if (NumOps == 1)
3335 N = new UnarySDNode(Opcode, VTList, Ops[0]);
3336 else if (NumOps == 2)
3337 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3338 else if (NumOps == 3)
3339 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3340 else
3341 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003342 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003343 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00003344 if (NumOps == 1)
3345 N = new UnarySDNode(Opcode, VTList, Ops[0]);
3346 else if (NumOps == 2)
3347 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3348 else if (NumOps == 3)
3349 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3350 else
3351 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003352 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003353 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00003354 return SDOperand(N, 0);
3355}
3356
Dan Gohman08ce9762007-10-08 15:49:58 +00003357SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003358 return getNode(Opcode, VTList, (SDOperand*)0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003359}
3360
3361SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3362 SDOperand N1) {
3363 SDOperand Ops[] = { N1 };
3364 return getNode(Opcode, VTList, Ops, 1);
3365}
3366
3367SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3368 SDOperand N1, SDOperand N2) {
3369 SDOperand Ops[] = { N1, N2 };
3370 return getNode(Opcode, VTList, Ops, 2);
3371}
3372
3373SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3374 SDOperand N1, SDOperand N2, SDOperand N3) {
3375 SDOperand Ops[] = { N1, N2, N3 };
3376 return getNode(Opcode, VTList, Ops, 3);
3377}
3378
3379SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3380 SDOperand N1, SDOperand N2, SDOperand N3,
3381 SDOperand N4) {
3382 SDOperand Ops[] = { N1, N2, N3, N4 };
3383 return getNode(Opcode, VTList, Ops, 4);
3384}
3385
3386SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3387 SDOperand N1, SDOperand N2, SDOperand N3,
3388 SDOperand N4, SDOperand N5) {
3389 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
3390 return getNode(Opcode, VTList, Ops, 5);
3391}
3392
Duncan Sands83ec4b62008-06-06 12:08:01 +00003393SDVTList SelectionDAG::getVTList(MVT VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003394 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003395}
3396
Duncan Sands83ec4b62008-06-06 12:08:01 +00003397SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
3398 for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
Chris Lattnera3255112005-11-08 23:30:28 +00003399 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00003400 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00003401 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00003402 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003403 std::vector<MVT> V;
Chris Lattnera3255112005-11-08 23:30:28 +00003404 V.push_back(VT1);
3405 V.push_back(VT2);
3406 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00003407 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00003408}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003409SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2,
3410 MVT VT3) {
3411 for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00003412 E = VTList.end(); I != E; ++I) {
3413 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
3414 (*I)[2] == VT3)
3415 return makeVTList(&(*I)[0], 3);
3416 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003417 std::vector<MVT> V;
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003418 V.push_back(VT1);
3419 V.push_back(VT2);
3420 V.push_back(VT3);
3421 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00003422 return makeVTList(&(*VTList.begin())[0], 3);
3423}
3424
Duncan Sands83ec4b62008-06-06 12:08:01 +00003425SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
Chris Lattner70046e92006-08-15 17:46:01 +00003426 switch (NumVTs) {
3427 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003428 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003429 case 2: return getVTList(VTs[0], VTs[1]);
3430 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3431 default: break;
3432 }
3433
Duncan Sands83ec4b62008-06-06 12:08:01 +00003434 for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00003435 E = VTList.end(); I != E; ++I) {
3436 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
3437
3438 bool NoMatch = false;
3439 for (unsigned i = 2; i != NumVTs; ++i)
3440 if (VTs[i] != (*I)[i]) {
3441 NoMatch = true;
3442 break;
3443 }
3444 if (!NoMatch)
3445 return makeVTList(&*I->begin(), NumVTs);
3446 }
3447
Duncan Sands83ec4b62008-06-06 12:08:01 +00003448 VTList.push_front(std::vector<MVT>(VTs, VTs+NumVTs));
Chris Lattner70046e92006-08-15 17:46:01 +00003449 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003450}
3451
3452
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003453/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3454/// specified operands. If the resultant node already exists in the DAG,
3455/// this does not modify the specified node, instead it returns the node that
3456/// already exists. If the resultant node does not exist in the DAG, the
3457/// input node is returned. As a degenerate case, if you specify the same
3458/// input operands as the node already has, the input node is returned.
3459SDOperand SelectionDAG::
3460UpdateNodeOperands(SDOperand InN, SDOperand Op) {
3461 SDNode *N = InN.Val;
3462 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3463
3464 // Check to see if there is no change.
3465 if (Op == N->getOperand(0)) return InN;
3466
3467 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003468 void *InsertPos = 0;
3469 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
3470 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003471
3472 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003473 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003474 RemoveNodeFromCSEMaps(N);
3475
3476 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003477 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003478 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003479 N->OperandList[0].setUser(N);
3480 Op.Val->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003481
3482 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003483 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003484 return InN;
3485}
3486
3487SDOperand SelectionDAG::
3488UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
3489 SDNode *N = InN.Val;
3490 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3491
3492 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003493 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3494 return InN; // No operands changed, just return the input node.
3495
3496 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003497 void *InsertPos = 0;
3498 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
3499 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003500
3501 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003502 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003503 RemoveNodeFromCSEMaps(N);
3504
3505 // Now we update the operands.
3506 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003507 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003508 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003509 N->OperandList[0].setUser(N);
3510 Op1.Val->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003511 }
3512 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003513 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003514 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003515 N->OperandList[1].setUser(N);
3516 Op2.Val->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003517 }
3518
3519 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003520 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003521 return InN;
3522}
3523
3524SDOperand SelectionDAG::
3525UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003526 SDOperand Ops[] = { Op1, Op2, Op3 };
3527 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003528}
3529
3530SDOperand SelectionDAG::
3531UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3532 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003533 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
3534 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003535}
3536
3537SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00003538UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3539 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003540 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
3541 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003542}
3543
Chris Lattner809ec112006-01-28 10:09:25 +00003544SDOperand SelectionDAG::
Roman Levenstein9cac5252008-04-16 16:15:27 +00003545UpdateNodeOperands(SDOperand InN, SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003546 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003547 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003548 "Update with wrong number of operands");
3549
3550 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003551 bool AnyChange = false;
3552 for (unsigned i = 0; i != NumOps; ++i) {
3553 if (Ops[i] != N->getOperand(i)) {
3554 AnyChange = true;
3555 break;
3556 }
3557 }
3558
3559 // No operands changed, just return the input node.
3560 if (!AnyChange) return InN;
3561
3562 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003563 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003564 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00003565 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003566
Dan Gohman7ceda162008-05-02 00:05:03 +00003567 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003568 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003569 RemoveNodeFromCSEMaps(N);
3570
3571 // Now we update the operands.
3572 for (unsigned i = 0; i != NumOps; ++i) {
3573 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003574 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003575 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003576 N->OperandList[i].setUser(N);
3577 Ops[i].Val->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003578 }
3579 }
3580
3581 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003582 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003583 return InN;
3584}
3585
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003586/// MorphNodeTo - This frees the operands of the current node, resets the
3587/// opcode, types, and operands to the specified value. This should only be
3588/// used by the SelectionDAG class.
3589void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
Dan Gohman35b31be2008-04-17 23:02:12 +00003590 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003591 NodeType = Opc;
3592 ValueList = L.VTs;
3593 NumValues = L.NumVTs;
3594
3595 // Clear the operands list, updating used nodes to remove this from their
3596 // use list.
3597 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003598 I->getVal()->removeUser(std::distance(op_begin(), I), this);
Chris Lattner63e3f142007-02-04 07:28:00 +00003599
3600 // If NumOps is larger than the # of operands we currently have, reallocate
3601 // the operand list.
3602 if (NumOps > NumOperands) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003603 if (OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +00003604 delete [] OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003605 }
Roman Levenstein9cac5252008-04-16 16:15:27 +00003606 OperandList = new SDUse[NumOps];
Chris Lattner63e3f142007-02-04 07:28:00 +00003607 OperandsNeedDelete = true;
3608 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003609
3610 // Assign the new operands.
3611 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003612
3613 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3614 OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003615 OperandList[i].setUser(this);
Roman Levenstein9cac5252008-04-16 16:15:27 +00003616 SDNode *N = OperandList[i].getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +00003617 N->addUser(i, this);
3618 ++N->UsesSize;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003619 }
3620}
Chris Lattner149c58c2005-08-16 18:17:10 +00003621
3622/// SelectNodeTo - These are used for target selectors to *mutate* the
3623/// specified node to have the specified return type, Target opcode, and
3624/// operands. Note that target opcodes are stored as
3625/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003626///
3627/// Note that SelectNodeTo returns the resultant node. If there is already a
3628/// node of the specified opcode and operands, it returns that node instead of
3629/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00003630SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003631 MVT VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003632 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003633 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00003634 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, (SDOperand*)0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00003635 void *IP = 0;
3636 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003637 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00003638
Chris Lattner7651fa42005-08-24 23:00:29 +00003639 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003640
Dan Gohman35b31be2008-04-17 23:02:12 +00003641 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, SDOperandPtr(), 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003642
Chris Lattner4a283e92006-08-11 18:38:11 +00003643 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003644 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00003645}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003646
Evan Cheng95514ba2006-08-26 08:00:10 +00003647SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003648 MVT VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003649 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003650 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003651 SDOperand Ops[] = { Op1 };
3652
Jim Laskey583bd472006-10-27 23:46:08 +00003653 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003654 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003655 void *IP = 0;
3656 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003657 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003658
Chris Lattner149c58c2005-08-16 18:17:10 +00003659 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003660 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003661 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003662 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003663}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003664
Evan Cheng95514ba2006-08-26 08:00:10 +00003665SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003666 MVT VT, SDOperand Op1,
Evan Cheng95514ba2006-08-26 08:00:10 +00003667 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003668 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003669 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003670 SDOperand Ops[] = { Op1, Op2 };
3671
Jim Laskey583bd472006-10-27 23:46:08 +00003672 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003673 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003674 void *IP = 0;
3675 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003676 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003677
Chris Lattner149c58c2005-08-16 18:17:10 +00003678 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003679
Chris Lattner63e3f142007-02-04 07:28:00 +00003680 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003681
Chris Lattnera5682852006-08-07 23:03:03 +00003682 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003683 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003684}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003685
Evan Cheng95514ba2006-08-26 08:00:10 +00003686SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003687 MVT VT, SDOperand Op1,
Evan Cheng95514ba2006-08-26 08:00:10 +00003688 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003689 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003690 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003691 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003692 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003693 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003694 void *IP = 0;
3695 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003696 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003697
Chris Lattner149c58c2005-08-16 18:17:10 +00003698 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003699
Chris Lattner63e3f142007-02-04 07:28:00 +00003700 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003701
Chris Lattnera5682852006-08-07 23:03:03 +00003702 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003703 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003704}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003705
Evan Cheng95514ba2006-08-26 08:00:10 +00003706SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003707 MVT VT, SDOperandPtr Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00003708 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003709 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003710 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003711 FoldingSetNodeID ID;
3712 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003713 void *IP = 0;
3714 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003715 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003716
Chris Lattner6b09a292005-08-21 18:49:33 +00003717 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003718 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003719
Chris Lattnera5682852006-08-07 23:03:03 +00003720 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003721 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003722}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003723
Evan Cheng95514ba2006-08-26 08:00:10 +00003724SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003725 MVT VT1, MVT VT2,
Evan Cheng95514ba2006-08-26 08:00:10 +00003726 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003727 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003728 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003729 SDOperand Ops[] = { Op1, Op2 };
3730 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003731 void *IP = 0;
3732 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003733 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003734
Chris Lattner0fb094f2005-11-19 01:44:53 +00003735 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003736 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003737 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003738 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003739}
3740
Evan Cheng95514ba2006-08-26 08:00:10 +00003741SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003742 MVT VT1, MVT VT2,
Evan Cheng95514ba2006-08-26 08:00:10 +00003743 SDOperand Op1, SDOperand Op2,
3744 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003745 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003746 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003747 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003748 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003749 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003750 void *IP = 0;
3751 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003752 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003753
Chris Lattner0fb094f2005-11-19 01:44:53 +00003754 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003755
Chris Lattner63e3f142007-02-04 07:28:00 +00003756 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003757 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003758 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003759}
3760
Chris Lattner0fb094f2005-11-19 01:44:53 +00003761
Evan Cheng6ae46c42006-02-09 07:15:23 +00003762/// getTargetNode - These are used for target selectors to create a new node
3763/// with specified return type(s), target opcode, and operands.
3764///
3765/// Note that getTargetNode returns the resultant node. If there is already a
3766/// node of the specified opcode and operands, it returns that node instead of
3767/// the current one.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003768SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003769 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3770}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003771SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDOperand Op1) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003772 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3773}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003774SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003775 SDOperand Op1, SDOperand Op2) {
3776 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3777}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003778SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003779 SDOperand Op1, SDOperand Op2,
3780 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003781 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3782}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003783SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003784 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003785 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003786}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003787SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
3788 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003789 SDOperand Op;
3790 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3791}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003792SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3793 MVT VT2, SDOperand Op1) {
3794 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003795 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003796}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003797SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3798 MVT VT2, SDOperand Op1,
Chris Lattnera5682852006-08-07 23:03:03 +00003799 SDOperand Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003800 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003801 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003802 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003803}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003804SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3805 MVT VT2, SDOperand Op1,
Chris Lattnera5682852006-08-07 23:03:03 +00003806 SDOperand Op2, SDOperand Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003807 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003808 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003809 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003810}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003811SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003812 SDOperandPtr Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003813 const MVT *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003814 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003815}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003816SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003817 SDOperand Op1, SDOperand Op2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003818 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003819 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003820 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003821}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003822SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003823 SDOperand Op1, SDOperand Op2,
3824 SDOperand Op3) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003825 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003826 SDOperand Ops[] = { Op1, Op2, Op3 };
3827 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3828}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003829SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003830 SDOperandPtr Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003831 const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
Evan Cheng694481e2006-08-27 08:08:54 +00003832 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003833}
Duncan Sands83ec4b62008-06-06 12:08:01 +00003834SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3835 MVT VT2, MVT VT3, MVT VT4,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003836 SDOperandPtr Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003837 std::vector<MVT> VTList;
Evan Cheng05e69c12007-09-12 23:39:49 +00003838 VTList.push_back(VT1);
3839 VTList.push_back(VT2);
3840 VTList.push_back(VT3);
3841 VTList.push_back(VT4);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003842 const MVT *VTs = getNodeValueTypes(VTList);
Evan Cheng05e69c12007-09-12 23:39:49 +00003843 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3844}
Evan Cheng39305cf2007-10-05 01:10:49 +00003845SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003846 std::vector<MVT> &ResultTys,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003847 SDOperandPtr Ops, unsigned NumOps) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003848 const MVT *VTs = getNodeValueTypes(ResultTys);
Evan Cheng39305cf2007-10-05 01:10:49 +00003849 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3850 Ops, NumOps).Val;
3851}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003852
Evan Cheng08b11732008-03-22 01:55:50 +00003853/// getNodeIfExists - Get the specified node if it's already available, or
3854/// else return NULL.
3855SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003856 SDOperandPtr Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00003857 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3858 FoldingSetNodeID ID;
3859 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3860 void *IP = 0;
3861 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3862 return E;
3863 }
3864 return NULL;
3865}
3866
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003867
Evan Cheng99157a02006-08-07 22:13:29 +00003868/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003869/// This can cause recursive merging of nodes in the DAG.
3870///
Chris Lattner11d049c2008-02-03 03:35:22 +00003871/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00003872///
Chris Lattner11d049c2008-02-03 03:35:22 +00003873void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003874 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003875 SDNode *From = FromN.Val;
Chris Lattner11d049c2008-02-03 03:35:22 +00003876 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00003877 "Cannot replace with this method!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003878 assert(From != To.Val && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00003879
Chris Lattner8b8749f2005-08-17 19:00:20 +00003880 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003881 SDNode::use_iterator UI = From->use_begin();
3882 SDNode *U = UI->getUser();
3883
Chris Lattner8b8749f2005-08-17 19:00:20 +00003884 // This node is about to morph, remove its old self from the CSE maps.
3885 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003886 int operandNum = 0;
3887 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3888 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003889 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003890 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00003891 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003892 I->setUser(U);
3893 To.Val->addUser(operandNum, U);
3894 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003895
3896 // Now that we have modified U, add it back to the CSE maps. If it already
3897 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003898 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003899 ReplaceAllUsesWith(U, Existing, UpdateListener);
3900 // U is now dead. Inform the listener if it exists and delete it.
3901 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00003902 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00003903 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003904 } else {
3905 // If the node doesn't already exist, we updated it. Inform a listener if
3906 // it exists.
3907 if (UpdateListener)
3908 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003909 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003910 }
3911}
3912
3913/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3914/// This can cause recursive merging of nodes in the DAG.
3915///
3916/// This version assumes From/To have matching types and numbers of result
3917/// values.
3918///
Chris Lattner1e111c72005-09-07 05:37:01 +00003919void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003920 DAGUpdateListener *UpdateListener) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003921 assert(From != To && "Cannot replace uses of with self");
3922 assert(From->getNumValues() == To->getNumValues() &&
3923 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003924 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003925 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3926 UpdateListener);
Chris Lattner8b52f212005-08-26 18:36:28 +00003927
3928 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003929 SDNode::use_iterator UI = From->use_begin();
3930 SDNode *U = UI->getUser();
3931
Chris Lattner8b52f212005-08-26 18:36:28 +00003932 // This node is about to morph, remove its old self from the CSE maps.
3933 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003934 int operandNum = 0;
3935 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3936 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003937 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003938 From->removeUser(operandNum, U);
Roman Levenstein9cac5252008-04-16 16:15:27 +00003939 I->getVal() = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003940 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00003941 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00003942
Chris Lattner8b8749f2005-08-17 19:00:20 +00003943 // Now that we have modified U, add it back to the CSE maps. If it already
3944 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003945 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003946 ReplaceAllUsesWith(U, Existing, UpdateListener);
3947 // U is now dead. Inform the listener if it exists and delete it.
3948 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00003949 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00003950 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003951 } else {
3952 // If the node doesn't already exist, we updated it. Inform a listener if
3953 // it exists.
3954 if (UpdateListener)
3955 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003956 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003957 }
3958}
3959
Chris Lattner8b52f212005-08-26 18:36:28 +00003960/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3961/// This can cause recursive merging of nodes in the DAG.
3962///
3963/// This version can replace From with any result values. To must match the
3964/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003965void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003966 SDOperandPtr To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003967 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003968 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003969 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003970
3971 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003972 SDNode::use_iterator UI = From->use_begin();
3973 SDNode *U = UI->getUser();
3974
Chris Lattner7b2880c2005-08-24 22:44:39 +00003975 // This node is about to morph, remove its old self from the CSE maps.
3976 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003977 int operandNum = 0;
3978 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3979 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003980 if (I->getVal() == From) {
3981 const SDOperand &ToOp = To[I->getSDOperand().ResNo];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003982 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00003983 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003984 I->setUser(U);
3985 ToOp.Val->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003986 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00003987
Chris Lattner7b2880c2005-08-24 22:44:39 +00003988 // Now that we have modified U, add it back to the CSE maps. If it already
3989 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003990 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003991 ReplaceAllUsesWith(U, Existing, UpdateListener);
3992 // U is now dead. Inform the listener if it exists and delete it.
3993 if (UpdateListener)
Duncan Sandsedfcf592008-06-11 11:42:12 +00003994 UpdateListener->NodeDeleted(U, Existing);
Chris Lattner1e111c72005-09-07 05:37:01 +00003995 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003996 } else {
3997 // If the node doesn't already exist, we updated it. Inform a listener if
3998 // it exists.
3999 if (UpdateListener)
4000 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00004001 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00004002 }
4003}
4004
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004005namespace {
4006 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
4007 /// any deleted nodes from the set passed into its constructor and recursively
4008 /// notifies another update listener if specified.
4009 class ChainedSetUpdaterListener :
4010 public SelectionDAG::DAGUpdateListener {
4011 SmallSetVector<SDNode*, 16> &Set;
4012 SelectionDAG::DAGUpdateListener *Chain;
4013 public:
4014 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
4015 SelectionDAG::DAGUpdateListener *chain)
4016 : Set(set), Chain(chain) {}
Roman Levensteindc1adac2008-04-07 10:06:32 +00004017
Duncan Sandsedfcf592008-06-11 11:42:12 +00004018 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004019 Set.remove(N);
Duncan Sandsedfcf592008-06-11 11:42:12 +00004020 if (Chain) Chain->NodeDeleted(N, E);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004021 }
4022 virtual void NodeUpdated(SDNode *N) {
4023 if (Chain) Chain->NodeUpdated(N);
4024 }
4025 };
4026}
4027
Chris Lattner012f2412006-02-17 21:58:01 +00004028/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
4029/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004030/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner012f2412006-02-17 21:58:01 +00004031void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004032 DAGUpdateListener *UpdateListener){
Chris Lattner012f2412006-02-17 21:58:01 +00004033 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004034
Chris Lattner012f2412006-02-17 21:58:01 +00004035 // Handle the simple, trivial, case efficiently.
Chris Lattner11d049c2008-02-03 03:35:22 +00004036 if (From.Val->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004037 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00004038 return;
4039 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004040
4041 if (From.use_empty()) return;
4042
Chris Lattnercf5640b2007-02-04 00:14:31 +00004043 // Get all of the users of From.Val. We want these in a nice,
4044 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004045 SmallSetVector<SDNode*, 16> Users;
4046 for (SDNode::use_iterator UI = From.Val->use_begin(),
4047 E = From.Val->use_end(); UI != E; ++UI) {
4048 SDNode *User = UI->getUser();
4049 if (!Users.count(User))
4050 Users.insert(User);
4051 }
Chris Lattner012f2412006-02-17 21:58:01 +00004052
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004053 // When one of the recursive merges deletes nodes from the graph, we need to
4054 // make sure that UpdateListener is notified *and* that the node is removed
4055 // from Users if present. CSUL does this.
4056 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00004057
Chris Lattner012f2412006-02-17 21:58:01 +00004058 while (!Users.empty()) {
4059 // We know that this user uses some value of From. If it is the right
4060 // value, update it.
4061 SDNode *User = Users.back();
4062 Users.pop_back();
4063
Chris Lattner01d029b2007-10-15 06:10:22 +00004064 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00004065 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00004066 for (; Op != E; ++Op)
4067 if (*Op == From) break;
4068
4069 // If there are no matches, the user must use some other result of From.
4070 if (Op == E) continue;
4071
4072 // Okay, we know this user needs to be updated. Remove its old self
4073 // from the CSE maps.
4074 RemoveNodeFromCSEMaps(User);
4075
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004076 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00004077 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00004078 if (*Op == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004079 From.Val->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00004080 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00004081 Op->setUser(User);
4082 To.Val->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00004083 }
4084 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004085
4086 // Now that we have modified User, add it back to the CSE maps. If it
4087 // already exists there, recursively merge the results together.
4088 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004089 if (!Existing) {
4090 if (UpdateListener) UpdateListener->NodeUpdated(User);
4091 continue; // Continue on to next user.
4092 }
Chris Lattner01d029b2007-10-15 06:10:22 +00004093
4094 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004095 // to replace the dead one with the existing one. This can cause
Chris Lattner01d029b2007-10-15 06:10:22 +00004096 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004097 // can cause deletion of nodes that used the old value. To handle this, we
4098 // use CSUL to remove them from the Users set.
4099 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner01d029b2007-10-15 06:10:22 +00004100
Chris Lattnerf8dc0612008-02-03 06:49:24 +00004101 // User is now dead. Notify a listener if present.
Duncan Sandsedfcf592008-06-11 11:42:12 +00004102 if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
Chris Lattner01d029b2007-10-15 06:10:22 +00004103 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00004104 }
4105}
4106
Evan Chenge6f35d82006-08-01 08:20:41 +00004107/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
4108/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00004109unsigned SelectionDAG::AssignNodeIds() {
4110 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00004111 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
4112 SDNode *N = I;
4113 N->setNodeId(Id++);
4114 }
4115 return Id;
4116}
4117
Evan Chenge6f35d82006-08-01 08:20:41 +00004118/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00004119/// based on their topological order. It returns the maximum id and a vector
4120/// of the SDNodes* in assigned order by reference.
4121unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00004122 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00004123 std::vector<unsigned> InDegree(DAGSize);
4124 std::vector<SDNode*> Sources;
4125
4126 // Use a two pass approach to avoid using a std::map which is slow.
4127 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00004128 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
4129 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00004130 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00004131 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00004132 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00004133 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00004134 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00004135 }
4136
Evan Cheng99157a02006-08-07 22:13:29 +00004137 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00004138 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00004139 SDNode *N = Sources.back();
4140 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00004141 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00004142 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00004143 SDNode *P = I->getVal();
Evan Chengc384d6c2006-08-02 22:00:34 +00004144 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00004145 if (Degree == 0)
4146 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00004147 }
4148 }
4149
Evan Chengc384d6c2006-08-02 22:00:34 +00004150 // Second pass, assign the actual topological order as node ids.
4151 Id = 0;
4152 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
4153 TI != TE; ++TI)
4154 (*TI)->setNodeId(Id++);
4155
4156 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00004157}
4158
4159
Evan Cheng091cba12006-07-27 06:39:06 +00004160
Jim Laskey58b968b2005-08-17 20:08:02 +00004161//===----------------------------------------------------------------------===//
4162// SDNode Class
4163//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004164
Chris Lattner917d2c92006-07-19 00:00:37 +00004165// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004166void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004167void UnarySDNode::ANCHOR() {}
4168void BinarySDNode::ANCHOR() {}
4169void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004170void HandleSDNode::ANCHOR() {}
4171void StringSDNode::ANCHOR() {}
4172void ConstantSDNode::ANCHOR() {}
4173void ConstantFPSDNode::ANCHOR() {}
4174void GlobalAddressSDNode::ANCHOR() {}
4175void FrameIndexSDNode::ANCHOR() {}
4176void JumpTableSDNode::ANCHOR() {}
4177void ConstantPoolSDNode::ANCHOR() {}
4178void BasicBlockSDNode::ANCHOR() {}
4179void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004180void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004181void RegisterSDNode::ANCHOR() {}
4182void ExternalSymbolSDNode::ANCHOR() {}
4183void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004184void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004185void VTSDNode::ANCHOR() {}
Mon P Wang28873102008-06-25 08:15:39 +00004186void MemSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004187void LoadSDNode::ANCHOR() {}
4188void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004189void AtomicSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004190
Chris Lattner48b85922007-02-04 02:41:42 +00004191HandleSDNode::~HandleSDNode() {
4192 SDVTList VTs = { 0, 0 };
Dan Gohman35b31be2008-04-17 23:02:12 +00004193 MorphNodeTo(ISD::HANDLENODE, VTs, SDOperandPtr(), 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00004194}
4195
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004196GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004197 MVT VT, int o)
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004198 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004199 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004200 // Thread Local
4201 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4202 // Non Thread Local
4203 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4204 getSDVTList(VT)), Offset(o) {
4205 TheGlobal = const_cast<GlobalValue*>(GA);
4206}
Chris Lattner48b85922007-02-04 02:41:42 +00004207
Dan Gohman36b5c132008-04-07 19:35:22 +00004208/// getMemOperand - Return a MachineMemOperand object describing the memory
Mon P Wang28873102008-06-25 08:15:39 +00004209/// reference performed by this atomic.
4210MachineMemOperand AtomicSDNode::getMemOperand() const {
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004211 int Size = (getValueType(0).getSizeInBits() + 7) >> 3;
Mon P Wang28873102008-06-25 08:15:39 +00004212 int Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4213 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4214
4215 // Check if the atomic references a frame index
4216 const FrameIndexSDNode *FI =
4217 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
4218 if (!getSrcValue() && FI)
4219 return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
4220 FI->getIndex(), Size, getAlignment());
4221 else
4222 return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4223 Size, getAlignment());
4224}
4225
4226/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman69de1932008-02-06 22:27:42 +00004227/// reference performed by this load or store.
Dan Gohman36b5c132008-04-07 19:35:22 +00004228MachineMemOperand LSBaseSDNode::getMemOperand() const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004229 int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
Dan Gohman69de1932008-02-06 22:27:42 +00004230 int Flags =
Dan Gohman36b5c132008-04-07 19:35:22 +00004231 getOpcode() == ISD::LOAD ? MachineMemOperand::MOLoad :
4232 MachineMemOperand::MOStore;
Mon P Wang28873102008-06-25 08:15:39 +00004233 if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
Dan Gohman69de1932008-02-06 22:27:42 +00004234
4235 // Check if the load references a frame index, and does not have
4236 // an SV attached.
4237 const FrameIndexSDNode *FI =
4238 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
4239 if (!getSrcValue() && FI)
Dan Gohman36b5c132008-04-07 19:35:22 +00004240 return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
Mon P Wang28873102008-06-25 08:15:39 +00004241 FI->getIndex(), Size, getAlignment());
Dan Gohman69de1932008-02-06 22:27:42 +00004242 else
Dan Gohman36b5c132008-04-07 19:35:22 +00004243 return MachineMemOperand(getSrcValue(), Flags,
Mon P Wang28873102008-06-25 08:15:39 +00004244 getSrcValueOffset(), Size, getAlignment());
Dan Gohman69de1932008-02-06 22:27:42 +00004245}
4246
Jim Laskey583bd472006-10-27 23:46:08 +00004247/// Profile - Gather unique data for the node.
4248///
4249void SDNode::Profile(FoldingSetNodeID &ID) {
4250 AddNodeIDNode(ID, this);
4251}
4252
Chris Lattnera3255112005-11-08 23:30:28 +00004253/// getValueTypeList - Return a pointer to the specified value type.
4254///
Duncan Sands83ec4b62008-06-06 12:08:01 +00004255const MVT *SDNode::getValueTypeList(MVT VT) {
4256 if (VT.isExtended()) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004257 static std::set<MVT, MVT::compareRawBits> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004258 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004259 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004260 static MVT VTs[MVT::LAST_VALUETYPE];
4261 VTs[VT.getSimpleVT()] = VT;
4262 return &VTs[VT.getSimpleVT()];
Duncan Sandsaf47b112007-10-16 09:56:48 +00004263 }
Chris Lattnera3255112005-11-08 23:30:28 +00004264}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004265
Chris Lattner5c884562005-01-12 18:37:47 +00004266/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4267/// indicated value. This method ignores uses of other values defined by this
4268/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004269bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004270 assert(Value < getNumValues() && "Bad value!");
4271
4272 // If there is only one value, this is easy.
4273 if (getNumValues() == 1)
4274 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00004275 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00004276
Evan Cheng4ee62112006-02-05 06:29:23 +00004277 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00004278
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004279 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00004280
Roman Levensteindc1adac2008-04-07 10:06:32 +00004281 // TODO: Only iterate over uses of a given value of the node
4282 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4283 if (*UI == TheValue) {
4284 if (NUses == 0)
4285 return false;
4286 --NUses;
4287 }
Chris Lattner5c884562005-01-12 18:37:47 +00004288 }
4289
4290 // Found exactly the right number of uses?
4291 return NUses == 0;
4292}
4293
4294
Evan Cheng33d55952007-08-02 05:29:38 +00004295/// hasAnyUseOfValue - Return true if there are any use of the indicated
4296/// value. This method ignores uses of other values defined by this operation.
4297bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4298 assert(Value < getNumValues() && "Bad value!");
4299
Dan Gohman30359592008-01-29 13:02:09 +00004300 if (use_empty()) return false;
Evan Cheng33d55952007-08-02 05:29:38 +00004301
4302 SDOperand TheValue(const_cast<SDNode *>(this), Value);
4303
4304 SmallPtrSet<SDNode*, 32> UsersHandled;
4305
Roman Levensteindc1adac2008-04-07 10:06:32 +00004306 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4307 SDNode *User = UI->getUser();
Evan Cheng33d55952007-08-02 05:29:38 +00004308 if (User->getNumOperands() == 1 ||
4309 UsersHandled.insert(User)) // First time we've seen this?
4310 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
4311 if (User->getOperand(i) == TheValue) {
4312 return true;
4313 }
4314 }
4315
4316 return false;
4317}
4318
4319
Evan Cheng917be682008-03-04 00:41:45 +00004320/// isOnlyUseOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004321///
Evan Cheng917be682008-03-04 00:41:45 +00004322bool SDNode::isOnlyUseOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004323 bool Seen = false;
4324 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004325 SDNode *User = I->getUser();
Evan Cheng4ee62112006-02-05 06:29:23 +00004326 if (User == this)
4327 Seen = true;
4328 else
4329 return false;
4330 }
4331
4332 return Seen;
4333}
4334
Evan Chenge6e97e62006-11-03 07:31:32 +00004335/// isOperand - Return true if this node is an operand of N.
4336///
Roman Levenstein9cac5252008-04-16 16:15:27 +00004337bool SDOperand::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004338 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4339 if (*this == N->getOperand(i))
4340 return true;
4341 return false;
4342}
4343
Evan Cheng917be682008-03-04 00:41:45 +00004344bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004345 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004346 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004347 return true;
4348 return false;
4349}
Evan Cheng4ee62112006-02-05 06:29:23 +00004350
Chris Lattner572dee72008-01-16 05:49:24 +00004351/// reachesChainWithoutSideEffects - Return true if this operand (which must
4352/// be a chain) reaches the specified operand without crossing any
4353/// side-effecting instructions. In practice, this looks through token
4354/// factors and non-volatile loads. In order to remain efficient, this only
4355/// looks a couple of nodes in, it does not do an exhaustive search.
Roman Levenstein9cac5252008-04-16 16:15:27 +00004356bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004357 unsigned Depth) const {
4358 if (*this == Dest) return true;
4359
4360 // Don't search too deeply, we just want to be able to see through
4361 // TokenFactor's etc.
4362 if (Depth == 0) return false;
4363
4364 // If this is a token factor, all inputs to the TF happen in parallel. If any
4365 // of the operands of the TF reach dest, then we can do the xform.
4366 if (getOpcode() == ISD::TokenFactor) {
4367 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4368 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4369 return true;
4370 return false;
4371 }
4372
4373 // Loads don't have side effects, look through them.
4374 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4375 if (!Ld->isVolatile())
4376 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4377 }
4378 return false;
4379}
4380
4381
Evan Chengc5fc57d2006-11-03 03:05:24 +00004382static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004383 SmallPtrSet<SDNode *, 32> &Visited) {
4384 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004385 return;
4386
4387 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
4388 SDNode *Op = N->getOperand(i).Val;
4389 if (Op == P) {
4390 found = true;
4391 return;
4392 }
4393 findPredecessor(Op, P, found, Visited);
4394 }
4395}
4396
Evan Cheng917be682008-03-04 00:41:45 +00004397/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004398/// is either an operand of N or it can be reached by recursively traversing
4399/// up the operands.
4400/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004401bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004402 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004403 bool found = false;
4404 findPredecessor(N, this, found, Visited);
4405 return found;
4406}
4407
Evan Chengc5484282006-10-04 00:56:09 +00004408uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4409 assert(Num < NumOperands && "Invalid child # of SDNode!");
4410 return cast<ConstantSDNode>(OperandList[Num])->getValue();
4411}
4412
Reid Spencer577cc322007-04-01 07:32:19 +00004413std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004414 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004415 default:
4416 if (getOpcode() < ISD::BUILTIN_OP_END)
4417 return "<<Unknown DAG Node>>";
4418 else {
Evan Cheng72261582005-12-20 06:22:03 +00004419 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004420 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00004421 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00004422 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00004423
Evan Cheng72261582005-12-20 06:22:03 +00004424 TargetLowering &TLI = G->getTargetLoweringInfo();
4425 const char *Name =
4426 TLI.getTargetNodeName(getOpcode());
4427 if (Name) return Name;
4428 }
4429
4430 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004431 }
4432
Evan Cheng27b7db52008-03-08 00:58:38 +00004433 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004434 case ISD::MEMBARRIER: return "MemBarrier";
Mon P Wang28873102008-06-25 08:15:39 +00004435 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
4436 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
4437 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
Mon P Wang63307c32008-05-05 19:05:59 +00004438 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
4439 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
4440 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004441 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
Mon P Wang63307c32008-05-05 19:05:59 +00004442 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
4443 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
4444 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
4445 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
4446 case ISD::ATOMIC_SWAP: return "AtomicSWAP";
Andrew Lenharth95762122005-03-31 21:24:06 +00004447 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00004448 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004449 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00004450 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004451 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00004452 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00004453 case ISD::AssertSext: return "AssertSext";
4454 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004455
4456 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004457 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004458 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004459 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004460 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004461
4462 case ISD::Constant: return "Constant";
4463 case ISD::ConstantFP: return "ConstantFP";
4464 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004465 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004466 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004467 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00004468 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00004469 case ISD::RETURNADDR: return "RETURNADDR";
4470 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004471 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00004472 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
4473 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004474 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00004475 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004476 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00004477 case ISD::INTRINSIC_WO_CHAIN: {
4478 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
4479 return Intrinsic::getName((Intrinsic::ID)IID);
4480 }
4481 case ISD::INTRINSIC_VOID:
4482 case ISD::INTRINSIC_W_CHAIN: {
4483 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00004484 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00004485 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00004486
Chris Lattnerb2827b02006-03-19 00:52:58 +00004487 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004488 case ISD::TargetConstant: return "TargetConstant";
4489 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004490 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004491 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004492 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004493 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00004494 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004495 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004496
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004497 case ISD::CopyToReg: return "CopyToReg";
4498 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004499 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00004500 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00004501 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00004502 case ISD::LABEL: return "label";
Evan Chenga844bde2008-02-02 04:07:54 +00004503 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00004504 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00004505 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004506 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00004507
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00004508 // Unary operators
4509 case ISD::FABS: return "fabs";
4510 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00004511 case ISD::FSQRT: return "fsqrt";
4512 case ISD::FSIN: return "fsin";
4513 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00004514 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00004515 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00004516
4517 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004518 case ISD::ADD: return "add";
4519 case ISD::SUB: return "sub";
4520 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00004521 case ISD::MULHU: return "mulhu";
4522 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004523 case ISD::SDIV: return "sdiv";
4524 case ISD::UDIV: return "udiv";
4525 case ISD::SREM: return "srem";
4526 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00004527 case ISD::SMUL_LOHI: return "smul_lohi";
4528 case ISD::UMUL_LOHI: return "umul_lohi";
4529 case ISD::SDIVREM: return "sdivrem";
4530 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004531 case ISD::AND: return "and";
4532 case ISD::OR: return "or";
4533 case ISD::XOR: return "xor";
4534 case ISD::SHL: return "shl";
4535 case ISD::SRA: return "sra";
4536 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00004537 case ISD::ROTL: return "rotl";
4538 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00004539 case ISD::FADD: return "fadd";
4540 case ISD::FSUB: return "fsub";
4541 case ISD::FMUL: return "fmul";
4542 case ISD::FDIV: return "fdiv";
4543 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00004544 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00004545 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00004546
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004547 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00004548 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004549 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00004550 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004551 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004552 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00004553 case ISD::CONCAT_VECTORS: return "concat_vectors";
4554 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004555 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004556 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00004557 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00004558 case ISD::ADDC: return "addc";
4559 case ISD::ADDE: return "adde";
4560 case ISD::SUBC: return "subc";
4561 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00004562 case ISD::SHL_PARTS: return "shl_parts";
4563 case ISD::SRA_PARTS: return "sra_parts";
4564 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00004565
4566 case ISD::EXTRACT_SUBREG: return "extract_subreg";
4567 case ISD::INSERT_SUBREG: return "insert_subreg";
4568
Chris Lattner7f644642005-04-28 21:44:03 +00004569 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004570 case ISD::SIGN_EXTEND: return "sign_extend";
4571 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00004572 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00004573 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004574 case ISD::TRUNCATE: return "truncate";
4575 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00004576 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00004577 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004578 case ISD::FP_EXTEND: return "fp_extend";
4579
4580 case ISD::SINT_TO_FP: return "sint_to_fp";
4581 case ISD::UINT_TO_FP: return "uint_to_fp";
4582 case ISD::FP_TO_SINT: return "fp_to_sint";
4583 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00004584 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004585
4586 // Control flow instructions
4587 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00004588 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00004589 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004590 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00004591 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004592 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00004593 case ISD::CALLSEQ_START: return "callseq_start";
4594 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004595
4596 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00004597 case ISD::LOAD: return "load";
4598 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00004599 case ISD::VAARG: return "vaarg";
4600 case ISD::VACOPY: return "vacopy";
4601 case ISD::VAEND: return "vaend";
4602 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004603 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00004604 case ISD::EXTRACT_ELEMENT: return "extract_element";
4605 case ISD::BUILD_PAIR: return "build_pair";
4606 case ISD::STACKSAVE: return "stacksave";
4607 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004608 case ISD::TRAP: return "trap";
4609
Nate Begeman1b5db7a2006-01-16 08:07:10 +00004610 // Bit manipulation
4611 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00004612 case ISD::CTPOP: return "ctpop";
4613 case ISD::CTTZ: return "cttz";
4614 case ISD::CTLZ: return "ctlz";
4615
Chris Lattner36ce6912005-11-29 06:21:05 +00004616 // Debug info
4617 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00004618 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00004619
Duncan Sands36397f52007-07-27 12:58:54 +00004620 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00004621 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00004622
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004623 case ISD::CONDCODE:
4624 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004625 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004626 case ISD::SETOEQ: return "setoeq";
4627 case ISD::SETOGT: return "setogt";
4628 case ISD::SETOGE: return "setoge";
4629 case ISD::SETOLT: return "setolt";
4630 case ISD::SETOLE: return "setole";
4631 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004632
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004633 case ISD::SETO: return "seto";
4634 case ISD::SETUO: return "setuo";
4635 case ISD::SETUEQ: return "setue";
4636 case ISD::SETUGT: return "setugt";
4637 case ISD::SETUGE: return "setuge";
4638 case ISD::SETULT: return "setult";
4639 case ISD::SETULE: return "setule";
4640 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004641
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004642 case ISD::SETEQ: return "seteq";
4643 case ISD::SETGT: return "setgt";
4644 case ISD::SETGE: return "setge";
4645 case ISD::SETLT: return "setlt";
4646 case ISD::SETLE: return "setle";
4647 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004648 }
4649 }
4650}
Chris Lattnerc3aae252005-01-07 07:46:32 +00004651
Evan Cheng144d8f02006-11-09 17:55:04 +00004652const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00004653 switch (AM) {
4654 default:
4655 return "";
4656 case ISD::PRE_INC:
4657 return "<pre-inc>";
4658 case ISD::PRE_DEC:
4659 return "<pre-dec>";
4660 case ISD::POST_INC:
4661 return "<post-inc>";
4662 case ISD::POST_DEC:
4663 return "<post-dec>";
4664 }
4665}
4666
Duncan Sands276dcbd2008-03-21 09:14:45 +00004667std::string ISD::ArgFlagsTy::getArgFlagsString() {
4668 std::string S = "< ";
4669
4670 if (isZExt())
4671 S += "zext ";
4672 if (isSExt())
4673 S += "sext ";
4674 if (isInReg())
4675 S += "inreg ";
4676 if (isSRet())
4677 S += "sret ";
4678 if (isByVal())
4679 S += "byval ";
4680 if (isNest())
4681 S += "nest ";
4682 if (getByValAlign())
4683 S += "byval-align:" + utostr(getByValAlign()) + " ";
4684 if (getOrigAlign())
4685 S += "orig-align:" + utostr(getOrigAlign()) + " ";
4686 if (getByValSize())
4687 S += "byval-size:" + utostr(getByValSize()) + " ";
4688 return S + ">";
4689}
4690
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004691void SDNode::dump() const { dump(0); }
4692void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00004693 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004694
4695 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004696 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00004697 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00004698 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00004699 else
Duncan Sands83ec4b62008-06-06 12:08:01 +00004700 cerr << getValueType(i).getMVTString();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004701 }
Bill Wendling832171c2006-12-07 20:04:42 +00004702 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004703
Bill Wendling832171c2006-12-07 20:04:42 +00004704 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004705 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004706 if (i) cerr << ", ";
4707 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004708 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00004709 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004710 }
4711
Evan Chengce254432007-12-11 02:08:35 +00004712 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4713 SDNode *Mask = getOperand(2).Val;
4714 cerr << "<";
4715 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4716 if (i) cerr << ",";
4717 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4718 cerr << "u";
4719 else
4720 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4721 }
4722 cerr << ">";
4723 }
4724
Chris Lattnerc3aae252005-01-07 07:46:32 +00004725 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004726 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004727 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004728 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4729 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4730 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4731 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4732 else {
4733 cerr << "<APFloat(";
4734 CSDN->getValueAPF().convertToAPInt().dump();
4735 cerr << ")>";
4736 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00004737 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00004738 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00004739 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00004740 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00004741 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00004742 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004743 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00004744 else
Bill Wendling832171c2006-12-07 20:04:42 +00004745 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004746 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004747 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00004748 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004749 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004750 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00004751 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00004752 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00004753 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00004754 else
Bill Wendling832171c2006-12-07 20:04:42 +00004755 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00004756 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004757 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00004758 else
Bill Wendling832171c2006-12-07 20:04:42 +00004759 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004760 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004761 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004762 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4763 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00004764 cerr << LBB->getName() << " ";
4765 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00004766 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004767 if (G && R->getReg() &&
4768 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +00004769 cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00004770 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00004771 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00004772 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004773 } else if (const ExternalSymbolSDNode *ES =
4774 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004775 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004776 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4777 if (M->getValue())
Dan Gohman69de1932008-02-06 22:27:42 +00004778 cerr << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004779 else
Dan Gohman69de1932008-02-06 22:27:42 +00004780 cerr << "<null>";
4781 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4782 if (M->MO.getValue())
4783 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4784 else
4785 cerr << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004786 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
4787 cerr << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00004788 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004789 cerr << ":" << N->getVT().getMVTString();
Mon P Wang28873102008-06-25 08:15:39 +00004790 }
4791 else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00004792 const Value *SrcValue = LD->getSrcValue();
4793 int SrcOffset = LD->getSrcValueOffset();
4794 cerr << " <";
4795 if (SrcValue)
4796 cerr << SrcValue;
4797 else
4798 cerr << "null";
4799 cerr << ":" << SrcOffset << ">";
4800
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004801 bool doExt = true;
4802 switch (LD->getExtensionType()) {
4803 default: doExt = false; break;
4804 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004805 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004806 break;
4807 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004808 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004809 break;
4810 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004811 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004812 break;
4813 }
4814 if (doExt)
Duncan Sands83ec4b62008-06-06 12:08:01 +00004815 cerr << LD->getMemoryVT().getMVTString() << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004816
Evan Cheng144d8f02006-11-09 17:55:04 +00004817 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004818 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004819 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004820 if (LD->isVolatile())
4821 cerr << " <volatile>";
4822 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004823 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004824 const Value *SrcValue = ST->getSrcValue();
4825 int SrcOffset = ST->getSrcValueOffset();
4826 cerr << " <";
4827 if (SrcValue)
4828 cerr << SrcValue;
4829 else
4830 cerr << "null";
4831 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004832
4833 if (ST->isTruncatingStore())
4834 cerr << " <trunc "
Duncan Sands83ec4b62008-06-06 12:08:01 +00004835 << ST->getMemoryVT().getMVTString() << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004836
4837 const char *AM = getIndexedModeName(ST->getAddressingMode());
4838 if (*AM)
4839 cerr << " " << AM;
4840 if (ST->isVolatile())
4841 cerr << " <volatile>";
4842 cerr << " alignment=" << ST->getAlignment();
Mon P Wang28873102008-06-25 08:15:39 +00004843 } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
4844 const Value *SrcValue = AT->getSrcValue();
4845 int SrcOffset = AT->getSrcValueOffset();
4846 cerr << " <";
4847 if (SrcValue)
4848 cerr << SrcValue;
4849 else
4850 cerr << "null";
4851 cerr << ":" << SrcOffset << ">";
4852 if (AT->isVolatile())
4853 cerr << " <volatile>";
4854 cerr << " alignment=" << AT->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004855 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004856}
4857
Chris Lattnerde202b32005-11-09 23:47:37 +00004858static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004859 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4860 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004861 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004862 else
Bill Wendling832171c2006-12-07 20:04:42 +00004863 cerr << "\n" << std::string(indent+2, ' ')
4864 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004865
Chris Lattnerea946cd2005-01-09 20:38:33 +00004866
Bill Wendling832171c2006-12-07 20:04:42 +00004867 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004868 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004869}
4870
Chris Lattnerc3aae252005-01-07 07:46:32 +00004871void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004872 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004873 std::vector<const SDNode*> Nodes;
4874 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4875 I != E; ++I)
4876 Nodes.push_back(I);
4877
Chris Lattner49d24712005-01-09 20:26:36 +00004878 std::sort(Nodes.begin(), Nodes.end());
4879
4880 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004881 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004882 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004883 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004884
Jim Laskey26f7fa72006-10-17 19:33:52 +00004885 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004886
Bill Wendling832171c2006-12-07 20:04:42 +00004887 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004888}
4889
Evan Chengd6594ae2006-09-12 21:00:35 +00004890const Type *ConstantPoolSDNode::getType() const {
4891 if (isMachineConstantPoolEntry())
4892 return Val.MachineCPVal->getType();
4893 return Val.ConstVal->getType();
4894}