blob: c12c98b4e390e25b700ca44352c4d5e7f629a082 [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//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattnerc3aae252005-01-07 07:46:32 +000015#include "llvm/Constants.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"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Evan Chengd6594ae2006-09-12 21:00:35 +000021#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner37ce9df2007-10-15 17:47:20 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000024#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner0561b3f2005-08-02 19:26:06 +000025#include "llvm/Support/MathExtras.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000026#include "llvm/Target/TargetRegisterInfo.h"
Christopher Lamb95c218a2007-04-22 23:15:30 +000027#include "llvm/Target/TargetData.h"
Chris Lattnerb48da392005-01-23 04:39:44 +000028#include "llvm/Target/TargetLowering.h"
Chris Lattnerf3e133a2005-08-16 18:33:07 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Chris Lattner012f2412006-02-17 21:58:01 +000031#include "llvm/ADT/SetVector.h"
Chris Lattnerd48c5e82007-02-04 00:24:41 +000032#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsaf47b112007-10-16 09:56:48 +000033#include "llvm/ADT/SmallSet.h"
Chris Lattner190a4182006-08-04 17:45:20 +000034#include "llvm/ADT/SmallVector.h"
Evan Cheng115c0362005-12-19 23:11:49 +000035#include "llvm/ADT/StringExtras.h"
Jeff Cohenfd161e92005-01-09 20:41:56 +000036#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000037#include <cmath>
Chris Lattnere25738c2004-06-02 04:28:06 +000038using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000039
Chris Lattner0b3e5252006-08-15 19:11:05 +000040/// makeVTList - Return an instance of the SDVTList struct initialized with the
41/// specified members.
42static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
43 SDVTList Res = {VTs, NumVTs};
44 return Res;
45}
46
Chris Lattnerf8dc0612008-02-03 06:49:24 +000047SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
48
Jim Laskey58b968b2005-08-17 20:08:02 +000049//===----------------------------------------------------------------------===//
50// ConstantFPSDNode Class
51//===----------------------------------------------------------------------===//
52
53/// isExactlyValue - We don't rely on operator== working on double values, as
54/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
55/// As such, this method can be used to do an exact bit-for-bit comparison of
56/// two floating point values.
Dale Johannesene6c17422007-08-26 01:18:27 +000057bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen87503a62007-08-25 22:10:57 +000058 return Value.bitwiseIsEqual(V);
Jim Laskey58b968b2005-08-17 20:08:02 +000059}
60
Dale Johannesenf04afdb2007-08-30 00:23:21 +000061bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
62 const APFloat& Val) {
63 // convert modifies in place, so make a copy.
64 APFloat Val2 = APFloat(Val);
65 switch (VT) {
66 default:
67 return false; // These can't be represented as floating point!
68
69 // FIXME rounding mode needs to be more flexible
70 case MVT::f32:
71 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
72 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven) ==
73 APFloat::opOK;
74 case MVT::f64:
75 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
76 &Val2.getSemantics() == &APFloat::IEEEdouble ||
77 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven) ==
78 APFloat::opOK;
79 // TODO: Figure out how to test if we can use a shorter type instead!
80 case MVT::f80:
81 case MVT::f128:
82 case MVT::ppcf128:
83 return true;
84 }
85}
86
Jim Laskey58b968b2005-08-17 20:08:02 +000087//===----------------------------------------------------------------------===//
Chris Lattner61d43992006-03-25 22:57:01 +000088// ISD Namespace
Jim Laskey58b968b2005-08-17 20:08:02 +000089//===----------------------------------------------------------------------===//
Chris Lattner5cdcc582005-01-09 20:52:51 +000090
Evan Chenga8df1662006-03-27 06:58:47 +000091/// isBuildVectorAllOnes - Return true if the specified node is a
Chris Lattner61d43992006-03-25 22:57:01 +000092/// BUILD_VECTOR where all of the elements are ~0 or undef.
Evan Chenga8df1662006-03-27 06:58:47 +000093bool ISD::isBuildVectorAllOnes(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +000094 // Look through a bit convert.
95 if (N->getOpcode() == ISD::BIT_CONVERT)
96 N = N->getOperand(0).Val;
97
Evan Chenga8df1662006-03-27 06:58:47 +000098 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Chris Lattner61d43992006-03-25 22:57:01 +000099
100 unsigned i = 0, e = N->getNumOperands();
101
102 // Skip over all of the undef values.
103 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
104 ++i;
105
106 // Do not accept an all-undef vector.
107 if (i == e) return false;
108
109 // Do not accept build_vectors that aren't all constants or which have non-~0
110 // elements.
Chris Lattner452e8352006-03-25 22:59:28 +0000111 SDOperand NotZero = N->getOperand(i);
Evan Chenga8df1662006-03-27 06:58:47 +0000112 if (isa<ConstantSDNode>(NotZero)) {
113 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
114 return false;
115 } else if (isa<ConstantFPSDNode>(NotZero)) {
Evan Cheng23cc8702006-03-27 08:10:26 +0000116 MVT::ValueType VT = NotZero.getValueType();
117 if (VT== MVT::f64) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000118 if (((cast<ConstantFPSDNode>(NotZero)->getValueAPF().
119 convertToAPInt().getZExtValue())) != (uint64_t)-1)
Evan Cheng23cc8702006-03-27 08:10:26 +0000120 return false;
121 } else {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000122 if ((uint32_t)cast<ConstantFPSDNode>(NotZero)->
123 getValueAPF().convertToAPInt().getZExtValue() !=
Evan Cheng23cc8702006-03-27 08:10:26 +0000124 (uint32_t)-1)
125 return false;
126 }
Evan Chenga8df1662006-03-27 06:58:47 +0000127 } else
Chris Lattner61d43992006-03-25 22:57:01 +0000128 return false;
129
130 // Okay, we have at least one ~0 value, check to see if the rest match or are
131 // undefs.
Chris Lattner61d43992006-03-25 22:57:01 +0000132 for (++i; i != e; ++i)
133 if (N->getOperand(i) != NotZero &&
134 N->getOperand(i).getOpcode() != ISD::UNDEF)
135 return false;
136 return true;
137}
138
139
Evan Cheng4a147842006-03-26 09:50:58 +0000140/// isBuildVectorAllZeros - Return true if the specified node is a
141/// BUILD_VECTOR where all of the elements are 0 or undef.
142bool ISD::isBuildVectorAllZeros(const SDNode *N) {
Chris Lattner547a16f2006-04-15 23:38:00 +0000143 // Look through a bit convert.
144 if (N->getOpcode() == ISD::BIT_CONVERT)
145 N = N->getOperand(0).Val;
146
Evan Cheng4a147842006-03-26 09:50:58 +0000147 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
Evan Chenga8df1662006-03-27 06:58:47 +0000148
149 unsigned i = 0, e = N->getNumOperands();
150
151 // Skip over all of the undef values.
152 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
153 ++i;
154
155 // Do not accept an all-undef vector.
156 if (i == e) return false;
157
158 // Do not accept build_vectors that aren't all constants or which have non-~0
159 // elements.
160 SDOperand Zero = N->getOperand(i);
161 if (isa<ConstantSDNode>(Zero)) {
162 if (!cast<ConstantSDNode>(Zero)->isNullValue())
163 return false;
164 } else if (isa<ConstantFPSDNode>(Zero)) {
Dale Johanneseneaf08942007-08-31 04:03:46 +0000165 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Evan Chenga8df1662006-03-27 06:58:47 +0000166 return false;
167 } else
168 return false;
169
170 // Okay, we have at least one ~0 value, check to see if the rest match or are
171 // undefs.
172 for (++i; i != e; ++i)
173 if (N->getOperand(i) != Zero &&
174 N->getOperand(i).getOpcode() != ISD::UNDEF)
175 return false;
176 return true;
Evan Cheng4a147842006-03-26 09:50:58 +0000177}
178
Evan Chengbb81d972008-01-31 09:59:15 +0000179/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengfc718542008-02-04 23:10:38 +0000180/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Chengbb81d972008-01-31 09:59:15 +0000181/// is 0).
182bool ISD::isDebugLabel(const SDNode *N) {
183 SDOperand Zero;
184 if (N->getOpcode() == ISD::LABEL)
185 Zero = N->getOperand(2);
186 else if (N->isTargetOpcode() &&
187 N->getTargetOpcode() == TargetInstrInfo::LABEL)
188 // Chain moved to last operand.
189 Zero = N->getOperand(1);
190 else
191 return false;
192 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
193}
194
Chris Lattnerc3aae252005-01-07 07:46:32 +0000195/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
196/// when given the operation for (X op Y).
197ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
198 // To perform this operation, we just need to swap the L and G bits of the
199 // operation.
200 unsigned OldL = (Operation >> 2) & 1;
201 unsigned OldG = (Operation >> 1) & 1;
202 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
203 (OldL << 1) | // New G bit
204 (OldG << 2)); // New L bit.
205}
206
207/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
208/// 'op' is a valid SetCC operation.
209ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
210 unsigned Operation = Op;
211 if (isInteger)
212 Operation ^= 7; // Flip L, G, E bits, but not U.
213 else
214 Operation ^= 15; // Flip all of the condition bits.
215 if (Operation > ISD::SETTRUE2)
216 Operation &= ~8; // Don't let N and U bits get set.
217 return ISD::CondCode(Operation);
218}
219
220
221/// isSignedOp - For an integer comparison, return 1 if the comparison is a
222/// signed operation and 2 if the result is an unsigned comparison. Return zero
223/// if the operation does not depend on the sign of the input (setne and seteq).
224static int isSignedOp(ISD::CondCode Opcode) {
225 switch (Opcode) {
226 default: assert(0 && "Illegal integer setcc operation!");
227 case ISD::SETEQ:
228 case ISD::SETNE: return 0;
229 case ISD::SETLT:
230 case ISD::SETLE:
231 case ISD::SETGT:
232 case ISD::SETGE: return 1;
233 case ISD::SETULT:
234 case ISD::SETULE:
235 case ISD::SETUGT:
236 case ISD::SETUGE: return 2;
237 }
238}
239
240/// getSetCCOrOperation - Return the result of a logical OR between different
241/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
242/// returns SETCC_INVALID if it is not possible to represent the resultant
243/// comparison.
244ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
245 bool isInteger) {
246 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
247 // Cannot fold a signed integer setcc with an unsigned integer setcc.
248 return ISD::SETCC_INVALID;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000249
Chris Lattnerc3aae252005-01-07 07:46:32 +0000250 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000251
Chris Lattnerc3aae252005-01-07 07:46:32 +0000252 // If the N and U bits get set then the resultant comparison DOES suddenly
253 // care about orderedness, and is true when ordered.
254 if (Op > ISD::SETTRUE2)
Chris Lattnere41102b2006-05-12 17:03:46 +0000255 Op &= ~16; // Clear the U bit if the N bit is set.
256
257 // Canonicalize illegal integer setcc's.
258 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
259 Op = ISD::SETNE;
260
Chris Lattnerc3aae252005-01-07 07:46:32 +0000261 return ISD::CondCode(Op);
262}
263
264/// getSetCCAndOperation - Return the result of a logical AND between different
265/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
266/// function returns zero if it is not possible to represent the resultant
267/// comparison.
268ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
269 bool isInteger) {
270 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
271 // Cannot fold a signed setcc with an unsigned setcc.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000272 return ISD::SETCC_INVALID;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000273
274 // Combine all of the condition bits.
Chris Lattnera83385f2006-04-27 05:01:07 +0000275 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
276
277 // Canonicalize illegal integer setcc's.
278 if (isInteger) {
279 switch (Result) {
280 default: break;
Chris Lattner883a52d2006-06-28 18:29:47 +0000281 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
282 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
283 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
284 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
Chris Lattnera83385f2006-04-27 05:01:07 +0000285 }
286 }
287
288 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000289}
290
Chris Lattnerb48da392005-01-23 04:39:44 +0000291const TargetMachine &SelectionDAG::getTarget() const {
292 return TLI.getTargetMachine();
293}
294
Jim Laskey58b968b2005-08-17 20:08:02 +0000295//===----------------------------------------------------------------------===//
Jim Laskey583bd472006-10-27 23:46:08 +0000296// SDNode Profile Support
297//===----------------------------------------------------------------------===//
298
Jim Laskeydef69b92006-10-27 23:52:51 +0000299/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
300///
Jim Laskey583bd472006-10-27 23:46:08 +0000301static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
302 ID.AddInteger(OpC);
303}
304
305/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
306/// solely with their pointer.
307void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
308 ID.AddPointer(VTList.VTs);
309}
310
Jim Laskeydef69b92006-10-27 23:52:51 +0000311/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
312///
Jim Laskey583bd472006-10-27 23:46:08 +0000313static void AddNodeIDOperands(FoldingSetNodeID &ID,
314 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner63e3f142007-02-04 07:28:00 +0000315 for (; NumOps; --NumOps, ++Ops) {
316 ID.AddPointer(Ops->Val);
317 ID.AddInteger(Ops->ResNo);
318 }
Jim Laskey583bd472006-10-27 23:46:08 +0000319}
320
Jim Laskey583bd472006-10-27 23:46:08 +0000321static void AddNodeIDNode(FoldingSetNodeID &ID,
322 unsigned short OpC, SDVTList VTList,
323 const SDOperand *OpList, unsigned N) {
324 AddNodeIDOpcode(ID, OpC);
325 AddNodeIDValueTypes(ID, VTList);
326 AddNodeIDOperands(ID, OpList, N);
327}
328
Jim Laskeydef69b92006-10-27 23:52:51 +0000329/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
330/// data.
Jim Laskey583bd472006-10-27 23:46:08 +0000331static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
332 AddNodeIDOpcode(ID, N->getOpcode());
333 // Add the return value info.
334 AddNodeIDValueTypes(ID, N->getVTList());
335 // Add the operand info.
336 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
337
338 // Handle SDNode leafs with special info.
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000339 switch (N->getOpcode()) {
340 default: break; // Normal nodes don't need extra info.
341 case ISD::TargetConstant:
342 case ISD::Constant:
343 ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
344 break;
345 case ISD::TargetConstantFP:
Dale Johanneseneaf08942007-08-31 04:03:46 +0000346 case ISD::ConstantFP: {
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000347 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000348 break;
Dale Johanneseneaf08942007-08-31 04:03:46 +0000349 }
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000350 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000351 case ISD::GlobalAddress:
352 case ISD::TargetGlobalTLSAddress:
353 case ISD::GlobalTLSAddress: {
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000354 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
355 ID.AddPointer(GA->getGlobal());
356 ID.AddInteger(GA->getOffset());
357 break;
358 }
359 case ISD::BasicBlock:
360 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
361 break;
362 case ISD::Register:
363 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
364 break;
Dan Gohman69de1932008-02-06 22:27:42 +0000365 case ISD::SRCVALUE:
366 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
367 break;
368 case ISD::MEMOPERAND: {
369 const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
370 ID.AddPointer(MO.getValue());
371 ID.AddInteger(MO.getFlags());
372 ID.AddInteger(MO.getOffset());
373 ID.AddInteger(MO.getSize());
374 ID.AddInteger(MO.getAlignment());
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000375 break;
376 }
377 case ISD::FrameIndex:
378 case ISD::TargetFrameIndex:
379 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
380 break;
381 case ISD::JumpTable:
382 case ISD::TargetJumpTable:
383 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
384 break;
385 case ISD::ConstantPool:
386 case ISD::TargetConstantPool: {
387 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
388 ID.AddInteger(CP->getAlignment());
389 ID.AddInteger(CP->getOffset());
390 if (CP->isMachineConstantPoolEntry())
391 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
392 else
393 ID.AddPointer(CP->getConstVal());
394 break;
395 }
396 case ISD::LOAD: {
397 LoadSDNode *LD = cast<LoadSDNode>(N);
398 ID.AddInteger(LD->getAddressingMode());
399 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000400 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000401 ID.AddInteger(LD->getAlignment());
402 ID.AddInteger(LD->isVolatile());
403 break;
404 }
405 case ISD::STORE: {
406 StoreSDNode *ST = cast<StoreSDNode>(N);
407 ID.AddInteger(ST->getAddressingMode());
408 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000409 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dale Johannesen2041a0e2007-03-30 21:38:07 +0000410 ID.AddInteger(ST->getAlignment());
411 ID.AddInteger(ST->isVolatile());
412 break;
413 }
Jim Laskey583bd472006-10-27 23:46:08 +0000414 }
415}
416
417//===----------------------------------------------------------------------===//
Jim Laskey58b968b2005-08-17 20:08:02 +0000418// SelectionDAG Class
419//===----------------------------------------------------------------------===//
Chris Lattnerb48da392005-01-23 04:39:44 +0000420
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000421/// RemoveDeadNodes - This method deletes all unreachable nodes in the
Chris Lattner190a4182006-08-04 17:45:20 +0000422/// SelectionDAG.
423void SelectionDAG::RemoveDeadNodes() {
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000424 // Create a dummy node (which is not added to allnodes), that adds a reference
425 // to the root node, preventing it from being deleted.
Chris Lattner95038592005-10-05 06:35:28 +0000426 HandleSDNode Dummy(getRoot());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000427
Chris Lattner190a4182006-08-04 17:45:20 +0000428 SmallVector<SDNode*, 128> DeadNodes;
Chris Lattnerf469cb62005-11-08 18:52:27 +0000429
Chris Lattner190a4182006-08-04 17:45:20 +0000430 // Add all obviously-dead nodes to the DeadNodes worklist.
Chris Lattnerde202b32005-11-09 23:47:37 +0000431 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
Chris Lattner190a4182006-08-04 17:45:20 +0000432 if (I->use_empty())
433 DeadNodes.push_back(I);
434
435 // Process the worklist, deleting the nodes and adding their uses to the
436 // worklist.
437 while (!DeadNodes.empty()) {
438 SDNode *N = DeadNodes.back();
439 DeadNodes.pop_back();
440
441 // Take the node out of the appropriate CSE map.
442 RemoveNodeFromCSEMaps(N);
443
444 // Next, brutally remove the operand list. This is safe to do, as there are
445 // no cycles in the graph.
446 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
447 SDNode *Operand = I->Val;
448 Operand->removeUser(N);
449
450 // Now that we removed this operand, see if there are no uses of it left.
451 if (Operand->use_empty())
452 DeadNodes.push_back(Operand);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000453 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000454 if (N->OperandsNeedDelete)
455 delete[] N->OperandList;
Chris Lattner190a4182006-08-04 17:45:20 +0000456 N->OperandList = 0;
457 N->NumOperands = 0;
458
459 // Finally, remove N itself.
460 AllNodes.erase(N);
Chris Lattnerf469cb62005-11-08 18:52:27 +0000461 }
462
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000463 // If the root changed (e.g. it was a dead load, update the root).
Chris Lattner95038592005-10-05 06:35:28 +0000464 setRoot(Dummy.getValue());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000465}
466
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000467void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Evan Cheng130a6472006-10-12 20:34:05 +0000468 SmallVector<SDNode*, 16> DeadNodes;
469 DeadNodes.push_back(N);
470
471 // Process the worklist, deleting the nodes and adding their uses to the
472 // worklist.
473 while (!DeadNodes.empty()) {
474 SDNode *N = DeadNodes.back();
475 DeadNodes.pop_back();
476
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000477 if (UpdateListener)
478 UpdateListener->NodeDeleted(N);
479
Evan Cheng130a6472006-10-12 20:34:05 +0000480 // Take the node out of the appropriate CSE map.
481 RemoveNodeFromCSEMaps(N);
482
483 // Next, brutally remove the operand list. This is safe to do, as there are
484 // no cycles in the graph.
485 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
486 SDNode *Operand = I->Val;
487 Operand->removeUser(N);
488
489 // Now that we removed this operand, see if there are no uses of it left.
490 if (Operand->use_empty())
491 DeadNodes.push_back(Operand);
492 }
Chris Lattner63e3f142007-02-04 07:28:00 +0000493 if (N->OperandsNeedDelete)
494 delete[] N->OperandList;
Evan Cheng130a6472006-10-12 20:34:05 +0000495 N->OperandList = 0;
496 N->NumOperands = 0;
497
498 // Finally, remove N itself.
Evan Cheng130a6472006-10-12 20:34:05 +0000499 AllNodes.erase(N);
500 }
501}
502
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000503void SelectionDAG::DeleteNode(SDNode *N) {
504 assert(N->use_empty() && "Cannot delete a node that is not dead!");
505
506 // First take this out of the appropriate CSE map.
507 RemoveNodeFromCSEMaps(N);
508
Chris Lattner1e111c72005-09-07 05:37:01 +0000509 // Finally, remove uses due to operands of this node, remove from the
510 // AllNodes list, and delete the node.
511 DeleteNodeNotInCSEMaps(N);
512}
513
514void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
515
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000516 // Remove it from the AllNodes list.
Chris Lattnerde202b32005-11-09 23:47:37 +0000517 AllNodes.remove(N);
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000518
519 // Drop all of the operands and decrement used nodes use counts.
Chris Lattner65113b22005-11-08 22:07:03 +0000520 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
521 I->Val->removeUser(N);
Chris Lattner63e3f142007-02-04 07:28:00 +0000522 if (N->OperandsNeedDelete)
523 delete[] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000524 N->OperandList = 0;
525 N->NumOperands = 0;
Chris Lattnerc26aefa2005-08-29 21:59:31 +0000526
527 delete N;
528}
529
Chris Lattner149c58c2005-08-16 18:17:10 +0000530/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
531/// correspond to it. This is useful when we're about to delete or repurpose
532/// the node. We don't want future request for structurally identical nodes
533/// to return N anymore.
534void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
Chris Lattner6621e3b2005-09-02 19:15:44 +0000535 bool Erased = false;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000536 switch (N->getOpcode()) {
Chris Lattner95038592005-10-05 06:35:28 +0000537 case ISD::HANDLENODE: return; // noop.
Chris Lattner36ce6912005-11-29 06:21:05 +0000538 case ISD::STRING:
539 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
540 break;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000541 case ISD::CONDCODE:
542 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
543 "Cond code doesn't exist!");
Chris Lattner6621e3b2005-09-02 19:15:44 +0000544 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000545 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
546 break;
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000547 case ISD::ExternalSymbol:
Chris Lattner6621e3b2005-09-02 19:15:44 +0000548 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000549 break;
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000550 case ISD::TargetExternalSymbol:
Chris Lattner809ec112006-01-28 10:09:25 +0000551 Erased =
552 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000553 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000554 case ISD::VALUETYPE: {
555 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
556 if (MVT::isExtendedVT(VT)) {
557 Erased = ExtendedValueTypeNodes.erase(VT);
558 } else {
559 Erased = ValueTypeNodes[VT] != 0;
560 ValueTypeNodes[VT] = 0;
561 }
Chris Lattner15e4b012005-07-10 00:07:11 +0000562 break;
Duncan Sandsf411b832007-10-17 13:49:58 +0000563 }
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000564 default:
Chris Lattner4a283e92006-08-11 18:38:11 +0000565 // Remove it from the CSE Map.
566 Erased = CSEMap.RemoveNode(N);
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000567 break;
568 }
Chris Lattner6621e3b2005-09-02 19:15:44 +0000569#ifndef NDEBUG
570 // Verify that the node was actually in one of the CSE maps, unless it has a
571 // flag result (which cannot be CSE'd) or is one of the special cases that are
572 // not subject to CSE.
573 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
Chris Lattner70814bc2006-01-29 07:58:15 +0000574 !N->isTargetOpcode()) {
Dan Gohmanb5bec2b2007-06-19 14:13:56 +0000575 N->dump(this);
Bill Wendling832171c2006-12-07 20:04:42 +0000576 cerr << "\n";
Chris Lattner6621e3b2005-09-02 19:15:44 +0000577 assert(0 && "Node is not in map!");
578 }
579#endif
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000580}
581
Chris Lattner8b8749f2005-08-17 19:00:20 +0000582/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
583/// has been taken out and modified in some way. If the specified node already
584/// exists in the CSE maps, do not modify the maps, but return the existing node
585/// instead. If it doesn't exist, add it and return null.
586///
587SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
588 assert(N->getNumOperands() && "This is a leaf node!");
Chris Lattner70814bc2006-01-29 07:58:15 +0000589 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerfe14b342005-12-01 23:14:50 +0000590 return 0; // Never add these nodes.
Chris Lattnerc85a9f32005-11-30 18:20:52 +0000591
Chris Lattner9f8cc692005-12-19 22:21:21 +0000592 // Check that remaining values produced are not flags.
593 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
594 if (N->getValueType(i) == MVT::Flag)
595 return 0; // Never CSE anything that produces a flag.
596
Chris Lattnera5682852006-08-07 23:03:03 +0000597 SDNode *New = CSEMap.GetOrInsertNode(N);
598 if (New != N) return New; // Node already existed.
Chris Lattner8b8749f2005-08-17 19:00:20 +0000599 return 0;
Chris Lattner8b8749f2005-08-17 19:00:20 +0000600}
601
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000602/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
603/// were replaced with those specified. If this node is never memoized,
604/// return null, otherwise return a pointer to the slot it would take. If a
605/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000606SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
607 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000608 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000609 return 0; // Never add these nodes.
610
611 // Check that remaining values produced are not flags.
612 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
613 if (N->getValueType(i) == MVT::Flag)
614 return 0; // Never CSE anything that produces a flag.
615
Chris Lattner63e3f142007-02-04 07:28:00 +0000616 SDOperand Ops[] = { Op };
Jim Laskey583bd472006-10-27 23:46:08 +0000617 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000618 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +0000619 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000620}
621
622/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
623/// were replaced with those specified. If this node is never memoized,
624/// return null, otherwise return a pointer to the slot it would take. If a
625/// node already exists with these operands, the slot will be non-null.
Chris Lattnera5682852006-08-07 23:03:03 +0000626SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
627 SDOperand Op1, SDOperand Op2,
628 void *&InsertPos) {
629 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
630 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[] = { Op1, Op2 };
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, 2);
Chris Lattnera5682852006-08-07 23:03:03 +0000640 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
641}
642
643
644/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
645/// were replaced with those specified. If this node is never memoized,
646/// return null, otherwise return a pointer to the slot it would take. If a
647/// node already exists with these operands, the slot will be non-null.
648SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000649 const SDOperand *Ops,unsigned NumOps,
Chris Lattnera5682852006-08-07 23:03:03 +0000650 void *&InsertPos) {
Chris Lattner70814bc2006-01-29 07:58:15 +0000651 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000652 return 0; // Never add these nodes.
653
654 // Check that remaining values produced are not flags.
655 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
656 if (N->getValueType(i) == MVT::Flag)
657 return 0; // Never CSE anything that produces a flag.
658
Jim Laskey583bd472006-10-27 23:46:08 +0000659 FoldingSetNodeID ID;
Dan Gohman575e2f42007-06-04 15:49:41 +0000660 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
Jim Laskey583bd472006-10-27 23:46:08 +0000661
Evan Cheng9629aba2006-10-11 01:47:58 +0000662 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
663 ID.AddInteger(LD->getAddressingMode());
664 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000665 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng9629aba2006-10-11 01:47:58 +0000666 ID.AddInteger(LD->getAlignment());
667 ID.AddInteger(LD->isVolatile());
Evan Cheng8b2794a2006-10-13 21:14:26 +0000668 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
669 ID.AddInteger(ST->getAddressingMode());
670 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000671 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000672 ID.AddInteger(ST->getAlignment());
673 ID.AddInteger(ST->isVolatile());
Evan Cheng9629aba2006-10-11 01:47:58 +0000674 }
Jim Laskey583bd472006-10-27 23:46:08 +0000675
Chris Lattnera5682852006-08-07 23:03:03 +0000676 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +0000677}
Chris Lattner8b8749f2005-08-17 19:00:20 +0000678
Chris Lattner0e12e6e2005-01-07 21:09:16 +0000679
Chris Lattner78ec3112003-08-11 14:57:33 +0000680SelectionDAG::~SelectionDAG() {
Chris Lattnerde202b32005-11-09 23:47:37 +0000681 while (!AllNodes.empty()) {
682 SDNode *N = AllNodes.begin();
Chris Lattner213a16c2006-08-14 22:19:25 +0000683 N->SetNextInBucket(0);
Chris Lattner63e3f142007-02-04 07:28:00 +0000684 if (N->OperandsNeedDelete)
685 delete [] N->OperandList;
Chris Lattner65113b22005-11-08 22:07:03 +0000686 N->OperandList = 0;
687 N->NumOperands = 0;
Chris Lattnerde202b32005-11-09 23:47:37 +0000688 AllNodes.pop_front();
Chris Lattner65113b22005-11-08 22:07:03 +0000689 }
Chris Lattner78ec3112003-08-11 14:57:33 +0000690}
691
Chris Lattner0f2287b2005-04-13 02:38:18 +0000692SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
Chris Lattner51679c42005-04-13 19:41:05 +0000693 if (Op.getValueType() == VT) return Op;
Jeff Cohen19bb2282005-05-10 02:22:38 +0000694 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
Chris Lattner0f2287b2005-04-13 02:38:18 +0000695 return getNode(ISD::AND, Op.getValueType(), Op,
696 getConstant(Imm, Op.getValueType()));
697}
698
Chris Lattner36ce6912005-11-29 06:21:05 +0000699SDOperand SelectionDAG::getString(const std::string &Val) {
700 StringSDNode *&N = StringNodes[Val];
701 if (!N) {
702 N = new StringSDNode(Val);
703 AllNodes.push_back(N);
704 }
705 return SDOperand(N, 0);
706}
707
Chris Lattner61b09412006-08-11 21:01:22 +0000708SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohman6394b092008-02-08 22:59:30 +0000709 MVT::ValueType EltVT =
710 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
711
712 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
713}
714
715SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Chris Lattner37bfbb42005-08-17 00:34:06 +0000716 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman89081322007-12-12 22:21:26 +0000717
718 MVT::ValueType EltVT =
719 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattner37bfbb42005-08-17 00:34:06 +0000720
Dan Gohman6394b092008-02-08 22:59:30 +0000721 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
722 "APInt size does not match type size!");
Chris Lattner61b09412006-08-11 21:01:22 +0000723
724 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
Jim Laskey583bd472006-10-27 23:46:08 +0000725 FoldingSetNodeID ID;
Dan Gohman89081322007-12-12 22:21:26 +0000726 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000727 ID.Add(Val);
Chris Lattner61b09412006-08-11 21:01:22 +0000728 void *IP = 0;
Dan Gohman89081322007-12-12 22:21:26 +0000729 SDNode *N = NULL;
730 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
731 if (!MVT::isVector(VT))
732 return SDOperand(N, 0);
733 if (!N) {
734 N = new ConstantSDNode(isT, Val, EltVT);
735 CSEMap.InsertNode(N, IP);
736 AllNodes.push_back(N);
737 }
738
739 SDOperand Result(N, 0);
740 if (MVT::isVector(VT)) {
741 SmallVector<SDOperand, 8> Ops;
742 Ops.assign(MVT::getVectorNumElements(VT), Result);
743 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
744 }
745 return Result;
Chris Lattner78ec3112003-08-11 14:57:33 +0000746}
747
Chris Lattner0bd48932008-01-17 07:00:52 +0000748SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
749 return getConstant(Val, TLI.getPointerTy(), isTarget);
750}
751
752
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000753SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000754 bool isTarget) {
Chris Lattnerc3aae252005-01-07 07:46:32 +0000755 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000756
Dan Gohman7f321562007-06-25 16:23:39 +0000757 MVT::ValueType EltVT =
758 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000759
Chris Lattnerd8658612005-02-17 20:17:32 +0000760 // Do the map lookup using the actual bit pattern for the floating point
761 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
762 // we don't have issues with SNANs.
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000763 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
Jim Laskey583bd472006-10-27 23:46:08 +0000764 FoldingSetNodeID ID;
Dan Gohman7f321562007-06-25 16:23:39 +0000765 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenek1f801fa2008-02-11 17:24:50 +0000766 ID.Add(V);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000767 void *IP = 0;
Evan Chengc908dcd2007-06-29 21:36:04 +0000768 SDNode *N = NULL;
769 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
770 if (!MVT::isVector(VT))
771 return SDOperand(N, 0);
772 if (!N) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000773 N = new ConstantFPSDNode(isTarget, V, EltVT);
Evan Chengc908dcd2007-06-29 21:36:04 +0000774 CSEMap.InsertNode(N, IP);
775 AllNodes.push_back(N);
776 }
777
Dan Gohman7f321562007-06-25 16:23:39 +0000778 SDOperand Result(N, 0);
779 if (MVT::isVector(VT)) {
780 SmallVector<SDOperand, 8> Ops;
781 Ops.assign(MVT::getVectorNumElements(VT), Result);
782 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
783 }
784 return Result;
Chris Lattnerc3aae252005-01-07 07:46:32 +0000785}
786
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000787SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
788 bool isTarget) {
789 MVT::ValueType EltVT =
790 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
791 if (EltVT==MVT::f32)
792 return getConstantFP(APFloat((float)Val), VT, isTarget);
793 else
794 return getConstantFP(APFloat(Val), VT, isTarget);
795}
796
Chris Lattnerc3aae252005-01-07 07:46:32 +0000797SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
Chris Lattner61b09412006-08-11 21:01:22 +0000798 MVT::ValueType VT, int Offset,
799 bool isTargetGA) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000800 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
801 unsigned Opc;
802 if (GVar && GVar->isThreadLocal())
803 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
804 else
805 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
Jim Laskey583bd472006-10-27 23:46:08 +0000806 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000807 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000808 ID.AddPointer(GV);
809 ID.AddInteger(Offset);
810 void *IP = 0;
811 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
812 return SDOperand(E, 0);
813 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
814 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000815 AllNodes.push_back(N);
816 return SDOperand(N, 0);
817}
818
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000819SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
820 bool isTarget) {
821 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
Jim Laskey583bd472006-10-27 23:46:08 +0000822 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000823 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000824 ID.AddInteger(FI);
825 void *IP = 0;
826 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
827 return SDOperand(E, 0);
828 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
829 CSEMap.InsertNode(N, IP);
Chris Lattnerafb2dd42005-08-25 00:43:01 +0000830 AllNodes.push_back(N);
831 return SDOperand(N, 0);
832}
833
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000834SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
835 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
Jim Laskey583bd472006-10-27 23:46:08 +0000836 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000837 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000838 ID.AddInteger(JTI);
839 void *IP = 0;
840 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
841 return SDOperand(E, 0);
842 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
843 CSEMap.InsertNode(N, IP);
Nate Begeman37efe672006-04-22 18:53:45 +0000844 AllNodes.push_back(N);
845 return SDOperand(N, 0);
846}
847
Evan Chengb8973bd2006-01-31 22:23:14 +0000848SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000849 unsigned Alignment, int Offset,
850 bool isTarget) {
851 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000852 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000853 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000854 ID.AddInteger(Alignment);
855 ID.AddInteger(Offset);
Chris Lattner130fc132006-08-14 20:12:44 +0000856 ID.AddPointer(C);
Chris Lattnerc9f8f412006-08-11 21:55:30 +0000857 void *IP = 0;
858 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
859 return SDOperand(E, 0);
860 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
861 CSEMap.InsertNode(N, IP);
Chris Lattner4025a9c2005-08-25 05:03:06 +0000862 AllNodes.push_back(N);
863 return SDOperand(N, 0);
864}
865
Chris Lattnerc3aae252005-01-07 07:46:32 +0000866
Evan Chengd6594ae2006-09-12 21:00:35 +0000867SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
868 MVT::ValueType VT,
869 unsigned Alignment, int Offset,
870 bool isTarget) {
871 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
Jim Laskey583bd472006-10-27 23:46:08 +0000872 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000873 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
Evan Chengd6594ae2006-09-12 21:00:35 +0000874 ID.AddInteger(Alignment);
875 ID.AddInteger(Offset);
Jim Laskey583bd472006-10-27 23:46:08 +0000876 C->AddSelectionDAGCSEId(ID);
Evan Chengd6594ae2006-09-12 21:00:35 +0000877 void *IP = 0;
878 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
879 return SDOperand(E, 0);
880 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
881 CSEMap.InsertNode(N, IP);
882 AllNodes.push_back(N);
883 return SDOperand(N, 0);
884}
885
886
Chris Lattnerc3aae252005-01-07 07:46:32 +0000887SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
Jim Laskey583bd472006-10-27 23:46:08 +0000888 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000889 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000890 ID.AddPointer(MBB);
891 void *IP = 0;
892 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
893 return SDOperand(E, 0);
894 SDNode *N = new BasicBlockSDNode(MBB);
895 CSEMap.InsertNode(N, IP);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000896 AllNodes.push_back(N);
897 return SDOperand(N, 0);
898}
899
Chris Lattner15e4b012005-07-10 00:07:11 +0000900SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsf411b832007-10-17 13:49:58 +0000901 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Chris Lattner15e4b012005-07-10 00:07:11 +0000902 ValueTypeNodes.resize(VT+1);
Chris Lattner15e4b012005-07-10 00:07:11 +0000903
Duncan Sandsf411b832007-10-17 13:49:58 +0000904 SDNode *&N = MVT::isExtendedVT(VT) ?
905 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
906
907 if (N) return SDOperand(N, 0);
908 N = new VTSDNode(VT);
909 AllNodes.push_back(N);
910 return SDOperand(N, 0);
Chris Lattner15e4b012005-07-10 00:07:11 +0000911}
912
Chris Lattnerc3aae252005-01-07 07:46:32 +0000913SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
914 SDNode *&N = ExternalSymbols[Sym];
915 if (N) return SDOperand(N, 0);
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000916 N = new ExternalSymbolSDNode(false, Sym, VT);
917 AllNodes.push_back(N);
918 return SDOperand(N, 0);
919}
920
Chris Lattner809ec112006-01-28 10:09:25 +0000921SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
922 MVT::ValueType VT) {
Andrew Lenharth2a2de662005-10-23 03:40:17 +0000923 SDNode *&N = TargetExternalSymbols[Sym];
924 if (N) return SDOperand(N, 0);
925 N = new ExternalSymbolSDNode(true, Sym, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +0000926 AllNodes.push_back(N);
927 return SDOperand(N, 0);
928}
929
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000930SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
931 if ((unsigned)Cond >= CondCodeNodes.size())
932 CondCodeNodes.resize(Cond+1);
933
Chris Lattner079a27a2005-08-09 20:40:02 +0000934 if (CondCodeNodes[Cond] == 0) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000935 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
Chris Lattner079a27a2005-08-09 20:40:02 +0000936 AllNodes.push_back(CondCodeNodes[Cond]);
937 }
Chris Lattner7cf7e3f2005-08-09 20:20:18 +0000938 return SDOperand(CondCodeNodes[Cond], 0);
939}
940
Chris Lattner0fdd7682005-08-30 22:38:38 +0000941SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +0000942 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000943 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000944 ID.AddInteger(RegNo);
945 void *IP = 0;
946 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
947 return SDOperand(E, 0);
948 SDNode *N = new RegisterSDNode(RegNo, VT);
949 CSEMap.InsertNode(N, IP);
950 AllNodes.push_back(N);
951 return SDOperand(N, 0);
952}
953
Dan Gohman69de1932008-02-06 22:27:42 +0000954SDOperand SelectionDAG::getSrcValue(const Value *V) {
Chris Lattner61b09412006-08-11 21:01:22 +0000955 assert((!V || isa<PointerType>(V->getType())) &&
956 "SrcValue is not a pointer?");
957
Jim Laskey583bd472006-10-27 23:46:08 +0000958 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +0000959 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
Chris Lattner61b09412006-08-11 21:01:22 +0000960 ID.AddPointer(V);
Dan Gohman69de1932008-02-06 22:27:42 +0000961
Chris Lattner61b09412006-08-11 21:01:22 +0000962 void *IP = 0;
963 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
964 return SDOperand(E, 0);
Dan Gohman69de1932008-02-06 22:27:42 +0000965
966 SDNode *N = new SrcValueSDNode(V);
967 CSEMap.InsertNode(N, IP);
968 AllNodes.push_back(N);
969 return SDOperand(N, 0);
970}
971
972SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
973 const Value *v = MO.getValue();
974 assert((!v || isa<PointerType>(v->getType())) &&
975 "SrcValue is not a pointer?");
976
977 FoldingSetNodeID ID;
978 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
979 ID.AddPointer(v);
980 ID.AddInteger(MO.getFlags());
981 ID.AddInteger(MO.getOffset());
982 ID.AddInteger(MO.getSize());
983 ID.AddInteger(MO.getAlignment());
984
985 void *IP = 0;
986 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
987 return SDOperand(E, 0);
988
989 SDNode *N = new MemOperandSDNode(MO);
Chris Lattner61b09412006-08-11 21:01:22 +0000990 CSEMap.InsertNode(N, IP);
991 AllNodes.push_back(N);
992 return SDOperand(N, 0);
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +0000993}
994
Chris Lattner37ce9df2007-10-15 17:47:20 +0000995/// CreateStackTemporary - Create a stack temporary, suitable for holding the
996/// specified value type.
997SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
998 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
999 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1000 const Type *Ty = MVT::getTypeForValueType(VT);
1001 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1002 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1003 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1004}
1005
1006
Chris Lattner51dabfb2006-10-14 00:41:01 +00001007SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1008 SDOperand N2, ISD::CondCode Cond) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00001009 // These setcc operations always fold.
1010 switch (Cond) {
1011 default: break;
1012 case ISD::SETFALSE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001013 case ISD::SETFALSE2: return getConstant(0, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001014 case ISD::SETTRUE:
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001015 case ISD::SETTRUE2: return getConstant(1, VT);
Chris Lattnera83385f2006-04-27 05:01:07 +00001016
1017 case ISD::SETOEQ:
1018 case ISD::SETOGT:
1019 case ISD::SETOGE:
1020 case ISD::SETOLT:
1021 case ISD::SETOLE:
1022 case ISD::SETONE:
1023 case ISD::SETO:
1024 case ISD::SETUO:
1025 case ISD::SETUEQ:
1026 case ISD::SETUNE:
1027 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1028 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001029 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001030
Chris Lattner67255a12005-04-07 18:14:58 +00001031 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
1032 uint64_t C2 = N2C->getValue();
1033 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
1034 uint64_t C1 = N1C->getValue();
Chris Lattner51dabfb2006-10-14 00:41:01 +00001035
Chris Lattnerc3aae252005-01-07 07:46:32 +00001036 // Sign extend the operands if required
1037 if (ISD::isSignedIntSetCC(Cond)) {
1038 C1 = N1C->getSignExtended();
1039 C2 = N2C->getSignExtended();
1040 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001041
Chris Lattnerc3aae252005-01-07 07:46:32 +00001042 switch (Cond) {
1043 default: assert(0 && "Unknown integer setcc!");
Chris Lattnerf30b73b2005-01-18 02:52:03 +00001044 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1045 case ISD::SETNE: return getConstant(C1 != C2, VT);
1046 case ISD::SETULT: return getConstant(C1 < C2, VT);
1047 case ISD::SETUGT: return getConstant(C1 > C2, VT);
1048 case ISD::SETULE: return getConstant(C1 <= C2, VT);
1049 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
1050 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
1051 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
1052 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
1053 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001054 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001055 }
Chris Lattner67255a12005-04-07 18:14:58 +00001056 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001057 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
1058 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen5927d8e2007-10-14 01:56:47 +00001059 // No compile time operations on this type yet.
1060 if (N1C->getValueType(0) == MVT::ppcf128)
1061 return SDOperand();
Dale Johanneseneaf08942007-08-31 04:03:46 +00001062
1063 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Chris Lattnerc3aae252005-01-07 07:46:32 +00001064 switch (Cond) {
Dale Johanneseneaf08942007-08-31 04:03:46 +00001065 default: break;
Dale Johannesenee847682007-08-31 17:03:33 +00001066 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1067 return getNode(ISD::UNDEF, VT);
1068 // fall through
1069 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1070 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1071 return getNode(ISD::UNDEF, VT);
1072 // fall through
1073 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001074 R==APFloat::cmpLessThan, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001075 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1076 return getNode(ISD::UNDEF, VT);
1077 // fall through
1078 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1079 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1080 return getNode(ISD::UNDEF, VT);
1081 // fall through
1082 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1083 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1084 return getNode(ISD::UNDEF, VT);
1085 // fall through
1086 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001087 R==APFloat::cmpEqual, VT);
Dale Johannesenee847682007-08-31 17:03:33 +00001088 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1089 return getNode(ISD::UNDEF, VT);
1090 // fall through
1091 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johanneseneaf08942007-08-31 04:03:46 +00001092 R==APFloat::cmpEqual, VT);
1093 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1094 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1095 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1096 R==APFloat::cmpEqual, VT);
1097 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1098 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1099 R==APFloat::cmpLessThan, VT);
1100 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1101 R==APFloat::cmpUnordered, VT);
1102 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1103 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001104 }
1105 } else {
1106 // Ensure that the constant occurs on the RHS.
Chris Lattnerbd8625b2005-08-09 23:09:05 +00001107 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001108 }
Chris Lattner51dabfb2006-10-14 00:41:01 +00001109
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00001110 // Could not fold it.
1111 return SDOperand();
Chris Lattnerc3aae252005-01-07 07:46:32 +00001112}
1113
Dan Gohmanea859be2007-06-22 14:59:07 +00001114/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1115/// this predicate to simplify operations downstream. Mask is known to be zero
1116/// for bits that V cannot have.
1117bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
1118 unsigned Depth) const {
1119 // The masks are not wide enough to represent this type! Should use APInt.
1120 if (Op.getValueType() == MVT::i128)
1121 return false;
1122
1123 uint64_t KnownZero, KnownOne;
1124 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1125 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1126 return (KnownZero & Mask) == Mask;
1127}
1128
1129/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1130/// known to be either zero or one and return them in the KnownZero/KnownOne
1131/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1132/// processing.
Dan Gohman977a76f2008-02-13 22:28:48 +00001133void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001134 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00001135 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001136 unsigned BitWidth = Mask.getBitWidth();
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001137 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1138 "Mask size mismatches value type size!");
1139
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001140 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanea859be2007-06-22 14:59:07 +00001141 if (Depth == 6 || Mask == 0)
1142 return; // Limit search depth.
1143
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001144 APInt KnownZero2, KnownOne2;
Dan Gohmanea859be2007-06-22 14:59:07 +00001145
1146 switch (Op.getOpcode()) {
1147 case ISD::Constant:
1148 // We know all of the bits for a constant!
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001149 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001150 KnownZero = ~KnownOne & Mask;
1151 return;
1152 case ISD::AND:
1153 // If either the LHS or the RHS are Zero, the result is zero.
1154 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001155 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1156 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001157 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1158 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1159
1160 // Output known-1 bits are only known if set in both the LHS & RHS.
1161 KnownOne &= KnownOne2;
1162 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1163 KnownZero |= KnownZero2;
1164 return;
1165 case ISD::OR:
1166 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohman977a76f2008-02-13 22:28:48 +00001167 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1168 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001169 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1170 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1171
1172 // Output known-0 bits are only known if clear in both the LHS & RHS.
1173 KnownZero &= KnownZero2;
1174 // Output known-1 are known to be set if set in either the LHS | RHS.
1175 KnownOne |= KnownOne2;
1176 return;
1177 case ISD::XOR: {
1178 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1179 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1180 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1181 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1182
1183 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001184 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanea859be2007-06-22 14:59:07 +00001185 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1186 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1187 KnownZero = KnownZeroOut;
1188 return;
1189 }
1190 case ISD::SELECT:
1191 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1192 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1193 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1194 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1195
1196 // Only known if known in both the LHS and RHS.
1197 KnownOne &= KnownOne2;
1198 KnownZero &= KnownZero2;
1199 return;
1200 case ISD::SELECT_CC:
1201 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1202 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1203 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1204 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1205
1206 // Only known if known in both the LHS and RHS.
1207 KnownOne &= KnownOne2;
1208 KnownZero &= KnownZero2;
1209 return;
1210 case ISD::SETCC:
1211 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001212 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1213 BitWidth > 1)
1214 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001215 return;
1216 case ISD::SHL:
1217 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1218 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001219 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(SA->getValue()),
Dan Gohmanea859be2007-06-22 14:59:07 +00001220 KnownZero, KnownOne, Depth+1);
1221 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1222 KnownZero <<= SA->getValue();
1223 KnownOne <<= SA->getValue();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001224 // low bits known zero.
1225 KnownZero |= APInt::getLowBitsSet(BitWidth, SA->getValue());
Dan Gohmanea859be2007-06-22 14:59:07 +00001226 }
1227 return;
1228 case ISD::SRL:
1229 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1230 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001231 unsigned ShAmt = SA->getValue();
1232
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001233 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanea859be2007-06-22 14:59:07 +00001234 KnownZero, KnownOne, Depth+1);
1235 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001236 KnownZero = KnownZero.lshr(ShAmt);
1237 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001238
Dan Gohman72d2fd52008-02-13 22:43:25 +00001239 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001240 KnownZero |= HighBits; // High bits known zero.
1241 }
1242 return;
1243 case ISD::SRA:
1244 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001245 unsigned ShAmt = SA->getValue();
1246
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001247 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001248 // If any of the demanded bits are produced by the sign extension, we also
1249 // demand the input sign bit.
Dan Gohman72d2fd52008-02-13 22:43:25 +00001250 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1251 if (HighBits.getBoolValue())
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001252 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001253
1254 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1255 Depth+1);
1256 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001257 KnownZero = KnownZero.lshr(ShAmt);
1258 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanea859be2007-06-22 14:59:07 +00001259
1260 // Handle the sign bits.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001261 APInt SignBit = APInt::getSignBit(BitWidth);
1262 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanea859be2007-06-22 14:59:07 +00001263
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001264 if (!!(KnownZero & SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001265 KnownZero |= HighBits; // New bits are known zero.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001266 } else if (!!(KnownOne & SignBit)) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001267 KnownOne |= HighBits; // New bits are known one.
1268 }
1269 }
1270 return;
1271 case ISD::SIGN_EXTEND_INREG: {
1272 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001273 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohmanea859be2007-06-22 14:59:07 +00001274
1275 // Sign extension. Compute the demanded bits in the result that are not
1276 // present in the input.
Dan Gohman977a76f2008-02-13 22:28:48 +00001277 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001278
Dan Gohman977a76f2008-02-13 22:28:48 +00001279 APInt InSignBit = APInt::getSignBit(EBits);
1280 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001281
1282 // If the sign extended bits are demanded, we know that the sign
1283 // bit is demanded.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001284 InSignBit.zext(BitWidth);
Dan Gohman977a76f2008-02-13 22:28:48 +00001285 if (NewBits.getBoolValue())
Dan Gohmanea859be2007-06-22 14:59:07 +00001286 InputDemandedBits |= InSignBit;
1287
1288 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1289 KnownZero, KnownOne, Depth+1);
1290 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1291
1292 // If the sign bit of the input is known set or clear, then we know the
1293 // top bits of the result.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001294 if (!!(KnownZero & InSignBit)) { // Input sign bit known clear
Dan Gohmanea859be2007-06-22 14:59:07 +00001295 KnownZero |= NewBits;
1296 KnownOne &= ~NewBits;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001297 } else if (!!(KnownOne & InSignBit)) { // Input sign bit known set
Dan Gohmanea859be2007-06-22 14:59:07 +00001298 KnownOne |= NewBits;
1299 KnownZero &= ~NewBits;
1300 } else { // Input sign bit unknown
1301 KnownZero &= ~NewBits;
1302 KnownOne &= ~NewBits;
1303 }
1304 return;
1305 }
1306 case ISD::CTTZ:
1307 case ISD::CTLZ:
1308 case ISD::CTPOP: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001309 unsigned LowBits = Log2_32(BitWidth)+1;
1310 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1311 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001312 return;
1313 }
1314 case ISD::LOAD: {
1315 if (ISD::isZEXTLoad(Op.Val)) {
1316 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001317 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohman977a76f2008-02-13 22:28:48 +00001318 unsigned MemBits = MVT::getSizeInBits(VT);
1319 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanea859be2007-06-22 14:59:07 +00001320 }
1321 return;
1322 }
1323 case ISD::ZERO_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001324 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1325 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001326 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1327 APInt InMask = Mask;
1328 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001329 KnownZero.trunc(InBits);
1330 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001331 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001332 KnownZero.zext(BitWidth);
1333 KnownOne.zext(BitWidth);
1334 KnownZero |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001335 return;
1336 }
1337 case ISD::SIGN_EXTEND: {
1338 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001339 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001340 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001341 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1342 APInt InMask = Mask;
1343 InMask.trunc(InBits);
Dan Gohmanea859be2007-06-22 14:59:07 +00001344
1345 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohman977a76f2008-02-13 22:28:48 +00001346 // bit is demanded. Temporarily set this bit in the mask for our callee.
1347 if (NewBits.getBoolValue())
1348 InMask |= InSignBit;
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001349
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001350 KnownZero.trunc(InBits);
1351 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001352 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1353
1354 // Note if the sign bit is known to be zero or one.
1355 bool SignBitKnownZero = KnownZero.isNegative();
1356 bool SignBitKnownOne = KnownOne.isNegative();
1357 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1358 "Sign bit can't be known to be both zero and one!");
1359
1360 // If the sign bit wasn't actually demanded by our caller, we don't
1361 // want it set in the KnownZero and KnownOne result values. Reset the
1362 // mask and reapply it to the result values.
1363 InMask = Mask;
1364 InMask.trunc(InBits);
1365 KnownZero &= InMask;
1366 KnownOne &= InMask;
1367
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001368 KnownZero.zext(BitWidth);
1369 KnownOne.zext(BitWidth);
1370
Dan Gohman977a76f2008-02-13 22:28:48 +00001371 // If the sign bit is known zero or one, the top bits match.
1372 if (SignBitKnownZero)
Dan Gohmanea859be2007-06-22 14:59:07 +00001373 KnownZero |= NewBits;
Dan Gohman977a76f2008-02-13 22:28:48 +00001374 else if (SignBitKnownOne)
Dan Gohmanea859be2007-06-22 14:59:07 +00001375 KnownOne |= NewBits;
Dan Gohmanea859be2007-06-22 14:59:07 +00001376 return;
1377 }
1378 case ISD::ANY_EXTEND: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001379 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1380 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001381 APInt InMask = Mask;
1382 InMask.trunc(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001383 KnownZero.trunc(InBits);
1384 KnownOne.trunc(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001385 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001386 KnownZero.zext(BitWidth);
1387 KnownOne.zext(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001388 return;
1389 }
1390 case ISD::TRUNCATE: {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001391 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1392 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman977a76f2008-02-13 22:28:48 +00001393 APInt InMask = Mask;
1394 InMask.zext(InBits);
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001395 KnownZero.zext(InBits);
1396 KnownOne.zext(InBits);
Dan Gohman977a76f2008-02-13 22:28:48 +00001397 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001398 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001399 KnownZero.trunc(BitWidth);
1400 KnownOne.trunc(BitWidth);
Dan Gohmanea859be2007-06-22 14:59:07 +00001401 break;
1402 }
1403 case ISD::AssertZext: {
1404 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001405 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohmanea859be2007-06-22 14:59:07 +00001406 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1407 KnownOne, Depth+1);
1408 KnownZero |= (~InMask) & Mask;
1409 return;
1410 }
Chris Lattnerd268a492007-12-22 21:26:52 +00001411 case ISD::FGETSIGN:
1412 // All bits are zero except the low bit.
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001413 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattnerd268a492007-12-22 21:26:52 +00001414 return;
1415
Dan Gohmanea859be2007-06-22 14:59:07 +00001416 case ISD::ADD: {
1417 // If either the LHS or the RHS are Zero, the result is zero.
1418 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1419 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1420 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1421 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1422
1423 // Output known-0 bits are known if clear or set in both the low clear bits
1424 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1425 // low 3 bits clear.
Dan Gohman977a76f2008-02-13 22:28:48 +00001426 unsigned KnownZeroOut = std::min(KnownZero.countTrailingOnes(),
1427 KnownZero2.countTrailingOnes());
Dan Gohmanea859be2007-06-22 14:59:07 +00001428
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001429 KnownZero = APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1430 KnownOne = APInt(BitWidth, 0);
Dan Gohmanea859be2007-06-22 14:59:07 +00001431 return;
1432 }
1433 case ISD::SUB: {
1434 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1435 if (!CLHS) return;
1436
1437 // We know that the top bits of C-X are clear if X contains less bits
1438 // than C (i.e. no wrap-around can happen). For example, 20-X is
1439 // positive if we can prove that X is >= 0 and < 16.
Dan Gohman977a76f2008-02-13 22:28:48 +00001440 if (CLHS->getAPIntValue().isNonNegative()) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001441 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1442 // NLZ can't be BitWidth with no sign bit
Chris Lattner423be622008-02-14 18:48:56 +00001443 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Dan Gohmanea859be2007-06-22 14:59:07 +00001444 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1445
1446 // If all of the MaskV bits are known to be zero, then we know the output
1447 // top bits are zero, because we now know that the output is from [0-C].
1448 if ((KnownZero & MaskV) == MaskV) {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001449 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1450 // Top bits known zero.
1451 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1452 KnownOne = APInt(BitWidth, 0); // No one bits known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001453 } else {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001454 KnownZero = KnownOne = APInt(BitWidth, 0); // Otherwise, nothing known.
Dan Gohmanea859be2007-06-22 14:59:07 +00001455 }
1456 }
1457 return;
1458 }
1459 default:
1460 // Allow the target to implement this method for its nodes.
1461 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1462 case ISD::INTRINSIC_WO_CHAIN:
1463 case ISD::INTRINSIC_W_CHAIN:
1464 case ISD::INTRINSIC_VOID:
1465 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1466 }
1467 return;
1468 }
1469}
1470
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001471/// ComputeMaskedBits - This is a wrapper around the APInt-using
1472/// form of ComputeMaskedBits for use by clients that haven't been converted
1473/// to APInt yet.
1474void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
1475 uint64_t &KnownZero, uint64_t &KnownOne,
1476 unsigned Depth) const {
Dan Gohmand9fe41c2008-02-13 23:13:32 +00001477 // The masks are not wide enough to represent this type! Should use APInt.
1478 if (Op.getValueType() == MVT::i128)
1479 return;
1480
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00001481 unsigned NumBits = MVT::getSizeInBits(Op.getValueType());
1482 APInt APIntMask(NumBits, Mask);
1483 APInt APIntKnownZero(NumBits, 0);
1484 APInt APIntKnownOne(NumBits, 0);
1485 ComputeMaskedBits(Op, APIntMask, APIntKnownZero, APIntKnownOne, Depth);
1486 KnownZero = APIntKnownZero.getZExtValue();
1487 KnownOne = APIntKnownOne.getZExtValue();
1488}
1489
Dan Gohmanea859be2007-06-22 14:59:07 +00001490/// ComputeNumSignBits - Return the number of times the sign bit of the
1491/// register is replicated into the other bits. We know that at least 1 bit
1492/// is always equal to the sign bit (itself), but other cases can give us
1493/// information. For example, immediately after an "SRA X, 2", we know that
1494/// the top 3 bits are all equal to each other, so we return 3.
1495unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1496 MVT::ValueType VT = Op.getValueType();
1497 assert(MVT::isInteger(VT) && "Invalid VT!");
1498 unsigned VTBits = MVT::getSizeInBits(VT);
1499 unsigned Tmp, Tmp2;
1500
1501 if (Depth == 6)
1502 return 1; // Limit search depth.
1503
1504 switch (Op.getOpcode()) {
1505 default: break;
1506 case ISD::AssertSext:
1507 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1508 return VTBits-Tmp+1;
1509 case ISD::AssertZext:
1510 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1511 return VTBits-Tmp;
1512
1513 case ISD::Constant: {
1514 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1515 // If negative, invert the bits, then look at it.
1516 if (Val & MVT::getIntVTSignBit(VT))
1517 Val = ~Val;
1518
1519 // Shift the bits so they are the leading bits in the int64_t.
1520 Val <<= 64-VTBits;
1521
1522 // Return # leading zeros. We use 'min' here in case Val was zero before
1523 // shifting. We don't want to return '64' as for an i32 "0".
1524 return std::min(VTBits, CountLeadingZeros_64(Val));
1525 }
1526
1527 case ISD::SIGN_EXTEND:
1528 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1529 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1530
1531 case ISD::SIGN_EXTEND_INREG:
1532 // Max of the input and what this extends.
1533 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1534 Tmp = VTBits-Tmp+1;
1535
1536 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1537 return std::max(Tmp, Tmp2);
1538
1539 case ISD::SRA:
1540 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1541 // SRA X, C -> adds C sign bits.
1542 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1543 Tmp += C->getValue();
1544 if (Tmp > VTBits) Tmp = VTBits;
1545 }
1546 return Tmp;
1547 case ISD::SHL:
1548 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1549 // shl destroys sign bits.
1550 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1551 if (C->getValue() >= VTBits || // Bad shift.
1552 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1553 return Tmp - C->getValue();
1554 }
1555 break;
1556 case ISD::AND:
1557 case ISD::OR:
1558 case ISD::XOR: // NOT is handled here.
1559 // Logical binary ops preserve the number of sign bits.
1560 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1561 if (Tmp == 1) return 1; // Early out.
1562 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1563 return std::min(Tmp, Tmp2);
1564
1565 case ISD::SELECT:
1566 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1567 if (Tmp == 1) return 1; // Early out.
1568 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1569 return std::min(Tmp, Tmp2);
1570
1571 case ISD::SETCC:
1572 // If setcc returns 0/-1, all bits are sign bits.
1573 if (TLI.getSetCCResultContents() ==
1574 TargetLowering::ZeroOrNegativeOneSetCCResult)
1575 return VTBits;
1576 break;
1577 case ISD::ROTL:
1578 case ISD::ROTR:
1579 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1580 unsigned RotAmt = C->getValue() & (VTBits-1);
1581
1582 // Handle rotate right by N like a rotate left by 32-N.
1583 if (Op.getOpcode() == ISD::ROTR)
1584 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1585
1586 // If we aren't rotating out all of the known-in sign bits, return the
1587 // number that are left. This handles rotl(sext(x), 1) for example.
1588 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1589 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1590 }
1591 break;
1592 case ISD::ADD:
1593 // Add can have at most one carry bit. Thus we know that the output
1594 // is, at worst, one more bit than the inputs.
1595 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1596 if (Tmp == 1) return 1; // Early out.
1597
1598 // Special case decrementing a value (ADD X, -1):
1599 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1600 if (CRHS->isAllOnesValue()) {
1601 uint64_t KnownZero, KnownOne;
1602 uint64_t Mask = MVT::getIntVTBitMask(VT);
1603 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1604
1605 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1606 // sign bits set.
1607 if ((KnownZero|1) == Mask)
1608 return VTBits;
1609
1610 // If we are subtracting one from a positive number, there is no carry
1611 // out of the result.
1612 if (KnownZero & MVT::getIntVTSignBit(VT))
1613 return Tmp;
1614 }
1615
1616 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1617 if (Tmp2 == 1) return 1;
1618 return std::min(Tmp, Tmp2)-1;
1619 break;
1620
1621 case ISD::SUB:
1622 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1623 if (Tmp2 == 1) return 1;
1624
1625 // Handle NEG.
1626 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1627 if (CLHS->getValue() == 0) {
1628 uint64_t KnownZero, KnownOne;
1629 uint64_t Mask = MVT::getIntVTBitMask(VT);
1630 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1631 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1632 // sign bits set.
1633 if ((KnownZero|1) == Mask)
1634 return VTBits;
1635
1636 // If the input is known to be positive (the sign bit is known clear),
1637 // the output of the NEG has the same number of sign bits as the input.
1638 if (KnownZero & MVT::getIntVTSignBit(VT))
1639 return Tmp2;
1640
1641 // Otherwise, we treat this like a SUB.
1642 }
1643
1644 // Sub can have at most one carry bit. Thus we know that the output
1645 // is, at worst, one more bit than the inputs.
1646 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1647 if (Tmp == 1) return 1; // Early out.
1648 return std::min(Tmp, Tmp2)-1;
1649 break;
1650 case ISD::TRUNCATE:
1651 // FIXME: it's tricky to do anything useful for this, but it is an important
1652 // case for targets like X86.
1653 break;
1654 }
1655
1656 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1657 if (Op.getOpcode() == ISD::LOAD) {
1658 LoadSDNode *LD = cast<LoadSDNode>(Op);
1659 unsigned ExtType = LD->getExtensionType();
1660 switch (ExtType) {
1661 default: break;
1662 case ISD::SEXTLOAD: // '17' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001663 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001664 return VTBits-Tmp+1;
1665 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001666 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanea859be2007-06-22 14:59:07 +00001667 return VTBits-Tmp;
1668 }
1669 }
1670
1671 // Allow the target to implement this method for its nodes.
1672 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1673 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1674 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1675 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1676 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1677 if (NumBits > 1) return NumBits;
1678 }
1679
1680 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1681 // use this information.
1682 uint64_t KnownZero, KnownOne;
1683 uint64_t Mask = MVT::getIntVTBitMask(VT);
1684 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1685
1686 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1687 if (KnownZero & SignBit) { // SignBit is 0
1688 Mask = KnownZero;
1689 } else if (KnownOne & SignBit) { // SignBit is 1;
1690 Mask = KnownOne;
1691 } else {
1692 // Nothing known.
1693 return 1;
1694 }
1695
1696 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1697 // the number of identical bits in the top of the input value.
1698 Mask ^= ~0ULL;
1699 Mask <<= 64-VTBits;
1700 // Return # leading zeros. We use 'min' here in case Val was zero before
1701 // shifting. We don't want to return '64' as for an i32 "0".
1702 return std::min(VTBits, CountLeadingZeros_64(Mask));
1703}
1704
Chris Lattner51dabfb2006-10-14 00:41:01 +00001705
Evan Chenga844bde2008-02-02 04:07:54 +00001706bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1707 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1708 if (!GA) return false;
1709 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1710 if (!GV) return false;
1711 MachineModuleInfo *MMI = getMachineModuleInfo();
1712 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1713}
1714
1715
Chris Lattnerc3aae252005-01-07 07:46:32 +00001716/// getNode - Gets or creates the specified node.
Chris Lattner78ec3112003-08-11 14:57:33 +00001717///
Chris Lattnerc3aae252005-01-07 07:46:32 +00001718SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
Jim Laskey583bd472006-10-27 23:46:08 +00001719 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00001720 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00001721 void *IP = 0;
1722 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1723 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001724 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
Chris Lattner4a283e92006-08-11 18:38:11 +00001725 CSEMap.InsertNode(N, IP);
1726
1727 AllNodes.push_back(N);
Chris Lattnerc3aae252005-01-07 07:46:32 +00001728 return SDOperand(N, 0);
1729}
1730
Chris Lattnerc3aae252005-01-07 07:46:32 +00001731SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1732 SDOperand Operand) {
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001733 unsigned Tmp1;
Chris Lattner94683772005-12-23 05:30:37 +00001734 // Constant fold unary operations with an integer constant operand.
Chris Lattnerc3aae252005-01-07 07:46:32 +00001735 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1736 uint64_t Val = C->getValue();
1737 switch (Opcode) {
1738 default: break;
1739 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
Chris Lattner4ed11b42005-09-02 00:17:32 +00001740 case ISD::ANY_EXTEND:
Chris Lattnerc3aae252005-01-07 07:46:32 +00001741 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1742 case ISD::TRUNCATE: return getConstant(Val, VT);
Dale Johannesen73328d12007-09-19 23:55:34 +00001743 case ISD::UINT_TO_FP:
1744 case ISD::SINT_TO_FP: {
1745 const uint64_t zero[] = {0, 0};
Dale Johannesendb44bf82007-10-16 23:38:29 +00001746 // No compile time operations on this type.
1747 if (VT==MVT::ppcf128)
1748 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00001749 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Neil Boothccf596a2007-10-07 11:45:55 +00001750 (void)apf.convertFromZeroExtendedInteger(&Val,
Dale Johannesen910993e2007-09-21 22:09:37 +00001751 MVT::getSizeInBits(Operand.getValueType()),
1752 Opcode==ISD::SINT_TO_FP,
Dale Johannesen88216af2007-09-30 18:19:03 +00001753 APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00001754 return getConstantFP(apf, VT);
1755 }
Chris Lattner94683772005-12-23 05:30:37 +00001756 case ISD::BIT_CONVERT:
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001757 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
Chris Lattner94683772005-12-23 05:30:37 +00001758 return getConstantFP(BitsToFloat(Val), VT);
Chris Lattnere8a30fd2006-03-24 02:20:47 +00001759 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
Chris Lattner94683772005-12-23 05:30:37 +00001760 return getConstantFP(BitsToDouble(Val), VT);
Chris Lattner94683772005-12-23 05:30:37 +00001761 break;
Nate Begeman1b5db7a2006-01-16 08:07:10 +00001762 case ISD::BSWAP:
1763 switch(VT) {
1764 default: assert(0 && "Invalid bswap!"); break;
1765 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1766 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1767 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1768 }
1769 break;
1770 case ISD::CTPOP:
1771 switch(VT) {
1772 default: assert(0 && "Invalid ctpop!"); break;
1773 case MVT::i1: return getConstant(Val != 0, VT);
1774 case MVT::i8:
1775 Tmp1 = (unsigned)Val & 0xFF;
1776 return getConstant(CountPopulation_32(Tmp1), VT);
1777 case MVT::i16:
1778 Tmp1 = (unsigned)Val & 0xFFFF;
1779 return getConstant(CountPopulation_32(Tmp1), VT);
1780 case MVT::i32:
1781 return getConstant(CountPopulation_32((unsigned)Val), VT);
1782 case MVT::i64:
1783 return getConstant(CountPopulation_64(Val), VT);
1784 }
1785 case ISD::CTLZ:
1786 switch(VT) {
1787 default: assert(0 && "Invalid ctlz!"); break;
1788 case MVT::i1: return getConstant(Val == 0, VT);
1789 case MVT::i8:
1790 Tmp1 = (unsigned)Val & 0xFF;
1791 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1792 case MVT::i16:
1793 Tmp1 = (unsigned)Val & 0xFFFF;
1794 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1795 case MVT::i32:
1796 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1797 case MVT::i64:
1798 return getConstant(CountLeadingZeros_64(Val), VT);
1799 }
1800 case ISD::CTTZ:
1801 switch(VT) {
1802 default: assert(0 && "Invalid cttz!"); break;
1803 case MVT::i1: return getConstant(Val == 0, VT);
1804 case MVT::i8:
1805 Tmp1 = (unsigned)Val | 0x100;
1806 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1807 case MVT::i16:
1808 Tmp1 = (unsigned)Val | 0x10000;
1809 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1810 case MVT::i32:
1811 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1812 case MVT::i64:
1813 return getConstant(CountTrailingZeros_64(Val), VT);
1814 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001815 }
1816 }
1817
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001818 // Constant fold unary operations with a floating point constant operand.
1819 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1820 APFloat V = C->getValueAPF(); // make copy
Chris Lattner0bd48932008-01-17 07:00:52 +00001821 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesendb44bf82007-10-16 23:38:29 +00001822 switch (Opcode) {
1823 case ISD::FNEG:
1824 V.changeSign();
1825 return getConstantFP(V, VT);
1826 case ISD::FABS:
1827 V.clearSign();
1828 return getConstantFP(V, VT);
1829 case ISD::FP_ROUND:
1830 case ISD::FP_EXTEND:
1831 // This can return overflow, underflow, or inexact; we don't care.
1832 // FIXME need to be more flexible about rounding mode.
1833 (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle :
1834 VT==MVT::f64 ? APFloat::IEEEdouble :
1835 VT==MVT::f80 ? APFloat::x87DoubleExtended :
1836 VT==MVT::f128 ? APFloat::IEEEquad :
1837 APFloat::Bogus,
1838 APFloat::rmNearestTiesToEven);
1839 return getConstantFP(V, VT);
1840 case ISD::FP_TO_SINT:
1841 case ISD::FP_TO_UINT: {
1842 integerPart x;
1843 assert(integerPartWidth >= 64);
1844 // FIXME need to be more flexible about rounding mode.
1845 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1846 Opcode==ISD::FP_TO_SINT,
1847 APFloat::rmTowardZero);
1848 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1849 break;
1850 return getConstant(x, VT);
1851 }
1852 case ISD::BIT_CONVERT:
1853 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1854 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1855 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1856 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001857 break;
Dale Johannesendb44bf82007-10-16 23:38:29 +00001858 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001859 }
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00001860 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001861
1862 unsigned OpOpcode = Operand.Val->getOpcode();
1863 switch (Opcode) {
Chris Lattnera93ec3e2005-01-21 18:01:22 +00001864 case ISD::TokenFactor:
1865 return Operand; // Factor of one node? No factor.
Chris Lattner0bd48932008-01-17 07:00:52 +00001866 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Chris Lattnerff33cc42007-04-09 05:23:13 +00001867 case ISD::FP_EXTEND:
1868 assert(MVT::isFloatingPoint(VT) &&
1869 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattner7e2e0332008-01-16 17:59:31 +00001870 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Chris Lattnerff33cc42007-04-09 05:23:13 +00001871 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00001872 case ISD::SIGN_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001873 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1874 "Invalid SIGN_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001875 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001876 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1877 && "Invalid sext node, dst < src!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001878 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1879 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1880 break;
1881 case ISD::ZERO_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001882 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1883 "Invalid ZERO_EXTEND!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001884 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001885 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1886 && "Invalid zext node, dst < src!");
Chris Lattner5a6bace2005-04-07 19:43:53 +00001887 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
Chris Lattner2f0ca792005-01-12 18:51:15 +00001888 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
Chris Lattnerc3aae252005-01-07 07:46:32 +00001889 break;
Chris Lattner4ed11b42005-09-02 00:17:32 +00001890 case ISD::ANY_EXTEND:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001891 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1892 "Invalid ANY_EXTEND!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001893 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsaf47b112007-10-16 09:56:48 +00001894 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1895 && "Invalid anyext node, dst < src!");
Chris Lattner4ed11b42005-09-02 00:17:32 +00001896 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1897 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1898 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1899 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001900 case ISD::TRUNCATE:
Chris Lattnerff33cc42007-04-09 05:23:13 +00001901 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1902 "Invalid TRUNCATE!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001903 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsaf47b112007-10-16 09:56:48 +00001904 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1905 && "Invalid truncate node, src < dst!");
Chris Lattnerc3aae252005-01-07 07:46:32 +00001906 if (OpOpcode == ISD::TRUNCATE)
1907 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
Chris Lattner4ed11b42005-09-02 00:17:32 +00001908 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1909 OpOpcode == ISD::ANY_EXTEND) {
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001910 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsaf47b112007-10-16 09:56:48 +00001911 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1912 < MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001913 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsaf47b112007-10-16 09:56:48 +00001914 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1915 > MVT::getSizeInBits(VT))
Chris Lattnerfd8c39b2005-01-07 21:56:24 +00001916 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1917 else
1918 return Operand.Val->getOperand(0);
1919 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001920 break;
Chris Lattner35481892005-12-23 00:16:34 +00001921 case ISD::BIT_CONVERT:
1922 // Basic sanity checking.
Chris Lattner70c2a612006-03-31 02:06:56 +00001923 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
Reid Spencera07d5b92006-11-11 20:07:59 +00001924 && "Cannot BIT_CONVERT between types of different sizes!");
Chris Lattner35481892005-12-23 00:16:34 +00001925 if (VT == Operand.getValueType()) return Operand; // noop conversion.
Chris Lattnerc8547d82005-12-23 05:37:50 +00001926 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1927 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
Chris Lattner08da55e2006-04-04 01:02:22 +00001928 if (OpOpcode == ISD::UNDEF)
1929 return getNode(ISD::UNDEF, VT);
Chris Lattner35481892005-12-23 00:16:34 +00001930 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001931 case ISD::SCALAR_TO_VECTOR:
1932 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
Dan Gohman51eaa862007-06-14 22:58:02 +00001933 MVT::getVectorElementType(VT) == Operand.getValueType() &&
Chris Lattnerce872152006-03-19 06:31:19 +00001934 "Illegal SCALAR_TO_VECTOR node!");
1935 break;
Chris Lattner485df9b2005-04-09 03:02:46 +00001936 case ISD::FNEG:
Chris Lattner01b3d732005-09-28 22:28:18 +00001937 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1938 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
Chris Lattner485df9b2005-04-09 03:02:46 +00001939 Operand.Val->getOperand(0));
1940 if (OpOpcode == ISD::FNEG) // --X -> X
1941 return Operand.Val->getOperand(0);
1942 break;
1943 case ISD::FABS:
1944 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1945 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1946 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00001947 }
1948
Chris Lattner43247a12005-08-25 19:12:10 +00001949 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00001950 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00001951 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
Jim Laskey583bd472006-10-27 23:46:08 +00001952 FoldingSetNodeID ID;
Chris Lattner3f97eb42007-02-04 08:35:21 +00001953 SDOperand Ops[1] = { Operand };
Chris Lattner63e3f142007-02-04 07:28:00 +00001954 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00001955 void *IP = 0;
1956 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1957 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00001958 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattnera5682852006-08-07 23:03:03 +00001959 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00001960 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00001961 N = new UnarySDNode(Opcode, VTs, Operand);
Chris Lattner43247a12005-08-25 19:12:10 +00001962 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00001963 AllNodes.push_back(N);
1964 return SDOperand(N, 0);
Chris Lattner78ec3112003-08-11 14:57:33 +00001965}
1966
Chris Lattner36019aa2005-04-18 03:48:41 +00001967
1968
Chris Lattnerc3aae252005-01-07 07:46:32 +00001969SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1970 SDOperand N1, SDOperand N2) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001971 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1972 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattner76365122005-01-16 02:23:22 +00001973 switch (Opcode) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001974 default: break;
Chris Lattner39908e02005-01-19 18:01:40 +00001975 case ISD::TokenFactor:
1976 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1977 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001978 // Fold trivial token factors.
1979 if (N1.getOpcode() == ISD::EntryToken) return N2;
1980 if (N2.getOpcode() == ISD::EntryToken) return N1;
Chris Lattner39908e02005-01-19 18:01:40 +00001981 break;
Chris Lattner76365122005-01-16 02:23:22 +00001982 case ISD::AND:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001983 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1984 N1.getValueType() == VT && "Binary operator types must match!");
1985 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
1986 // worth handling here.
1987 if (N2C && N2C->getValue() == 0)
1988 return N2;
Chris Lattner9967c152008-01-26 01:05:42 +00001989 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
1990 return N1;
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001991 break;
Chris Lattner76365122005-01-16 02:23:22 +00001992 case ISD::OR:
1993 case ISD::XOR:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00001994 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
1995 N1.getValueType() == VT && "Binary operator types must match!");
1996 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
1997 // worth handling here.
1998 if (N2C && N2C->getValue() == 0)
1999 return N1;
2000 break;
Chris Lattner76365122005-01-16 02:23:22 +00002001 case ISD::UDIV:
2002 case ISD::UREM:
Chris Lattnere5eb6f82005-05-15 05:39:08 +00002003 case ISD::MULHU:
2004 case ISD::MULHS:
Chris Lattner76365122005-01-16 02:23:22 +00002005 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
2006 // fall through
2007 case ISD::ADD:
2008 case ISD::SUB:
2009 case ISD::MUL:
2010 case ISD::SDIV:
2011 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002012 case ISD::FADD:
2013 case ISD::FSUB:
2014 case ISD::FMUL:
2015 case ISD::FDIV:
2016 case ISD::FREM:
Chris Lattner76365122005-01-16 02:23:22 +00002017 assert(N1.getValueType() == N2.getValueType() &&
2018 N1.getValueType() == VT && "Binary operator types must match!");
2019 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002020 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2021 assert(N1.getValueType() == VT &&
2022 MVT::isFloatingPoint(N1.getValueType()) &&
2023 MVT::isFloatingPoint(N2.getValueType()) &&
2024 "Invalid FCOPYSIGN!");
2025 break;
Chris Lattner76365122005-01-16 02:23:22 +00002026 case ISD::SHL:
2027 case ISD::SRA:
2028 case ISD::SRL:
Nate Begeman35ef9132006-01-11 21:21:00 +00002029 case ISD::ROTL:
2030 case ISD::ROTR:
Chris Lattner76365122005-01-16 02:23:22 +00002031 assert(VT == N1.getValueType() &&
2032 "Shift operators return type must be the same as their first arg");
2033 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
Chris Lattner068a81e2005-01-17 17:15:02 +00002034 VT != MVT::i1 && "Shifts only work on integers");
Chris Lattner76365122005-01-16 02:23:22 +00002035 break;
Chris Lattner15e4b012005-07-10 00:07:11 +00002036 case ISD::FP_ROUND_INREG: {
2037 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2038 assert(VT == N1.getValueType() && "Not an inreg round!");
2039 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
2040 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002041 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2042 "Not rounding down!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002043 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Chris Lattner15e4b012005-07-10 00:07:11 +00002044 break;
2045 }
Chris Lattner0bd48932008-01-17 07:00:52 +00002046 case ISD::FP_ROUND:
2047 assert(MVT::isFloatingPoint(VT) &&
2048 MVT::isFloatingPoint(N1.getValueType()) &&
2049 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2050 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002051 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner0bd48932008-01-17 07:00:52 +00002052 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00002053 case ISD::AssertSext:
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002054 case ISD::AssertZext: {
2055 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2056 assert(VT == N1.getValueType() && "Not an inreg extend!");
2057 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2058 "Cannot *_EXTEND_INREG FP types");
2059 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2060 "Not extending!");
Duncan Sandsd885dbd2008-02-10 10:08:52 +00002061 if (VT == EVT) return N1; // noop assertion.
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002062 break;
2063 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002064 case ISD::SIGN_EXTEND_INREG: {
2065 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2066 assert(VT == N1.getValueType() && "Not an inreg extend!");
2067 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2068 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsaf47b112007-10-16 09:56:48 +00002069 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2070 "Not extending!");
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002071 if (EVT == VT) return N1; // Not actually extending
Chris Lattner15e4b012005-07-10 00:07:11 +00002072
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002073 if (N1C) {
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002074 int64_t Val = N1C->getValue();
2075 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
2076 Val <<= 64-FromBits;
2077 Val >>= 64-FromBits;
2078 return getConstant(Val, VT);
2079 }
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002080 break;
2081 }
2082 case ISD::EXTRACT_VECTOR_ELT:
2083 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2084
2085 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2086 // expanding copies of large vectors from registers.
2087 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2088 N1.getNumOperands() > 0) {
2089 unsigned Factor =
2090 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2091 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2092 N1.getOperand(N2C->getValue() / Factor),
2093 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2094 }
2095
2096 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2097 // expanding large vector constants.
2098 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2099 return N1.getOperand(N2C->getValue());
2100
2101 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2102 // operations are lowered to scalars.
2103 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2104 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2105 if (IEC == N2C)
2106 return N1.getOperand(1);
2107 else
2108 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2109 }
2110 break;
2111 case ISD::EXTRACT_ELEMENT:
2112 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002113
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002114 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2115 // 64-bit integers into 32-bit parts. Instead of building the extract of
2116 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2117 if (N1.getOpcode() == ISD::BUILD_PAIR)
2118 return N1.getOperand(N2C->getValue());
2119
2120 // EXTRACT_ELEMENT of a constant int is also very common.
2121 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2122 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2123 return getConstant(C->getValue() >> Shift, VT);
2124 }
2125 break;
2126 }
2127
2128 if (N1C) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002129 if (N2C) {
2130 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
2131 switch (Opcode) {
2132 case ISD::ADD: return getConstant(C1 + C2, VT);
2133 case ISD::SUB: return getConstant(C1 - C2, VT);
2134 case ISD::MUL: return getConstant(C1 * C2, VT);
2135 case ISD::UDIV:
2136 if (C2) return getConstant(C1 / C2, VT);
2137 break;
2138 case ISD::UREM :
2139 if (C2) return getConstant(C1 % C2, VT);
2140 break;
2141 case ISD::SDIV :
2142 if (C2) return getConstant(N1C->getSignExtended() /
2143 N2C->getSignExtended(), VT);
2144 break;
2145 case ISD::SREM :
2146 if (C2) return getConstant(N1C->getSignExtended() %
2147 N2C->getSignExtended(), VT);
2148 break;
2149 case ISD::AND : return getConstant(C1 & C2, VT);
2150 case ISD::OR : return getConstant(C1 | C2, VT);
2151 case ISD::XOR : return getConstant(C1 ^ C2, VT);
Nate Begemanb85dfab2005-08-31 00:27:53 +00002152 case ISD::SHL : return getConstant(C1 << C2, VT);
2153 case ISD::SRL : return getConstant(C1 >> C2, VT);
Chris Lattner8136d1f2005-01-10 00:07:15 +00002154 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
Nate Begeman35ef9132006-01-11 21:21:00 +00002155 case ISD::ROTL :
2156 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
2157 VT);
2158 case ISD::ROTR :
2159 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
2160 VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002161 default: break;
2162 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002163 } else { // Cannonicalize constant to RHS if commutative
2164 if (isCommutativeBinOp(Opcode)) {
2165 std::swap(N1C, N2C);
2166 std::swap(N1, N2);
2167 }
2168 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002169 }
2170
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002171 // Constant fold FP operations.
Chris Lattnerc3aae252005-01-07 07:46:32 +00002172 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2173 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
Chris Lattner15e4b012005-07-10 00:07:11 +00002174 if (N1CFP) {
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002175 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2176 // Cannonicalize constant to RHS if commutative
2177 std::swap(N1CFP, N2CFP);
2178 std::swap(N1, N2);
2179 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002180 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2181 APFloat::opStatus s;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002182 switch (Opcode) {
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002183 case ISD::FADD:
2184 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattner8e1f7ac2008-01-22 19:09:33 +00002185 if (s != APFloat::opInvalidOp)
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002186 return getConstantFP(V1, VT);
2187 break;
2188 case ISD::FSUB:
2189 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2190 if (s!=APFloat::opInvalidOp)
2191 return getConstantFP(V1, VT);
2192 break;
2193 case ISD::FMUL:
2194 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2195 if (s!=APFloat::opInvalidOp)
2196 return getConstantFP(V1, VT);
2197 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002198 case ISD::FDIV:
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002199 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2200 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2201 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002202 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00002203 case ISD::FREM :
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002204 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2205 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2206 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002207 break;
Dale Johannesenc4dd3c32007-08-31 23:34:27 +00002208 case ISD::FCOPYSIGN:
2209 V1.copySign(V2);
2210 return getConstantFP(V1, VT);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002211 default: break;
2212 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002213 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002214 }
Chris Lattner62b57722006-04-20 05:39:12 +00002215
2216 // Canonicalize an UNDEF to the RHS, even over a constant.
2217 if (N1.getOpcode() == ISD::UNDEF) {
2218 if (isCommutativeBinOp(Opcode)) {
2219 std::swap(N1, N2);
2220 } else {
2221 switch (Opcode) {
2222 case ISD::FP_ROUND_INREG:
2223 case ISD::SIGN_EXTEND_INREG:
2224 case ISD::SUB:
2225 case ISD::FSUB:
2226 case ISD::FDIV:
2227 case ISD::FREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002228 case ISD::SRA:
Chris Lattner62b57722006-04-20 05:39:12 +00002229 return N1; // fold op(undef, arg2) -> undef
2230 case ISD::UDIV:
2231 case ISD::SDIV:
2232 case ISD::UREM:
2233 case ISD::SREM:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002234 case ISD::SRL:
2235 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002236 if (!MVT::isVector(VT))
2237 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2238 // For vectors, we can't easily build an all zero vector, just return
2239 // the LHS.
2240 return N2;
Chris Lattner62b57722006-04-20 05:39:12 +00002241 }
2242 }
2243 }
2244
Chris Lattnerb9ebacd2006-05-06 23:05:41 +00002245 // Fold a bunch of operators when the RHS is undef.
Chris Lattner62b57722006-04-20 05:39:12 +00002246 if (N2.getOpcode() == ISD::UNDEF) {
2247 switch (Opcode) {
2248 case ISD::ADD:
Chris Lattner175415e2007-03-04 20:01:46 +00002249 case ISD::ADDC:
2250 case ISD::ADDE:
Chris Lattner62b57722006-04-20 05:39:12 +00002251 case ISD::SUB:
2252 case ISD::FADD:
2253 case ISD::FSUB:
2254 case ISD::FMUL:
2255 case ISD::FDIV:
2256 case ISD::FREM:
2257 case ISD::UDIV:
2258 case ISD::SDIV:
2259 case ISD::UREM:
2260 case ISD::SREM:
2261 case ISD::XOR:
2262 return N2; // fold op(arg1, undef) -> undef
2263 case ISD::MUL:
2264 case ISD::AND:
Chris Lattner2cfd6742006-05-08 17:29:49 +00002265 case ISD::SRL:
2266 case ISD::SHL:
Chris Lattner964dd862007-04-25 00:00:45 +00002267 if (!MVT::isVector(VT))
2268 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2269 // For vectors, we can't easily build an all zero vector, just return
2270 // the LHS.
2271 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002272 case ISD::OR:
Chris Lattner964dd862007-04-25 00:00:45 +00002273 if (!MVT::isVector(VT))
2274 return getConstant(MVT::getIntVTBitMask(VT), VT);
2275 // For vectors, we can't easily build an all one vector, just return
2276 // the LHS.
2277 return N1;
Chris Lattner2cfd6742006-05-08 17:29:49 +00002278 case ISD::SRA:
2279 return N1;
Chris Lattner62b57722006-04-20 05:39:12 +00002280 }
2281 }
Chris Lattner15e4b012005-07-10 00:07:11 +00002282
Chris Lattner27e9b412005-05-11 18:57:39 +00002283 // Memoize this node if possible.
2284 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002285 SDVTList VTs = getVTList(VT);
Chris Lattner70814bc2006-01-29 07:58:15 +00002286 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002287 SDOperand Ops[] = { N1, N2 };
Jim Laskey583bd472006-10-27 23:46:08 +00002288 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002289 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00002290 void *IP = 0;
2291 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2292 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002293 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattnera5682852006-08-07 23:03:03 +00002294 CSEMap.InsertNode(N, IP);
Chris Lattner27e9b412005-05-11 18:57:39 +00002295 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002296 N = new BinarySDNode(Opcode, VTs, N1, N2);
Chris Lattner27e9b412005-05-11 18:57:39 +00002297 }
2298
Chris Lattnerc3aae252005-01-07 07:46:32 +00002299 AllNodes.push_back(N);
2300 return SDOperand(N, 0);
2301}
2302
Chris Lattnerc3aae252005-01-07 07:46:32 +00002303SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2304 SDOperand N1, SDOperand N2, SDOperand N3) {
2305 // Perform various simplifications.
2306 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2307 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002308 switch (Opcode) {
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002309 case ISD::SETCC: {
Chris Lattner51dabfb2006-10-14 00:41:01 +00002310 // Use FoldSetCC to simplify SETCC's.
2311 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002312 if (Simp.Val) return Simp;
2313 break;
2314 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002315 case ISD::SELECT:
2316 if (N1C)
2317 if (N1C->getValue())
2318 return N2; // select true, X, Y -> X
Misha Brukmanedf128a2005-04-21 22:36:52 +00002319 else
Chris Lattnerc3aae252005-01-07 07:46:32 +00002320 return N3; // select false, X, Y -> Y
2321
2322 if (N2 == N3) return N2; // select C, X, X -> X
Chris Lattnerc3aae252005-01-07 07:46:32 +00002323 break;
Chris Lattner5351e9b2005-01-07 22:49:57 +00002324 case ISD::BRCOND:
2325 if (N2C)
2326 if (N2C->getValue()) // Unconditional branch
2327 return getNode(ISD::BR, MVT::Other, N1, N3);
2328 else
2329 return N1; // Never-taken branch
Chris Lattner7c68ec62005-01-07 23:32:00 +00002330 break;
Chris Lattnerfb194b92006-03-19 23:56:04 +00002331 case ISD::VECTOR_SHUFFLE:
2332 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2333 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2334 N3.getOpcode() == ISD::BUILD_VECTOR &&
2335 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2336 "Illegal VECTOR_SHUFFLE node!");
2337 break;
Dan Gohman7f321562007-06-25 16:23:39 +00002338 case ISD::BIT_CONVERT:
2339 // Fold bit_convert nodes from a type to themselves.
2340 if (N1.getValueType() == VT)
2341 return N1;
Chris Lattner4829b1c2007-04-12 05:58:43 +00002342 break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002343 }
2344
Chris Lattner43247a12005-08-25 19:12:10 +00002345 // Memoize node if it doesn't produce a flag.
2346 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002347 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002348 if (VT != MVT::Flag) {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002349 SDOperand Ops[] = { N1, N2, N3 };
Jim Laskey583bd472006-10-27 23:46:08 +00002350 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002351 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00002352 void *IP = 0;
2353 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2354 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002355 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattnera5682852006-08-07 23:03:03 +00002356 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002357 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002358 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
Chris Lattner43247a12005-08-25 19:12:10 +00002359 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00002360 AllNodes.push_back(N);
2361 return SDOperand(N, 0);
2362}
2363
2364SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Jeff Cohen00b168892005-07-27 06:12:32 +00002365 SDOperand N1, SDOperand N2, SDOperand N3,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002366 SDOperand N4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002367 SDOperand Ops[] = { N1, N2, N3, N4 };
2368 return getNode(Opcode, VT, Ops, 4);
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002369}
2370
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002371SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2372 SDOperand N1, SDOperand N2, SDOperand N3,
2373 SDOperand N4, SDOperand N5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002374 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2375 return getNode(Opcode, VT, Ops, 5);
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002376}
2377
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002378SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2379 SDOperand Src, SDOperand Size,
2380 SDOperand Align,
2381 SDOperand AlwaysInline) {
2382 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2383 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2384}
2385
2386SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2387 SDOperand Src, SDOperand Size,
2388 SDOperand Align,
2389 SDOperand AlwaysInline) {
2390 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2391 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2392}
2393
2394SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2395 SDOperand Src, SDOperand Size,
2396 SDOperand Align,
2397 SDOperand AlwaysInline) {
2398 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2399 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2400}
2401
Evan Cheng7038daf2005-12-10 00:37:58 +00002402SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2403 SDOperand Chain, SDOperand Ptr,
Evan Cheng466685d2006-10-09 20:57:25 +00002404 const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002405 bool isVolatile, unsigned Alignment) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002406 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2407 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002408 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002409 Ty = MVT::getTypeForValueType(VT);
2410 } else if (SV) {
2411 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2412 assert(PT && "Value for load must be a pointer");
2413 Ty = PT->getElementType();
2414 }
2415 assert(Ty && "Could not get type information for load");
2416 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2417 }
Chris Lattner0b3e5252006-08-15 19:11:05 +00002418 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002419 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002420 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002421 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002422 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002423 ID.AddInteger(ISD::UNINDEXED);
2424 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002425 ID.AddInteger((unsigned int)VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002426 ID.AddInteger(Alignment);
2427 ID.AddInteger(isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002428 void *IP = 0;
2429 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2430 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002431 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002432 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2433 isVolatile);
Evan Cheng466685d2006-10-09 20:57:25 +00002434 CSEMap.InsertNode(N, IP);
2435 AllNodes.push_back(N);
2436 return SDOperand(N, 0);
2437}
2438
2439SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00002440 SDOperand Chain, SDOperand Ptr,
2441 const Value *SV,
Evan Cheng466685d2006-10-09 20:57:25 +00002442 int SVOffset, MVT::ValueType EVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002443 bool isVolatile, unsigned Alignment) {
Evan Cheng466685d2006-10-09 20:57:25 +00002444 // If they are asking for an extending load from/to the same thing, return a
2445 // normal load.
2446 if (VT == EVT)
Duncan Sands5d868b12007-10-19 13:05:40 +00002447 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00002448
2449 if (MVT::isVector(VT))
Dan Gohman51eaa862007-06-14 22:58:02 +00002450 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
Evan Cheng466685d2006-10-09 20:57:25 +00002451 else
Duncan Sandsaf47b112007-10-16 09:56:48 +00002452 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2453 "Should only be an extending load, not truncating!");
Evan Cheng466685d2006-10-09 20:57:25 +00002454 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2455 "Cannot sign/zero extend a FP/Vector load!");
2456 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2457 "Cannot convert from FP to Int or Int -> FP!");
2458
Dan Gohman575e2f42007-06-04 15:49:41 +00002459 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2460 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002461 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002462 Ty = MVT::getTypeForValueType(VT);
2463 } else if (SV) {
2464 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2465 assert(PT && "Value for load must be a pointer");
2466 Ty = PT->getElementType();
2467 }
2468 assert(Ty && "Could not get type information for load");
2469 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2470 }
Evan Cheng466685d2006-10-09 20:57:25 +00002471 SDVTList VTs = getVTList(VT, MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002472 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Chris Lattner63e3f142007-02-04 07:28:00 +00002473 SDOperand Ops[] = { Chain, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002474 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002475 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng466685d2006-10-09 20:57:25 +00002476 ID.AddInteger(ISD::UNINDEXED);
2477 ID.AddInteger(ExtType);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002478 ID.AddInteger((unsigned int)EVT);
Evan Cheng466685d2006-10-09 20:57:25 +00002479 ID.AddInteger(Alignment);
2480 ID.AddInteger(isVolatile);
2481 void *IP = 0;
2482 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2483 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002484 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002485 SV, SVOffset, Alignment, isVolatile);
Chris Lattnera5682852006-08-07 23:03:03 +00002486 CSEMap.InsertNode(N, IP);
Evan Cheng7038daf2005-12-10 00:37:58 +00002487 AllNodes.push_back(N);
2488 return SDOperand(N, 0);
2489}
2490
Evan Cheng144d8f02006-11-09 17:55:04 +00002491SDOperand
2492SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2493 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00002494 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
Evan Cheng5270cf12006-10-26 21:53:40 +00002495 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2496 "Load is already a indexed load!");
Evan Cheng2caccca2006-10-17 21:14:32 +00002497 MVT::ValueType VT = OrigLoad.getValueType();
Evan Cheng5270cf12006-10-26 21:53:40 +00002498 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
Chris Lattner63e3f142007-02-04 07:28:00 +00002499 SDOperand Ops[] = { LD->getChain(), Base, Offset };
Jim Laskey583bd472006-10-27 23:46:08 +00002500 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00002501 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
Evan Cheng2caccca2006-10-17 21:14:32 +00002502 ID.AddInteger(AM);
2503 ID.AddInteger(LD->getExtensionType());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002504 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Evan Cheng2caccca2006-10-17 21:14:32 +00002505 ID.AddInteger(LD->getAlignment());
2506 ID.AddInteger(LD->isVolatile());
2507 void *IP = 0;
2508 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2509 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002510 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002511 LD->getExtensionType(), LD->getMemoryVT(),
Evan Cheng2caccca2006-10-17 21:14:32 +00002512 LD->getSrcValue(), LD->getSrcValueOffset(),
2513 LD->getAlignment(), LD->isVolatile());
Evan Cheng2caccca2006-10-17 21:14:32 +00002514 CSEMap.InsertNode(N, IP);
2515 AllNodes.push_back(N);
2516 return SDOperand(N, 0);
2517}
2518
Jeff Cohend41b30d2006-11-05 19:31:28 +00002519SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002520 SDOperand Ptr, const Value *SV, int SVOffset,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002521 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002522 MVT::ValueType VT = Val.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002523
Dan Gohman575e2f42007-06-04 15:49:41 +00002524 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2525 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002526 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002527 Ty = MVT::getTypeForValueType(VT);
2528 } else if (SV) {
2529 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2530 assert(PT && "Value for store must be a pointer");
2531 Ty = PT->getElementType();
2532 }
2533 assert(Ty && "Could not get type information for store");
2534 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2535 }
Evan Chengad071e12006-10-05 22:57:11 +00002536 SDVTList VTs = getVTList(MVT::Other);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002537 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002538 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002539 FoldingSetNodeID ID;
2540 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002541 ID.AddInteger(ISD::UNINDEXED);
2542 ID.AddInteger(false);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002543 ID.AddInteger((unsigned int)VT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002544 ID.AddInteger(Alignment);
2545 ID.AddInteger(isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002546 void *IP = 0;
2547 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2548 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002549 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002550 VT, SV, SVOffset, Alignment, isVolatile);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002551 CSEMap.InsertNode(N, IP);
2552 AllNodes.push_back(N);
2553 return SDOperand(N, 0);
2554}
2555
Jeff Cohend41b30d2006-11-05 19:31:28 +00002556SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002557 SDOperand Ptr, const Value *SV,
2558 int SVOffset, MVT::ValueType SVT,
Christopher Lamb95c218a2007-04-22 23:15:30 +00002559 bool isVolatile, unsigned Alignment) {
Jeff Cohend41b30d2006-11-05 19:31:28 +00002560 MVT::ValueType VT = Val.getValueType();
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002561
2562 if (VT == SVT)
2563 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002564
Duncan Sandsaf47b112007-10-16 09:56:48 +00002565 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2566 "Not a truncation?");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002567 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2568 "Can't do FP-INT conversion!");
2569
Dan Gohman575e2f42007-06-04 15:49:41 +00002570 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2571 const Type *Ty = 0;
Dan Gohman7f321562007-06-25 16:23:39 +00002572 if (VT != MVT::iPTR) {
Dan Gohman575e2f42007-06-04 15:49:41 +00002573 Ty = MVT::getTypeForValueType(VT);
2574 } else if (SV) {
2575 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2576 assert(PT && "Value for store must be a pointer");
2577 Ty = PT->getElementType();
2578 }
2579 assert(Ty && "Could not get type information for store");
2580 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2581 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002582 SDVTList VTs = getVTList(MVT::Other);
2583 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
Jeff Cohend41b30d2006-11-05 19:31:28 +00002584 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
Jim Laskey583bd472006-10-27 23:46:08 +00002585 FoldingSetNodeID ID;
2586 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002587 ID.AddInteger(ISD::UNINDEXED);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002588 ID.AddInteger(1);
Chris Lattner3d6992f2007-09-13 06:09:48 +00002589 ID.AddInteger((unsigned int)SVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002590 ID.AddInteger(Alignment);
2591 ID.AddInteger(isVolatile);
2592 void *IP = 0;
2593 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2594 return SDOperand(E, 0);
Duncan Sandsba3b1d12007-10-30 12:40:58 +00002595 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002596 SVT, SV, SVOffset, Alignment, isVolatile);
Evan Chengad071e12006-10-05 22:57:11 +00002597 CSEMap.InsertNode(N, IP);
2598 AllNodes.push_back(N);
2599 return SDOperand(N, 0);
2600}
2601
Evan Cheng144d8f02006-11-09 17:55:04 +00002602SDOperand
2603SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2604 SDOperand Offset, ISD::MemIndexedMode AM) {
Evan Cheng9109fb12006-11-05 09:30:09 +00002605 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2606 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2607 "Store is already a indexed store!");
2608 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2609 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2610 FoldingSetNodeID ID;
2611 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2612 ID.AddInteger(AM);
2613 ID.AddInteger(ST->isTruncatingStore());
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002614 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Evan Cheng9109fb12006-11-05 09:30:09 +00002615 ID.AddInteger(ST->getAlignment());
2616 ID.AddInteger(ST->isVolatile());
2617 void *IP = 0;
2618 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2619 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002620 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002621 ST->isTruncatingStore(), ST->getMemoryVT(),
Evan Cheng9109fb12006-11-05 09:30:09 +00002622 ST->getSrcValue(), ST->getSrcValueOffset(),
2623 ST->getAlignment(), ST->isVolatile());
Evan Cheng9109fb12006-11-05 09:30:09 +00002624 CSEMap.InsertNode(N, IP);
2625 AllNodes.push_back(N);
2626 return SDOperand(N, 0);
2627}
2628
Nate Begemanacc398c2006-01-25 18:21:52 +00002629SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2630 SDOperand Chain, SDOperand Ptr,
2631 SDOperand SV) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002632 SDOperand Ops[] = { Chain, Ptr, SV };
Chris Lattnerbe384162006-08-16 22:57:46 +00002633 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
Nate Begemanacc398c2006-01-25 18:21:52 +00002634}
2635
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002636SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002637 const SDOperand *Ops, unsigned NumOps) {
2638 switch (NumOps) {
Chris Lattnerc3aae252005-01-07 07:46:32 +00002639 case 0: return getNode(Opcode, VT);
Chris Lattner89c34632005-05-14 06:20:26 +00002640 case 1: return getNode(Opcode, VT, Ops[0]);
2641 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2642 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
Chris Lattneref847df2005-04-09 03:27:28 +00002643 default: break;
Chris Lattnerc3aae252005-01-07 07:46:32 +00002644 }
Chris Lattnerde202b32005-11-09 23:47:37 +00002645
Chris Lattneref847df2005-04-09 03:27:28 +00002646 switch (Opcode) {
2647 default: break;
Chris Lattner7b2880c2005-08-24 22:44:39 +00002648 case ISD::SELECT_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002649 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002650 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2651 "LHS and RHS of condition must have same type!");
2652 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2653 "True and False arms of SelectCC must have same type!");
2654 assert(Ops[2].getValueType() == VT &&
2655 "select_cc node must be of same type as true and false value!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002656 break;
2657 }
2658 case ISD::BR_CC: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002659 assert(NumOps == 5 && "BR_CC takes 5 operands!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002660 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2661 "LHS/RHS of comparison should match types!");
Chris Lattner7b2880c2005-08-24 22:44:39 +00002662 break;
2663 }
Chris Lattneref847df2005-04-09 03:27:28 +00002664 }
2665
Chris Lattner385328c2005-05-14 07:42:29 +00002666 // Memoize nodes.
Chris Lattner43247a12005-08-25 19:12:10 +00002667 SDNode *N;
Chris Lattner0b3e5252006-08-15 19:11:05 +00002668 SDVTList VTs = getVTList(VT);
Chris Lattner43247a12005-08-25 19:12:10 +00002669 if (VT != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002670 FoldingSetNodeID ID;
2671 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002672 void *IP = 0;
2673 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2674 return SDOperand(E, 0);
Chris Lattnerab4ed592007-02-04 07:37:24 +00002675 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002676 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002677 } else {
Chris Lattnerab4ed592007-02-04 07:37:24 +00002678 N = new SDNode(Opcode, VTs, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002679 }
Chris Lattneref847df2005-04-09 03:27:28 +00002680 AllNodes.push_back(N);
2681 return SDOperand(N, 0);
Chris Lattnerc3aae252005-01-07 07:46:32 +00002682}
2683
Chris Lattner89c34632005-05-14 06:20:26 +00002684SDOperand SelectionDAG::getNode(unsigned Opcode,
2685 std::vector<MVT::ValueType> &ResultTys,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002686 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002687 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2688 Ops, NumOps);
2689}
2690
2691SDOperand SelectionDAG::getNode(unsigned Opcode,
2692 const MVT::ValueType *VTs, unsigned NumVTs,
2693 const SDOperand *Ops, unsigned NumOps) {
2694 if (NumVTs == 1)
2695 return getNode(Opcode, VTs[0], Ops, NumOps);
Chris Lattnerbe384162006-08-16 22:57:46 +00002696 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2697}
2698
2699SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2700 const SDOperand *Ops, unsigned NumOps) {
2701 if (VTList.NumVTs == 1)
2702 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
Chris Lattner89c34632005-05-14 06:20:26 +00002703
Chris Lattner5f056bf2005-07-10 01:55:33 +00002704 switch (Opcode) {
Chris Lattnere89083a2005-05-14 07:25:05 +00002705 // FIXME: figure out how to safely handle things like
2706 // int foo(int x) { return 1 << (x & 255); }
2707 // int bar() { return foo(256); }
2708#if 0
Chris Lattnere89083a2005-05-14 07:25:05 +00002709 case ISD::SRA_PARTS:
2710 case ISD::SRL_PARTS:
2711 case ISD::SHL_PARTS:
2712 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Chris Lattner15e4b012005-07-10 00:07:11 +00002713 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
Chris Lattnere89083a2005-05-14 07:25:05 +00002714 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2715 else if (N3.getOpcode() == ISD::AND)
2716 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2717 // If the and is only masking out bits that cannot effect the shift,
2718 // eliminate the and.
2719 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2720 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2721 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2722 }
2723 break;
Chris Lattnere89083a2005-05-14 07:25:05 +00002724#endif
Chris Lattner5f056bf2005-07-10 01:55:33 +00002725 }
Chris Lattner89c34632005-05-14 06:20:26 +00002726
Chris Lattner43247a12005-08-25 19:12:10 +00002727 // Memoize the node unless it returns a flag.
2728 SDNode *N;
Chris Lattnerbe384162006-08-16 22:57:46 +00002729 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
Jim Laskey583bd472006-10-27 23:46:08 +00002730 FoldingSetNodeID ID;
2731 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002732 void *IP = 0;
2733 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2734 return SDOperand(E, 0);
Chris Lattner3f97eb42007-02-04 08:35:21 +00002735 if (NumOps == 1)
2736 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2737 else if (NumOps == 2)
2738 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2739 else if (NumOps == 3)
2740 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2741 else
2742 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00002743 CSEMap.InsertNode(N, IP);
Chris Lattner43247a12005-08-25 19:12:10 +00002744 } else {
Chris Lattner3f97eb42007-02-04 08:35:21 +00002745 if (NumOps == 1)
2746 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2747 else if (NumOps == 2)
2748 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2749 else if (NumOps == 3)
2750 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2751 else
2752 N = new SDNode(Opcode, VTList, Ops, NumOps);
Chris Lattner43247a12005-08-25 19:12:10 +00002753 }
Chris Lattner5fa4fa42005-05-14 06:42:57 +00002754 AllNodes.push_back(N);
Chris Lattner89c34632005-05-14 06:20:26 +00002755 return SDOperand(N, 0);
2756}
2757
Dan Gohman08ce9762007-10-08 15:49:58 +00002758SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2759 return getNode(Opcode, VTList, 0, 0);
2760}
2761
2762SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2763 SDOperand N1) {
2764 SDOperand Ops[] = { N1 };
2765 return getNode(Opcode, VTList, Ops, 1);
2766}
2767
2768SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2769 SDOperand N1, SDOperand N2) {
2770 SDOperand Ops[] = { N1, N2 };
2771 return getNode(Opcode, VTList, Ops, 2);
2772}
2773
2774SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2775 SDOperand N1, SDOperand N2, SDOperand N3) {
2776 SDOperand Ops[] = { N1, N2, N3 };
2777 return getNode(Opcode, VTList, Ops, 3);
2778}
2779
2780SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2781 SDOperand N1, SDOperand N2, SDOperand N3,
2782 SDOperand N4) {
2783 SDOperand Ops[] = { N1, N2, N3, N4 };
2784 return getNode(Opcode, VTList, Ops, 4);
2785}
2786
2787SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2788 SDOperand N1, SDOperand N2, SDOperand N3,
2789 SDOperand N4, SDOperand N5) {
2790 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2791 return getNode(Opcode, VTList, Ops, 5);
2792}
2793
Chris Lattner70046e92006-08-15 17:46:01 +00002794SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00002795 return makeVTList(SDNode::getValueTypeList(VT), 1);
Chris Lattnera3255112005-11-08 23:30:28 +00002796}
2797
Chris Lattner70046e92006-08-15 17:46:01 +00002798SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
Chris Lattnera3255112005-11-08 23:30:28 +00002799 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2800 E = VTList.end(); I != E; ++I) {
Chris Lattnera5682852006-08-07 23:03:03 +00002801 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
Chris Lattner70046e92006-08-15 17:46:01 +00002802 return makeVTList(&(*I)[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002803 }
2804 std::vector<MVT::ValueType> V;
2805 V.push_back(VT1);
2806 V.push_back(VT2);
2807 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002808 return makeVTList(&(*VTList.begin())[0], 2);
Chris Lattnera3255112005-11-08 23:30:28 +00002809}
Chris Lattner70046e92006-08-15 17:46:01 +00002810SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2811 MVT::ValueType VT3) {
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002812 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
Chris Lattner70046e92006-08-15 17:46:01 +00002813 E = VTList.end(); I != E; ++I) {
2814 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2815 (*I)[2] == VT3)
2816 return makeVTList(&(*I)[0], 3);
2817 }
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002818 std::vector<MVT::ValueType> V;
2819 V.push_back(VT1);
2820 V.push_back(VT2);
2821 V.push_back(VT3);
2822 VTList.push_front(V);
Chris Lattner70046e92006-08-15 17:46:01 +00002823 return makeVTList(&(*VTList.begin())[0], 3);
2824}
2825
2826SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2827 switch (NumVTs) {
2828 case 0: assert(0 && "Cannot have nodes without results!");
Dan Gohman7f321562007-06-25 16:23:39 +00002829 case 1: return getVTList(VTs[0]);
Chris Lattner70046e92006-08-15 17:46:01 +00002830 case 2: return getVTList(VTs[0], VTs[1]);
2831 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2832 default: break;
2833 }
2834
2835 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2836 E = VTList.end(); I != E; ++I) {
2837 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2838
2839 bool NoMatch = false;
2840 for (unsigned i = 2; i != NumVTs; ++i)
2841 if (VTs[i] != (*I)[i]) {
2842 NoMatch = true;
2843 break;
2844 }
2845 if (!NoMatch)
2846 return makeVTList(&*I->begin(), NumVTs);
2847 }
2848
2849 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2850 return makeVTList(&*VTList.begin()->begin(), NumVTs);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00002851}
2852
2853
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002854/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2855/// specified operands. If the resultant node already exists in the DAG,
2856/// this does not modify the specified node, instead it returns the node that
2857/// already exists. If the resultant node does not exist in the DAG, the
2858/// input node is returned. As a degenerate case, if you specify the same
2859/// input operands as the node already has, the input node is returned.
2860SDOperand SelectionDAG::
2861UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2862 SDNode *N = InN.Val;
2863 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2864
2865 // Check to see if there is no change.
2866 if (Op == N->getOperand(0)) return InN;
2867
2868 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002869 void *InsertPos = 0;
2870 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2871 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002872
2873 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002874 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002875 RemoveNodeFromCSEMaps(N);
2876
2877 // Now we update the operands.
2878 N->OperandList[0].Val->removeUser(N);
2879 Op.Val->addUser(N);
2880 N->OperandList[0] = Op;
2881
2882 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002883 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002884 return InN;
2885}
2886
2887SDOperand SelectionDAG::
2888UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2889 SDNode *N = InN.Val;
2890 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2891
2892 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002893 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2894 return InN; // No operands changed, just return the input node.
2895
2896 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002897 void *InsertPos = 0;
2898 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2899 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002900
2901 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002902 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002903 RemoveNodeFromCSEMaps(N);
2904
2905 // Now we update the operands.
2906 if (N->OperandList[0] != Op1) {
2907 N->OperandList[0].Val->removeUser(N);
2908 Op1.Val->addUser(N);
2909 N->OperandList[0] = Op1;
2910 }
2911 if (N->OperandList[1] != Op2) {
2912 N->OperandList[1].Val->removeUser(N);
2913 Op2.Val->addUser(N);
2914 N->OperandList[1] = Op2;
2915 }
2916
2917 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002918 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002919 return InN;
2920}
2921
2922SDOperand SelectionDAG::
2923UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002924 SDOperand Ops[] = { Op1, Op2, Op3 };
2925 return UpdateNodeOperands(N, Ops, 3);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002926}
2927
2928SDOperand SelectionDAG::
2929UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2930 SDOperand Op3, SDOperand Op4) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002931 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2932 return UpdateNodeOperands(N, Ops, 4);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002933}
2934
2935SDOperand SelectionDAG::
Chris Lattner809ec112006-01-28 10:09:25 +00002936UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2937 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002938 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2939 return UpdateNodeOperands(N, Ops, 5);
Chris Lattner809ec112006-01-28 10:09:25 +00002940}
2941
2942
2943SDOperand SelectionDAG::
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002944UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002945 SDNode *N = InN.Val;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002946 assert(N->getNumOperands() == NumOps &&
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002947 "Update with wrong number of operands");
2948
2949 // Check to see if there is no change.
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002950 bool AnyChange = false;
2951 for (unsigned i = 0; i != NumOps; ++i) {
2952 if (Ops[i] != N->getOperand(i)) {
2953 AnyChange = true;
2954 break;
2955 }
2956 }
2957
2958 // No operands changed, just return the input node.
2959 if (!AnyChange) return InN;
2960
2961 // See if the modified node already exists.
Chris Lattnera5682852006-08-07 23:03:03 +00002962 void *InsertPos = 0;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002963 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
Chris Lattnera5682852006-08-07 23:03:03 +00002964 return SDOperand(Existing, InN.ResNo);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002965
2966 // Nope it doesn't. Remove the node from it's current place in the maps.
Chris Lattnera5682852006-08-07 23:03:03 +00002967 if (InsertPos)
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002968 RemoveNodeFromCSEMaps(N);
2969
2970 // Now we update the operands.
2971 for (unsigned i = 0; i != NumOps; ++i) {
2972 if (N->OperandList[i] != Ops[i]) {
2973 N->OperandList[i].Val->removeUser(N);
2974 Ops[i].Val->addUser(N);
2975 N->OperandList[i] = Ops[i];
2976 }
2977 }
2978
2979 // If this gets put into a CSE map, add it.
Chris Lattnera5682852006-08-07 23:03:03 +00002980 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
Chris Lattnerdf6eb302006-01-28 09:32:45 +00002981 return InN;
2982}
2983
2984
Chris Lattnerd429bcd2007-02-04 02:49:29 +00002985/// MorphNodeTo - This frees the operands of the current node, resets the
2986/// opcode, types, and operands to the specified value. This should only be
2987/// used by the SelectionDAG class.
2988void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2989 const SDOperand *Ops, unsigned NumOps) {
2990 NodeType = Opc;
2991 ValueList = L.VTs;
2992 NumValues = L.NumVTs;
2993
2994 // Clear the operands list, updating used nodes to remove this from their
2995 // use list.
2996 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2997 I->Val->removeUser(this);
Chris Lattner63e3f142007-02-04 07:28:00 +00002998
2999 // If NumOps is larger than the # of operands we currently have, reallocate
3000 // the operand list.
3001 if (NumOps > NumOperands) {
3002 if (OperandsNeedDelete)
3003 delete [] OperandList;
3004 OperandList = new SDOperand[NumOps];
3005 OperandsNeedDelete = true;
3006 }
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003007
3008 // Assign the new operands.
3009 NumOperands = NumOps;
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003010
3011 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3012 OperandList[i] = Ops[i];
3013 SDNode *N = OperandList[i].Val;
3014 N->Uses.push_back(this);
3015 }
3016}
Chris Lattner149c58c2005-08-16 18:17:10 +00003017
3018/// SelectNodeTo - These are used for target selectors to *mutate* the
3019/// specified node to have the specified return type, Target opcode, and
3020/// operands. Note that target opcodes are stored as
3021/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003022///
3023/// Note that SelectNodeTo returns the resultant node. If there is already a
3024/// node of the specified opcode and operands, it returns that node instead of
3025/// the current one.
Evan Cheng95514ba2006-08-26 08:00:10 +00003026SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3027 MVT::ValueType VT) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003028 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003029 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003030 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattner4a283e92006-08-11 18:38:11 +00003031 void *IP = 0;
3032 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003033 return ON;
Chris Lattner4a283e92006-08-11 18:38:11 +00003034
Chris Lattner7651fa42005-08-24 23:00:29 +00003035 RemoveNodeFromCSEMaps(N);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003036
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003037 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003038
Chris Lattner4a283e92006-08-11 18:38:11 +00003039 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003040 return N;
Chris Lattner7651fa42005-08-24 23:00:29 +00003041}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003042
Evan Cheng95514ba2006-08-26 08:00:10 +00003043SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3044 MVT::ValueType VT, SDOperand Op1) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003045 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003046 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003047 SDOperand Ops[] = { Op1 };
3048
Jim Laskey583bd472006-10-27 23:46:08 +00003049 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003050 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003051 void *IP = 0;
3052 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003053 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003054
Chris Lattner149c58c2005-08-16 18:17:10 +00003055 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003056 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
Chris Lattnera5682852006-08-07 23:03:03 +00003057 CSEMap.InsertNode(N, IP);
Evan Cheng95514ba2006-08-26 08:00:10 +00003058 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003059}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003060
Evan Cheng95514ba2006-08-26 08:00:10 +00003061SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3062 MVT::ValueType VT, SDOperand Op1,
3063 SDOperand Op2) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003064 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003065 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003066 SDOperand Ops[] = { Op1, Op2 };
3067
Jim Laskey583bd472006-10-27 23:46:08 +00003068 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003069 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003070 void *IP = 0;
3071 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003072 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003073
Chris Lattner149c58c2005-08-16 18:17:10 +00003074 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003075
Chris Lattner63e3f142007-02-04 07:28:00 +00003076 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003077
Chris Lattnera5682852006-08-07 23:03:03 +00003078 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003079 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003080}
Chris Lattner0fb094f2005-11-19 01:44:53 +00003081
Evan Cheng95514ba2006-08-26 08:00:10 +00003082SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3083 MVT::ValueType VT, SDOperand Op1,
3084 SDOperand Op2, SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003085 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003086 SDVTList VTs = getVTList(VT);
Chris Lattner63e3f142007-02-04 07:28:00 +00003087 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003088 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003089 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003090 void *IP = 0;
3091 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003092 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003093
Chris Lattner149c58c2005-08-16 18:17:10 +00003094 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003095
Chris Lattner63e3f142007-02-04 07:28:00 +00003096 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003097
Chris Lattnera5682852006-08-07 23:03:03 +00003098 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003099 return N;
Chris Lattner149c58c2005-08-16 18:17:10 +00003100}
Chris Lattnerc975e1d2005-08-21 22:30:30 +00003101
Evan Cheng95514ba2006-08-26 08:00:10 +00003102SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
Evan Cheng694481e2006-08-27 08:08:54 +00003103 MVT::ValueType VT, const SDOperand *Ops,
3104 unsigned NumOps) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003105 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003106 SDVTList VTs = getVTList(VT);
Jim Laskey583bd472006-10-27 23:46:08 +00003107 FoldingSetNodeID ID;
3108 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Chris Lattnera5682852006-08-07 23:03:03 +00003109 void *IP = 0;
3110 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003111 return ON;
Chris Lattnera5682852006-08-07 23:03:03 +00003112
Chris Lattner6b09a292005-08-21 18:49:33 +00003113 RemoveNodeFromCSEMaps(N);
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003114 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003115
Chris Lattnera5682852006-08-07 23:03:03 +00003116 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003117 return N;
Andrew Lenharth7cf11b42006-01-23 21:51:14 +00003118}
Andrew Lenharth8c6f1ee2006-01-23 20:59:12 +00003119
Evan Cheng95514ba2006-08-26 08:00:10 +00003120SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3121 MVT::ValueType VT1, MVT::ValueType VT2,
3122 SDOperand Op1, SDOperand Op2) {
Chris Lattner0b3e5252006-08-15 19:11:05 +00003123 SDVTList VTs = getVTList(VT1, VT2);
Jim Laskey583bd472006-10-27 23:46:08 +00003124 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003125 SDOperand Ops[] = { Op1, Op2 };
3126 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003127 void *IP = 0;
3128 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003129 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003130
Chris Lattner0fb094f2005-11-19 01:44:53 +00003131 RemoveNodeFromCSEMaps(N);
Chris Lattner63e3f142007-02-04 07:28:00 +00003132 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
Chris Lattnera5682852006-08-07 23:03:03 +00003133 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003134 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003135}
3136
Evan Cheng95514ba2006-08-26 08:00:10 +00003137SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3138 MVT::ValueType VT1, MVT::ValueType VT2,
3139 SDOperand Op1, SDOperand Op2,
3140 SDOperand Op3) {
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003141 // If an identical node already exists, use it.
Chris Lattner0b3e5252006-08-15 19:11:05 +00003142 SDVTList VTs = getVTList(VT1, VT2);
Chris Lattner63e3f142007-02-04 07:28:00 +00003143 SDOperand Ops[] = { Op1, Op2, Op3 };
Jim Laskey583bd472006-10-27 23:46:08 +00003144 FoldingSetNodeID ID;
Chris Lattner63e3f142007-02-04 07:28:00 +00003145 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003146 void *IP = 0;
3147 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
Evan Cheng95514ba2006-08-26 08:00:10 +00003148 return ON;
Chris Lattnerc5e6c642005-12-01 18:00:57 +00003149
Chris Lattner0fb094f2005-11-19 01:44:53 +00003150 RemoveNodeFromCSEMaps(N);
Chris Lattner67612a12007-02-04 02:32:44 +00003151
Chris Lattner63e3f142007-02-04 07:28:00 +00003152 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
Chris Lattnera5682852006-08-07 23:03:03 +00003153 CSEMap.InsertNode(N, IP); // Memoize the new node.
Evan Cheng95514ba2006-08-26 08:00:10 +00003154 return N;
Chris Lattner0fb094f2005-11-19 01:44:53 +00003155}
3156
Chris Lattner0fb094f2005-11-19 01:44:53 +00003157
Evan Cheng6ae46c42006-02-09 07:15:23 +00003158/// getTargetNode - These are used for target selectors to create a new node
3159/// with specified return type(s), target opcode, and operands.
3160///
3161/// Note that getTargetNode returns the resultant node. If there is already a
3162/// node of the specified opcode and operands, it returns that node instead of
3163/// the current one.
3164SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3165 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3166}
3167SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3168 SDOperand Op1) {
3169 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3170}
3171SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3172 SDOperand Op1, SDOperand Op2) {
3173 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3174}
3175SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerfea997a2007-02-01 04:55:59 +00003176 SDOperand Op1, SDOperand Op2,
3177 SDOperand Op3) {
Evan Cheng6ae46c42006-02-09 07:15:23 +00003178 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3179}
3180SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003181 const SDOperand *Ops, unsigned NumOps) {
3182 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003183}
3184SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003185 MVT::ValueType VT2) {
3186 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3187 SDOperand Op;
3188 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3189}
3190SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng6ae46c42006-02-09 07:15:23 +00003191 MVT::ValueType VT2, SDOperand Op1) {
Chris Lattner70046e92006-08-15 17:46:01 +00003192 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003193 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003194}
3195SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003196 MVT::ValueType VT2, SDOperand Op1,
3197 SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003198 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003199 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003200 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003201}
3202SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Chris Lattnera5682852006-08-07 23:03:03 +00003203 MVT::ValueType VT2, SDOperand Op1,
3204 SDOperand Op2, SDOperand Op3) {
Chris Lattner70046e92006-08-15 17:46:01 +00003205 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003206 SDOperand Ops[] = { Op1, Op2, Op3 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003207 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003208}
Evan Cheng694481e2006-08-27 08:08:54 +00003209SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3210 MVT::ValueType VT2,
3211 const SDOperand *Ops, unsigned NumOps) {
Chris Lattner70046e92006-08-15 17:46:01 +00003212 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
Evan Cheng694481e2006-08-27 08:08:54 +00003213 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003214}
3215SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3216 MVT::ValueType VT2, MVT::ValueType VT3,
3217 SDOperand Op1, SDOperand Op2) {
Chris Lattner70046e92006-08-15 17:46:01 +00003218 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003219 SDOperand Ops[] = { Op1, Op2 };
Chris Lattner2fa6d3b2006-08-14 23:31:51 +00003220 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003221}
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003222SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3223 MVT::ValueType VT2, MVT::ValueType VT3,
3224 SDOperand Op1, SDOperand Op2,
3225 SDOperand Op3) {
3226 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3227 SDOperand Ops[] = { Op1, Op2, Op3 };
3228 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3229}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003230SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Evan Cheng694481e2006-08-27 08:08:54 +00003231 MVT::ValueType VT2, MVT::ValueType VT3,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003232 const SDOperand *Ops, unsigned NumOps) {
Evan Cheng694481e2006-08-27 08:08:54 +00003233 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3234 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
Evan Cheng6ae46c42006-02-09 07:15:23 +00003235}
Evan Cheng05e69c12007-09-12 23:39:49 +00003236SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3237 MVT::ValueType VT2, MVT::ValueType VT3,
3238 MVT::ValueType VT4,
3239 const SDOperand *Ops, unsigned NumOps) {
3240 std::vector<MVT::ValueType> VTList;
3241 VTList.push_back(VT1);
3242 VTList.push_back(VT2);
3243 VTList.push_back(VT3);
3244 VTList.push_back(VT4);
3245 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3246 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3247}
Evan Cheng39305cf2007-10-05 01:10:49 +00003248SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3249 std::vector<MVT::ValueType> &ResultTys,
3250 const SDOperand *Ops, unsigned NumOps) {
3251 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3252 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3253 Ops, NumOps).Val;
3254}
Evan Cheng6ae46c42006-02-09 07:15:23 +00003255
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003256
Evan Cheng99157a02006-08-07 22:13:29 +00003257/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
Chris Lattner8b8749f2005-08-17 19:00:20 +00003258/// This can cause recursive merging of nodes in the DAG.
3259///
Chris Lattner11d049c2008-02-03 03:35:22 +00003260/// This version assumes From has a single result value.
Chris Lattner8b52f212005-08-26 18:36:28 +00003261///
Chris Lattner11d049c2008-02-03 03:35:22 +00003262void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003263 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003264 SDNode *From = FromN.Val;
Chris Lattner11d049c2008-02-03 03:35:22 +00003265 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Chris Lattner8b52f212005-08-26 18:36:28 +00003266 "Cannot replace with this method!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003267 assert(From != To.Val && "Cannot replace uses of with self");
Chris Lattner8b52f212005-08-26 18:36:28 +00003268
Chris Lattner8b8749f2005-08-17 19:00:20 +00003269 while (!From->use_empty()) {
3270 // Process users until they are all gone.
3271 SDNode *U = *From->use_begin();
3272
3273 // This node is about to morph, remove its old self from the CSE maps.
3274 RemoveNodeFromCSEMaps(U);
3275
Chris Lattner65113b22005-11-08 22:07:03 +00003276 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3277 I != E; ++I)
3278 if (I->Val == From) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003279 From->removeUser(U);
Chris Lattner11d049c2008-02-03 03:35:22 +00003280 *I = To;
3281 To.Val->addUser(U);
Chris Lattner8b52f212005-08-26 18:36:28 +00003282 }
3283
3284 // Now that we have modified U, add it back to the CSE maps. If it already
3285 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003286 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003287 ReplaceAllUsesWith(U, Existing, UpdateListener);
3288 // U is now dead. Inform the listener if it exists and delete it.
3289 if (UpdateListener)
3290 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003291 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003292 } else {
3293 // If the node doesn't already exist, we updated it. Inform a listener if
3294 // it exists.
3295 if (UpdateListener)
3296 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003297 }
Chris Lattner8b52f212005-08-26 18:36:28 +00003298 }
3299}
3300
3301/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3302/// This can cause recursive merging of nodes in the DAG.
3303///
3304/// This version assumes From/To have matching types and numbers of result
3305/// values.
3306///
Chris Lattner1e111c72005-09-07 05:37:01 +00003307void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003308 DAGUpdateListener *UpdateListener) {
Chris Lattner8b52f212005-08-26 18:36:28 +00003309 assert(From != To && "Cannot replace uses of with self");
3310 assert(From->getNumValues() == To->getNumValues() &&
3311 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattner11d049c2008-02-03 03:35:22 +00003312 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003313 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3314 UpdateListener);
Chris Lattner8b52f212005-08-26 18:36:28 +00003315
3316 while (!From->use_empty()) {
3317 // Process users until they are all gone.
3318 SDNode *U = *From->use_begin();
3319
3320 // This node is about to morph, remove its old self from the CSE maps.
3321 RemoveNodeFromCSEMaps(U);
3322
Chris Lattner65113b22005-11-08 22:07:03 +00003323 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3324 I != E; ++I)
3325 if (I->Val == From) {
Chris Lattner8b8749f2005-08-17 19:00:20 +00003326 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003327 I->Val = To;
Chris Lattner8b8749f2005-08-17 19:00:20 +00003328 To->addUser(U);
3329 }
3330
3331 // Now that we have modified U, add it back to the CSE maps. If it already
3332 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003333 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003334 ReplaceAllUsesWith(U, Existing, UpdateListener);
3335 // U is now dead. Inform the listener if it exists and delete it.
3336 if (UpdateListener)
3337 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003338 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003339 } else {
3340 // If the node doesn't already exist, we updated it. Inform a listener if
3341 // it exists.
3342 if (UpdateListener)
3343 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003344 }
Chris Lattner8b8749f2005-08-17 19:00:20 +00003345 }
3346}
3347
Chris Lattner8b52f212005-08-26 18:36:28 +00003348/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3349/// This can cause recursive merging of nodes in the DAG.
3350///
3351/// This version can replace From with any result values. To must match the
3352/// number and types of values returned by From.
Chris Lattner7b2880c2005-08-24 22:44:39 +00003353void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
Chris Lattnerb9ea4a32006-08-11 17:46:28 +00003354 const SDOperand *To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003355 DAGUpdateListener *UpdateListener) {
Chris Lattner11d049c2008-02-03 03:35:22 +00003356 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003357 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Chris Lattner7b2880c2005-08-24 22:44:39 +00003358
3359 while (!From->use_empty()) {
3360 // Process users until they are all gone.
3361 SDNode *U = *From->use_begin();
3362
3363 // This node is about to morph, remove its old self from the CSE maps.
3364 RemoveNodeFromCSEMaps(U);
3365
Chris Lattner65113b22005-11-08 22:07:03 +00003366 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3367 I != E; ++I)
3368 if (I->Val == From) {
3369 const SDOperand &ToOp = To[I->ResNo];
Chris Lattner7b2880c2005-08-24 22:44:39 +00003370 From->removeUser(U);
Chris Lattner65113b22005-11-08 22:07:03 +00003371 *I = ToOp;
Chris Lattner7b2880c2005-08-24 22:44:39 +00003372 ToOp.Val->addUser(U);
3373 }
3374
3375 // Now that we have modified U, add it back to the CSE maps. If it already
3376 // exists there, recursively merge the results together.
Chris Lattner1e111c72005-09-07 05:37:01 +00003377 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003378 ReplaceAllUsesWith(U, Existing, UpdateListener);
3379 // U is now dead. Inform the listener if it exists and delete it.
3380 if (UpdateListener)
3381 UpdateListener->NodeDeleted(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003382 DeleteNodeNotInCSEMaps(U);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003383 } else {
3384 // If the node doesn't already exist, we updated it. Inform a listener if
3385 // it exists.
3386 if (UpdateListener)
3387 UpdateListener->NodeUpdated(U);
Chris Lattner1e111c72005-09-07 05:37:01 +00003388 }
Chris Lattner7b2880c2005-08-24 22:44:39 +00003389 }
3390}
3391
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003392namespace {
3393 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3394 /// any deleted nodes from the set passed into its constructor and recursively
3395 /// notifies another update listener if specified.
3396 class ChainedSetUpdaterListener :
3397 public SelectionDAG::DAGUpdateListener {
3398 SmallSetVector<SDNode*, 16> &Set;
3399 SelectionDAG::DAGUpdateListener *Chain;
3400 public:
3401 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3402 SelectionDAG::DAGUpdateListener *chain)
3403 : Set(set), Chain(chain) {}
3404
3405 virtual void NodeDeleted(SDNode *N) {
3406 Set.remove(N);
3407 if (Chain) Chain->NodeDeleted(N);
3408 }
3409 virtual void NodeUpdated(SDNode *N) {
3410 if (Chain) Chain->NodeUpdated(N);
3411 }
3412 };
3413}
3414
Chris Lattner012f2412006-02-17 21:58:01 +00003415/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3416/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003417/// handled the same way as for ReplaceAllUsesWith.
Chris Lattner012f2412006-02-17 21:58:01 +00003418void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003419 DAGUpdateListener *UpdateListener){
Chris Lattner012f2412006-02-17 21:58:01 +00003420 assert(From != To && "Cannot replace a value with itself");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003421
Chris Lattner012f2412006-02-17 21:58:01 +00003422 // Handle the simple, trivial, case efficiently.
Chris Lattner11d049c2008-02-03 03:35:22 +00003423 if (From.Val->getNumValues() == 1) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003424 ReplaceAllUsesWith(From, To, UpdateListener);
Chris Lattner012f2412006-02-17 21:58:01 +00003425 return;
3426 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003427
3428 if (From.use_empty()) return;
3429
Chris Lattnercf5640b2007-02-04 00:14:31 +00003430 // Get all of the users of From.Val. We want these in a nice,
3431 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3432 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
Chris Lattner012f2412006-02-17 21:58:01 +00003433
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003434 // When one of the recursive merges deletes nodes from the graph, we need to
3435 // make sure that UpdateListener is notified *and* that the node is removed
3436 // from Users if present. CSUL does this.
3437 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner01d029b2007-10-15 06:10:22 +00003438
Chris Lattner012f2412006-02-17 21:58:01 +00003439 while (!Users.empty()) {
3440 // We know that this user uses some value of From. If it is the right
3441 // value, update it.
3442 SDNode *User = Users.back();
3443 Users.pop_back();
3444
Chris Lattner01d029b2007-10-15 06:10:22 +00003445 // Scan for an operand that matches From.
3446 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3447 for (; Op != E; ++Op)
3448 if (*Op == From) break;
3449
3450 // If there are no matches, the user must use some other result of From.
3451 if (Op == E) continue;
3452
3453 // Okay, we know this user needs to be updated. Remove its old self
3454 // from the CSE maps.
3455 RemoveNodeFromCSEMaps(User);
3456
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003457 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner01d029b2007-10-15 06:10:22 +00003458 for (; Op != E; ++Op) {
Chris Lattner012f2412006-02-17 21:58:01 +00003459 if (*Op == From) {
Chris Lattner01d029b2007-10-15 06:10:22 +00003460 From.Val->removeUser(User);
3461 *Op = To;
3462 To.Val->addUser(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003463 }
3464 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003465
3466 // Now that we have modified User, add it back to the CSE maps. If it
3467 // already exists there, recursively merge the results together.
3468 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003469 if (!Existing) {
3470 if (UpdateListener) UpdateListener->NodeUpdated(User);
3471 continue; // Continue on to next user.
3472 }
Chris Lattner01d029b2007-10-15 06:10:22 +00003473
3474 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003475 // to replace the dead one with the existing one. This can cause
Chris Lattner01d029b2007-10-15 06:10:22 +00003476 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003477 // can cause deletion of nodes that used the old value. To handle this, we
3478 // use CSUL to remove them from the Users set.
3479 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner01d029b2007-10-15 06:10:22 +00003480
Chris Lattnerf8dc0612008-02-03 06:49:24 +00003481 // User is now dead. Notify a listener if present.
3482 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner01d029b2007-10-15 06:10:22 +00003483 DeleteNodeNotInCSEMaps(User);
Chris Lattner012f2412006-02-17 21:58:01 +00003484 }
3485}
3486
Chris Lattner7b2880c2005-08-24 22:44:39 +00003487
Evan Chenge6f35d82006-08-01 08:20:41 +00003488/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3489/// their allnodes order. It returns the maximum id.
Evan Cheng7c16d772006-07-27 07:36:47 +00003490unsigned SelectionDAG::AssignNodeIds() {
3491 unsigned Id = 0;
Evan Cheng091cba12006-07-27 06:39:06 +00003492 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3493 SDNode *N = I;
3494 N->setNodeId(Id++);
3495 }
3496 return Id;
3497}
3498
Evan Chenge6f35d82006-08-01 08:20:41 +00003499/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
Evan Chengc384d6c2006-08-02 22:00:34 +00003500/// based on their topological order. It returns the maximum id and a vector
3501/// of the SDNodes* in assigned order by reference.
3502unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
Evan Chenge6f35d82006-08-01 08:20:41 +00003503 unsigned DAGSize = AllNodes.size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003504 std::vector<unsigned> InDegree(DAGSize);
3505 std::vector<SDNode*> Sources;
3506
3507 // Use a two pass approach to avoid using a std::map which is slow.
3508 unsigned Id = 0;
Evan Chenge6f35d82006-08-01 08:20:41 +00003509 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3510 SDNode *N = I;
Evan Chengc384d6c2006-08-02 22:00:34 +00003511 N->setNodeId(Id++);
Evan Chenge6f35d82006-08-01 08:20:41 +00003512 unsigned Degree = N->use_size();
Evan Chengc384d6c2006-08-02 22:00:34 +00003513 InDegree[N->getNodeId()] = Degree;
Evan Chenge6f35d82006-08-01 08:20:41 +00003514 if (Degree == 0)
Evan Chengc384d6c2006-08-02 22:00:34 +00003515 Sources.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003516 }
3517
Evan Cheng99157a02006-08-07 22:13:29 +00003518 TopOrder.clear();
Evan Chenge6f35d82006-08-01 08:20:41 +00003519 while (!Sources.empty()) {
Evan Chengc384d6c2006-08-02 22:00:34 +00003520 SDNode *N = Sources.back();
3521 Sources.pop_back();
Evan Chenge6f35d82006-08-01 08:20:41 +00003522 TopOrder.push_back(N);
Evan Chenge6f35d82006-08-01 08:20:41 +00003523 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3524 SDNode *P = I->Val;
Evan Chengc384d6c2006-08-02 22:00:34 +00003525 unsigned Degree = --InDegree[P->getNodeId()];
Evan Chenge6f35d82006-08-01 08:20:41 +00003526 if (Degree == 0)
3527 Sources.push_back(P);
Evan Chenge6f35d82006-08-01 08:20:41 +00003528 }
3529 }
3530
Evan Chengc384d6c2006-08-02 22:00:34 +00003531 // Second pass, assign the actual topological order as node ids.
3532 Id = 0;
3533 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3534 TI != TE; ++TI)
3535 (*TI)->setNodeId(Id++);
3536
3537 return Id;
Evan Chenge6f35d82006-08-01 08:20:41 +00003538}
3539
3540
Evan Cheng091cba12006-07-27 06:39:06 +00003541
Jim Laskey58b968b2005-08-17 20:08:02 +00003542//===----------------------------------------------------------------------===//
3543// SDNode Class
3544//===----------------------------------------------------------------------===//
Chris Lattner149c58c2005-08-16 18:17:10 +00003545
Chris Lattner917d2c92006-07-19 00:00:37 +00003546// Out-of-line virtual method to give class a home.
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003547void SDNode::ANCHOR() {}
Chris Lattner3f97eb42007-02-04 08:35:21 +00003548void UnarySDNode::ANCHOR() {}
3549void BinarySDNode::ANCHOR() {}
3550void TernarySDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003551void HandleSDNode::ANCHOR() {}
3552void StringSDNode::ANCHOR() {}
3553void ConstantSDNode::ANCHOR() {}
3554void ConstantFPSDNode::ANCHOR() {}
3555void GlobalAddressSDNode::ANCHOR() {}
3556void FrameIndexSDNode::ANCHOR() {}
3557void JumpTableSDNode::ANCHOR() {}
3558void ConstantPoolSDNode::ANCHOR() {}
3559void BasicBlockSDNode::ANCHOR() {}
3560void SrcValueSDNode::ANCHOR() {}
Dan Gohman69de1932008-02-06 22:27:42 +00003561void MemOperandSDNode::ANCHOR() {}
Chris Lattnerc76e3c82007-02-04 02:23:32 +00003562void RegisterSDNode::ANCHOR() {}
3563void ExternalSymbolSDNode::ANCHOR() {}
3564void CondCodeSDNode::ANCHOR() {}
3565void VTSDNode::ANCHOR() {}
3566void LoadSDNode::ANCHOR() {}
3567void StoreSDNode::ANCHOR() {}
Chris Lattner917d2c92006-07-19 00:00:37 +00003568
Chris Lattner48b85922007-02-04 02:41:42 +00003569HandleSDNode::~HandleSDNode() {
3570 SDVTList VTs = { 0, 0 };
Chris Lattnerd429bcd2007-02-04 02:49:29 +00003571 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
Chris Lattner48b85922007-02-04 02:41:42 +00003572}
3573
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003574GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3575 MVT::ValueType VT, int o)
3576 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman275769a2007-07-23 20:24:29 +00003577 cast<GlobalVariable>(GA)->isThreadLocal() ?
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003578 // Thread Local
3579 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3580 // Non Thread Local
3581 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3582 getSDVTList(VT)), Offset(o) {
3583 TheGlobal = const_cast<GlobalValue*>(GA);
3584}
Chris Lattner48b85922007-02-04 02:41:42 +00003585
Dan Gohman69de1932008-02-06 22:27:42 +00003586/// getMemOperand - Return a MemOperand object describing the memory
3587/// reference performed by this load or store.
3588MemOperand LSBaseSDNode::getMemOperand() const {
3589 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
3590 int Flags =
3591 getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
3592 if (IsVolatile) Flags |= MemOperand::MOVolatile;
3593
3594 // Check if the load references a frame index, and does not have
3595 // an SV attached.
3596 const FrameIndexSDNode *FI =
3597 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
3598 if (!getSrcValue() && FI)
Dan Gohman3069b872008-02-07 18:41:25 +00003599 return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
Dan Gohman69de1932008-02-06 22:27:42 +00003600 FI->getIndex(), Size, Alignment);
3601 else
3602 return MemOperand(getSrcValue(), Flags,
3603 getSrcValueOffset(), Size, Alignment);
3604}
3605
Jim Laskey583bd472006-10-27 23:46:08 +00003606/// Profile - Gather unique data for the node.
3607///
3608void SDNode::Profile(FoldingSetNodeID &ID) {
3609 AddNodeIDNode(ID, this);
3610}
3611
Chris Lattnera3255112005-11-08 23:30:28 +00003612/// getValueTypeList - Return a pointer to the specified value type.
3613///
Dan Gohman547ca532008-02-08 03:26:46 +00003614const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsaf47b112007-10-16 09:56:48 +00003615 if (MVT::isExtendedVT(VT)) {
3616 static std::set<MVT::ValueType> EVTs;
Dan Gohman547ca532008-02-08 03:26:46 +00003617 return &(*EVTs.insert(VT).first);
Duncan Sandsaf47b112007-10-16 09:56:48 +00003618 } else {
3619 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3620 VTs[VT] = VT;
3621 return &VTs[VT];
3622 }
Chris Lattnera3255112005-11-08 23:30:28 +00003623}
Duncan Sandsaf47b112007-10-16 09:56:48 +00003624
Chris Lattner5c884562005-01-12 18:37:47 +00003625/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3626/// indicated value. This method ignores uses of other values defined by this
3627/// operation.
Evan Cheng4ee62112006-02-05 06:29:23 +00003628bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
Chris Lattner5c884562005-01-12 18:37:47 +00003629 assert(Value < getNumValues() && "Bad value!");
3630
3631 // If there is only one value, this is easy.
3632 if (getNumValues() == 1)
3633 return use_size() == NUses;
Evan Cheng33d55952007-08-02 05:29:38 +00003634 if (use_size() < NUses) return false;
Chris Lattner5c884562005-01-12 18:37:47 +00003635
Evan Cheng4ee62112006-02-05 06:29:23 +00003636 SDOperand TheValue(const_cast<SDNode *>(this), Value);
Chris Lattner5c884562005-01-12 18:37:47 +00003637
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003638 SmallPtrSet<SDNode*, 32> UsersHandled;
Chris Lattner5c884562005-01-12 18:37:47 +00003639
Chris Lattnerf83482d2006-08-16 20:59:32 +00003640 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
Chris Lattner5c884562005-01-12 18:37:47 +00003641 SDNode *User = *UI;
3642 if (User->getNumOperands() == 1 ||
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003643 UsersHandled.insert(User)) // First time we've seen this?
Chris Lattner5c884562005-01-12 18:37:47 +00003644 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3645 if (User->getOperand(i) == TheValue) {
3646 if (NUses == 0)
3647 return false; // too many uses
3648 --NUses;
3649 }
3650 }
3651
3652 // Found exactly the right number of uses?
3653 return NUses == 0;
3654}
3655
3656
Evan Cheng33d55952007-08-02 05:29:38 +00003657/// hasAnyUseOfValue - Return true if there are any use of the indicated
3658/// value. This method ignores uses of other values defined by this operation.
3659bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3660 assert(Value < getNumValues() && "Bad value!");
3661
Dan Gohman30359592008-01-29 13:02:09 +00003662 if (use_empty()) return false;
Evan Cheng33d55952007-08-02 05:29:38 +00003663
3664 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3665
3666 SmallPtrSet<SDNode*, 32> UsersHandled;
3667
3668 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3669 SDNode *User = *UI;
3670 if (User->getNumOperands() == 1 ||
3671 UsersHandled.insert(User)) // First time we've seen this?
3672 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3673 if (User->getOperand(i) == TheValue) {
3674 return true;
3675 }
3676 }
3677
3678 return false;
3679}
3680
3681
Evan Chenge6e97e62006-11-03 07:31:32 +00003682/// isOnlyUse - Return true if this node is the only use of N.
3683///
Evan Cheng4ee62112006-02-05 06:29:23 +00003684bool SDNode::isOnlyUse(SDNode *N) const {
3685 bool Seen = false;
3686 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3687 SDNode *User = *I;
3688 if (User == this)
3689 Seen = true;
3690 else
3691 return false;
3692 }
3693
3694 return Seen;
3695}
3696
Evan Chenge6e97e62006-11-03 07:31:32 +00003697/// isOperand - Return true if this node is an operand of N.
3698///
Evan Chengbfa284f2006-03-03 06:42:32 +00003699bool SDOperand::isOperand(SDNode *N) const {
3700 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3701 if (*this == N->getOperand(i))
3702 return true;
3703 return false;
3704}
3705
Evan Cheng80d8eaa2006-03-03 06:24:54 +00003706bool SDNode::isOperand(SDNode *N) const {
3707 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3708 if (this == N->OperandList[i].Val)
3709 return true;
3710 return false;
3711}
Evan Cheng4ee62112006-02-05 06:29:23 +00003712
Chris Lattner572dee72008-01-16 05:49:24 +00003713/// reachesChainWithoutSideEffects - Return true if this operand (which must
3714/// be a chain) reaches the specified operand without crossing any
3715/// side-effecting instructions. In practice, this looks through token
3716/// factors and non-volatile loads. In order to remain efficient, this only
3717/// looks a couple of nodes in, it does not do an exhaustive search.
3718bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3719 unsigned Depth) const {
3720 if (*this == Dest) return true;
3721
3722 // Don't search too deeply, we just want to be able to see through
3723 // TokenFactor's etc.
3724 if (Depth == 0) return false;
3725
3726 // If this is a token factor, all inputs to the TF happen in parallel. If any
3727 // of the operands of the TF reach dest, then we can do the xform.
3728 if (getOpcode() == ISD::TokenFactor) {
3729 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3730 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3731 return true;
3732 return false;
3733 }
3734
3735 // Loads don't have side effects, look through them.
3736 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3737 if (!Ld->isVolatile())
3738 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3739 }
3740 return false;
3741}
3742
3743
Evan Chengc5fc57d2006-11-03 03:05:24 +00003744static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003745 SmallPtrSet<SDNode *, 32> &Visited) {
3746 if (found || !Visited.insert(N))
Evan Chengc5fc57d2006-11-03 03:05:24 +00003747 return;
3748
3749 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3750 SDNode *Op = N->getOperand(i).Val;
3751 if (Op == P) {
3752 found = true;
3753 return;
3754 }
3755 findPredecessor(Op, P, found, Visited);
3756 }
3757}
3758
Evan Chenge6e97e62006-11-03 07:31:32 +00003759/// isPredecessor - Return true if this node is a predecessor of N. This node
3760/// is either an operand of N or it can be reached by recursively traversing
3761/// up the operands.
3762/// NOTE: this is an expensive method. Use it carefully.
Evan Chengc5fc57d2006-11-03 03:05:24 +00003763bool SDNode::isPredecessor(SDNode *N) const {
Chris Lattnerd48c5e82007-02-04 00:24:41 +00003764 SmallPtrSet<SDNode *, 32> Visited;
Evan Chengc5fc57d2006-11-03 03:05:24 +00003765 bool found = false;
3766 findPredecessor(N, this, found, Visited);
3767 return found;
3768}
3769
Evan Chengc5484282006-10-04 00:56:09 +00003770uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3771 assert(Num < NumOperands && "Invalid child # of SDNode!");
3772 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3773}
3774
Reid Spencer577cc322007-04-01 07:32:19 +00003775std::string SDNode::getOperationName(const SelectionDAG *G) const {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003776 switch (getOpcode()) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003777 default:
3778 if (getOpcode() < ISD::BUILTIN_OP_END)
3779 return "<<Unknown DAG Node>>";
3780 else {
Evan Cheng72261582005-12-20 06:22:03 +00003781 if (G) {
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003782 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
Chris Lattner08addbd2005-09-09 22:35:03 +00003783 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner349c4952008-01-07 03:13:06 +00003784 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Evan Cheng115c0362005-12-19 23:11:49 +00003785
Evan Cheng72261582005-12-20 06:22:03 +00003786 TargetLowering &TLI = G->getTargetLoweringInfo();
3787 const char *Name =
3788 TLI.getTargetNodeName(getOpcode());
3789 if (Name) return Name;
3790 }
3791
3792 return "<<Unknown Target Node>>";
Chris Lattnerf3e133a2005-08-16 18:33:07 +00003793 }
3794
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00003795 case ISD::MEMBARRIER: return "MemBarrier";
Andrew Lenharth95762122005-03-31 21:24:06 +00003796 case ISD::PCMARKER: return "PCMarker";
Andrew Lenharth51b8d542005-11-11 16:47:30 +00003797 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
Chris Lattner2bf3c262005-05-09 04:08:27 +00003798 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman69de1932008-02-06 22:27:42 +00003799 case ISD::MEMOPERAND: return "MemOperand";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003800 case ISD::EntryToken: return "EntryToken";
Chris Lattner282c5ca2005-01-13 17:59:10 +00003801 case ISD::TokenFactor: return "TokenFactor";
Nate Begeman56eb8682005-08-30 02:44:00 +00003802 case ISD::AssertSext: return "AssertSext";
3803 case ISD::AssertZext: return "AssertZext";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003804
3805 case ISD::STRING: return "String";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003806 case ISD::BasicBlock: return "BasicBlock";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003807 case ISD::VALUETYPE: return "ValueType";
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003808 case ISD::Register: return "Register";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003809
3810 case ISD::Constant: return "Constant";
3811 case ISD::ConstantFP: return "ConstantFP";
3812 case ISD::GlobalAddress: return "GlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003813 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003814 case ISD::FrameIndex: return "FrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003815 case ISD::JumpTable: return "JumpTable";
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +00003816 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
Nate Begemanbcc5f362007-01-29 22:58:52 +00003817 case ISD::RETURNADDR: return "RETURNADDR";
3818 case ISD::FRAMEADDR: return "FRAMEADDR";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003819 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
Jim Laskeyb180aa12007-02-21 22:53:45 +00003820 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3821 case ISD::EHSELECTION: return "EHSELECTION";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00003822 case ISD::EH_RETURN: return "EH_RETURN";
Chris Lattner5839bf22005-08-26 17:15:30 +00003823 case ISD::ConstantPool: return "ConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003824 case ISD::ExternalSymbol: return "ExternalSymbol";
Chris Lattner48b61a72006-03-28 00:40:33 +00003825 case ISD::INTRINSIC_WO_CHAIN: {
3826 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3827 return Intrinsic::getName((Intrinsic::ID)IID);
3828 }
3829 case ISD::INTRINSIC_VOID:
3830 case ISD::INTRINSIC_W_CHAIN: {
3831 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
Chris Lattner70a248d2006-03-27 06:45:25 +00003832 return Intrinsic::getName((Intrinsic::ID)IID);
Chris Lattner401ec7f2006-03-27 16:10:59 +00003833 }
Evan Cheng1ab7d852006-03-01 00:51:13 +00003834
Chris Lattnerb2827b02006-03-19 00:52:58 +00003835 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003836 case ISD::TargetConstant: return "TargetConstant";
3837 case ISD::TargetConstantFP:return "TargetConstantFP";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003838 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003839 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003840 case ISD::TargetFrameIndex: return "TargetFrameIndex";
Nate Begeman37efe672006-04-22 18:53:45 +00003841 case ISD::TargetJumpTable: return "TargetJumpTable";
Chris Lattner5839bf22005-08-26 17:15:30 +00003842 case ISD::TargetConstantPool: return "TargetConstantPool";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003843 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
Evan Cheng1ab7d852006-03-01 00:51:13 +00003844
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003845 case ISD::CopyToReg: return "CopyToReg";
3846 case ISD::CopyFromReg: return "CopyFromReg";
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003847 case ISD::UNDEF: return "undef";
Dan Gohman50b15332007-07-05 20:15:43 +00003848 case ISD::MERGE_VALUES: return "merge_values";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003849 case ISD::INLINEASM: return "inlineasm";
Jim Laskey1ee29252007-01-26 14:34:52 +00003850 case ISD::LABEL: return "label";
Evan Chenga844bde2008-02-02 04:07:54 +00003851 case ISD::DECLARE: return "declare";
Evan Cheng9fda2f92006-02-03 01:33:01 +00003852 case ISD::HANDLENODE: return "handlenode";
Chris Lattnerfdfded52006-04-12 16:20:43 +00003853 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
Chris Lattnerf4ec8172006-05-16 22:53:20 +00003854 case ISD::CALL: return "call";
Chris Lattnerce7518c2006-01-26 22:24:51 +00003855
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003856 // Unary operators
3857 case ISD::FABS: return "fabs";
3858 case ISD::FNEG: return "fneg";
Chris Lattner7f644642005-04-28 21:44:03 +00003859 case ISD::FSQRT: return "fsqrt";
3860 case ISD::FSIN: return "fsin";
3861 case ISD::FCOS: return "fcos";
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003862 case ISD::FPOWI: return "fpowi";
Dan Gohman07f04fd2007-10-11 23:06:37 +00003863 case ISD::FPOW: return "fpow";
Chris Lattnerff9fd0a2005-04-02 04:58:41 +00003864
3865 // Binary operators
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003866 case ISD::ADD: return "add";
3867 case ISD::SUB: return "sub";
3868 case ISD::MUL: return "mul";
Nate Begeman18670542005-04-05 22:36:56 +00003869 case ISD::MULHU: return "mulhu";
3870 case ISD::MULHS: return "mulhs";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003871 case ISD::SDIV: return "sdiv";
3872 case ISD::UDIV: return "udiv";
3873 case ISD::SREM: return "srem";
3874 case ISD::UREM: return "urem";
Dan Gohmanccd60792007-10-05 14:11:04 +00003875 case ISD::SMUL_LOHI: return "smul_lohi";
3876 case ISD::UMUL_LOHI: return "umul_lohi";
3877 case ISD::SDIVREM: return "sdivrem";
3878 case ISD::UDIVREM: return "divrem";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003879 case ISD::AND: return "and";
3880 case ISD::OR: return "or";
3881 case ISD::XOR: return "xor";
3882 case ISD::SHL: return "shl";
3883 case ISD::SRA: return "sra";
3884 case ISD::SRL: return "srl";
Nate Begeman35ef9132006-01-11 21:21:00 +00003885 case ISD::ROTL: return "rotl";
3886 case ISD::ROTR: return "rotr";
Chris Lattner01b3d732005-09-28 22:28:18 +00003887 case ISD::FADD: return "fadd";
3888 case ISD::FSUB: return "fsub";
3889 case ISD::FMUL: return "fmul";
3890 case ISD::FDIV: return "fdiv";
3891 case ISD::FREM: return "frem";
Chris Lattnera09f8482006-03-05 05:09:38 +00003892 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattnerd268a492007-12-22 21:26:52 +00003893 case ISD::FGETSIGN: return "fgetsign";
Chris Lattner0c486bd2006-03-17 19:53:59 +00003894
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003895 case ISD::SETCC: return "setcc";
3896 case ISD::SELECT: return "select";
Nate Begeman9373a812005-08-10 20:51:12 +00003897 case ISD::SELECT_CC: return "select_cc";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003898 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003899 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
Dan Gohman7f321562007-06-25 16:23:39 +00003900 case ISD::CONCAT_VECTORS: return "concat_vectors";
3901 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003902 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
Chris Lattnerb22e35a2006-04-08 22:22:57 +00003903 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
Chris Lattnerb6541762007-03-04 20:40:38 +00003904 case ISD::CARRY_FALSE: return "carry_false";
Nate Begeman551bf3f2006-02-17 05:43:56 +00003905 case ISD::ADDC: return "addc";
3906 case ISD::ADDE: return "adde";
3907 case ISD::SUBC: return "subc";
3908 case ISD::SUBE: return "sube";
Chris Lattner41be9512005-04-02 03:30:42 +00003909 case ISD::SHL_PARTS: return "shl_parts";
3910 case ISD::SRA_PARTS: return "sra_parts";
3911 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lamb557c3632007-07-26 07:34:40 +00003912
3913 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3914 case ISD::INSERT_SUBREG: return "insert_subreg";
3915
Chris Lattner7f644642005-04-28 21:44:03 +00003916 // Conversion operators.
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003917 case ISD::SIGN_EXTEND: return "sign_extend";
3918 case ISD::ZERO_EXTEND: return "zero_extend";
Chris Lattner4ed11b42005-09-02 00:17:32 +00003919 case ISD::ANY_EXTEND: return "any_extend";
Chris Lattner859157d2005-01-15 06:17:04 +00003920 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003921 case ISD::TRUNCATE: return "truncate";
3922 case ISD::FP_ROUND: return "fp_round";
Dan Gohman1a024862008-01-31 00:41:03 +00003923 case ISD::FLT_ROUNDS_: return "flt_rounds";
Chris Lattner859157d2005-01-15 06:17:04 +00003924 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003925 case ISD::FP_EXTEND: return "fp_extend";
3926
3927 case ISD::SINT_TO_FP: return "sint_to_fp";
3928 case ISD::UINT_TO_FP: return "uint_to_fp";
3929 case ISD::FP_TO_SINT: return "fp_to_sint";
3930 case ISD::FP_TO_UINT: return "fp_to_uint";
Chris Lattner35481892005-12-23 00:16:34 +00003931 case ISD::BIT_CONVERT: return "bit_convert";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003932
3933 // Control flow instructions
3934 case ISD::BR: return "br";
Nate Begeman37efe672006-04-22 18:53:45 +00003935 case ISD::BRIND: return "brind";
Evan Chengc41cd9c2006-10-30 07:59:36 +00003936 case ISD::BR_JT: return "br_jt";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003937 case ISD::BRCOND: return "brcond";
Nate Begeman81e80972006-03-17 01:40:33 +00003938 case ISD::BR_CC: return "br_cc";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003939 case ISD::RET: return "ret";
Chris Lattnera364fa12005-05-12 23:51:40 +00003940 case ISD::CALLSEQ_START: return "callseq_start";
3941 case ISD::CALLSEQ_END: return "callseq_end";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003942
3943 // Other operators
Nate Begemanacc398c2006-01-25 18:21:52 +00003944 case ISD::LOAD: return "load";
3945 case ISD::STORE: return "store";
Nate Begemanacc398c2006-01-25 18:21:52 +00003946 case ISD::VAARG: return "vaarg";
3947 case ISD::VACOPY: return "vacopy";
3948 case ISD::VAEND: return "vaend";
3949 case ISD::VASTART: return "vastart";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003950 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
Chris Lattner5a67afc2006-01-13 02:39:42 +00003951 case ISD::EXTRACT_ELEMENT: return "extract_element";
3952 case ISD::BUILD_PAIR: return "build_pair";
3953 case ISD::STACKSAVE: return "stacksave";
3954 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003955 case ISD::TRAP: return "trap";
3956
Chris Lattner5a67afc2006-01-13 02:39:42 +00003957 // Block memory operations.
Chris Lattner4c633e82005-01-11 05:57:01 +00003958 case ISD::MEMSET: return "memset";
3959 case ISD::MEMCPY: return "memcpy";
3960 case ISD::MEMMOVE: return "memmove";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003961
Nate Begeman1b5db7a2006-01-16 08:07:10 +00003962 // Bit manipulation
3963 case ISD::BSWAP: return "bswap";
Chris Lattner276260b2005-05-11 04:50:30 +00003964 case ISD::CTPOP: return "ctpop";
3965 case ISD::CTTZ: return "cttz";
3966 case ISD::CTLZ: return "ctlz";
3967
Chris Lattner36ce6912005-11-29 06:21:05 +00003968 // Debug info
3969 case ISD::LOCATION: return "location";
Jim Laskeyf5395ce2005-12-16 22:45:29 +00003970 case ISD::DEBUG_LOC: return "debug_loc";
Chris Lattner36ce6912005-11-29 06:21:05 +00003971
Duncan Sands36397f52007-07-27 12:58:54 +00003972 // Trampolines
Duncan Sandsf7331b32007-09-11 14:10:23 +00003973 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands36397f52007-07-27 12:58:54 +00003974
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003975 case ISD::CONDCODE:
3976 switch (cast<CondCodeSDNode>(this)->get()) {
Chris Lattnerd75f19f2005-01-10 23:25:25 +00003977 default: assert(0 && "Unknown setcc condition!");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003978 case ISD::SETOEQ: return "setoeq";
3979 case ISD::SETOGT: return "setogt";
3980 case ISD::SETOGE: return "setoge";
3981 case ISD::SETOLT: return "setolt";
3982 case ISD::SETOLE: return "setole";
3983 case ISD::SETONE: return "setone";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003984
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003985 case ISD::SETO: return "seto";
3986 case ISD::SETUO: return "setuo";
3987 case ISD::SETUEQ: return "setue";
3988 case ISD::SETUGT: return "setugt";
3989 case ISD::SETUGE: return "setuge";
3990 case ISD::SETULT: return "setult";
3991 case ISD::SETULE: return "setule";
3992 case ISD::SETUNE: return "setune";
Misha Brukmanedf128a2005-04-21 22:36:52 +00003993
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003994 case ISD::SETEQ: return "seteq";
3995 case ISD::SETGT: return "setgt";
3996 case ISD::SETGE: return "setge";
3997 case ISD::SETLT: return "setlt";
3998 case ISD::SETLE: return "setle";
3999 case ISD::SETNE: return "setne";
Chris Lattnerd75f19f2005-01-10 23:25:25 +00004000 }
4001 }
4002}
Chris Lattnerc3aae252005-01-07 07:46:32 +00004003
Evan Cheng144d8f02006-11-09 17:55:04 +00004004const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
Evan Cheng2caccca2006-10-17 21:14:32 +00004005 switch (AM) {
4006 default:
4007 return "";
4008 case ISD::PRE_INC:
4009 return "<pre-inc>";
4010 case ISD::PRE_DEC:
4011 return "<pre-dec>";
4012 case ISD::POST_INC:
4013 return "<post-inc>";
4014 case ISD::POST_DEC:
4015 return "<post-dec>";
4016 }
4017}
4018
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004019void SDNode::dump() const { dump(0); }
4020void SDNode::dump(const SelectionDAG *G) const {
Bill Wendling832171c2006-12-07 20:04:42 +00004021 cerr << (void*)this << ": ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004022
4023 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004024 if (i) cerr << ",";
Chris Lattner4ea69242005-01-15 07:14:32 +00004025 if (getValueType(i) == MVT::Other)
Bill Wendling832171c2006-12-07 20:04:42 +00004026 cerr << "ch";
Chris Lattner4ea69242005-01-15 07:14:32 +00004027 else
Bill Wendling832171c2006-12-07 20:04:42 +00004028 cerr << MVT::getValueTypeString(getValueType(i));
Chris Lattnerc3aae252005-01-07 07:46:32 +00004029 }
Bill Wendling832171c2006-12-07 20:04:42 +00004030 cerr << " = " << getOperationName(G);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004031
Bill Wendling832171c2006-12-07 20:04:42 +00004032 cerr << " ";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004033 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Bill Wendling832171c2006-12-07 20:04:42 +00004034 if (i) cerr << ", ";
4035 cerr << (void*)getOperand(i).Val;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004036 if (unsigned RN = getOperand(i).ResNo)
Bill Wendling832171c2006-12-07 20:04:42 +00004037 cerr << ":" << RN;
Chris Lattnerc3aae252005-01-07 07:46:32 +00004038 }
4039
Evan Chengce254432007-12-11 02:08:35 +00004040 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4041 SDNode *Mask = getOperand(2).Val;
4042 cerr << "<";
4043 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4044 if (i) cerr << ",";
4045 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4046 cerr << "u";
4047 else
4048 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4049 }
4050 cerr << ">";
4051 }
4052
Chris Lattnerc3aae252005-01-07 07:46:32 +00004053 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004054 cerr << "<" << CSDN->getValue() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004055 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004056 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4057 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4058 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4059 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4060 else {
4061 cerr << "<APFloat(";
4062 CSDN->getValueAPF().convertToAPInt().dump();
4063 cerr << ")>";
4064 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00004065 } else if (const GlobalAddressSDNode *GADN =
Chris Lattnerc3aae252005-01-07 07:46:32 +00004066 dyn_cast<GlobalAddressSDNode>(this)) {
Evan Cheng61ca74b2005-11-30 02:04:11 +00004067 int offset = GADN->getOffset();
Bill Wendling832171c2006-12-07 20:04:42 +00004068 cerr << "<";
Bill Wendlingbcd24982006-12-07 20:28:15 +00004069 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
Evan Cheng61ca74b2005-11-30 02:04:11 +00004070 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004071 cerr << " + " << offset;
Evan Cheng61ca74b2005-11-30 02:04:11 +00004072 else
Bill Wendling832171c2006-12-07 20:04:42 +00004073 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004074 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004075 cerr << "<" << FIDN->getIndex() << ">";
Evan Cheng6cc31ae2006-11-01 04:48:30 +00004076 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004077 cerr << "<" << JTDN->getIndex() << ">";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004078 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
Evan Cheng38b73272006-02-26 08:36:57 +00004079 int offset = CP->getOffset();
Evan Chengd6594ae2006-09-12 21:00:35 +00004080 if (CP->isMachineConstantPoolEntry())
Bill Wendling832171c2006-12-07 20:04:42 +00004081 cerr << "<" << *CP->getMachineCPVal() << ">";
Evan Chengd6594ae2006-09-12 21:00:35 +00004082 else
Bill Wendling832171c2006-12-07 20:04:42 +00004083 cerr << "<" << *CP->getConstVal() << ">";
Evan Cheng38b73272006-02-26 08:36:57 +00004084 if (offset > 0)
Bill Wendling832171c2006-12-07 20:04:42 +00004085 cerr << " + " << offset;
Evan Cheng38b73272006-02-26 08:36:57 +00004086 else
Bill Wendling832171c2006-12-07 20:04:42 +00004087 cerr << " " << offset;
Misha Brukmandedf2bd2005-04-22 04:01:18 +00004088 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004089 cerr << "<";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004090 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4091 if (LBB)
Bill Wendling832171c2006-12-07 20:04:42 +00004092 cerr << LBB->getName() << " ";
4093 cerr << (const void*)BBDN->getBasicBlock() << ">";
Chris Lattnerfa164b62005-08-19 21:34:13 +00004094 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman6f0d0242008-02-10 18:45:23 +00004095 if (G && R->getReg() &&
4096 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Bill Wendling832171c2006-12-07 20:04:42 +00004097 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
Chris Lattner7228aa72005-08-19 21:21:16 +00004098 } else {
Bill Wendling832171c2006-12-07 20:04:42 +00004099 cerr << " #" << R->getReg();
Chris Lattner7228aa72005-08-19 21:21:16 +00004100 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004101 } else if (const ExternalSymbolSDNode *ES =
4102 dyn_cast<ExternalSymbolSDNode>(this)) {
Bill Wendling832171c2006-12-07 20:04:42 +00004103 cerr << "'" << ES->getSymbol() << "'";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004104 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4105 if (M->getValue())
Dan Gohman69de1932008-02-06 22:27:42 +00004106 cerr << "<" << M->getValue() << ">";
Chris Lattner2bf3c262005-05-09 04:08:27 +00004107 else
Dan Gohman69de1932008-02-06 22:27:42 +00004108 cerr << "<null>";
4109 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4110 if (M->MO.getValue())
4111 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4112 else
4113 cerr << "<null:" << M->MO.getOffset() << ">";
Chris Lattnera23e8152005-08-18 03:31:02 +00004114 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
Dan Gohman237898a2007-05-24 14:33:05 +00004115 cerr << ":" << MVT::getValueTypeString(N->getVT());
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004116 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng81310132007-12-18 19:06:30 +00004117 const Value *SrcValue = LD->getSrcValue();
4118 int SrcOffset = LD->getSrcValueOffset();
4119 cerr << " <";
4120 if (SrcValue)
4121 cerr << SrcValue;
4122 else
4123 cerr << "null";
4124 cerr << ":" << SrcOffset << ">";
4125
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004126 bool doExt = true;
4127 switch (LD->getExtensionType()) {
4128 default: doExt = false; break;
4129 case ISD::EXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004130 cerr << " <anyext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004131 break;
4132 case ISD::SEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004133 cerr << " <sext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004134 break;
4135 case ISD::ZEXTLOAD:
Bill Wendling832171c2006-12-07 20:04:42 +00004136 cerr << " <zext ";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004137 break;
4138 }
4139 if (doExt)
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004140 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Evan Cheng0ac1c6a2006-10-10 20:05:10 +00004141
Evan Cheng144d8f02006-11-09 17:55:04 +00004142 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sands70d0bd12007-07-19 07:31:58 +00004143 if (*AM)
Bill Wendling832171c2006-12-07 20:04:42 +00004144 cerr << " " << AM;
Evan Cheng81310132007-12-18 19:06:30 +00004145 if (LD->isVolatile())
4146 cerr << " <volatile>";
4147 cerr << " alignment=" << LD->getAlignment();
Evan Cheng2caccca2006-10-17 21:14:32 +00004148 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng88ce93e2007-12-18 07:02:08 +00004149 const Value *SrcValue = ST->getSrcValue();
4150 int SrcOffset = ST->getSrcValueOffset();
4151 cerr << " <";
4152 if (SrcValue)
4153 cerr << SrcValue;
4154 else
4155 cerr << "null";
4156 cerr << ":" << SrcOffset << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004157
4158 if (ST->isTruncatingStore())
4159 cerr << " <trunc "
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004160 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng81310132007-12-18 19:06:30 +00004161
4162 const char *AM = getIndexedModeName(ST->getAddressingMode());
4163 if (*AM)
4164 cerr << " " << AM;
4165 if (ST->isVolatile())
4166 cerr << " <volatile>";
4167 cerr << " alignment=" << ST->getAlignment();
Chris Lattnerc3aae252005-01-07 07:46:32 +00004168 }
Chris Lattnerc3aae252005-01-07 07:46:32 +00004169}
4170
Chris Lattnerde202b32005-11-09 23:47:37 +00004171static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004172 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4173 if (N->getOperand(i).Val->hasOneUse())
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004174 DumpNodes(N->getOperand(i).Val, indent+2, G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004175 else
Bill Wendling832171c2006-12-07 20:04:42 +00004176 cerr << "\n" << std::string(indent+2, ' ')
4177 << (void*)N->getOperand(i).Val << ": <multiple use>";
Misha Brukmanedf128a2005-04-21 22:36:52 +00004178
Chris Lattnerea946cd2005-01-09 20:38:33 +00004179
Bill Wendling832171c2006-12-07 20:04:42 +00004180 cerr << "\n" << std::string(indent, ' ');
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004181 N->dump(G);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004182}
4183
Chris Lattnerc3aae252005-01-07 07:46:32 +00004184void SelectionDAG::dump() const {
Bill Wendling832171c2006-12-07 20:04:42 +00004185 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
Chris Lattnerde202b32005-11-09 23:47:37 +00004186 std::vector<const SDNode*> Nodes;
4187 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4188 I != E; ++I)
4189 Nodes.push_back(I);
4190
Chris Lattner49d24712005-01-09 20:26:36 +00004191 std::sort(Nodes.begin(), Nodes.end());
4192
4193 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
Chris Lattnerea946cd2005-01-09 20:38:33 +00004194 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
Chris Lattnerf3e133a2005-08-16 18:33:07 +00004195 DumpNodes(Nodes[i], 2, this);
Chris Lattnerc3aae252005-01-07 07:46:32 +00004196 }
Chris Lattnerea946cd2005-01-09 20:38:33 +00004197
Jim Laskey26f7fa72006-10-17 19:33:52 +00004198 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
Chris Lattnerea946cd2005-01-09 20:38:33 +00004199
Bill Wendling832171c2006-12-07 20:04:42 +00004200 cerr << "\n\n";
Chris Lattnerc3aae252005-01-07 07:46:32 +00004201}
4202
Evan Chengd6594ae2006-09-12 21:00:35 +00004203const Type *ConstantPoolSDNode::getType() const {
4204 if (isMachineConstantPoolEntry())
4205 return Val.MachineCPVal->getType();
4206 return Val.ConstVal->getType();
4207}