blob: d2fe4718da40ce304525a520ae465fea6cde586a [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"
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +000015#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000016#include "llvm/GlobalVariable.h"
Chris Lattner70a248d2006-03-27 06:45:25 +000017#include "llvm/Intrinsics.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000018#include "llvm/DerivedTypes.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000019#include "llvm/Assembly/Writer.h"
Dan Gohman707e0182008-04-12 04:36:06 +000020#include "llvm/CallingConv.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000021#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000022#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000024#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000025#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000026#include "llvm/Support/MathExtras.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000027#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000028#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000029#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000030#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000032#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000033#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000034#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000035#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000036#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000037#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000038#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000039using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000040
Chris Lattner0b3e5252006-08-15 19:11:05 +000041/// makeVTList - Return an instance of the SDVTList struct initialized with the
42/// specified members.
43static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
44 SDVTList Res = {VTs, NumVTs};
45 return Res;
46}
47
Chris Lattnerec4a5672008-03-05 06:48:13 +000048static const fltSemantics *MVTToAPFloatSemantics(MVT::ValueType VT) {
49 switch (VT) {
50 default: assert(0 && "Unknown FP format");
51 case MVT::f32: return &APFloat::IEEEsingle;
52 case MVT::f64: return &APFloat::IEEEdouble;
53 case MVT::f80: return &APFloat::x87DoubleExtended;
54 case MVT::f128: return &APFloat::IEEEquad;
55 case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
56 }
57}
58
Chris Lattnerf8dc0612008-02-03 06:49:24 +000059SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
60
Jim Laskey58b968b2005-08-17 20:08:02 +000061//===----------------------------------------------------------------------===//
62// ConstantFPSDNode Class
63//===----------------------------------------------------------------------===//
64
65/// isExactlyValue - We don't rely on operator== working on double values, as
66/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
67/// As such, this method can be used to do an exact bit-for-bit comparison of
68/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000069bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000070 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000071}
72
Dale Johannesenf04afdb2007-08-30 00:23:21 +000073bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
74 const APFloat& Val) {
Chris Lattnerec4a5672008-03-05 06:48:13 +000075 assert(MVT::isFloatingPoint(VT) && "Can only convert between FP types");
76
Dale Johannesen9dd2ce42008-04-20 18:23:46 +000077 // PPC long double cannot be converted to any other type.
78 if (VT == MVT::ppcf128 ||
79 &Val.getSemantics() == &APFloat::PPCDoubleDouble)
Chris Lattnerec4a5672008-03-05 06:48:13 +000080 return false;
81
Dale Johannesenf04afdb2007-08-30 00:23:21 +000082 // convert modifies in place, so make a copy.
83 APFloat Val2 = APFloat(Val);
Chris Lattnerec4a5672008-03-05 06:48:13 +000084 return Val2.convert(*MVTToAPFloatSemantics(VT),
85 APFloat::rmNearestTiesToEven) == APFloat::opOK;
Dale Johannesenf04afdb2007-08-30 00:23:21 +000086}
87
Jim Laskey58b968b2005-08-17 20:08:02 +000088//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000089// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000090//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000091
Evan Chenga8df1662006-03-27 06:58:47 +000092/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000093/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000094bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000095 // Look through a bit convert.
96 if (N->getOpcode() == ISD::BIT_CONVERT)
97 N = N->getOperand(0).Val;
98
Evan Chenga8df1662006-03-27 06:58:47 +000099 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +0000100
101 unsigned i = 0, e = N->getNumOperands();
102
103 // Skip over all of the undef values.
104 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
105 ++i;
106
107 // Do not accept an all-undef vector.
108 if (i == e) return false;
109
110 // Do not accept build_vectors that aren't all constants or which have non-~0
111 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000112 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000113 if (isa<ConstantSDNode>(NotZero)) {
114 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
115 return false;
116 } else if (isa<ConstantFPSDNode>(NotZero)) {
Dan Gohman6c231502008-02-29 01:47:35 +0000117 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
118 convertToAPInt().isAllOnesValue())
119 return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000120 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000121 return false;
122
123 // Okay, we have at least one ~0 value, check to see if the rest match or are
124 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000125 for (++i; i != e; ++i)
126 if (N->getOperand(i) != NotZero &&
127 N->getOperand(i).getOpcode() != ISD::UNDEF)
128 return false;
129 return true;
130}
131
132
Evan Cheng4a147842006-03-26 09:50:58 +0000133/// isBuildVectorAllZeros - Return true if the specified node is a
134/// BUILD_VECTOR where all of the elements are 0 or undef.
135bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000136 // Look through a bit convert.
137 if (N->getOpcode() == ISD::BIT_CONVERT)
138 N = N->getOperand(0).Val;
139
Evan Cheng4a147842006-03-26 09:50:58 +0000140 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000141
142 unsigned i = 0, e = N->getNumOperands();
143
144 // Skip over all of the undef values.
145 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
146 ++i;
147
148 // Do not accept an all-undef vector.
149 if (i == e) return false;
150
151 // Do not accept build_vectors that aren't all constants or which have non-~0
152 // elements.
153 SDOperand Zero = N->getOperand(i);
154 if (isa<ConstantSDNode>(Zero)) {
155 if (!cast<ConstantSDNode>(Zero)->isNullValue())
156 return false;
157 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000158 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000159 return false;
160 } else
161 return false;
162
163 // Okay, we have at least one ~0 value, check to see if the rest match or are
164 // undefs.
165 for (++i; i != e; ++i)
166 if (N->getOperand(i) != Zero &&
167 N->getOperand(i).getOpcode() != ISD::UNDEF)
168 return false;
169 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000170}
171
Evan Chengefec7512008-02-18 23:04:32 +0000172/// isScalarToVector - Return true if the specified node is a
173/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
174/// element is not an undef.
175bool ISD::isScalarToVector(const SDNode *N) {
176 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
177 return true;
178
179 if (N->getOpcode() != ISD::BUILD_VECTOR)
180 return false;
181 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
182 return false;
183 unsigned NumElems = N->getNumOperands();
184 for (unsigned i = 1; i < NumElems; ++i) {
185 SDOperand V = N->getOperand(i);
186 if (V.getOpcode() != ISD::UNDEF)
187 return false;
188 }
189 return true;
190}
191
192
Evan Chengbb81d972008-01-31 09:59:15 +0000193/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengfc718542008-02-04 23:10:38 +0000194/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Chengbb81d972008-01-31 09:59:15 +0000195/// is 0).
196bool ISD::isDebugLabel(const SDNode *N) {
197 SDOperand Zero;
198 if (N->getOpcode() == ISD::LABEL)
199 Zero = N->getOperand(2);
200 else if (N->isTargetOpcode() &&
201 N->getTargetOpcode() == TargetInstrInfo::LABEL)
202 // Chain moved to last operand.
203 Zero = N->getOperand(1);
204 else
205 return false;
206 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
207}
208
Chris Lattnerc3aae252005-01-07 07:46:32 +0000209/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
210/// when given the operation for (X op Y).
211ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
212 // To perform this operation, we just need to swap the L and G bits of the
213 // operation.
214 unsigned OldL = (Operation >> 2) & 1;
215 unsigned OldG = (Operation >> 1) & 1;
216 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
217 (OldL << 1) | // New G bit
218 (OldG << 2)); // New L bit.
219}
220
221/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
222/// 'op' is a valid SetCC operation.
223ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
224 unsigned Operation = Op;
225 if (isInteger)
226 Operation ^= 7; // Flip L, G, E bits, but not U.
227 else
228 Operation ^= 15; // Flip all of the condition bits.
229 if (Operation > ISD::SETTRUE2)
230 Operation &= ~8; // Don't let N and U bits get set.
231 return ISD::CondCode(Operation);
232}
233
234
235/// isSignedOp - For an integer comparison, return 1 if the comparison is a
236/// signed operation and 2 if the result is an unsigned comparison. Return zero
237/// if the operation does not depend on the sign of the input (setne and seteq).
238static int isSignedOp(ISD::CondCode Opcode) {
239 switch (Opcode) {
240 default: assert(0 && "Illegal integer setcc operation!");
241 case ISD::SETEQ:
242 case ISD::SETNE: return 0;
243 case ISD::SETLT:
244 case ISD::SETLE:
245 case ISD::SETGT:
246 case ISD::SETGE: return 1;
247 case ISD::SETULT:
248 case ISD::SETULE:
249 case ISD::SETUGT:
250 case ISD::SETUGE: return 2;
251 }
252}
253
254/// getSetCCOrOperation - Return the result of a logical OR between different
255/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
256/// returns SETCC_INVALID if it is not possible to represent the resultant
257/// comparison.
258ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
259 bool isInteger) {
260 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
261 // Cannot fold a signed integer setcc with an unsigned integer setcc.
262 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000263
Chris Lattnerc3aae252005-01-07 07:46:32 +0000264 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000265
Chris Lattnerc3aae252005-01-07 07:46:32 +0000266 // If the N and U bits get set then the resultant comparison DOES suddenly
267 // care about orderedness, and is true when ordered.
268 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000269 Op &= ~16; // Clear the U bit if the N bit is set.
270
271 // Canonicalize illegal integer setcc's.
272 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
273 Op = ISD::SETNE;
274
Chris Lattnerc3aae252005-01-07 07:46:32 +0000275 return ISD::CondCode(Op);
276}
277
278/// getSetCCAndOperation - Return the result of a logical AND between different
279/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
280/// function returns zero if it is not possible to represent the resultant
281/// comparison.
282ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
283 bool isInteger) {
284 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
285 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000286 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000287
288 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000289 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
290
291 // Canonicalize illegal integer setcc's.
292 if (isInteger) {
293 switch (Result) {
294 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000295 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
296 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
297 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
298 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000299 }
300 }
301
302 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000303}
304
Chris Lattnerb48da392005-01-23 04:39:44 +0000305const TargetMachine &SelectionDAG::getTarget() const {
306 return TLI.getTargetMachine();
307}
308
Jim Laskey58b968b2005-08-17 20:08:02 +0000309//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000310// SDNode Profile Support
311//===----------------------------------------------------------------------===//
312
Jim Laskeydef69b92006-10-27 23:52:51 +0000313/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
314///
Jim Laskey583bd472006-10-27 23:46:08 +0000315static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
316 ID.AddInteger(OpC);
317}
318
319/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
320/// solely with their pointer.
321void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
322 ID.AddPointer(VTList.VTs);
323}
324
Jim Laskeydef69b92006-10-27 23:52:51 +0000325/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
326///
Jim Laskey583bd472006-10-27 23:46:08 +0000327static void AddNodeIDOperands(FoldingSetNodeID &ID,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000328 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000329 for (; NumOps; --NumOps, ++Ops) {
330 ID.AddPointer(Ops->Val);
331 ID.AddInteger(Ops->ResNo);
332 }
Jim Laskey583bd472006-10-27 23:46:08 +0000333}
334
Jim Laskey583bd472006-10-27 23:46:08 +0000335static void AddNodeIDNode(FoldingSetNodeID &ID,
336 unsigned short OpC, SDVTList VTList,
Dan Gohman35b31be2008-04-17 23:02:12 +0000337 SDOperandPtr OpList, unsigned N) {
Jim Laskey583bd472006-10-27 23:46:08 +0000338 AddNodeIDOpcode(ID, OpC);
339 AddNodeIDValueTypes(ID, VTList);
340 AddNodeIDOperands(ID, OpList, N);
341}
342
Roman Levenstein9cac5252008-04-16 16:15:27 +0000343
Jim Laskeydef69b92006-10-27 23:52:51 +0000344/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
345/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000346static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
347 AddNodeIDOpcode(ID, N->getOpcode());
348 // Add the return value info.
349 AddNodeIDValueTypes(ID, N->getVTList());
350 // Add the operand info.
351 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
352
353 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000354 switch (N->getOpcode()) {
355 default: break; // Normal nodes don't need extra info.
Duncan Sands276dcbd2008-03-21 09:14:45 +0000356 case ISD::ARG_FLAGS:
357 ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
358 break;
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000359 case ISD::TargetConstant:
360 case ISD::Constant:
Chris Lattner19fc1d32008-02-20 06:28:01 +0000361 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000362 break;
363 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000364 case ISD::ConstantFP: {
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000365 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000366 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000367 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000368 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000369 case ISD::GlobalAddress:
370 case ISD::TargetGlobalTLSAddress:
371 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000372 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
373 ID.AddPointer(GA->getGlobal());
374 ID.AddInteger(GA->getOffset());
375 break;
376 }
377 case ISD::BasicBlock:
378 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
379 break;
380 case ISD::Register:
381 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
382 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000383 case ISD::SRCVALUE:
384 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
385 break;
386 case ISD::MEMOPERAND: {
Dan Gohman36b5c132008-04-07 19:35:22 +0000387 const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
Dan Gohman69de1932008-02-06 22:27:42 +0000388 ID.AddPointer(MO.getValue());
389 ID.AddInteger(MO.getFlags());
390 ID.AddInteger(MO.getOffset());
391 ID.AddInteger(MO.getSize());
392 ID.AddInteger(MO.getAlignment());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000393 break;
394 }
395 case ISD::FrameIndex:
396 case ISD::TargetFrameIndex:
397 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
398 break;
399 case ISD::JumpTable:
400 case ISD::TargetJumpTable:
401 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
402 break;
403 case ISD::ConstantPool:
404 case ISD::TargetConstantPool: {
405 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
406 ID.AddInteger(CP->getAlignment());
407 ID.AddInteger(CP->getOffset());
408 if (CP->isMachineConstantPoolEntry())
409 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
410 else
411 ID.AddPointer(CP->getConstVal());
412 break;
413 }
414 case ISD::LOAD: {
415 LoadSDNode *LD = cast<LoadSDNode>(N);
416 ID.AddInteger(LD->getAddressingMode());
417 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000418 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000419 ID.AddInteger(LD->getAlignment());
420 ID.AddInteger(LD->isVolatile());
421 break;
422 }
423 case ISD::STORE: {
424 StoreSDNode *ST = cast<StoreSDNode>(N);
425 ID.AddInteger(ST->getAddressingMode());
426 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000427 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000428 ID.AddInteger(ST->getAlignment());
429 ID.AddInteger(ST->isVolatile());
430 break;
431 }
Jim Laskey583bd472006-10-27 23:46:08 +0000432 }
433}
434
435//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000436// SelectionDAG Class
437//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000438
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000439/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000440/// SelectionDAG.
441void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000442 // Create a dummy node (which is not added to allnodes), that adds a reference
443 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000444 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000445
Chris Lattner190a4182006-08-04 17:45:20 +0000446 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000447
Chris Lattner190a4182006-08-04 17:45:20 +0000448 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000449 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000450 if (I->use_empty())
451 DeadNodes.push_back(I);
452
453 // Process the worklist, deleting the nodes and adding their uses to the
454 // worklist.
455 while (!DeadNodes.empty()) {
456 SDNode *N = DeadNodes.back();
457 DeadNodes.pop_back();
458
459 // Take the node out of the appropriate CSE map.
460 RemoveNodeFromCSEMaps(N);
461
462 // Next, brutally remove the operand list. This is safe to do, as there are
463 // no cycles in the graph.
464 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000465 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000466 Operand->removeUser(std::distance(N->op_begin(), I), N);
Chris Lattner190a4182006-08-04 17:45:20 +0000467
468 // Now that we removed this operand, see if there are no uses of it left.
469 if (Operand->use_empty())
470 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000471 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000472 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000473 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000474 }
Chris Lattner190a4182006-08-04 17:45:20 +0000475 N->OperandList = 0;
476 N->NumOperands = 0;
477
478 // Finally, remove N itself.
479 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000480 }
481
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000482 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000483 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000484}
485
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000486void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Cheng130a6472006-10-12 20:34:05 +0000487 SmallVector<SDNode*, 16> DeadNodes;
488 DeadNodes.push_back(N);
489
490 // Process the worklist, deleting the nodes and adding their uses to the
491 // worklist.
492 while (!DeadNodes.empty()) {
493 SDNode *N = DeadNodes.back();
494 DeadNodes.pop_back();
495
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000496 if (UpdateListener)
497 UpdateListener->NodeDeleted(N);
498
Evan Cheng130a6472006-10-12 20:34:05 +0000499 // Take the node out of the appropriate CSE map.
500 RemoveNodeFromCSEMaps(N);
501
502 // Next, brutally remove the operand list. This is safe to do, as there are
503 // no cycles in the graph.
504 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +0000505 SDNode *Operand = I->getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +0000506 Operand->removeUser(std::distance(N->op_begin(), I), N);
Evan Cheng130a6472006-10-12 20:34:05 +0000507
508 // Now that we removed this operand, see if there are no uses of it left.
509 if (Operand->use_empty())
510 DeadNodes.push_back(Operand);
511 }
Roman Levensteindc1adac2008-04-07 10:06:32 +0000512 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000513 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000514 }
Evan Cheng130a6472006-10-12 20:34:05 +0000515 N->OperandList = 0;
516 N->NumOperands = 0;
517
518 // Finally, remove N itself.
Evan Cheng130a6472006-10-12 20:34:05 +0000519 AllNodes.erase(N);
520 }
521}
522
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000523void SelectionDAG::DeleteNode(SDNode *N) {
524 assert(N->use_empty() && "Cannot delete a node that is not dead!");
525
526 // First take this out of the appropriate CSE map.
527 RemoveNodeFromCSEMaps(N);
528
Chris Lattner1e111c72005-09-07 05:37:01 +0000529 // Finally, remove uses due to operands of this node, remove from the
530 // AllNodes list, and delete the node.
531 DeleteNodeNotInCSEMaps(N);
532}
533
534void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
535
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000536 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000537 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000538
539 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000540 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +0000541 I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
Roman Levensteindc1adac2008-04-07 10:06:32 +0000542 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000543 delete[] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000544 }
Chris Lattner65113b22005-11-08 22:07:03 +0000545 N->OperandList = 0;
546 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000547
548 delete N;
549}
550
Chris Lattner149c58c2005-08-16 18:17:10 +0000551/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
552/// correspond to it. This is useful when we're about to delete or repurpose
553/// the node. We don't want future request for structurally identical nodes
554/// to return N anymore.
555void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000556 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000557 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000558 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000559 case ISD::STRING:
560 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
561 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000562 case ISD::CONDCODE:
563 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
564 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000565 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000566 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
567 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000568 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000569 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000570 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000571 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000572 Erased =
573 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000574 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000575 case ISD::VALUETYPE: {
576 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
577 if (MVT::isExtendedVT(VT)) {
578 Erased = ExtendedValueTypeNodes.erase(VT);
579 } else {
580 Erased = ValueTypeNodes[VT] != 0;
581 ValueTypeNodes[VT] = 0;
582 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000583 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000584 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000585 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000586 // Remove it from the CSE Map.
587 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000588 break;
589 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000590#ifndef NDEBUG
591 // Verify that the node was actually in one of the CSE maps, unless it has a
592 // flag result (which cannot be CSE'd) or is one of the special cases that are
593 // not subject to CSE.
594 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000595 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000596 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000597 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000598 assert(0 && "Node is not in map!");
599 }
600#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000601}
602
Chris Lattner8b8749f2005-08-17 19:00:20 +0000603/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
604/// has been taken out and modified in some way. If the specified node already
605/// exists in the CSE maps, do not modify the maps, but return the existing node
606/// instead. If it doesn't exist, add it and return null.
607///
608SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
609 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000610 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000611 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000612
Chris Lattner9f8cc692005-12-19 22:21:21 +0000613 // Check that remaining values produced are not flags.
614 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
615 if (N->getValueType(i) == MVT::Flag)
616 return 0; // Never CSE anything that produces a flag.
617
Chris Lattnera5682852006-08-07 23:03:03 +0000618 SDNode *New = CSEMap.GetOrInsertNode(N);
619 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000620 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000621}
622
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000623/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
624/// were replaced with those specified. If this node is never memoized,
625/// return null, otherwise return a pointer to the slot it would take. If a
626/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000627SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
628 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000629 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000630 return 0; // Never add these nodes.
631
632 // 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 Lattner63e3f142007-02-04 07:28:00 +0000637 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000638 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000639 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000640 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000641}
642
643/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
644/// were replaced with those specified. If this node is never memoized,
645/// return null, otherwise return a pointer to the slot it would take. If a
646/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000647SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
648 SDOperand Op1, SDOperand Op2,
649 void *&InsertPos) {
650 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
651 return 0; // Never add these nodes.
652
653 // Check that remaining values produced are not flags.
654 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
655 if (N->getValueType(i) == MVT::Flag)
656 return 0; // Never CSE anything that produces a flag.
657
Chris Lattner63e3f142007-02-04 07:28:00 +0000658 SDOperand Ops[] = { Op1, Op2 };
Jim Laskey583bd472006-10-27 23:46:08 +0000659 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000660 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000661 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
662}
663
664
665/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
666/// were replaced with those specified. If this node is never memoized,
667/// return null, otherwise return a pointer to the slot it would take. If a
668/// node already exists with these operands, the slot will be non-null.
669SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Roman Levenstein9cac5252008-04-16 16:15:27 +0000670 SDOperandPtr Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000671 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000672 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000673 return 0; // Never add these nodes.
674
675 // Check that remaining values produced are not flags.
676 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
677 if (N->getValueType(i) == MVT::Flag)
678 return 0; // Never CSE anything that produces a flag.
679
Jim Laskey583bd472006-10-27 23:46:08 +0000680 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000681 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000682
Evan Cheng9629aba2006-10-11 01:47:58 +0000683 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
684 ID.AddInteger(LD->getAddressingMode());
685 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000686 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng9629aba2006-10-11 01:47:58 +0000687 ID.AddInteger(LD->getAlignment());
688 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000689 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
690 ID.AddInteger(ST->getAddressingMode());
691 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000692 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000693 ID.AddInteger(ST->getAlignment());
694 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000695 }
Jim Laskey583bd472006-10-27 23:46:08 +0000696
Chris Lattnera5682852006-08-07 23:03:03 +0000697 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000698}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000699
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000700
Chris Lattner78ec3112003-08-11 14:57:33 +0000701SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000702 while (!AllNodes.empty()) {
703 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000704 N->SetNextInBucket(0);
Roman Levensteindc1adac2008-04-07 10:06:32 +0000705 if (N->OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000706 delete [] N->OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +0000707 }
Chris Lattner65113b22005-11-08 22:07:03 +0000708 N->OperandList = 0;
709 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000710 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000711 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000712}
713
Chris Lattner0f2287b2005-04-13 02:38:18 +0000714SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000715 if (Op.getValueType() == VT) return Op;
Dan Gohman6c231502008-02-29 01:47:35 +0000716 APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
717 MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000718 return getNode(ISD::AND, Op.getValueType(), Op,
719 getConstant(Imm, Op.getValueType()));
720}
721
Chris Lattner36ce6912005-11-29 06:21:05 +0000722SDOperand SelectionDAG::getString(const std::string &Val) {
723 StringSDNode *&N = StringNodes[Val];
724 if (!N) {
725 N = new StringSDNode(Val);
726 AllNodes.push_back(N);
727 }
728 return SDOperand(N, 0);
729}
730
Chris Lattner61b09412006-08-11 21:01:22 +0000731SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohman6394b092008-02-08 22:59:30 +0000732 MVT::ValueType EltVT =
733 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
734
735 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
736}
737
738SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000739 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000740
741 MVT::ValueType EltVT =
742 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000743
Dan Gohman6394b092008-02-08 22:59:30 +0000744 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
745 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000746
747 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000748 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000749 AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000750 ID.Add(Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000751 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000752 SDNode *N = NULL;
753 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
754 if (!MVT::isVector(VT))
755 return SDOperand(N, 0);
756 if (!N) {
757 N = new ConstantSDNode(isT, Val, EltVT);
758 CSEMap.InsertNode(N, IP);
759 AllNodes.push_back(N);
760 }
761
762 SDOperand Result(N, 0);
763 if (MVT::isVector(VT)) {
764 SmallVector<SDOperand, 8> Ops;
765 Ops.assign(MVT::getVectorNumElements(VT), Result);
766 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
767 }
768 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000769}
770
Chris Lattner0bd48932008-01-17 07:00:52 +0000771SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
772 return getConstant(Val, TLI.getPointerTy(), isTarget);
773}
774
775
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000776SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000777 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000778 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000779
Dan Gohman7f321562007-06-25 16:23:39 +0000780 MVT::ValueType EltVT =
781 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000782
Chris Lattnerd8658612005-02-17 20:17:32 +0000783 // Do the map lookup using the actual bit pattern for the floating point
784 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
785 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000786 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000787 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000788 AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000789 ID.Add(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000790 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000791 SDNode *N = NULL;
792 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
793 if (!MVT::isVector(VT))
794 return SDOperand(N, 0);
795 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000796 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000797 CSEMap.InsertNode(N, IP);
798 AllNodes.push_back(N);
799 }
800
Dan Gohman7f321562007-06-25 16:23:39 +0000801 SDOperand Result(N, 0);
802 if (MVT::isVector(VT)) {
803 SmallVector<SDOperand, 8> Ops;
804 Ops.assign(MVT::getVectorNumElements(VT), Result);
805 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
806 }
807 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000808}
809
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000810SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
811 bool isTarget) {
812 MVT::ValueType EltVT =
813 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
814 if (EltVT==MVT::f32)
815 return getConstantFP(APFloat((float)Val), VT, isTarget);
816 else
817 return getConstantFP(APFloat(Val), VT, isTarget);
818}
819
Chris Lattnerc3aae252005-01-07 07:46:32 +0000820SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000821 MVT::ValueType VT, int Offset,
822 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000823 unsigned Opc;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000824
825 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
826 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000827 // If GV is an alias then use the aliasee for determining thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000828 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
829 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
830 }
831
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000832 if (GVar && GVar->isThreadLocal())
833 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
834 else
835 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000836
Jim Laskey583bd472006-10-27 23:46:08 +0000837 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000838 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000839 ID.AddPointer(GV);
840 ID.AddInteger(Offset);
841 void *IP = 0;
842 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
843 return SDOperand(E, 0);
844 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
845 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000846 AllNodes.push_back(N);
847 return SDOperand(N, 0);
848}
849
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000850SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
851 bool isTarget) {
852 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000853 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000854 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000855 ID.AddInteger(FI);
856 void *IP = 0;
857 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
858 return SDOperand(E, 0);
859 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
860 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000861 AllNodes.push_back(N);
862 return SDOperand(N, 0);
863}
864
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000865SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
866 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000867 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000868 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000869 ID.AddInteger(JTI);
870 void *IP = 0;
871 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
872 return SDOperand(E, 0);
873 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
874 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000875 AllNodes.push_back(N);
876 return SDOperand(N, 0);
877}
878
Evan Chengb8973bd2006-01-31 22:23:14 +0000879SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000880 unsigned Alignment, int Offset,
881 bool isTarget) {
882 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
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(Alignment);
886 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000887 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000888 void *IP = 0;
889 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
890 return SDOperand(E, 0);
891 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
892 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000893 AllNodes.push_back(N);
894 return SDOperand(N, 0);
895}
896
Chris Lattnerc3aae252005-01-07 07:46:32 +0000897
Evan Chengd6594ae2006-09-12 21:00:35 +0000898SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
899 MVT::ValueType VT,
900 unsigned Alignment, int Offset,
901 bool isTarget) {
902 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000903 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000904 AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000905 ID.AddInteger(Alignment);
906 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000907 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000908 void *IP = 0;
909 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
910 return SDOperand(E, 0);
911 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
912 CSEMap.InsertNode(N, IP);
913 AllNodes.push_back(N);
914 return SDOperand(N, 0);
915}
916
917
Chris Lattnerc3aae252005-01-07 07:46:32 +0000918SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000919 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000920 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000921 ID.AddPointer(MBB);
922 void *IP = 0;
923 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
924 return SDOperand(E, 0);
925 SDNode *N = new BasicBlockSDNode(MBB);
926 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000927 AllNodes.push_back(N);
928 return SDOperand(N, 0);
929}
930
Duncan Sands276dcbd2008-03-21 09:14:45 +0000931SDOperand SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
932 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000933 AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), (SDOperand*)0, 0);
Duncan Sands276dcbd2008-03-21 09:14:45 +0000934 ID.AddInteger(Flags.getRawBits());
935 void *IP = 0;
936 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
937 return SDOperand(E, 0);
938 SDNode *N = new ARG_FLAGSSDNode(Flags);
939 CSEMap.InsertNode(N, IP);
940 AllNodes.push_back(N);
941 return SDOperand(N, 0);
942}
943
Chris Lattner15e4b012005-07-10 00:07:11 +0000944SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000945 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner15e4b012005-07-10 00:07:11 +0000946 ValueTypeNodes.resize(VT+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000947
Duncan Sandsf411b832007-10-17 13:49:58 +0000948 SDNode *&N = MVT::isExtendedVT(VT) ?
949 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
950
951 if (N) return SDOperand(N, 0);
952 N = new VTSDNode(VT);
953 AllNodes.push_back(N);
954 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000955}
956
Chris Lattnerc3aae252005-01-07 07:46:32 +0000957SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
958 SDNode *&N = ExternalSymbols[Sym];
959 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000960 N = new ExternalSymbolSDNode(false, Sym, VT);
961 AllNodes.push_back(N);
962 return SDOperand(N, 0);
963}
964
Chris Lattner809ec112006-01-28 10:09:25 +0000965SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
966 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000967 SDNode *&N = TargetExternalSymbols[Sym];
968 if (N) return SDOperand(N, 0);
969 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000970 AllNodes.push_back(N);
971 return SDOperand(N, 0);
972}
973
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000974SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
975 if ((unsigned)Cond >= CondCodeNodes.size())
976 CondCodeNodes.resize(Cond+1);
977
Chris Lattner079a27a2005-08-09 20:40:02 +0000978 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000979 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000980 AllNodes.push_back(CondCodeNodes[Cond]);
981 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000982 return SDOperand(CondCodeNodes[Cond], 0);
983}
984
Chris Lattner0fdd7682005-08-30 22:38:38 +0000985SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000986 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +0000987 AddNodeIDNode(ID, ISD::Register, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000988 ID.AddInteger(RegNo);
989 void *IP = 0;
990 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
991 return SDOperand(E, 0);
992 SDNode *N = new RegisterSDNode(RegNo, VT);
993 CSEMap.InsertNode(N, IP);
994 AllNodes.push_back(N);
995 return SDOperand(N, 0);
996}
997
Dan Gohman69de1932008-02-06 22:27:42 +0000998SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +0000999 assert((!V || isa<PointerType>(V->getType())) &&
1000 "SrcValue is not a pointer?");
1001
Jim Laskey583bd472006-10-27 23:46:08 +00001002 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001003 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), (SDOperand*)0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +00001004 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +00001005
Chris Lattner61b09412006-08-11 21:01:22 +00001006 void *IP = 0;
1007 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1008 return SDOperand(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001009
1010 SDNode *N = new SrcValueSDNode(V);
1011 CSEMap.InsertNode(N, IP);
1012 AllNodes.push_back(N);
1013 return SDOperand(N, 0);
1014}
1015
Dan Gohman36b5c132008-04-07 19:35:22 +00001016SDOperand SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
Dan Gohman69de1932008-02-06 22:27:42 +00001017 const Value *v = MO.getValue();
1018 assert((!v || isa<PointerType>(v->getType())) &&
1019 "SrcValue is not a pointer?");
1020
1021 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001022 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), (SDOperand*)0, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001023 ID.AddPointer(v);
1024 ID.AddInteger(MO.getFlags());
1025 ID.AddInteger(MO.getOffset());
1026 ID.AddInteger(MO.getSize());
1027 ID.AddInteger(MO.getAlignment());
1028
1029 void *IP = 0;
1030 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1031 return SDOperand(E, 0);
1032
1033 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +00001034 CSEMap.InsertNode(N, IP);
1035 AllNodes.push_back(N);
1036 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001037}
1038
Chris Lattner37ce9df2007-10-15 17:47:20 +00001039/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1040/// specified value type.
1041SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
1042 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1043 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1044 const Type *Ty = MVT::getTypeForValueType(VT);
1045 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1046 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1047 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1048}
1049
1050
Chris Lattner51dabfb2006-10-14 00:41:01 +00001051SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1052 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001053 // These setcc operations always fold.
1054 switch (Cond) {
1055 default: break;
1056 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001057 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001058 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001059 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001060
1061 case ISD::SETOEQ:
1062 case ISD::SETOGT:
1063 case ISD::SETOGE:
1064 case ISD::SETOLT:
1065 case ISD::SETOLE:
1066 case ISD::SETONE:
1067 case ISD::SETO:
1068 case ISD::SETUO:
1069 case ISD::SETUEQ:
1070 case ISD::SETUNE:
1071 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1072 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001073 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001074
Chris Lattner67255a12005-04-07 18:14:58 +00001075 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001076 const APInt &C2 = N2C->getAPIntValue();
Chris Lattner67255a12005-04-07 18:14:58 +00001077 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001078 const APInt &C1 = N1C->getAPIntValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001079
Chris Lattnerc3aae252005-01-07 07:46:32 +00001080 switch (Cond) {
1081 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001082 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1083 case ISD::SETNE: return getConstant(C1 != C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00001084 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1085 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1086 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1087 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1088 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1089 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1090 case ISD::SETLE: return getConstant(C1.sle(C2), VT);
1091 case ISD::SETGE: return getConstant(C1.sge(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001092 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001093 }
Chris Lattner67255a12005-04-07 18:14:58 +00001094 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001095 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001096 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001097 // No compile time operations on this type yet.
1098 if (N1C->getValueType(0) == MVT::ppcf128)
1099 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001100
1101 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001102 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001103 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001104 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1105 return getNode(ISD::UNDEF, VT);
1106 // fall through
1107 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1108 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1109 return getNode(ISD::UNDEF, VT);
1110 // fall through
1111 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001112 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001113 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1114 return getNode(ISD::UNDEF, VT);
1115 // fall through
1116 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1117 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1118 return getNode(ISD::UNDEF, VT);
1119 // fall through
1120 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1121 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1122 return getNode(ISD::UNDEF, VT);
1123 // fall through
1124 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001125 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001126 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1127 return getNode(ISD::UNDEF, VT);
1128 // fall through
1129 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001130 R==APFloat::cmpEqual, VT);
1131 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1132 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1133 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1134 R==APFloat::cmpEqual, VT);
1135 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1136 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1137 R==APFloat::cmpLessThan, VT);
1138 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1139 R==APFloat::cmpUnordered, VT);
1140 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1141 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001142 }
1143 } else {
1144 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001145 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001146 }
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00001147 }
1148
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001149 // Could not fold it.
1150 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001151}
1152
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001153/// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We
1154/// use this predicate to simplify operations downstream.
1155bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1156 unsigned BitWidth = Op.getValueSizeInBits();
1157 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1158}
1159
Dan Gohmanea859be2007-06-22 14:59:07 +00001160/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1161/// this predicate to simplify operations downstream. Mask is known to be zero
1162/// for bits that V cannot have.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001163bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask,
Dan Gohmanea859be2007-06-22 14:59:07 +00001164 unsigned Depth) const {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001165 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00001166 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1167 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1168 return (KnownZero & Mask) == Mask;
1169}
1170
1171/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1172/// known to be either zero or one and return them in the KnownZero/KnownOne
1173/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1174/// processing.
Dan Gohman977a76f2008-02-13 22:28:48 +00001175void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001176 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001177 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001178 unsigned BitWidth = Mask.getBitWidth();
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001179 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1180 "Mask size mismatches value type size!");
1181
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001182 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001183 if (Depth == 6 || Mask == 0)
1184 return; // Limit search depth.
1185
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001186 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001187
1188 switch (Op.getOpcode()) {
1189 case ISD::Constant:
1190 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001191 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001192 KnownZero = ~KnownOne & Mask;
1193 return;
1194 case ISD::AND:
1195 // If either the LHS or the RHS are Zero, the result is zero.
1196 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001197 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1198 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001199 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1200 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1201
1202 // Output known-1 bits are only known if set in both the LHS & RHS.
1203 KnownOne &= KnownOne2;
1204 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1205 KnownZero |= KnownZero2;
1206 return;
1207 case ISD::OR:
1208 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001209 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1210 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001211 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1212 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1213
1214 // Output known-0 bits are only known if clear in both the LHS & RHS.
1215 KnownZero &= KnownZero2;
1216 // Output known-1 are known to be set if set in either the LHS | RHS.
1217 KnownOne |= KnownOne2;
1218 return;
1219 case ISD::XOR: {
1220 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1221 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1222 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1223 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1224
1225 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001226 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001227 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1228 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1229 KnownZero = KnownZeroOut;
1230 return;
1231 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001232 case ISD::MUL: {
1233 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1234 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1235 ComputeMaskedBits(Op.getOperand(0), Mask2, 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 // If low bits are zero in either operand, output low known-0 bits.
1240 // Also compute a conserative estimate for high known-0 bits.
1241 // More trickiness is possible, but this is sufficient for the
1242 // interesting case of alignment computation.
1243 KnownOne.clear();
1244 unsigned TrailZ = KnownZero.countTrailingOnes() +
1245 KnownZero2.countTrailingOnes();
1246 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
Dan Gohman42ac9292008-05-07 00:35:55 +00001247 KnownZero2.countLeadingOnes(),
1248 BitWidth) - BitWidth;
Dan Gohman23e8b712008-04-28 17:02:21 +00001249
1250 TrailZ = std::min(TrailZ, BitWidth);
1251 LeadZ = std::min(LeadZ, BitWidth);
1252 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1253 APInt::getHighBitsSet(BitWidth, LeadZ);
1254 KnownZero &= Mask;
1255 return;
1256 }
1257 case ISD::UDIV: {
1258 // For the purposes of computing leading zeros we can conservatively
1259 // treat a udiv as a logical right shift by the power of 2 known to
Dan Gohman1d9cd502008-05-02 21:30:02 +00001260 // be less than the denominator.
Dan Gohman23e8b712008-04-28 17:02:21 +00001261 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1262 ComputeMaskedBits(Op.getOperand(0),
1263 AllOnes, KnownZero2, KnownOne2, Depth+1);
1264 unsigned LeadZ = KnownZero2.countLeadingOnes();
1265
1266 KnownOne2.clear();
1267 KnownZero2.clear();
1268 ComputeMaskedBits(Op.getOperand(1),
1269 AllOnes, KnownZero2, KnownOne2, Depth+1);
Dan Gohman1d9cd502008-05-02 21:30:02 +00001270 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1271 if (RHSUnknownLeadingOnes != BitWidth)
1272 LeadZ = std::min(BitWidth,
1273 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001274
1275 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1276 return;
1277 }
Dan Gohmanea859be2007-06-22 14:59:07 +00001278 case ISD::SELECT:
1279 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1280 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1281 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1282 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1283
1284 // Only known if known in both the LHS and RHS.
1285 KnownOne &= KnownOne2;
1286 KnownZero &= KnownZero2;
1287 return;
1288 case ISD::SELECT_CC:
1289 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1290 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1291 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1292 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1293
1294 // Only known if known in both the LHS and RHS.
1295 KnownOne &= KnownOne2;
1296 KnownZero &= KnownZero2;
1297 return;
1298 case ISD::SETCC:
1299 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001300 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1301 BitWidth > 1)
1302 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001303 return;
1304 case ISD::SHL:
1305 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1306 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmand4cf9922008-02-26 18:50:50 +00001307 unsigned ShAmt = SA->getValue();
1308
1309 // If the shift count is an invalid immediate, don't do anything.
1310 if (ShAmt >= BitWidth)
1311 return;
1312
1313 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001314 KnownZero, KnownOne, Depth+1);
1315 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmand4cf9922008-02-26 18:50:50 +00001316 KnownZero <<= ShAmt;
1317 KnownOne <<= ShAmt;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001318 // low bits known zero.
Dan Gohmand4cf9922008-02-26 18:50:50 +00001319 KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001320 }
1321 return;
1322 case ISD::SRL:
1323 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1324 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001325 unsigned ShAmt = SA->getValue();
1326
Dan Gohmand4cf9922008-02-26 18:50:50 +00001327 // If the shift count is an invalid immediate, don't do anything.
1328 if (ShAmt >= BitWidth)
1329 return;
1330
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001331 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001332 KnownZero, KnownOne, Depth+1);
1333 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001334 KnownZero = KnownZero.lshr(ShAmt);
1335 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001336
Dan Gohman72d2fd52008-02-13 22:43:25 +00001337 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001338 KnownZero |= HighBits; // High bits known zero.
1339 }
1340 return;
1341 case ISD::SRA:
1342 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001343 unsigned ShAmt = SA->getValue();
1344
Dan Gohmand4cf9922008-02-26 18:50:50 +00001345 // If the shift count is an invalid immediate, don't do anything.
1346 if (ShAmt >= BitWidth)
1347 return;
1348
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001349 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001350 // If any of the demanded bits are produced by the sign extension, we also
1351 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001352 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1353 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001354 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001355
1356 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1357 Depth+1);
1358 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001359 KnownZero = KnownZero.lshr(ShAmt);
1360 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001361
1362 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001363 APInt SignBit = APInt::getSignBit(BitWidth);
1364 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001365
Dan Gohmanca93a432008-02-20 16:30:17 +00001366 if (KnownZero.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001367 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanca93a432008-02-20 16:30:17 +00001368 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001369 KnownOne |= HighBits; // New bits are known one.
1370 }
1371 }
1372 return;
1373 case ISD::SIGN_EXTEND_INREG: {
1374 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001375 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohmanea859be2007-06-22 14:59:07 +00001376
1377 // Sign extension. Compute the demanded bits in the result that are not
1378 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001379 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001380
Dan Gohman977a76f2008-02-13 22:28:48 +00001381 APInt InSignBit = APInt::getSignBit(EBits);
1382 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001383
1384 // If the sign extended bits are demanded, we know that the sign
1385 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001386 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001387 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001388 InputDemandedBits |= InSignBit;
1389
1390 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1391 KnownZero, KnownOne, Depth+1);
1392 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1393
1394 // If the sign bit of the input is known set or clear, then we know the
1395 // top bits of the result.
Dan Gohmanca93a432008-02-20 16:30:17 +00001396 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001397 KnownZero |= NewBits;
1398 KnownOne &= ~NewBits;
Dan Gohmanca93a432008-02-20 16:30:17 +00001399 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001400 KnownOne |= NewBits;
1401 KnownZero &= ~NewBits;
1402 } else { // Input sign bit unknown
1403 KnownZero &= ~NewBits;
1404 KnownOne &= ~NewBits;
1405 }
1406 return;
1407 }
1408 case ISD::CTTZ:
1409 case ISD::CTLZ:
1410 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001411 unsigned LowBits = Log2_32(BitWidth)+1;
1412 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1413 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001414 return;
1415 }
1416 case ISD::LOAD: {
1417 if (ISD::isZEXTLoad(Op.Val)) {
1418 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001419 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001420 unsigned MemBits = MVT::getSizeInBits(VT);
1421 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001422 }
1423 return;
1424 }
1425 case ISD::ZERO_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001426 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1427 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001428 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1429 APInt InMask = Mask;
1430 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001431 KnownZero.trunc(InBits);
1432 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001433 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001434 KnownZero.zext(BitWidth);
1435 KnownOne.zext(BitWidth);
1436 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001437 return;
1438 }
1439 case ISD::SIGN_EXTEND: {
1440 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001441 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001442 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001443 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1444 APInt InMask = Mask;
1445 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001446
1447 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001448 // bit is demanded. Temporarily set this bit in the mask for our callee.
1449 if (NewBits.getBoolValue())
1450 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001451
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001452 KnownZero.trunc(InBits);
1453 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001454 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1455
1456 // Note if the sign bit is known to be zero or one.
1457 bool SignBitKnownZero = KnownZero.isNegative();
1458 bool SignBitKnownOne = KnownOne.isNegative();
1459 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1460 "Sign bit can't be known to be both zero and one!");
1461
1462 // If the sign bit wasn't actually demanded by our caller, we don't
1463 // want it set in the KnownZero and KnownOne result values. Reset the
1464 // mask and reapply it to the result values.
1465 InMask = Mask;
1466 InMask.trunc(InBits);
1467 KnownZero &= InMask;
1468 KnownOne &= InMask;
1469
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001470 KnownZero.zext(BitWidth);
1471 KnownOne.zext(BitWidth);
1472
Dan Gohman977a76f2008-02-13 22:28:48 +00001473 // If the sign bit is known zero or one, the top bits match.
1474 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001475 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001476 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001477 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001478 return;
1479 }
1480 case ISD::ANY_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001481 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1482 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001483 APInt InMask = Mask;
1484 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001485 KnownZero.trunc(InBits);
1486 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001487 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001488 KnownZero.zext(BitWidth);
1489 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001490 return;
1491 }
1492 case ISD::TRUNCATE: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001493 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1494 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001495 APInt InMask = Mask;
1496 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001497 KnownZero.zext(InBits);
1498 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001499 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001500 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001501 KnownZero.trunc(BitWidth);
1502 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001503 break;
1504 }
1505 case ISD::AssertZext: {
1506 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001507 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001508 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1509 KnownOne, Depth+1);
1510 KnownZero |= (~InMask) & Mask;
1511 return;
1512 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001513 case ISD::FGETSIGN:
1514 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001515 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001516 return;
1517
Dan Gohman23e8b712008-04-28 17:02:21 +00001518 case ISD::SUB: {
1519 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1520 // We know that the top bits of C-X are clear if X contains less bits
1521 // than C (i.e. no wrap-around can happen). For example, 20-X is
1522 // positive if we can prove that X is >= 0 and < 16.
1523 if (CLHS->getAPIntValue().isNonNegative()) {
1524 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1525 // NLZ can't be BitWidth with no sign bit
1526 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1527 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1528 Depth+1);
1529
1530 // If all of the MaskV bits are known to be zero, then we know the
1531 // output top bits are zero, because we now know that the output is
1532 // from [0-C].
1533 if ((KnownZero2 & MaskV) == MaskV) {
1534 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1535 // Top bits known zero.
1536 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1537 }
1538 }
1539 }
1540 }
1541 // fall through
Dan Gohmanea859be2007-06-22 14:59:07 +00001542 case ISD::ADD: {
Dan Gohmanea859be2007-06-22 14:59:07 +00001543 // Output known-0 bits are known if clear or set in both the low clear bits
1544 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1545 // low 3 bits clear.
Dan Gohman23e8b712008-04-28 17:02:21 +00001546 APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1547 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1548 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1549 unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1550
1551 ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1552 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1553 KnownZeroOut = std::min(KnownZeroOut,
1554 KnownZero2.countTrailingOnes());
1555
1556 KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
Dan Gohmanea859be2007-06-22 14:59:07 +00001557 return;
1558 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001559 case ISD::SREM:
1560 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1561 APInt RA = Rem->getAPIntValue();
1562 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Dan Gohman23e1df82008-05-06 00:51:48 +00001563 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Dan Gohman23e8b712008-04-28 17:02:21 +00001564 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1565 ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001566
Dan Gohman23e8b712008-04-28 17:02:21 +00001567 // The sign of a remainder is equal to the sign of the first
1568 // operand (zero being positive).
1569 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1570 KnownZero2 |= ~LowBits;
1571 else if (KnownOne2[BitWidth-1])
1572 KnownOne2 |= ~LowBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001573
Dan Gohman23e8b712008-04-28 17:02:21 +00001574 KnownZero |= KnownZero2 & Mask;
1575 KnownOne |= KnownOne2 & Mask;
1576
1577 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
Dan Gohmanea859be2007-06-22 14:59:07 +00001578 }
1579 }
1580 return;
Dan Gohman23e8b712008-04-28 17:02:21 +00001581 case ISD::UREM: {
1582 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1583 APInt RA = Rem->getAPIntValue();
Dan Gohman23e1df82008-05-06 00:51:48 +00001584 if (RA.isPowerOf2()) {
1585 APInt LowBits = (RA - 1);
Dan Gohman23e8b712008-04-28 17:02:21 +00001586 APInt Mask2 = LowBits & Mask;
1587 KnownZero |= ~LowBits & Mask;
1588 ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1589 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1590 break;
1591 }
1592 }
1593
1594 // Since the result is less than or equal to either operand, any leading
1595 // zero bits in either operand must also exist in the result.
1596 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1597 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1598 Depth+1);
1599 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1600 Depth+1);
1601
1602 uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1603 KnownZero2.countLeadingOnes());
1604 KnownOne.clear();
1605 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1606 return;
Dan Gohmanea859be2007-06-22 14:59:07 +00001607 }
1608 default:
1609 // Allow the target to implement this method for its nodes.
1610 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1611 case ISD::INTRINSIC_WO_CHAIN:
1612 case ISD::INTRINSIC_W_CHAIN:
1613 case ISD::INTRINSIC_VOID:
1614 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1615 }
1616 return;
1617 }
1618}
1619
1620/// ComputeNumSignBits - Return the number of times the sign bit of the
1621/// register is replicated into the other bits. We know that at least 1 bit
1622/// is always equal to the sign bit (itself), but other cases can give us
1623/// information. For example, immediately after an "SRA X, 2", we know that
1624/// the top 3 bits are all equal to each other, so we return 3.
1625unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1626 MVT::ValueType VT = Op.getValueType();
1627 assert(MVT::isInteger(VT) && "Invalid VT!");
1628 unsigned VTBits = MVT::getSizeInBits(VT);
1629 unsigned Tmp, Tmp2;
1630
1631 if (Depth == 6)
1632 return 1; // Limit search depth.
1633
1634 switch (Op.getOpcode()) {
1635 default: break;
1636 case ISD::AssertSext:
1637 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1638 return VTBits-Tmp+1;
1639 case ISD::AssertZext:
1640 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1641 return VTBits-Tmp;
1642
1643 case ISD::Constant: {
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001644 const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1645 // If negative, return # leading ones.
1646 if (Val.isNegative())
1647 return Val.countLeadingOnes();
Dan Gohmanea859be2007-06-22 14:59:07 +00001648
Dan Gohmanbb271ff2008-03-03 23:35:36 +00001649 // Return # leading zeros.
1650 return Val.countLeadingZeros();
Dan Gohmanea859be2007-06-22 14:59:07 +00001651 }
1652
1653 case ISD::SIGN_EXTEND:
1654 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1655 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1656
1657 case ISD::SIGN_EXTEND_INREG:
1658 // Max of the input and what this extends.
1659 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1660 Tmp = VTBits-Tmp+1;
1661
1662 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1663 return std::max(Tmp, Tmp2);
1664
1665 case ISD::SRA:
1666 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1667 // SRA X, C -> adds C sign bits.
1668 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1669 Tmp += C->getValue();
1670 if (Tmp > VTBits) Tmp = VTBits;
1671 }
1672 return Tmp;
1673 case ISD::SHL:
1674 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1675 // shl destroys sign bits.
1676 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1677 if (C->getValue() >= VTBits || // Bad shift.
1678 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1679 return Tmp - C->getValue();
1680 }
1681 break;
1682 case ISD::AND:
1683 case ISD::OR:
1684 case ISD::XOR: // NOT is handled here.
1685 // Logical binary ops preserve the number of sign bits.
1686 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1687 if (Tmp == 1) return 1; // Early out.
1688 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1689 return std::min(Tmp, Tmp2);
1690
1691 case ISD::SELECT:
1692 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1693 if (Tmp == 1) return 1; // Early out.
1694 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1695 return std::min(Tmp, Tmp2);
1696
1697 case ISD::SETCC:
1698 // If setcc returns 0/-1, all bits are sign bits.
1699 if (TLI.getSetCCResultContents() ==
1700 TargetLowering::ZeroOrNegativeOneSetCCResult)
1701 return VTBits;
1702 break;
1703 case ISD::ROTL:
1704 case ISD::ROTR:
1705 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1706 unsigned RotAmt = C->getValue() & (VTBits-1);
1707
1708 // Handle rotate right by N like a rotate left by 32-N.
1709 if (Op.getOpcode() == ISD::ROTR)
1710 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1711
1712 // If we aren't rotating out all of the known-in sign bits, return the
1713 // number that are left. This handles rotl(sext(x), 1) for example.
1714 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1715 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1716 }
1717 break;
1718 case ISD::ADD:
1719 // Add can have at most one carry bit. Thus we know that the output
1720 // is, at worst, one more bit than the inputs.
1721 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1722 if (Tmp == 1) return 1; // Early out.
1723
1724 // Special case decrementing a value (ADD X, -1):
1725 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1726 if (CRHS->isAllOnesValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001727 APInt KnownZero, KnownOne;
1728 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001729 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1730
1731 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1732 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001733 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001734 return VTBits;
1735
1736 // If we are subtracting one from a positive number, there is no carry
1737 // out of the result.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001738 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001739 return Tmp;
1740 }
1741
1742 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1743 if (Tmp2 == 1) return 1;
1744 return std::min(Tmp, Tmp2)-1;
1745 break;
1746
1747 case ISD::SUB:
1748 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1749 if (Tmp2 == 1) return 1;
1750
1751 // Handle NEG.
1752 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
Dan Gohman002e5d02008-03-13 22:13:53 +00001753 if (CLHS->isNullValue()) {
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001754 APInt KnownZero, KnownOne;
1755 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001756 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1757 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1758 // sign bits set.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001759 if ((KnownZero | APInt(VTBits, 1)) == Mask)
Dan Gohmanea859be2007-06-22 14:59:07 +00001760 return VTBits;
1761
1762 // If the input is known to be positive (the sign bit is known clear),
1763 // the output of the NEG has the same number of sign bits as the input.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001764 if (KnownZero.isNegative())
Dan Gohmanea859be2007-06-22 14:59:07 +00001765 return Tmp2;
1766
1767 // Otherwise, we treat this like a SUB.
1768 }
1769
1770 // Sub can have at most one carry bit. Thus we know that the output
1771 // is, at worst, one more bit than the inputs.
1772 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1773 if (Tmp == 1) return 1; // Early out.
1774 return std::min(Tmp, Tmp2)-1;
1775 break;
1776 case ISD::TRUNCATE:
1777 // FIXME: it's tricky to do anything useful for this, but it is an important
1778 // case for targets like X86.
1779 break;
1780 }
1781
1782 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1783 if (Op.getOpcode() == ISD::LOAD) {
1784 LoadSDNode *LD = cast<LoadSDNode>(Op);
1785 unsigned ExtType = LD->getExtensionType();
1786 switch (ExtType) {
1787 default: break;
1788 case ISD::SEXTLOAD: // '17' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001789 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001790 return VTBits-Tmp+1;
1791 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001792 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001793 return VTBits-Tmp;
1794 }
1795 }
1796
1797 // Allow the target to implement this method for its nodes.
1798 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1799 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1800 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1801 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1802 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1803 if (NumBits > 1) return NumBits;
1804 }
1805
1806 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1807 // use this information.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001808 APInt KnownZero, KnownOne;
1809 APInt Mask = APInt::getAllOnesValue(VTBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001810 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1811
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001812 if (KnownZero.isNegative()) { // sign bit is 0
Dan Gohmanea859be2007-06-22 14:59:07 +00001813 Mask = KnownZero;
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001814 } else if (KnownOne.isNegative()) { // sign bit is 1;
Dan Gohmanea859be2007-06-22 14:59:07 +00001815 Mask = KnownOne;
1816 } else {
1817 // Nothing known.
1818 return 1;
1819 }
1820
1821 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1822 // the number of identical bits in the top of the input value.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001823 Mask = ~Mask;
1824 Mask <<= Mask.getBitWidth()-VTBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001825 // Return # leading zeros. We use 'min' here in case Val was zero before
1826 // shifting. We don't want to return '64' as for an i32 "0".
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001827 return std::min(VTBits, Mask.countLeadingZeros());
Dan Gohmanea859be2007-06-22 14:59:07 +00001828}
1829
Chris Lattner51dabfb2006-10-14 00:41:01 +00001830
Evan Chenga844bde2008-02-02 04:07:54 +00001831bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1832 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1833 if (!GA) return false;
1834 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1835 if (!GV) return false;
1836 MachineModuleInfo *MMI = getMachineModuleInfo();
1837 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1838}
1839
1840
Chris Lattnerc3aae252005-01-07 07:46:32 +00001841/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001842///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001843SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001844 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00001845 AddNodeIDNode(ID, Opcode, getVTList(VT), (SDOperand*)0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001846 void *IP = 0;
1847 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1848 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001849 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001850 CSEMap.InsertNode(N, IP);
1851
1852 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001853 return SDOperand(N, 0);
1854}
1855
Chris Lattnerc3aae252005-01-07 07:46:32 +00001856SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1857 SDOperand Operand) {
Chris Lattner94683772005-12-23 05:30:37 +00001858 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001859 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
Dan Gohman6c231502008-02-29 01:47:35 +00001860 const APInt &Val = C->getAPIntValue();
1861 unsigned BitWidth = MVT::getSizeInBits(VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001862 switch (Opcode) {
1863 default: break;
Evan Chengeb49c4e2008-03-06 17:42:34 +00001864 case ISD::SIGN_EXTEND:
1865 return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001866 case ISD::ANY_EXTEND:
Dan Gohman6c231502008-02-29 01:47:35 +00001867 case ISD::ZERO_EXTEND:
Evan Chengeb49c4e2008-03-06 17:42:34 +00001868 case ISD::TRUNCATE:
1869 return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001870 case ISD::UINT_TO_FP:
1871 case ISD::SINT_TO_FP: {
1872 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001873 // No compile time operations on this type.
1874 if (VT==MVT::ppcf128)
1875 break;
Dan Gohman6c231502008-02-29 01:47:35 +00001876 APFloat apf = APFloat(APInt(BitWidth, 2, zero));
1877 (void)apf.convertFromAPInt(Val,
1878 Opcode==ISD::SINT_TO_FP,
1879 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001880 return getConstantFP(apf, VT);
1881 }
Chris Lattner94683772005-12-23 05:30:37 +00001882 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001883 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Dan Gohman6c231502008-02-29 01:47:35 +00001884 return getConstantFP(Val.bitsToFloat(), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001885 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Dan Gohman6c231502008-02-29 01:47:35 +00001886 return getConstantFP(Val.bitsToDouble(), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001887 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001888 case ISD::BSWAP:
Dan Gohman6c231502008-02-29 01:47:35 +00001889 return getConstant(Val.byteSwap(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001890 case ISD::CTPOP:
Dan Gohman6c231502008-02-29 01:47:35 +00001891 return getConstant(Val.countPopulation(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001892 case ISD::CTLZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001893 return getConstant(Val.countLeadingZeros(), VT);
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001894 case ISD::CTTZ:
Dan Gohman6c231502008-02-29 01:47:35 +00001895 return getConstant(Val.countTrailingZeros(), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001896 }
1897 }
1898
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001899 // Constant fold unary operations with a floating point constant operand.
1900 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1901 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001902 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001903 switch (Opcode) {
1904 case ISD::FNEG:
1905 V.changeSign();
1906 return getConstantFP(V, VT);
1907 case ISD::FABS:
1908 V.clearSign();
1909 return getConstantFP(V, VT);
1910 case ISD::FP_ROUND:
1911 case ISD::FP_EXTEND:
1912 // This can return overflow, underflow, or inexact; we don't care.
1913 // FIXME need to be more flexible about rounding mode.
Chris Lattnerec4a5672008-03-05 06:48:13 +00001914 (void)V.convert(*MVTToAPFloatSemantics(VT),
1915 APFloat::rmNearestTiesToEven);
Dale Johannesendb44bf82007-10-16 23:38:29 +00001916 return getConstantFP(V, VT);
1917 case ISD::FP_TO_SINT:
1918 case ISD::FP_TO_UINT: {
1919 integerPart x;
1920 assert(integerPartWidth >= 64);
1921 // FIXME need to be more flexible about rounding mode.
1922 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1923 Opcode==ISD::FP_TO_SINT,
1924 APFloat::rmTowardZero);
1925 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1926 break;
1927 return getConstant(x, VT);
1928 }
1929 case ISD::BIT_CONVERT:
1930 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1931 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1932 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1933 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001934 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001935 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001936 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001937 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001938
1939 unsigned OpOpcode = Operand.Val->getOpcode();
1940 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001941 case ISD::TokenFactor:
Dan Gohmanb91c89d2008-04-14 18:43:25 +00001942 case ISD::MERGE_VALUES:
1943 return Operand; // Factor or merge of one node? No need.
Chris Lattner0bd48932008-01-17 07:00:52 +00001944 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001945 case ISD::FP_EXTEND:
1946 assert(MVT::isFloatingPoint(VT) &&
1947 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001948 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattner5d03f212008-03-11 06:21:08 +00001949 if (Operand.getOpcode() == ISD::UNDEF)
1950 return getNode(ISD::UNDEF, VT);
Chris Lattnerff33cc42007-04-09 05:23:13 +00001951 break;
Chris Lattner5d03f212008-03-11 06:21:08 +00001952 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001953 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1954 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001955 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001956 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1957 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001958 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1959 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1960 break;
1961 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001962 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1963 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001964 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001965 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1966 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001967 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001968 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001969 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001970 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001971 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1972 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001973 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001974 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1975 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001976 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1977 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1978 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1979 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001980 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001981 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1982 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001983 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsaf47b112007-10-16 09:56:48 +00001984 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1985 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001986 if (OpOpcode == ISD::TRUNCATE)
1987 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001988 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1989 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001990 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsaf47b112007-10-16 09:56:48 +00001991 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1992 < MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001993 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsaf47b112007-10-16 09:56:48 +00001994 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1995 > MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001996 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1997 else
1998 return Operand.Val->getOperand(0);
1999 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002000 break;
Chris Lattner35481892005-12-23 00:16:34 +00002001 case ISD::BIT_CONVERT:
2002 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00002003 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00002004 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00002005 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00002006 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
2007 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00002008 if (OpOpcode == ISD::UNDEF)
2009 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00002010 break;
Chris Lattnerce872152006-03-19 06:31:19 +00002011 case ISD::SCALAR_TO_VECTOR:
2012 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00002013 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00002014 "Illegal SCALAR_TO_VECTOR node!");
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002015 if (OpOpcode == ISD::UNDEF)
2016 return getNode(ISD::UNDEF, VT);
2017 // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2018 if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2019 isa<ConstantSDNode>(Operand.getOperand(1)) &&
2020 Operand.getConstantOperandVal(1) == 0 &&
2021 Operand.getOperand(0).getValueType() == VT)
2022 return Operand.getOperand(0);
Chris Lattnerce872152006-03-19 06:31:19 +00002023 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00002024 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00002025 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
2026 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00002027 Operand.Val->getOperand(0));
2028 if (OpOpcode == ISD::FNEG) // --X -> X
2029 return Operand.Val->getOperand(0);
2030 break;
2031 case ISD::FABS:
2032 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
2033 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
2034 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002035 }
2036
Chris Lattner43247a12005-08-25 19:12:10 +00002037 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002038 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002039 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00002040 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00002041 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00002042 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00002043 void *IP = 0;
2044 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2045 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002046 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00002047 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002048 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002049 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00002050 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002051 AllNodes.push_back(N);
2052 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00002053}
2054
Chris Lattner36019aa2005-04-18 03:48:41 +00002055
2056
Chris Lattnerc3aae252005-01-07 07:46:32 +00002057SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2058 SDOperand N1, SDOperand N2) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002059 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2060 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner76365122005-01-16 02:23:22 +00002061 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002062 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00002063 case ISD::TokenFactor:
2064 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2065 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002066 // Fold trivial token factors.
2067 if (N1.getOpcode() == ISD::EntryToken) return N2;
2068 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00002069 break;
Chris Lattner76365122005-01-16 02:23:22 +00002070 case ISD::AND:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002071 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2072 N1.getValueType() == VT && "Binary operator types must match!");
2073 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2074 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002075 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002076 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00002077 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2078 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002079 break;
Chris Lattner76365122005-01-16 02:23:22 +00002080 case ISD::OR:
2081 case ISD::XOR:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002082 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2083 N1.getValueType() == VT && "Binary operator types must match!");
2084 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
2085 // worth handling here.
Dan Gohman002e5d02008-03-13 22:13:53 +00002086 if (N2C && N2C->isNullValue())
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002087 return N1;
2088 break;
Chris Lattner76365122005-01-16 02:23:22 +00002089 case ISD::UDIV:
2090 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002091 case ISD::MULHU:
2092 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00002093 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
2094 // fall through
2095 case ISD::ADD:
2096 case ISD::SUB:
2097 case ISD::MUL:
2098 case ISD::SDIV:
2099 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002100 case ISD::FADD:
2101 case ISD::FSUB:
2102 case ISD::FMUL:
2103 case ISD::FDIV:
2104 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002105 assert(N1.getValueType() == N2.getValueType() &&
2106 N1.getValueType() == VT && "Binary operator types must match!");
2107 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002108 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2109 assert(N1.getValueType() == VT &&
2110 MVT::isFloatingPoint(N1.getValueType()) &&
2111 MVT::isFloatingPoint(N2.getValueType()) &&
2112 "Invalid FCOPYSIGN!");
2113 break;
Chris Lattner76365122005-01-16 02:23:22 +00002114 case ISD::SHL:
2115 case ISD::SRA:
2116 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002117 case ISD::ROTL:
2118 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002119 assert(VT == N1.getValueType() &&
2120 "Shift operators return type must be the same as their first arg");
2121 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00002122 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00002123 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002124 case ISD::FP_ROUND_INREG: {
2125 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2126 assert(VT == N1.getValueType() && "Not an inreg round!");
2127 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
2128 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002129 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2130 "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002131 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002132 break;
2133 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002134 case ISD::FP_ROUND:
2135 assert(MVT::isFloatingPoint(VT) &&
2136 MVT::isFloatingPoint(N1.getValueType()) &&
2137 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2138 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002139 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002140 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002141 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002142 case ISD::AssertZext: {
2143 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2144 assert(VT == N1.getValueType() && "Not an inreg extend!");
2145 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2146 "Cannot *_EXTEND_INREG FP types");
2147 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2148 "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002149 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002150 break;
2151 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002152 case ISD::SIGN_EXTEND_INREG: {
2153 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2154 assert(VT == N1.getValueType() && "Not an inreg extend!");
2155 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2156 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002157 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2158 "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002159 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002160
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002161 if (N1C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002162 APInt Val = N1C->getAPIntValue();
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002163 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
Dan Gohman6c231502008-02-29 01:47:35 +00002164 Val <<= Val.getBitWidth()-FromBits;
Evan Cheng433f6f62008-03-06 08:20:51 +00002165 Val = Val.ashr(Val.getBitWidth()-FromBits);
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002166 return getConstant(Val, VT);
2167 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002168 break;
2169 }
2170 case ISD::EXTRACT_VECTOR_ELT:
2171 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2172
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002173 // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2174 if (N1.getOpcode() == ISD::UNDEF)
2175 return getNode(ISD::UNDEF, VT);
2176
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002177 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2178 // expanding copies of large vectors from registers.
2179 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2180 N1.getNumOperands() > 0) {
2181 unsigned Factor =
2182 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2183 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2184 N1.getOperand(N2C->getValue() / Factor),
2185 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2186 }
2187
2188 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2189 // expanding large vector constants.
2190 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2191 return N1.getOperand(N2C->getValue());
Chris Lattnerf3ba4342008-03-08 23:43:36 +00002192
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002193 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2194 // operations are lowered to scalars.
2195 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2196 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2197 if (IEC == N2C)
2198 return N1.getOperand(1);
2199 else
2200 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2201 }
2202 break;
2203 case ISD::EXTRACT_ELEMENT:
2204 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Duncan Sands25eb0432008-03-12 20:30:08 +00002205 assert(!MVT::isVector(N1.getValueType()) &&
2206 MVT::isInteger(N1.getValueType()) &&
2207 !MVT::isVector(VT) && MVT::isInteger(VT) &&
2208 "EXTRACT_ELEMENT only applies to integers!");
2209
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002210 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2211 // 64-bit integers into 32-bit parts. Instead of building the extract of
2212 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2213 if (N1.getOpcode() == ISD::BUILD_PAIR)
2214 return N1.getOperand(N2C->getValue());
Duncan Sands25eb0432008-03-12 20:30:08 +00002215
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002216 // EXTRACT_ELEMENT of a constant int is also very common.
2217 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
Dan Gohman4c931fc2008-03-24 16:38:05 +00002218 unsigned ElementSize = MVT::getSizeInBits(VT);
2219 unsigned Shift = ElementSize * N2C->getValue();
2220 APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2221 return getConstant(ShiftedVal.trunc(ElementSize), VT);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002222 }
2223 break;
Duncan Sandsf83b1f62008-02-20 17:38:09 +00002224 case ISD::EXTRACT_SUBVECTOR:
2225 if (N1.getValueType() == VT) // Trivial extraction.
2226 return N1;
2227 break;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002228 }
2229
2230 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002231 if (N2C) {
Dan Gohman6c231502008-02-29 01:47:35 +00002232 APInt C1 = N1C->getAPIntValue(), C2 = N2C->getAPIntValue();
Chris Lattnerc3aae252005-01-07 07:46:32 +00002233 switch (Opcode) {
2234 case ISD::ADD: return getConstant(C1 + C2, VT);
2235 case ISD::SUB: return getConstant(C1 - C2, VT);
2236 case ISD::MUL: return getConstant(C1 * C2, VT);
2237 case ISD::UDIV:
Dan Gohman6c231502008-02-29 01:47:35 +00002238 if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002239 break;
2240 case ISD::UREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002241 if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002242 break;
2243 case ISD::SDIV :
Dan Gohman6c231502008-02-29 01:47:35 +00002244 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002245 break;
2246 case ISD::SREM :
Dan Gohman6c231502008-02-29 01:47:35 +00002247 if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002248 break;
2249 case ISD::AND : return getConstant(C1 & C2, VT);
2250 case ISD::OR : return getConstant(C1 | C2, VT);
2251 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00002252 case ISD::SHL : return getConstant(C1 << C2, VT);
Dan Gohman6c231502008-02-29 01:47:35 +00002253 case ISD::SRL : return getConstant(C1.lshr(C2), VT);
2254 case ISD::SRA : return getConstant(C1.ashr(C2), VT);
2255 case ISD::ROTL : return getConstant(C1.rotl(C2), VT);
2256 case ISD::ROTR : return getConstant(C1.rotr(C2), VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002257 default: break;
2258 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002259 } else { // Cannonicalize constant to RHS if commutative
2260 if (isCommutativeBinOp(Opcode)) {
2261 std::swap(N1C, N2C);
2262 std::swap(N1, N2);
2263 }
2264 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002265 }
2266
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002267 // Constant fold FP operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002268 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2269 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00002270 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002271 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2272 // Cannonicalize constant to RHS if commutative
2273 std::swap(N1CFP, N2CFP);
2274 std::swap(N1, N2);
2275 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002276 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2277 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002278 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002279 case ISD::FADD:
2280 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002281 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002282 return getConstantFP(V1, VT);
2283 break;
2284 case ISD::FSUB:
2285 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2286 if (s!=APFloat::opInvalidOp)
2287 return getConstantFP(V1, VT);
2288 break;
2289 case ISD::FMUL:
2290 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2291 if (s!=APFloat::opInvalidOp)
2292 return getConstantFP(V1, VT);
2293 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002294 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002295 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2296 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2297 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002298 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002299 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002300 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2301 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2302 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002303 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002304 case ISD::FCOPYSIGN:
2305 V1.copySign(V2);
2306 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002307 default: break;
2308 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002309 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002310 }
Chris Lattner62b57722006-04-20 05:39:12 +00002311
2312 // Canonicalize an UNDEF to the RHS, even over a constant.
2313 if (N1.getOpcode() == ISD::UNDEF) {
2314 if (isCommutativeBinOp(Opcode)) {
2315 std::swap(N1, N2);
2316 } else {
2317 switch (Opcode) {
2318 case ISD::FP_ROUND_INREG:
2319 case ISD::SIGN_EXTEND_INREG:
2320 case ISD::SUB:
2321 case ISD::FSUB:
2322 case ISD::FDIV:
2323 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002324 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002325 return N1; // fold op(undef, arg2) -> undef
2326 case ISD::UDIV:
2327 case ISD::SDIV:
2328 case ISD::UREM:
2329 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002330 case ISD::SRL:
2331 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002332 if (!MVT::isVector(VT))
2333 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2334 // For vectors, we can't easily build an all zero vector, just return
2335 // the LHS.
2336 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002337 }
2338 }
2339 }
2340
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002341 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002342 if (N2.getOpcode() == ISD::UNDEF) {
2343 switch (Opcode) {
Evan Cheng26471c42008-03-25 20:08:07 +00002344 case ISD::XOR:
2345 if (N1.getOpcode() == ISD::UNDEF)
2346 // Handle undef ^ undef -> 0 special case. This is a common
2347 // idiom (misuse).
2348 return getConstant(0, VT);
2349 // fallthrough
Chris Lattner62b57722006-04-20 05:39:12 +00002350 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002351 case ISD::ADDC:
2352 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002353 case ISD::SUB:
2354 case ISD::FADD:
2355 case ISD::FSUB:
2356 case ISD::FMUL:
2357 case ISD::FDIV:
2358 case ISD::FREM:
2359 case ISD::UDIV:
2360 case ISD::SDIV:
2361 case ISD::UREM:
2362 case ISD::SREM:
Chris Lattner62b57722006-04-20 05:39:12 +00002363 return N2; // fold op(arg1, undef) -> undef
2364 case ISD::MUL:
2365 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002366 case ISD::SRL:
2367 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002368 if (!MVT::isVector(VT))
2369 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2370 // For vectors, we can't easily build an all zero vector, just return
2371 // the LHS.
2372 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002373 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00002374 if (!MVT::isVector(VT))
2375 return getConstant(MVT::getIntVTBitMask(VT), VT);
2376 // For vectors, we can't easily build an all one vector, just return
2377 // the LHS.
2378 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002379 case ISD::SRA:
2380 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002381 }
2382 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002383
Chris Lattner27e9b412005-05-11 18:57:39 +00002384 // Memoize this node if possible.
2385 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002386 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002387 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002388 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002389 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002390 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002391 void *IP = 0;
2392 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2393 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002394 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002395 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002396 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002397 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002398 }
2399
Chris Lattnerc3aae252005-01-07 07:46:32 +00002400 AllNodes.push_back(N);
2401 return SDOperand(N, 0);
2402}
2403
Chris Lattnerc3aae252005-01-07 07:46:32 +00002404SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2405 SDOperand N1, SDOperand N2, SDOperand N3) {
2406 // Perform various simplifications.
2407 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2408 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002409 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002410 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002411 // Use FoldSetCC to simplify SETCC's.
2412 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002413 if (Simp.Val) return Simp;
2414 break;
2415 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002416 case ISD::SELECT:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002417 if (N1C) {
2418 if (N1C->getValue())
Chris Lattnerc3aae252005-01-07 07:46:32 +00002419 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002420 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002421 return N3; // select false, X, Y -> Y
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002422 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002423
2424 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002425 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002426 case ISD::BRCOND:
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002427 if (N2C) {
Chris Lattner5351e9b2005-01-07 22:49:57 +00002428 if (N2C->getValue()) // Unconditional branch
2429 return getNode(ISD::BR, MVT::Other, N1, N3);
2430 else
2431 return N1; // Never-taken branch
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00002432 }
Chris Lattner7c68ec62005-01-07 23:32:00 +00002433 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002434 case ISD::VECTOR_SHUFFLE:
2435 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2436 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2437 N3.getOpcode() == ISD::BUILD_VECTOR &&
2438 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2439 "Illegal VECTOR_SHUFFLE node!");
2440 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002441 case ISD::BIT_CONVERT:
2442 // Fold bit_convert nodes from a type to themselves.
2443 if (N1.getValueType() == VT)
2444 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002445 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002446 }
2447
Chris Lattner43247a12005-08-25 19:12:10 +00002448 // Memoize node if it doesn't produce a flag.
2449 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002450 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002451 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002452 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002453 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002454 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002455 void *IP = 0;
2456 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2457 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002458 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002459 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002460 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002461 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002462 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002463 AllNodes.push_back(N);
2464 return SDOperand(N, 0);
2465}
2466
2467SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002468 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002469 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002470 SDOperand Ops[] = { N1, N2, N3, N4 };
2471 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002472}
2473
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002474SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2475 SDOperand N1, SDOperand N2, SDOperand N3,
2476 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002477 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2478 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002479}
2480
Dan Gohman707e0182008-04-12 04:36:06 +00002481/// getMemsetValue - Vectorized representation of the memset value
2482/// operand.
2483static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
2484 SelectionDAG &DAG) {
2485 MVT::ValueType CurVT = VT;
2486 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2487 uint64_t Val = C->getValue() & 255;
2488 unsigned Shift = 8;
2489 while (CurVT != MVT::i8) {
2490 Val = (Val << Shift) | Val;
2491 Shift <<= 1;
2492 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
2493 }
2494 return DAG.getConstant(Val, VT);
2495 } else {
2496 Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2497 unsigned Shift = 8;
2498 while (CurVT != MVT::i8) {
2499 Value =
2500 DAG.getNode(ISD::OR, VT,
2501 DAG.getNode(ISD::SHL, VT, Value,
2502 DAG.getConstant(Shift, MVT::i8)), Value);
2503 Shift <<= 1;
2504 CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
2505 }
2506
2507 return Value;
2508 }
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002509}
2510
Dan Gohman707e0182008-04-12 04:36:06 +00002511/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2512/// used when a memcpy is turned into a memset when the source is a constant
2513/// string ptr.
2514static SDOperand getMemsetStringVal(MVT::ValueType VT,
2515 SelectionDAG &DAG,
2516 const TargetLowering &TLI,
2517 std::string &Str, unsigned Offset) {
2518 uint64_t Val = 0;
2519 unsigned MSB = MVT::getSizeInBits(VT) / 8;
2520 if (TLI.isLittleEndian())
2521 Offset = Offset + MSB - 1;
2522 for (unsigned i = 0; i != MSB; ++i) {
2523 Val = (Val << 8) | (unsigned char)Str[Offset];
2524 Offset += TLI.isLittleEndian() ? -1 : 1;
2525 }
2526 return DAG.getConstant(Val, VT);
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002527}
2528
Dan Gohman707e0182008-04-12 04:36:06 +00002529/// getMemBasePlusOffset - Returns base and offset node for the
2530static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2531 SelectionDAG &DAG) {
2532 MVT::ValueType VT = Base.getValueType();
2533 return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2534}
2535
2536/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2537/// to replace the memset / memcpy is below the threshold. It also returns the
2538/// types of the sequence of memory ops to perform memset / memcpy.
2539static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2540 unsigned Limit, uint64_t Size,
2541 unsigned Align,
2542 const TargetLowering &TLI) {
2543 MVT::ValueType VT;
2544
2545 if (TLI.allowsUnalignedMemoryAccesses()) {
2546 VT = MVT::i64;
2547 } else {
2548 switch (Align & 7) {
2549 case 0:
2550 VT = MVT::i64;
2551 break;
2552 case 4:
2553 VT = MVT::i32;
2554 break;
2555 case 2:
2556 VT = MVT::i16;
2557 break;
2558 default:
2559 VT = MVT::i8;
2560 break;
2561 }
2562 }
2563
2564 MVT::ValueType LVT = MVT::i64;
2565 while (!TLI.isTypeLegal(LVT))
2566 LVT = (MVT::ValueType)((unsigned)LVT - 1);
2567 assert(MVT::isInteger(LVT));
2568
2569 if (VT > LVT)
2570 VT = LVT;
2571
2572 unsigned NumMemOps = 0;
2573 while (Size != 0) {
2574 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
2575 while (VTSize > Size) {
2576 VT = (MVT::ValueType)((unsigned)VT - 1);
2577 VTSize >>= 1;
2578 }
2579 assert(MVT::isInteger(VT));
2580
2581 if (++NumMemOps > Limit)
2582 return false;
2583 MemOps.push_back(VT);
2584 Size -= VTSize;
2585 }
2586
2587 return true;
2588}
2589
2590static SDOperand getMemcpyLoadsAndStores(SelectionDAG &DAG,
2591 SDOperand Chain, SDOperand Dst,
2592 SDOperand Src, uint64_t Size,
2593 unsigned Align,
2594 bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002595 const Value *DstSV, uint64_t DstSVOff,
2596 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohman707e0182008-04-12 04:36:06 +00002597 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2598
2599 // Expand memcpy to a series of store ops if the size operand falls below
2600 // a certain threshold.
2601 std::vector<MVT::ValueType> MemOps;
2602 uint64_t Limit = -1;
2603 if (!AlwaysInline)
2604 Limit = TLI.getMaxStoresPerMemcpy();
2605 if (!MeetsMaxMemopRequirement(MemOps, Limit, Size, Align, TLI))
2606 return SDOperand();
2607
2608 SmallVector<SDOperand, 8> OutChains;
2609
2610 unsigned NumMemOps = MemOps.size();
2611 unsigned SrcDelta = 0;
2612 GlobalAddressSDNode *G = NULL;
2613 std::string Str;
2614 bool CopyFromStr = false;
Dan Gohman1f13c682008-04-28 17:15:20 +00002615 uint64_t SrcOff = 0, DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002616
2617 if (Src.getOpcode() == ISD::GlobalAddress)
2618 G = cast<GlobalAddressSDNode>(Src);
2619 else if (Src.getOpcode() == ISD::ADD &&
2620 Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2621 Src.getOperand(1).getOpcode() == ISD::Constant) {
2622 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
2623 SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getValue();
2624 }
2625 if (G) {
2626 GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
2627 if (GV && GV->isConstant()) {
2628 Str = GV->getStringValue(false);
2629 if (!Str.empty()) {
2630 CopyFromStr = true;
2631 SrcOff += SrcDelta;
2632 }
2633 }
2634 }
2635
2636 for (unsigned i = 0; i < NumMemOps; i++) {
2637 MVT::ValueType VT = MemOps[i];
2638 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
2639 SDOperand Value, Store;
2640
2641 if (CopyFromStr) {
2642 Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2643 Store =
2644 DAG.getStore(Chain, Value,
2645 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002646 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002647 } else {
2648 Value = DAG.getLoad(VT, Chain,
2649 getMemBasePlusOffset(Src, SrcOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002650 SrcSV, SrcSVOff + SrcOff, false, Align);
Dan Gohman707e0182008-04-12 04:36:06 +00002651 Store =
2652 DAG.getStore(Chain, Value,
2653 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002654 DstSV, DstSVOff + DstOff, false, Align);
Dan Gohman707e0182008-04-12 04:36:06 +00002655 }
2656 OutChains.push_back(Store);
2657 SrcOff += VTSize;
2658 DstOff += VTSize;
2659 }
2660
2661 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2662 &OutChains[0], OutChains.size());
2663}
2664
2665static SDOperand getMemsetStores(SelectionDAG &DAG,
2666 SDOperand Chain, SDOperand Dst,
2667 SDOperand Src, uint64_t Size,
2668 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002669 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002670 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2671
2672 // Expand memset to a series of load/store ops if the size operand
2673 // falls below a certain threshold.
2674 std::vector<MVT::ValueType> MemOps;
2675 if (!MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2676 Size, Align, TLI))
2677 return SDOperand();
2678
2679 SmallVector<SDOperand, 8> OutChains;
Dan Gohman1f13c682008-04-28 17:15:20 +00002680 uint64_t DstOff = 0;
Dan Gohman707e0182008-04-12 04:36:06 +00002681
2682 unsigned NumMemOps = MemOps.size();
2683 for (unsigned i = 0; i < NumMemOps; i++) {
2684 MVT::ValueType VT = MemOps[i];
2685 unsigned VTSize = MVT::getSizeInBits(VT) / 8;
2686 SDOperand Value = getMemsetValue(Src, VT, DAG);
2687 SDOperand Store = DAG.getStore(Chain, Value,
2688 getMemBasePlusOffset(Dst, DstOff, DAG),
Dan Gohman1f13c682008-04-28 17:15:20 +00002689 DstSV, DstSVOff + DstOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002690 OutChains.push_back(Store);
2691 DstOff += VTSize;
2692 }
2693
2694 return DAG.getNode(ISD::TokenFactor, MVT::Other,
2695 &OutChains[0], OutChains.size());
2696}
2697
2698SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dst,
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002699 SDOperand Src, SDOperand Size,
Dan Gohman707e0182008-04-12 04:36:06 +00002700 unsigned Align, bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002701 const Value *DstSV, uint64_t DstSVOff,
2702 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002703
2704 // Check to see if we should lower the memcpy to loads and stores first.
2705 // For cases within the target-specified limits, this is the best choice.
2706 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2707 if (ConstantSize) {
2708 // Memcpy with size zero? Just return the original chain.
2709 if (ConstantSize->isNullValue())
2710 return Chain;
2711
2712 SDOperand Result =
2713 getMemcpyLoadsAndStores(*this, Chain, Dst, Src, ConstantSize->getValue(),
Dan Gohman1f13c682008-04-28 17:15:20 +00002714 Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002715 if (Result.Val)
2716 return Result;
2717 }
2718
2719 // Then check to see if we should lower the memcpy with target-specific
2720 // code. If the target chooses to do this, this is the next best.
2721 SDOperand Result =
2722 TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
2723 AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00002724 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002725 if (Result.Val)
2726 return Result;
2727
2728 // If we really need inline code and the target declined to provide it,
2729 // use a (potentially long) sequence of loads and stores.
2730 if (AlwaysInline) {
2731 assert(ConstantSize && "AlwaysInline requires a constant size!");
2732 return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
2733 ConstantSize->getValue(), Align, true,
Dan Gohman1f13c682008-04-28 17:15:20 +00002734 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002735 }
2736
2737 // Emit a library call.
2738 TargetLowering::ArgListTy Args;
2739 TargetLowering::ArgListEntry Entry;
2740 Entry.Ty = TLI.getTargetData()->getIntPtrType();
2741 Entry.Node = Dst; Args.push_back(Entry);
2742 Entry.Node = Src; Args.push_back(Entry);
2743 Entry.Node = Size; Args.push_back(Entry);
2744 std::pair<SDOperand,SDOperand> CallResult =
2745 TLI.LowerCallTo(Chain, Type::VoidTy,
2746 false, false, false, CallingConv::C, false,
2747 getExternalSymbol("memcpy", TLI.getPointerTy()),
2748 Args, *this);
2749 return CallResult.second;
2750}
2751
2752SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dst,
2753 SDOperand Src, SDOperand Size,
2754 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002755 const Value *DstSV, uint64_t DstSVOff,
2756 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002757
2758 // TODO: Optimize small memmove cases with simple loads and stores,
2759 // ensuring that all loads precede all stores. This can cause severe
2760 // register pressure, so targets should be careful with the size limit.
2761
2762 // Then check to see if we should lower the memmove with target-specific
2763 // code. If the target chooses to do this, this is the next best.
2764 SDOperand Result =
2765 TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002766 DstSV, DstSVOff, SrcSV, SrcSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002767 if (Result.Val)
2768 return Result;
2769
2770 // Emit a library call.
2771 TargetLowering::ArgListTy Args;
2772 TargetLowering::ArgListEntry Entry;
2773 Entry.Ty = TLI.getTargetData()->getIntPtrType();
2774 Entry.Node = Dst; Args.push_back(Entry);
2775 Entry.Node = Src; Args.push_back(Entry);
2776 Entry.Node = Size; Args.push_back(Entry);
2777 std::pair<SDOperand,SDOperand> CallResult =
2778 TLI.LowerCallTo(Chain, Type::VoidTy,
2779 false, false, false, CallingConv::C, false,
2780 getExternalSymbol("memmove", TLI.getPointerTy()),
2781 Args, *this);
2782 return CallResult.second;
2783}
2784
2785SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dst,
2786 SDOperand Src, SDOperand Size,
2787 unsigned Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002788 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00002789
2790 // Check to see if we should lower the memset to stores first.
2791 // For cases within the target-specified limits, this is the best choice.
2792 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2793 if (ConstantSize) {
2794 // Memset with size zero? Just return the original chain.
2795 if (ConstantSize->isNullValue())
2796 return Chain;
2797
2798 SDOperand Result =
2799 getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getValue(), Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002800 DstSV, DstSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002801 if (Result.Val)
2802 return Result;
2803 }
2804
2805 // Then check to see if we should lower the memset with target-specific
2806 // code. If the target chooses to do this, this is the next best.
2807 SDOperand Result =
2808 TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
Dan Gohman1f13c682008-04-28 17:15:20 +00002809 DstSV, DstSVOff);
Dan Gohman707e0182008-04-12 04:36:06 +00002810 if (Result.Val)
2811 return Result;
2812
2813 // Emit a library call.
2814 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
2815 TargetLowering::ArgListTy Args;
2816 TargetLowering::ArgListEntry Entry;
2817 Entry.Node = Dst; Entry.Ty = IntPtrTy;
2818 Args.push_back(Entry);
2819 // Extend or truncate the argument to be an i32 value for the call.
2820 if (Src.getValueType() > MVT::i32)
2821 Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
2822 else
2823 Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
2824 Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
2825 Args.push_back(Entry);
2826 Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
2827 Args.push_back(Entry);
2828 std::pair<SDOperand,SDOperand> CallResult =
2829 TLI.LowerCallTo(Chain, Type::VoidTy,
2830 false, false, false, CallingConv::C, false,
2831 getExternalSymbol("memset", TLI.getPointerTy()),
2832 Args, *this);
2833 return CallResult.second;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002834}
2835
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002836SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002837 SDOperand Ptr, SDOperand Cmp,
2838 SDOperand Swp, MVT::ValueType VT) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002839 assert(Opcode == ISD::ATOMIC_LCS && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002840 assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
2841 SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002842 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002843 SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002844 AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
2845 ID.AddInteger((unsigned int)VT);
2846 void* IP = 0;
2847 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2848 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002849 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002850 CSEMap.InsertNode(N, IP);
2851 AllNodes.push_back(N);
2852 return SDOperand(N, 0);
2853}
2854
2855SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain,
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002856 SDOperand Ptr, SDOperand Val,
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002857 MVT::ValueType VT) {
Mon P Wang63307c32008-05-05 19:05:59 +00002858 assert(( Opcode == ISD::ATOMIC_LAS || Opcode == ISD::ATOMIC_LSS
2859 || Opcode == ISD::ATOMIC_SWAP || Opcode == ISD::ATOMIC_LOAD_AND
2860 || Opcode == ISD::ATOMIC_LOAD_OR || Opcode == ISD::ATOMIC_LOAD_XOR
2861 || Opcode == ISD::ATOMIC_LOAD_MIN || Opcode == ISD::ATOMIC_LOAD_MAX
2862 || Opcode == ISD::ATOMIC_LOAD_UMIN || Opcode == ISD::ATOMIC_LOAD_UMAX)
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002863 && "Invalid Atomic Op");
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002864 SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002865 FoldingSetNodeID ID;
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002866 SDOperand Ops[] = {Chain, Ptr, Val};
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002867 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2868 ID.AddInteger((unsigned int)VT);
2869 void* IP = 0;
2870 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2871 return SDOperand(E, 0);
Andrew Lenharthc1c7bd62008-02-21 16:11:38 +00002872 SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, VT);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00002873 CSEMap.InsertNode(N, IP);
2874 AllNodes.push_back(N);
2875 return SDOperand(N, 0);
2876}
2877
Duncan Sands14ea39c2008-03-27 20:23:40 +00002878SDOperand
Duncan Sandse10efce2008-03-28 09:45:24 +00002879SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
2880 MVT::ValueType VT, SDOperand Chain,
2881 SDOperand Ptr, SDOperand Offset,
2882 const Value *SV, int SVOffset, MVT::ValueType EVT,
2883 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002884 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2885 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002886 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002887 Ty = MVT::getTypeForValueType(VT);
2888 } else if (SV) {
2889 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2890 assert(PT && "Value for load must be a pointer");
2891 Ty = PT->getElementType();
Duncan Sands14ea39c2008-03-27 20:23:40 +00002892 }
Dan Gohman575e2f42007-06-04 15:49:41 +00002893 assert(Ty && "Could not get type information for load");
2894 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2895 }
Evan Cheng466685d2006-10-09 20:57:25 +00002896
Duncan Sands14ea39c2008-03-27 20:23:40 +00002897 if (VT == EVT) {
2898 ExtType = ISD::NON_EXTLOAD;
2899 } else if (ExtType == ISD::NON_EXTLOAD) {
2900 assert(VT == EVT && "Non-extending load from different memory type!");
2901 } else {
2902 // Extending load.
2903 if (MVT::isVector(VT))
2904 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
2905 else
2906 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2907 "Should only be an extending load, not truncating!");
2908 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2909 "Cannot sign/zero extend a FP/Vector load!");
2910 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2911 "Cannot convert from FP to Int or Int -> FP!");
Dan Gohman575e2f42007-06-04 15:49:41 +00002912 }
Duncan Sands14ea39c2008-03-27 20:23:40 +00002913
2914 bool Indexed = AM != ISD::UNINDEXED;
2915 assert(Indexed || Offset.getOpcode() == ISD::UNDEF &&
2916 "Unindexed load with an offset!");
2917
2918 SDVTList VTs = Indexed ?
2919 getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
2920 SDOperand Ops[] = { Chain, Ptr, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002921 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002922 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Duncan Sands14ea39c2008-03-27 20:23:40 +00002923 ID.AddInteger(AM);
Evan Cheng466685d2006-10-09 20:57:25 +00002924 ID.AddInteger(ExtType);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002925 ID.AddInteger((unsigned int)EVT);
Evan Cheng466685d2006-10-09 20:57:25 +00002926 ID.AddInteger(Alignment);
2927 ID.AddInteger(isVolatile);
2928 void *IP = 0;
2929 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2930 return SDOperand(E, 0);
Duncan Sands14ea39c2008-03-27 20:23:40 +00002931 SDNode *N = new LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
2932 Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002933 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002934 AllNodes.push_back(N);
2935 return SDOperand(N, 0);
2936}
2937
Duncan Sands14ea39c2008-03-27 20:23:40 +00002938SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2939 SDOperand Chain, SDOperand Ptr,
2940 const Value *SV, int SVOffset,
2941 bool isVolatile, unsigned Alignment) {
2942 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00002943 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
2944 SV, SVOffset, VT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00002945}
2946
2947SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
2948 SDOperand Chain, SDOperand Ptr,
2949 const Value *SV,
2950 int SVOffset, MVT::ValueType EVT,
2951 bool isVolatile, unsigned Alignment) {
2952 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Duncan Sandse10efce2008-03-28 09:45:24 +00002953 return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
2954 SV, SVOffset, EVT, isVolatile, Alignment);
Duncan Sands14ea39c2008-03-27 20:23:40 +00002955}
2956
Evan Cheng144d8f02006-11-09 17:55:04 +00002957SDOperand
2958SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2959 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002960 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002961 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2962 "Load is already a indexed load!");
Duncan Sandse10efce2008-03-28 09:45:24 +00002963 return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
2964 LD->getChain(), Base, Offset, LD->getSrcValue(),
2965 LD->getSrcValueOffset(), LD->getMemoryVT(),
2966 LD->isVolatile(), LD->getAlignment());
Evan Cheng2caccca2006-10-17 21:14:32 +00002967}
2968
Jeff Cohend41b30d2006-11-05 19:31:28 +00002969SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002970 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002971 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002972 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002973
Dan Gohman575e2f42007-06-04 15:49:41 +00002974 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2975 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002976 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002977 Ty = MVT::getTypeForValueType(VT);
2978 } else if (SV) {
2979 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2980 assert(PT && "Value for store must be a pointer");
2981 Ty = PT->getElementType();
2982 }
2983 assert(Ty && "Could not get type information for store");
2984 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2985 }
Evan Chengad071e12006-10-05 22:57:11 +00002986 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002987 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002988 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002989 FoldingSetNodeID ID;
2990 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002991 ID.AddInteger(ISD::UNINDEXED);
2992 ID.AddInteger(false);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002993 ID.AddInteger((unsigned int)VT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002994 ID.AddInteger(Alignment);
2995 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002996 void *IP = 0;
2997 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2998 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002999 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003000 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003001 CSEMap.InsertNode(N, IP);
3002 AllNodes.push_back(N);
3003 return SDOperand(N, 0);
3004}
3005
Jeff Cohend41b30d2006-11-05 19:31:28 +00003006SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003007 SDOperand Ptr, const Value *SV,
3008 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00003009 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00003010 MVT::ValueType VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003011
3012 if (VT == SVT)
3013 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003014
Duncan Sandsaf47b112007-10-16 09:56:48 +00003015 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
3016 "Not a truncation?");
Evan Cheng8b2794a2006-10-13 21:14:26 +00003017 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
3018 "Can't do FP-INT conversion!");
3019
Dan Gohman575e2f42007-06-04 15:49:41 +00003020 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3021 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00003022 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00003023 Ty = MVT::getTypeForValueType(VT);
3024 } else if (SV) {
3025 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3026 assert(PT && "Value for store must be a pointer");
3027 Ty = PT->getElementType();
3028 }
3029 assert(Ty && "Could not get type information for store");
3030 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3031 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00003032 SDVTList VTs = getVTList(MVT::Other);
3033 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00003034 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00003035 FoldingSetNodeID ID;
3036 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003037 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003038 ID.AddInteger(1);
Chris Lattner3d6992f2007-09-13 06:09:48 +00003039 ID.AddInteger((unsigned int)SVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00003040 ID.AddInteger(Alignment);
3041 ID.AddInteger(isVolatile);
3042 void *IP = 0;
3043 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3044 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00003045 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003046 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00003047 CSEMap.InsertNode(N, IP);
3048 AllNodes.push_back(N);
3049 return SDOperand(N, 0);
3050}
3051
Evan Cheng144d8f02006-11-09 17:55:04 +00003052SDOperand
3053SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
3054 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00003055 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3056 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3057 "Store is already a indexed store!");
3058 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
3059 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
3060 FoldingSetNodeID ID;
3061 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3062 ID.AddInteger(AM);
3063 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003064 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng9109fb12006-11-05 09:30:09 +00003065 ID.AddInteger(ST->getAlignment());
3066 ID.AddInteger(ST->isVolatile());
3067 void *IP = 0;
3068 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3069 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00003070 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00003071 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng9109fb12006-11-05 09:30:09 +00003072 ST->getSrcValue(), ST->getSrcValueOffset(),
3073 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00003074 CSEMap.InsertNode(N, IP);
3075 AllNodes.push_back(N);
3076 return SDOperand(N, 0);
3077}
3078
Nate Begemanacc398c2006-01-25 18:21:52 +00003079SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
3080 SDOperand Chain, SDOperand Ptr,
3081 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003082 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00003083 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00003084}
3085
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00003086SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003087 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003088 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00003089 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00003090 case 1: return getNode(Opcode, VT, Ops[0]);
3091 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3092 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00003093 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00003094 }
Chris Lattnerde202b32005-11-09 23:47:37 +00003095
Chris Lattneref847df2005-04-09 03:27:28 +00003096 switch (Opcode) {
3097 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003098 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003099 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003100 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3101 "LHS and RHS of condition must have same type!");
3102 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3103 "True and False arms of SelectCC must have same type!");
3104 assert(Ops[2].getValueType() == VT &&
3105 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003106 break;
3107 }
3108 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003109 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003110 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3111 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00003112 break;
3113 }
Chris Lattneref847df2005-04-09 03:27:28 +00003114 }
3115
Chris Lattner385328c2005-05-14 07:42:29 +00003116 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00003117 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00003118 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00003119 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003120 FoldingSetNodeID ID;
3121 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003122 void *IP = 0;
3123 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3124 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00003125 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003126 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003127 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00003128 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003129 }
Chris Lattneref847df2005-04-09 03:27:28 +00003130 AllNodes.push_back(N);
3131 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00003132}
3133
Chris Lattner89c34632005-05-14 06:20:26 +00003134SDOperand SelectionDAG::getNode(unsigned Opcode,
3135 std::vector<MVT::ValueType> &ResultTys,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003136 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003137 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3138 Ops, NumOps);
3139}
3140
3141SDOperand SelectionDAG::getNode(unsigned Opcode,
3142 const MVT::ValueType *VTs, unsigned NumVTs,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003143 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003144 if (NumVTs == 1)
3145 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00003146 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3147}
3148
3149SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003150 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerbe384162006-08-16 22:57:46 +00003151 if (VTList.NumVTs == 1)
3152 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00003153
Chris Lattner5f056bf2005-07-10 01:55:33 +00003154 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00003155 // FIXME: figure out how to safely handle things like
3156 // int foo(int x) { return 1 << (x & 255); }
3157 // int bar() { return foo(256); }
3158#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00003159 case ISD::SRA_PARTS:
3160 case ISD::SRL_PARTS:
3161 case ISD::SHL_PARTS:
3162 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00003163 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00003164 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3165 else if (N3.getOpcode() == ISD::AND)
3166 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3167 // If the and is only masking out bits that cannot effect the shift,
3168 // eliminate the and.
3169 unsigned NumBits = MVT::getSizeInBits(VT)*2;
3170 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3171 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3172 }
3173 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00003174#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00003175 }
Chris Lattner89c34632005-05-14 06:20:26 +00003176
Chris Lattner43247a12005-08-25 19:12:10 +00003177 // Memoize the node unless it returns a flag.
3178 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00003179 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00003180 FoldingSetNodeID ID;
3181 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003182 void *IP = 0;
3183 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3184 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00003185 if (NumOps == 1)
3186 N = new UnarySDNode(Opcode, VTList, Ops[0]);
3187 else if (NumOps == 2)
3188 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3189 else if (NumOps == 3)
3190 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3191 else
3192 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003193 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00003194 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00003195 if (NumOps == 1)
3196 N = new UnarySDNode(Opcode, VTList, Ops[0]);
3197 else if (NumOps == 2)
3198 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3199 else if (NumOps == 3)
3200 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3201 else
3202 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00003203 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00003204 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00003205 return SDOperand(N, 0);
3206}
3207
Dan Gohman08ce9762007-10-08 15:49:58 +00003208SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003209 return getNode(Opcode, VTList, (SDOperand*)0, 0);
Dan Gohman08ce9762007-10-08 15:49:58 +00003210}
3211
3212SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3213 SDOperand N1) {
3214 SDOperand Ops[] = { N1 };
3215 return getNode(Opcode, VTList, Ops, 1);
3216}
3217
3218SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3219 SDOperand N1, SDOperand N2) {
3220 SDOperand Ops[] = { N1, N2 };
3221 return getNode(Opcode, VTList, Ops, 2);
3222}
3223
3224SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3225 SDOperand N1, SDOperand N2, SDOperand N3) {
3226 SDOperand Ops[] = { N1, N2, N3 };
3227 return getNode(Opcode, VTList, Ops, 3);
3228}
3229
3230SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3231 SDOperand N1, SDOperand N2, SDOperand N3,
3232 SDOperand N4) {
3233 SDOperand Ops[] = { N1, N2, N3, N4 };
3234 return getNode(Opcode, VTList, Ops, 4);
3235}
3236
3237SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3238 SDOperand N1, SDOperand N2, SDOperand N3,
3239 SDOperand N4, SDOperand N5) {
3240 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
3241 return getNode(Opcode, VTList, Ops, 5);
3242}
3243
Chris Lattner70046e92006-08-15 17:46:01 +00003244SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003245 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00003246}
3247
Chris Lattner70046e92006-08-15 17:46:01 +00003248SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00003249 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
3250 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00003251 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00003252 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00003253 }
3254 std::vector<MVT::ValueType> V;
3255 V.push_back(VT1);
3256 V.push_back(VT2);
3257 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00003258 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00003259}
Chris Lattner70046e92006-08-15 17:46:01 +00003260SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
3261 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003262 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00003263 E = VTList.end(); I != E; ++I) {
3264 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
3265 (*I)[2] == VT3)
3266 return makeVTList(&(*I)[0], 3);
3267 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003268 std::vector<MVT::ValueType> V;
3269 V.push_back(VT1);
3270 V.push_back(VT2);
3271 V.push_back(VT3);
3272 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00003273 return makeVTList(&(*VTList.begin())[0], 3);
3274}
3275
3276SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
3277 switch (NumVTs) {
3278 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00003279 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00003280 case 2: return getVTList(VTs[0], VTs[1]);
3281 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3282 default: break;
3283 }
3284
3285 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
3286 E = VTList.end(); I != E; ++I) {
3287 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
3288
3289 bool NoMatch = false;
3290 for (unsigned i = 2; i != NumVTs; ++i)
3291 if (VTs[i] != (*I)[i]) {
3292 NoMatch = true;
3293 break;
3294 }
3295 if (!NoMatch)
3296 return makeVTList(&*I->begin(), NumVTs);
3297 }
3298
3299 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
3300 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003301}
3302
3303
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003304/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3305/// specified operands. If the resultant node already exists in the DAG,
3306/// this does not modify the specified node, instead it returns the node that
3307/// already exists. If the resultant node does not exist in the DAG, the
3308/// input node is returned. As a degenerate case, if you specify the same
3309/// input operands as the node already has, the input node is returned.
3310SDOperand SelectionDAG::
3311UpdateNodeOperands(SDOperand InN, SDOperand Op) {
3312 SDNode *N = InN.Val;
3313 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3314
3315 // Check to see if there is no change.
3316 if (Op == N->getOperand(0)) return InN;
3317
3318 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003319 void *InsertPos = 0;
3320 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
3321 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003322
3323 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003324 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003325 RemoveNodeFromCSEMaps(N);
3326
3327 // Now we update the operands.
Roman Levenstein9cac5252008-04-16 16:15:27 +00003328 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003329 N->OperandList[0] = Op;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003330 N->OperandList[0].setUser(N);
3331 Op.Val->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003332
3333 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003334 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003335 return InN;
3336}
3337
3338SDOperand SelectionDAG::
3339UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
3340 SDNode *N = InN.Val;
3341 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3342
3343 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003344 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3345 return InN; // No operands changed, just return the input node.
3346
3347 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003348 void *InsertPos = 0;
3349 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
3350 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003351
3352 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003353 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003354 RemoveNodeFromCSEMaps(N);
3355
3356 // Now we update the operands.
3357 if (N->OperandList[0] != Op1) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003358 N->OperandList[0].getVal()->removeUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003359 N->OperandList[0] = Op1;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003360 N->OperandList[0].setUser(N);
3361 Op1.Val->addUser(0, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003362 }
3363 if (N->OperandList[1] != Op2) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003364 N->OperandList[1].getVal()->removeUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003365 N->OperandList[1] = Op2;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003366 N->OperandList[1].setUser(N);
3367 Op2.Val->addUser(1, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003368 }
3369
3370 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003371 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003372 return InN;
3373}
3374
3375SDOperand SelectionDAG::
3376UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003377 SDOperand Ops[] = { Op1, Op2, Op3 };
3378 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003379}
3380
3381SDOperand SelectionDAG::
3382UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3383 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003384 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
3385 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003386}
3387
3388SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00003389UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3390 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003391 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
3392 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00003393}
3394
Chris Lattner809ec112006-01-28 10:09:25 +00003395SDOperand SelectionDAG::
Roman Levenstein9cac5252008-04-16 16:15:27 +00003396UpdateNodeOperands(SDOperand InN, SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003397 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003398 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003399 "Update with wrong number of operands");
3400
3401 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003402 bool AnyChange = false;
3403 for (unsigned i = 0; i != NumOps; ++i) {
3404 if (Ops[i] != N->getOperand(i)) {
3405 AnyChange = true;
3406 break;
3407 }
3408 }
3409
3410 // No operands changed, just return the input node.
3411 if (!AnyChange) return InN;
3412
3413 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00003414 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003415 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00003416 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003417
Dan Gohman7ceda162008-05-02 00:05:03 +00003418 // Nope it doesn't. Remove the node from its current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00003419 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003420 RemoveNodeFromCSEMaps(N);
3421
3422 // Now we update the operands.
3423 for (unsigned i = 0; i != NumOps; ++i) {
3424 if (N->OperandList[i] != Ops[i]) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00003425 N->OperandList[i].getVal()->removeUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003426 N->OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003427 N->OperandList[i].setUser(N);
3428 Ops[i].Val->addUser(i, N);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003429 }
3430 }
3431
3432 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00003433 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00003434 return InN;
3435}
3436
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003437/// MorphNodeTo - This frees the operands of the current node, resets the
3438/// opcode, types, and operands to the specified value. This should only be
3439/// used by the SelectionDAG class.
3440void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
Dan Gohman35b31be2008-04-17 23:02:12 +00003441 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003442 NodeType = Opc;
3443 ValueList = L.VTs;
3444 NumValues = L.NumVTs;
3445
3446 // Clear the operands list, updating used nodes to remove this from their
3447 // use list.
3448 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003449 I->getVal()->removeUser(std::distance(op_begin(), I), this);
Chris Lattner63e3f142007-02-04 07:28:00 +00003450
3451 // If NumOps is larger than the # of operands we currently have, reallocate
3452 // the operand list.
3453 if (NumOps > NumOperands) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003454 if (OperandsNeedDelete) {
Chris Lattner63e3f142007-02-04 07:28:00 +00003455 delete [] OperandList;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003456 }
Roman Levenstein9cac5252008-04-16 16:15:27 +00003457 OperandList = new SDUse[NumOps];
Chris Lattner63e3f142007-02-04 07:28:00 +00003458 OperandsNeedDelete = true;
3459 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003460
3461 // Assign the new operands.
3462 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003463
3464 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3465 OperandList[i] = Ops[i];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003466 OperandList[i].setUser(this);
Roman Levenstein9cac5252008-04-16 16:15:27 +00003467 SDNode *N = OperandList[i].getVal();
Roman Levensteindc1adac2008-04-07 10:06:32 +00003468 N->addUser(i, this);
3469 ++N->UsesSize;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003470 }
3471}
Chris Lattner149c58c2005-08-16 18:17:10 +00003472
3473/// SelectNodeTo - These are used for target selectors to *mutate* the
3474/// specified node to have the specified return type, Target opcode, and
3475/// operands. Note that target opcodes are stored as
3476/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003477///
3478/// Note that SelectNodeTo returns the resultant node. If there is already a
3479/// node of the specified opcode and operands, it returns that node instead of
3480/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00003481SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3482 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003483 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003484 FoldingSetNodeID ID;
Roman Levenstein9cac5252008-04-16 16:15:27 +00003485 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, (SDOperand*)0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00003486 void *IP = 0;
3487 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003488 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00003489
Chris Lattner7651fa42005-08-24 23:00:29 +00003490 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003491
Dan Gohman35b31be2008-04-17 23:02:12 +00003492 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, SDOperandPtr(), 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003493
Chris Lattner4a283e92006-08-11 18:38:11 +00003494 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003495 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00003496}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003497
Evan Cheng95514ba2006-08-26 08:00:10 +00003498SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3499 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003500 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003501 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003502 SDOperand Ops[] = { Op1 };
3503
Jim Laskey583bd472006-10-27 23:46:08 +00003504 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003505 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003506 void *IP = 0;
3507 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003508 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003509
Chris Lattner149c58c2005-08-16 18:17:10 +00003510 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003511 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003512 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003513 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003514}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003515
Evan Cheng95514ba2006-08-26 08:00:10 +00003516SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3517 MVT::ValueType VT, SDOperand Op1,
3518 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003519 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003520 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003521 SDOperand Ops[] = { Op1, Op2 };
3522
Jim Laskey583bd472006-10-27 23:46:08 +00003523 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003524 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003525 void *IP = 0;
3526 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003527 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003528
Chris Lattner149c58c2005-08-16 18:17:10 +00003529 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003530
Chris Lattner63e3f142007-02-04 07:28:00 +00003531 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003532
Chris Lattnera5682852006-08-07 23:03:03 +00003533 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003534 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003535}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003536
Evan Cheng95514ba2006-08-26 08:00:10 +00003537SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3538 MVT::ValueType VT, SDOperand Op1,
3539 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003540 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003541 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003542 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003543 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003544 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003545 void *IP = 0;
3546 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003547 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003548
Chris Lattner149c58c2005-08-16 18:17:10 +00003549 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003550
Chris Lattner63e3f142007-02-04 07:28:00 +00003551 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003552
Chris Lattnera5682852006-08-07 23:03:03 +00003553 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003554 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003555}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003556
Evan Cheng95514ba2006-08-26 08:00:10 +00003557SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003558 MVT::ValueType VT, SDOperandPtr Ops,
Evan Cheng694481e2006-08-27 08:08:54 +00003559 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003560 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003561 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003562 FoldingSetNodeID ID;
3563 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003564 void *IP = 0;
3565 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003566 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003567
Chris Lattner6b09a292005-08-21 18:49:33 +00003568 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003569 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003570
Chris Lattnera5682852006-08-07 23:03:03 +00003571 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003572 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003573}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003574
Evan Cheng95514ba2006-08-26 08:00:10 +00003575SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3576 MVT::ValueType VT1, MVT::ValueType VT2,
3577 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003578 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003579 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003580 SDOperand Ops[] = { Op1, Op2 };
3581 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003582 void *IP = 0;
3583 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003584 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003585
Chris Lattner0fb094f2005-11-19 01:44:53 +00003586 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003587 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003588 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003589 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003590}
3591
Evan Cheng95514ba2006-08-26 08:00:10 +00003592SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3593 MVT::ValueType VT1, MVT::ValueType VT2,
3594 SDOperand Op1, SDOperand Op2,
3595 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003596 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003597 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003598 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003599 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003600 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003601 void *IP = 0;
3602 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003603 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003604
Chris Lattner0fb094f2005-11-19 01:44:53 +00003605 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003606
Chris Lattner63e3f142007-02-04 07:28:00 +00003607 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003608 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003609 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003610}
3611
Chris Lattner0fb094f2005-11-19 01:44:53 +00003612
Evan Cheng6ae46c42006-02-09 07:15:23 +00003613/// getTargetNode - These are used for target selectors to create a new node
3614/// with specified return type(s), target opcode, and operands.
3615///
3616/// Note that getTargetNode returns the resultant node. If there is already a
3617/// node of the specified opcode and operands, it returns that node instead of
3618/// the current one.
3619SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3620 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3621}
3622SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3623 SDOperand Op1) {
3624 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3625}
3626SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3627 SDOperand Op1, SDOperand Op2) {
3628 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3629}
3630SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003631 SDOperand Op1, SDOperand Op2,
3632 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003633 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3634}
3635SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003636 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003637 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003638}
3639SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003640 MVT::ValueType VT2) {
3641 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3642 SDOperand Op;
3643 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3644}
3645SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003646 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00003647 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003648 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003649}
3650SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003651 MVT::ValueType VT2, SDOperand Op1,
3652 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003653 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003654 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003655 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003656}
3657SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003658 MVT::ValueType VT2, SDOperand Op1,
3659 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00003660 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003661 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003662 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003663}
Evan Cheng694481e2006-08-27 08:08:54 +00003664SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3665 MVT::ValueType VT2,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003666 SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00003667 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003668 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003669}
3670SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3671 MVT::ValueType VT2, MVT::ValueType VT3,
3672 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003673 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003674 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003675 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003676}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003677SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3678 MVT::ValueType VT2, MVT::ValueType VT3,
3679 SDOperand Op1, SDOperand Op2,
3680 SDOperand Op3) {
3681 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3682 SDOperand Ops[] = { Op1, Op2, Op3 };
3683 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3684}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003685SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00003686 MVT::ValueType VT2, MVT::ValueType VT3,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003687 SDOperandPtr Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00003688 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3689 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003690}
Evan Cheng05e69c12007-09-12 23:39:49 +00003691SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3692 MVT::ValueType VT2, MVT::ValueType VT3,
3693 MVT::ValueType VT4,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003694 SDOperandPtr Ops, unsigned NumOps) {
Evan Cheng05e69c12007-09-12 23:39:49 +00003695 std::vector<MVT::ValueType> VTList;
3696 VTList.push_back(VT1);
3697 VTList.push_back(VT2);
3698 VTList.push_back(VT3);
3699 VTList.push_back(VT4);
3700 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3701 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3702}
Evan Cheng39305cf2007-10-05 01:10:49 +00003703SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3704 std::vector<MVT::ValueType> &ResultTys,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003705 SDOperandPtr Ops, unsigned NumOps) {
Evan Cheng39305cf2007-10-05 01:10:49 +00003706 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3707 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3708 Ops, NumOps).Val;
3709}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003710
Evan Cheng08b11732008-03-22 01:55:50 +00003711/// getNodeIfExists - Get the specified node if it's already available, or
3712/// else return NULL.
3713SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003714 SDOperandPtr Ops, unsigned NumOps) {
Evan Cheng08b11732008-03-22 01:55:50 +00003715 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3716 FoldingSetNodeID ID;
3717 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3718 void *IP = 0;
3719 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3720 return E;
3721 }
3722 return NULL;
3723}
3724
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003725
Evan Cheng99157a02006-08-07 22:13:29 +00003726/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003727/// This can cause recursive merging of nodes in the DAG.
3728///
Chris Lattner11d049c2008-02-03 03:35:22 +00003729/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00003730///
Chris Lattner11d049c2008-02-03 03:35:22 +00003731void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003732 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003733 SDNode *From = FromN.Val;
Chris Lattner11d049c2008-02-03 03:35:22 +00003734 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00003735 "Cannot replace with this method!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003736 assert(From != To.Val && "Cannot replace uses of with self");
Roman Levensteindc1adac2008-04-07 10:06:32 +00003737
Chris Lattner8b8749f2005-08-17 19:00:20 +00003738 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003739 SDNode::use_iterator UI = From->use_begin();
3740 SDNode *U = UI->getUser();
3741
Chris Lattner8b8749f2005-08-17 19:00:20 +00003742 // This node is about to morph, remove its old self from the CSE maps.
3743 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003744 int operandNum = 0;
3745 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3746 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003747 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003748 From->removeUser(operandNum, U);
Chris Lattner11d049c2008-02-03 03:35:22 +00003749 *I = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003750 I->setUser(U);
3751 To.Val->addUser(operandNum, U);
3752 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003753
3754 // Now that we have modified U, add it back to the CSE maps. If it already
3755 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003756 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003757 ReplaceAllUsesWith(U, Existing, UpdateListener);
3758 // U is now dead. Inform the listener if it exists and delete it.
3759 if (UpdateListener)
3760 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003761 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003762 } else {
3763 // If the node doesn't already exist, we updated it. Inform a listener if
3764 // it exists.
3765 if (UpdateListener)
3766 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003767 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003768 }
3769}
3770
3771/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3772/// This can cause recursive merging of nodes in the DAG.
3773///
3774/// This version assumes From/To have matching types and numbers of result
3775/// values.
3776///
Chris Lattner1e111c72005-09-07 05:37:01 +00003777void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003778 DAGUpdateListener *UpdateListener) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003779 assert(From != To && "Cannot replace uses of with self");
3780 assert(From->getNumValues() == To->getNumValues() &&
3781 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003782 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003783 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3784 UpdateListener);
Chris Lattner8b52f212005-08-26 18:36:28 +00003785
3786 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003787 SDNode::use_iterator UI = From->use_begin();
3788 SDNode *U = UI->getUser();
3789
Chris Lattner8b52f212005-08-26 18:36:28 +00003790 // This node is about to morph, remove its old self from the CSE maps.
3791 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003792 int operandNum = 0;
3793 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3794 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003795 if (I->getVal() == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003796 From->removeUser(operandNum, U);
Roman Levenstein9cac5252008-04-16 16:15:27 +00003797 I->getVal() = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003798 To->addUser(operandNum, U);
Chris Lattner8b8749f2005-08-17 19:00:20 +00003799 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00003800
Chris Lattner8b8749f2005-08-17 19:00:20 +00003801 // Now that we have modified U, add it back to the CSE maps. If it already
3802 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003803 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003804 ReplaceAllUsesWith(U, Existing, UpdateListener);
3805 // U is now dead. Inform the listener if it exists and delete it.
3806 if (UpdateListener)
3807 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003808 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003809 } else {
3810 // If the node doesn't already exist, we updated it. Inform a listener if
3811 // it exists.
3812 if (UpdateListener)
3813 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003814 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003815 }
3816}
3817
Chris Lattner8b52f212005-08-26 18:36:28 +00003818/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3819/// This can cause recursive merging of nodes in the DAG.
3820///
3821/// This version can replace From with any result values. To must match the
3822/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003823void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Roman Levenstein9cac5252008-04-16 16:15:27 +00003824 SDOperandPtr To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003825 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003826 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003827 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003828
3829 while (!From->use_empty()) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003830 SDNode::use_iterator UI = From->use_begin();
3831 SDNode *U = UI->getUser();
3832
Chris Lattner7b2880c2005-08-24 22:44:39 +00003833 // This node is about to morph, remove its old self from the CSE maps.
3834 RemoveNodeFromCSEMaps(U);
Roman Levensteindc1adac2008-04-07 10:06:32 +00003835 int operandNum = 0;
3836 for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3837 I != E; ++I, ++operandNum)
Roman Levenstein9cac5252008-04-16 16:15:27 +00003838 if (I->getVal() == From) {
3839 const SDOperand &ToOp = To[I->getSDOperand().ResNo];
Roman Levensteindc1adac2008-04-07 10:06:32 +00003840 From->removeUser(operandNum, U);
Chris Lattner65113b22005-11-08 22:07:03 +00003841 *I = ToOp;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003842 I->setUser(U);
3843 ToOp.Val->addUser(operandNum, U);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003844 }
Roman Levensteindc1adac2008-04-07 10:06:32 +00003845
Chris Lattner7b2880c2005-08-24 22:44:39 +00003846 // Now that we have modified U, add it back to the CSE maps. If it already
3847 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003848 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003849 ReplaceAllUsesWith(U, Existing, UpdateListener);
3850 // U is now dead. Inform the listener if it exists and delete it.
3851 if (UpdateListener)
3852 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003853 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003854 } else {
3855 // If the node doesn't already exist, we updated it. Inform a listener if
3856 // it exists.
3857 if (UpdateListener)
3858 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003859 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003860 }
3861}
3862
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003863namespace {
3864 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3865 /// any deleted nodes from the set passed into its constructor and recursively
3866 /// notifies another update listener if specified.
3867 class ChainedSetUpdaterListener :
3868 public SelectionDAG::DAGUpdateListener {
3869 SmallSetVector<SDNode*, 16> &Set;
3870 SelectionDAG::DAGUpdateListener *Chain;
3871 public:
3872 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3873 SelectionDAG::DAGUpdateListener *chain)
3874 : Set(set), Chain(chain) {}
Roman Levensteindc1adac2008-04-07 10:06:32 +00003875
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003876 virtual void NodeDeleted(SDNode *N) {
3877 Set.remove(N);
3878 if (Chain) Chain->NodeDeleted(N);
3879 }
3880 virtual void NodeUpdated(SDNode *N) {
3881 if (Chain) Chain->NodeUpdated(N);
3882 }
3883 };
3884}
3885
Chris Lattner012f2412006-02-17 21:58:01 +00003886/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3887/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003888/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner012f2412006-02-17 21:58:01 +00003889void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003890 DAGUpdateListener *UpdateListener){
Chris Lattner012f2412006-02-17 21:58:01 +00003891 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003892
Chris Lattner012f2412006-02-17 21:58:01 +00003893 // Handle the simple, trivial, case efficiently.
Chris Lattner11d049c2008-02-03 03:35:22 +00003894 if (From.Val->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003895 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00003896 return;
3897 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003898
3899 if (From.use_empty()) return;
3900
Chris Lattnercf5640b2007-02-04 00:14:31 +00003901 // Get all of the users of From.Val. We want these in a nice,
3902 // deterministically ordered and uniqued set, so we use a SmallSetVector.
Roman Levensteindc1adac2008-04-07 10:06:32 +00003903 SmallSetVector<SDNode*, 16> Users;
3904 for (SDNode::use_iterator UI = From.Val->use_begin(),
3905 E = From.Val->use_end(); UI != E; ++UI) {
3906 SDNode *User = UI->getUser();
3907 if (!Users.count(User))
3908 Users.insert(User);
3909 }
Chris Lattner012f2412006-02-17 21:58:01 +00003910
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003911 // When one of the recursive merges deletes nodes from the graph, we need to
3912 // make sure that UpdateListener is notified *and* that the node is removed
3913 // from Users if present. CSUL does this.
3914 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00003915
Chris Lattner012f2412006-02-17 21:58:01 +00003916 while (!Users.empty()) {
3917 // We know that this user uses some value of From. If it is the right
3918 // value, update it.
3919 SDNode *User = Users.back();
3920 Users.pop_back();
3921
Chris Lattner01d029b2007-10-15 06:10:22 +00003922 // Scan for an operand that matches From.
Roman Levensteindc1adac2008-04-07 10:06:32 +00003923 SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
Chris Lattner01d029b2007-10-15 06:10:22 +00003924 for (; Op != E; ++Op)
3925 if (*Op == From) break;
3926
3927 // If there are no matches, the user must use some other result of From.
3928 if (Op == E) continue;
3929
3930 // Okay, we know this user needs to be updated. Remove its old self
3931 // from the CSE maps.
3932 RemoveNodeFromCSEMaps(User);
3933
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003934 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00003935 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00003936 if (*Op == From) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00003937 From.Val->removeUser(Op-User->op_begin(), User);
Gabor Greif78256a12008-04-11 09:34:57 +00003938 *Op = To;
Roman Levensteindc1adac2008-04-07 10:06:32 +00003939 Op->setUser(User);
3940 To.Val->addUser(Op-User->op_begin(), User);
Chris Lattner012f2412006-02-17 21:58:01 +00003941 }
3942 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003943
3944 // Now that we have modified User, add it back to the CSE maps. If it
3945 // already exists there, recursively merge the results together.
3946 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003947 if (!Existing) {
3948 if (UpdateListener) UpdateListener->NodeUpdated(User);
3949 continue; // Continue on to next user.
3950 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003951
3952 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003953 // to replace the dead one with the existing one. This can cause
Chris Lattner01d029b2007-10-15 06:10:22 +00003954 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003955 // can cause deletion of nodes that used the old value. To handle this, we
3956 // use CSUL to remove them from the Users set.
3957 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner01d029b2007-10-15 06:10:22 +00003958
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003959 // User is now dead. Notify a listener if present.
3960 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner01d029b2007-10-15 06:10:22 +00003961 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003962 }
3963}
3964
Evan Chenge6f35d82006-08-01 08:20:41 +00003965/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3966/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003967unsigned SelectionDAG::AssignNodeIds() {
3968 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003969 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3970 SDNode *N = I;
3971 N->setNodeId(Id++);
3972 }
3973 return Id;
3974}
3975
Evan Chenge6f35d82006-08-01 08:20:41 +00003976/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003977/// based on their topological order. It returns the maximum id and a vector
3978/// of the SDNodes* in assigned order by reference.
3979unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003980 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003981 std::vector<unsigned> InDegree(DAGSize);
3982 std::vector<SDNode*> Sources;
3983
3984 // Use a two pass approach to avoid using a std::map which is slow.
3985 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003986 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3987 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003988 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003989 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003990 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003991 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003992 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003993 }
3994
Evan Cheng99157a02006-08-07 22:13:29 +00003995 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003996 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003997 SDNode *N = Sources.back();
3998 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003999 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00004000 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
Roman Levenstein9cac5252008-04-16 16:15:27 +00004001 SDNode *P = I->getVal();
Evan Chengc384d6c2006-08-02 22:00:34 +00004002 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00004003 if (Degree == 0)
4004 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00004005 }
4006 }
4007
Evan Chengc384d6c2006-08-02 22:00:34 +00004008 // Second pass, assign the actual topological order as node ids.
4009 Id = 0;
4010 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
4011 TI != TE; ++TI)
4012 (*TI)->setNodeId(Id++);
4013
4014 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00004015}
4016
4017
Evan Cheng091cba12006-07-27 06:39:06 +00004018
Jim Laskey58b968b2005-08-17 20:08:02 +00004019//===----------------------------------------------------------------------===//
4020// SDNode Class
4021//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00004022
Chris Lattner917d2c92006-07-19 00:00:37 +00004023// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004024void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00004025void UnarySDNode::ANCHOR() {}
4026void BinarySDNode::ANCHOR() {}
4027void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004028void HandleSDNode::ANCHOR() {}
4029void StringSDNode::ANCHOR() {}
4030void ConstantSDNode::ANCHOR() {}
4031void ConstantFPSDNode::ANCHOR() {}
4032void GlobalAddressSDNode::ANCHOR() {}
4033void FrameIndexSDNode::ANCHOR() {}
4034void JumpTableSDNode::ANCHOR() {}
4035void ConstantPoolSDNode::ANCHOR() {}
4036void BasicBlockSDNode::ANCHOR() {}
4037void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00004038void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004039void RegisterSDNode::ANCHOR() {}
4040void ExternalSymbolSDNode::ANCHOR() {}
4041void CondCodeSDNode::ANCHOR() {}
Duncan Sands276dcbd2008-03-21 09:14:45 +00004042void ARG_FLAGSSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00004043void VTSDNode::ANCHOR() {}
4044void LoadSDNode::ANCHOR() {}
4045void StoreSDNode::ANCHOR() {}
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004046void AtomicSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00004047
Chris Lattner48b85922007-02-04 02:41:42 +00004048HandleSDNode::~HandleSDNode() {
4049 SDVTList VTs = { 0, 0 };
Dan Gohman35b31be2008-04-17 23:02:12 +00004050 MorphNodeTo(ISD::HANDLENODE, VTs, SDOperandPtr(), 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00004051}
4052
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004053GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
4054 MVT::ValueType VT, int o)
4055 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00004056 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004057 // Thread Local
4058 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4059 // Non Thread Local
4060 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4061 getSDVTList(VT)), Offset(o) {
4062 TheGlobal = const_cast<GlobalValue*>(GA);
4063}
Chris Lattner48b85922007-02-04 02:41:42 +00004064
Dan Gohman36b5c132008-04-07 19:35:22 +00004065/// getMemOperand - Return a MachineMemOperand object describing the memory
Dan Gohman69de1932008-02-06 22:27:42 +00004066/// reference performed by this load or store.
Dan Gohman36b5c132008-04-07 19:35:22 +00004067MachineMemOperand LSBaseSDNode::getMemOperand() const {
Dan Gohman69de1932008-02-06 22:27:42 +00004068 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
4069 int Flags =
Dan Gohman36b5c132008-04-07 19:35:22 +00004070 getOpcode() == ISD::LOAD ? MachineMemOperand::MOLoad :
4071 MachineMemOperand::MOStore;
4072 if (IsVolatile) Flags |= MachineMemOperand::MOVolatile;
Dan Gohman69de1932008-02-06 22:27:42 +00004073
4074 // Check if the load references a frame index, and does not have
4075 // an SV attached.
4076 const FrameIndexSDNode *FI =
4077 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
4078 if (!getSrcValue() && FI)
Dan Gohman36b5c132008-04-07 19:35:22 +00004079 return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
4080 FI->getIndex(), Size, Alignment);
Dan Gohman69de1932008-02-06 22:27:42 +00004081 else
Dan Gohman36b5c132008-04-07 19:35:22 +00004082 return MachineMemOperand(getSrcValue(), Flags,
4083 getSrcValueOffset(), Size, Alignment);
Dan Gohman69de1932008-02-06 22:27:42 +00004084}
4085
Jim Laskey583bd472006-10-27 23:46:08 +00004086/// Profile - Gather unique data for the node.
4087///
4088void SDNode::Profile(FoldingSetNodeID &ID) {
4089 AddNodeIDNode(ID, this);
4090}
4091
Chris Lattnera3255112005-11-08 23:30:28 +00004092/// getValueTypeList - Return a pointer to the specified value type.
4093///
Dan Gohman547ca532008-02-08 03:26:46 +00004094const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00004095 if (MVT::isExtendedVT(VT)) {
4096 static std::set<MVT::ValueType> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00004097 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00004098 } else {
4099 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
4100 VTs[VT] = VT;
4101 return &VTs[VT];
4102 }
Chris Lattnera3255112005-11-08 23:30:28 +00004103}
Duncan Sandsaf47b112007-10-16 09:56:48 +00004104
Chris Lattner5c884562005-01-12 18:37:47 +00004105/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4106/// indicated value. This method ignores uses of other values defined by this
4107/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00004108bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00004109 assert(Value < getNumValues() && "Bad value!");
4110
4111 // If there is only one value, this is easy.
4112 if (getNumValues() == 1)
4113 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00004114 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00004115
Evan Cheng4ee62112006-02-05 06:29:23 +00004116 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00004117
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004118 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00004119
Roman Levensteindc1adac2008-04-07 10:06:32 +00004120 // TODO: Only iterate over uses of a given value of the node
4121 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4122 if (*UI == TheValue) {
4123 if (NUses == 0)
4124 return false;
4125 --NUses;
4126 }
Chris Lattner5c884562005-01-12 18:37:47 +00004127 }
4128
4129 // Found exactly the right number of uses?
4130 return NUses == 0;
4131}
4132
4133
Evan Cheng33d55952007-08-02 05:29:38 +00004134/// hasAnyUseOfValue - Return true if there are any use of the indicated
4135/// value. This method ignores uses of other values defined by this operation.
4136bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4137 assert(Value < getNumValues() && "Bad value!");
4138
Dan Gohman30359592008-01-29 13:02:09 +00004139 if (use_empty()) return false;
Evan Cheng33d55952007-08-02 05:29:38 +00004140
4141 SDOperand TheValue(const_cast<SDNode *>(this), Value);
4142
4143 SmallPtrSet<SDNode*, 32> UsersHandled;
4144
Roman Levensteindc1adac2008-04-07 10:06:32 +00004145 for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4146 SDNode *User = UI->getUser();
Evan Cheng33d55952007-08-02 05:29:38 +00004147 if (User->getNumOperands() == 1 ||
4148 UsersHandled.insert(User)) // First time we've seen this?
4149 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
4150 if (User->getOperand(i) == TheValue) {
4151 return true;
4152 }
4153 }
4154
4155 return false;
4156}
4157
4158
Evan Cheng917be682008-03-04 00:41:45 +00004159/// isOnlyUseOf - Return true if this node is the only use of N.
Evan Chenge6e97e62006-11-03 07:31:32 +00004160///
Evan Cheng917be682008-03-04 00:41:45 +00004161bool SDNode::isOnlyUseOf(SDNode *N) const {
Evan Cheng4ee62112006-02-05 06:29:23 +00004162 bool Seen = false;
4163 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Roman Levensteindc1adac2008-04-07 10:06:32 +00004164 SDNode *User = I->getUser();
Evan Cheng4ee62112006-02-05 06:29:23 +00004165 if (User == this)
4166 Seen = true;
4167 else
4168 return false;
4169 }
4170
4171 return Seen;
4172}
4173
Evan Chenge6e97e62006-11-03 07:31:32 +00004174/// isOperand - Return true if this node is an operand of N.
4175///
Roman Levenstein9cac5252008-04-16 16:15:27 +00004176bool SDOperand::isOperandOf(SDNode *N) const {
Evan Chengbfa284f2006-03-03 06:42:32 +00004177 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4178 if (*this == N->getOperand(i))
4179 return true;
4180 return false;
4181}
4182
Evan Cheng917be682008-03-04 00:41:45 +00004183bool SDNode::isOperandOf(SDNode *N) const {
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004184 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
Roman Levenstein9cac5252008-04-16 16:15:27 +00004185 if (this == N->OperandList[i].getVal())
Evan Cheng80d8eaa2006-03-03 06:24:54 +00004186 return true;
4187 return false;
4188}
Evan Cheng4ee62112006-02-05 06:29:23 +00004189
Chris Lattner572dee72008-01-16 05:49:24 +00004190/// reachesChainWithoutSideEffects - Return true if this operand (which must
4191/// be a chain) reaches the specified operand without crossing any
4192/// side-effecting instructions. In practice, this looks through token
4193/// factors and non-volatile loads. In order to remain efficient, this only
4194/// looks a couple of nodes in, it does not do an exhaustive search.
Roman Levenstein9cac5252008-04-16 16:15:27 +00004195bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
Chris Lattner572dee72008-01-16 05:49:24 +00004196 unsigned Depth) const {
4197 if (*this == Dest) return true;
4198
4199 // Don't search too deeply, we just want to be able to see through
4200 // TokenFactor's etc.
4201 if (Depth == 0) return false;
4202
4203 // If this is a token factor, all inputs to the TF happen in parallel. If any
4204 // of the operands of the TF reach dest, then we can do the xform.
4205 if (getOpcode() == ISD::TokenFactor) {
4206 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4207 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4208 return true;
4209 return false;
4210 }
4211
4212 // Loads don't have side effects, look through them.
4213 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4214 if (!Ld->isVolatile())
4215 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4216 }
4217 return false;
4218}
4219
4220
Evan Chengc5fc57d2006-11-03 03:05:24 +00004221static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004222 SmallPtrSet<SDNode *, 32> &Visited) {
4223 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00004224 return;
4225
4226 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
4227 SDNode *Op = N->getOperand(i).Val;
4228 if (Op == P) {
4229 found = true;
4230 return;
4231 }
4232 findPredecessor(Op, P, found, Visited);
4233 }
4234}
4235
Evan Cheng917be682008-03-04 00:41:45 +00004236/// isPredecessorOf - Return true if this node is a predecessor of N. This node
Evan Chenge6e97e62006-11-03 07:31:32 +00004237/// is either an operand of N or it can be reached by recursively traversing
4238/// up the operands.
4239/// NOTE: this is an expensive method. Use it carefully.
Evan Cheng917be682008-03-04 00:41:45 +00004240bool SDNode::isPredecessorOf(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00004241 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00004242 bool found = false;
4243 findPredecessor(N, this, found, Visited);
4244 return found;
4245}
4246
Evan Chengc5484282006-10-04 00:56:09 +00004247uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4248 assert(Num < NumOperands && "Invalid child # of SDNode!");
4249 return cast<ConstantSDNode>(OperandList[Num])->getValue();
4250}
4251
Reid Spencer577cc322007-04-01 07:32:19 +00004252std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004253 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004254 default:
4255 if (getOpcode() < ISD::BUILTIN_OP_END)
4256 return "<<Unknown DAG Node>>";
4257 else {
Evan Cheng72261582005-12-20 06:22:03 +00004258 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004259 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00004260 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00004261 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00004262
Evan Cheng72261582005-12-20 06:22:03 +00004263 TargetLowering &TLI = G->getTargetLoweringInfo();
4264 const char *Name =
4265 TLI.getTargetNodeName(getOpcode());
4266 if (Name) return Name;
4267 }
4268
4269 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004270 }
4271
Evan Cheng27b7db52008-03-08 00:58:38 +00004272 case ISD::PREFETCH: return "Prefetch";
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00004273 case ISD::MEMBARRIER: return "MemBarrier";
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004274 case ISD::ATOMIC_LCS: return "AtomicLCS";
4275 case ISD::ATOMIC_LAS: return "AtomicLAS";
Mon P Wang63307c32008-05-05 19:05:59 +00004276 case ISD::ATOMIC_LSS: return "AtomicLSS";
4277 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
4278 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
4279 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
4280 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
4281 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
4282 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
4283 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
4284 case ISD::ATOMIC_SWAP: return "AtomicSWAP";
Andrew Lenharth95762122005-03-31 21:24:06 +00004285 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00004286 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004287 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00004288 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004289 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00004290 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00004291 case ISD::AssertSext: return "AssertSext";
4292 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004293
4294 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004295 case ISD::BasicBlock: return "BasicBlock";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004296 case ISD::ARG_FLAGS: return "ArgFlags";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004297 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004298 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004299
4300 case ISD::Constant: return "Constant";
4301 case ISD::ConstantFP: return "ConstantFP";
4302 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004303 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004304 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004305 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00004306 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00004307 case ISD::RETURNADDR: return "RETURNADDR";
4308 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004309 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00004310 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
4311 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00004312 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00004313 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004314 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00004315 case ISD::INTRINSIC_WO_CHAIN: {
4316 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
4317 return Intrinsic::getName((Intrinsic::ID)IID);
4318 }
4319 case ISD::INTRINSIC_VOID:
4320 case ISD::INTRINSIC_W_CHAIN: {
4321 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00004322 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00004323 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00004324
Chris Lattnerb2827b02006-03-19 00:52:58 +00004325 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004326 case ISD::TargetConstant: return "TargetConstant";
4327 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004328 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004329 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004330 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00004331 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00004332 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004333 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00004334
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004335 case ISD::CopyToReg: return "CopyToReg";
4336 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004337 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00004338 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00004339 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00004340 case ISD::LABEL: return "label";
Evan Chenga844bde2008-02-02 04:07:54 +00004341 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00004342 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00004343 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00004344 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00004345
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00004346 // Unary operators
4347 case ISD::FABS: return "fabs";
4348 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00004349 case ISD::FSQRT: return "fsqrt";
4350 case ISD::FSIN: return "fsin";
4351 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00004352 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00004353 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00004354
4355 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004356 case ISD::ADD: return "add";
4357 case ISD::SUB: return "sub";
4358 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00004359 case ISD::MULHU: return "mulhu";
4360 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004361 case ISD::SDIV: return "sdiv";
4362 case ISD::UDIV: return "udiv";
4363 case ISD::SREM: return "srem";
4364 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00004365 case ISD::SMUL_LOHI: return "smul_lohi";
4366 case ISD::UMUL_LOHI: return "umul_lohi";
4367 case ISD::SDIVREM: return "sdivrem";
4368 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004369 case ISD::AND: return "and";
4370 case ISD::OR: return "or";
4371 case ISD::XOR: return "xor";
4372 case ISD::SHL: return "shl";
4373 case ISD::SRA: return "sra";
4374 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00004375 case ISD::ROTL: return "rotl";
4376 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00004377 case ISD::FADD: return "fadd";
4378 case ISD::FSUB: return "fsub";
4379 case ISD::FMUL: return "fmul";
4380 case ISD::FDIV: return "fdiv";
4381 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00004382 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00004383 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00004384
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004385 case ISD::SETCC: return "setcc";
Nate Begemanb43e9c12008-05-12 19:40:03 +00004386 case ISD::VSETCC: return "vsetcc";
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004387 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00004388 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004389 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004390 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00004391 case ISD::CONCAT_VECTORS: return "concat_vectors";
4392 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004393 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004394 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00004395 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00004396 case ISD::ADDC: return "addc";
4397 case ISD::ADDE: return "adde";
4398 case ISD::SUBC: return "subc";
4399 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00004400 case ISD::SHL_PARTS: return "shl_parts";
4401 case ISD::SRA_PARTS: return "sra_parts";
4402 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00004403
4404 case ISD::EXTRACT_SUBREG: return "extract_subreg";
4405 case ISD::INSERT_SUBREG: return "insert_subreg";
4406
Chris Lattner7f644642005-04-28 21:44:03 +00004407 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004408 case ISD::SIGN_EXTEND: return "sign_extend";
4409 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00004410 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00004411 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004412 case ISD::TRUNCATE: return "truncate";
4413 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00004414 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00004415 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004416 case ISD::FP_EXTEND: return "fp_extend";
4417
4418 case ISD::SINT_TO_FP: return "sint_to_fp";
4419 case ISD::UINT_TO_FP: return "uint_to_fp";
4420 case ISD::FP_TO_SINT: return "fp_to_sint";
4421 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00004422 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004423
4424 // Control flow instructions
4425 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00004426 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00004427 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004428 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00004429 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004430 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00004431 case ISD::CALLSEQ_START: return "callseq_start";
4432 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004433
4434 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00004435 case ISD::LOAD: return "load";
4436 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00004437 case ISD::VAARG: return "vaarg";
4438 case ISD::VACOPY: return "vacopy";
4439 case ISD::VAEND: return "vaend";
4440 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004441 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00004442 case ISD::EXTRACT_ELEMENT: return "extract_element";
4443 case ISD::BUILD_PAIR: return "build_pair";
4444 case ISD::STACKSAVE: return "stacksave";
4445 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004446 case ISD::TRAP: return "trap";
4447
Nate Begeman1b5db7a2006-01-16 08:07:10 +00004448 // Bit manipulation
4449 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00004450 case ISD::CTPOP: return "ctpop";
4451 case ISD::CTTZ: return "cttz";
4452 case ISD::CTLZ: return "ctlz";
4453
Chris Lattner36ce6912005-11-29 06:21:05 +00004454 // Debug info
4455 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00004456 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00004457
Duncan Sands36397f52007-07-27 12:58:54 +00004458 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00004459 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00004460
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004461 case ISD::CONDCODE:
4462 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004463 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004464 case ISD::SETOEQ: return "setoeq";
4465 case ISD::SETOGT: return "setogt";
4466 case ISD::SETOGE: return "setoge";
4467 case ISD::SETOLT: return "setolt";
4468 case ISD::SETOLE: return "setole";
4469 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004470
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004471 case ISD::SETO: return "seto";
4472 case ISD::SETUO: return "setuo";
4473 case ISD::SETUEQ: return "setue";
4474 case ISD::SETUGT: return "setugt";
4475 case ISD::SETUGE: return "setuge";
4476 case ISD::SETULT: return "setult";
4477 case ISD::SETULE: return "setule";
4478 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004479
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004480 case ISD::SETEQ: return "seteq";
4481 case ISD::SETGT: return "setgt";
4482 case ISD::SETGE: return "setge";
4483 case ISD::SETLT: return "setlt";
4484 case ISD::SETLE: return "setle";
4485 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004486 }
4487 }
4488}
Chris Lattnerc3aae252005-01-07 07:46:32 +00004489
Evan Cheng144d8f02006-11-09 17:55:04 +00004490const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00004491 switch (AM) {
4492 default:
4493 return "";
4494 case ISD::PRE_INC:
4495 return "<pre-inc>";
4496 case ISD::PRE_DEC:
4497 return "<pre-dec>";
4498 case ISD::POST_INC:
4499 return "<post-inc>";
4500 case ISD::POST_DEC:
4501 return "<post-dec>";
4502 }
4503}
4504
Duncan Sands276dcbd2008-03-21 09:14:45 +00004505std::string ISD::ArgFlagsTy::getArgFlagsString() {
4506 std::string S = "< ";
4507
4508 if (isZExt())
4509 S += "zext ";
4510 if (isSExt())
4511 S += "sext ";
4512 if (isInReg())
4513 S += "inreg ";
4514 if (isSRet())
4515 S += "sret ";
4516 if (isByVal())
4517 S += "byval ";
4518 if (isNest())
4519 S += "nest ";
4520 if (getByValAlign())
4521 S += "byval-align:" + utostr(getByValAlign()) + " ";
4522 if (getOrigAlign())
4523 S += "orig-align:" + utostr(getOrigAlign()) + " ";
4524 if (getByValSize())
4525 S += "byval-size:" + utostr(getByValSize()) + " ";
4526 return S + ">";
4527}
4528
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004529void SDNode::dump() const { dump(0); }
4530void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00004531 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004532
4533 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004534 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00004535 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00004536 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00004537 else
Bill Wendling832171c2006-12-07 20:04:42 +00004538 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00004539 }
Bill Wendling832171c2006-12-07 20:04:42 +00004540 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004541
Bill Wendling832171c2006-12-07 20:04:42 +00004542 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004543 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004544 if (i) cerr << ", ";
4545 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004546 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00004547 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004548 }
4549
Evan Chengce254432007-12-11 02:08:35 +00004550 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4551 SDNode *Mask = getOperand(2).Val;
4552 cerr << "<";
4553 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4554 if (i) cerr << ",";
4555 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4556 cerr << "u";
4557 else
4558 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4559 }
4560 cerr << ">";
4561 }
4562
Chris Lattnerc3aae252005-01-07 07:46:32 +00004563 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004564 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004565 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004566 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4567 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4568 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4569 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4570 else {
4571 cerr << "<APFloat(";
4572 CSDN->getValueAPF().convertToAPInt().dump();
4573 cerr << ")>";
4574 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00004575 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00004576 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00004577 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00004578 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00004579 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00004580 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004581 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00004582 else
Bill Wendling832171c2006-12-07 20:04:42 +00004583 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004584 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004585 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00004586 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004587 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004588 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00004589 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00004590 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00004591 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00004592 else
Bill Wendling832171c2006-12-07 20:04:42 +00004593 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00004594 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004595 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00004596 else
Bill Wendling832171c2006-12-07 20:04:42 +00004597 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004598 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004599 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004600 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4601 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00004602 cerr << LBB->getName() << " ";
4603 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00004604 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004605 if (G && R->getReg() &&
4606 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +00004607 cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00004608 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00004609 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00004610 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004611 } else if (const ExternalSymbolSDNode *ES =
4612 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004613 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004614 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4615 if (M->getValue())
Dan Gohman69de1932008-02-06 22:27:42 +00004616 cerr << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004617 else
Dan Gohman69de1932008-02-06 22:27:42 +00004618 cerr << "<null>";
4619 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4620 if (M->MO.getValue())
4621 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4622 else
4623 cerr << "<null:" << M->MO.getOffset() << ">";
Duncan Sands276dcbd2008-03-21 09:14:45 +00004624 } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
4625 cerr << N->getArgFlags().getArgFlagsString();
Chris Lattnera23e8152005-08-18 03:31:02 +00004626 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00004627 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004628 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00004629 const Value *SrcValue = LD->getSrcValue();
4630 int SrcOffset = LD->getSrcValueOffset();
4631 cerr << " <";
4632 if (SrcValue)
4633 cerr << SrcValue;
4634 else
4635 cerr << "null";
4636 cerr << ":" << SrcOffset << ">";
4637
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004638 bool doExt = true;
4639 switch (LD->getExtensionType()) {
4640 default: doExt = false; break;
4641 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004642 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004643 break;
4644 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004645 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004646 break;
4647 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004648 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004649 break;
4650 }
4651 if (doExt)
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004652 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004653
Evan Cheng144d8f02006-11-09 17:55:04 +00004654 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004655 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004656 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004657 if (LD->isVolatile())
4658 cerr << " <volatile>";
4659 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004660 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004661 const Value *SrcValue = ST->getSrcValue();
4662 int SrcOffset = ST->getSrcValueOffset();
4663 cerr << " <";
4664 if (SrcValue)
4665 cerr << SrcValue;
4666 else
4667 cerr << "null";
4668 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004669
4670 if (ST->isTruncatingStore())
4671 cerr << " <trunc "
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004672 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004673
4674 const char *AM = getIndexedModeName(ST->getAddressingMode());
4675 if (*AM)
4676 cerr << " " << AM;
4677 if (ST->isVolatile())
4678 cerr << " <volatile>";
4679 cerr << " alignment=" << ST->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004680 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004681}
4682
Chris Lattnerde202b32005-11-09 23:47:37 +00004683static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004684 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4685 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004686 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004687 else
Bill Wendling832171c2006-12-07 20:04:42 +00004688 cerr << "\n" << std::string(indent+2, ' ')
4689 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004690
Chris Lattnerea946cd2005-01-09 20:38:33 +00004691
Bill Wendling832171c2006-12-07 20:04:42 +00004692 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004693 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004694}
4695
Chris Lattnerc3aae252005-01-07 07:46:32 +00004696void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004697 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004698 std::vector<const SDNode*> Nodes;
4699 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4700 I != E; ++I)
4701 Nodes.push_back(I);
4702
Chris Lattner49d24712005-01-09 20:26:36 +00004703 std::sort(Nodes.begin(), Nodes.end());
4704
4705 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004706 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004707 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004708 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004709
Jim Laskey26f7fa72006-10-17 19:33:52 +00004710 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004711
Bill Wendling832171c2006-12-07 20:04:42 +00004712 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004713}
4714
Evan Chengd6594ae2006-09-12 21:00:35 +00004715const Type *ConstantPoolSDNode::getType() const {
4716 if (isMachineConstantPoolEntry())
4717 return Val.MachineCPVal->getType();
4718 return Val.ConstVal->getType();
4719}