blob: ef28aa5a2b458e9aa82e06a073f2ac652868b40a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAG class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/Constants.h"
16#include "llvm/GlobalVariable.h"
17#include "llvm/Intrinsics.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Assembly/Writer.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
21#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner53f5aee2007-10-15 17:47:20 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng2e28d622008-02-02 04:07:54 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000024#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Support/MathExtras.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000026#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetLowering.h"
29#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
31#include "llvm/ADT/SetVector.h"
32#include "llvm/ADT/SmallPtrSet.h"
Duncan Sandsa9810f32007-10-16 09:56:48 +000033#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/ADT/SmallVector.h"
35#include "llvm/ADT/StringExtras.h"
36#include <algorithm>
37#include <cmath>
38using namespace llvm;
39
40/// 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 Lattner7bcb18f2008-02-03 06:49:24 +000047SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
48
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Johannesenc53301c2007-08-26 01:18:27 +000057bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
Dale Johannesen7f2c1d12007-08-25 22:10:57 +000058 return Value.bitwiseIsEqual(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059}
60
Dale Johannesenbbe2b702007-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087//===----------------------------------------------------------------------===//
88// ISD Namespace
89//===----------------------------------------------------------------------===//
90
91/// isBuildVectorAllOnes - Return true if the specified node is a
92/// BUILD_VECTOR where all of the elements are ~0 or undef.
93bool ISD::isBuildVectorAllOnes(const SDNode *N) {
94 // Look through a bit convert.
95 if (N->getOpcode() == ISD::BIT_CONVERT)
96 N = N->getOperand(0).Val;
97
98 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
99
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.
111 SDOperand NotZero = N->getOperand(i);
112 if (isa<ConstantSDNode>(NotZero)) {
113 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
114 return false;
115 } else if (isa<ConstantFPSDNode>(NotZero)) {
116 MVT::ValueType VT = NotZero.getValueType();
117 if (VT== MVT::f64) {
Dale Johannesenfbd9cda2007-09-12 03:30:33 +0000118 if (((cast<ConstantFPSDNode>(NotZero)->getValueAPF().
119 convertToAPInt().getZExtValue())) != (uint64_t)-1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 return false;
121 } else {
Dale Johannesenfbd9cda2007-09-12 03:30:33 +0000122 if ((uint32_t)cast<ConstantFPSDNode>(NotZero)->
123 getValueAPF().convertToAPInt().getZExtValue() !=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 (uint32_t)-1)
125 return false;
126 }
127 } else
128 return false;
129
130 // Okay, we have at least one ~0 value, check to see if the rest match or are
131 // undefs.
132 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
140/// 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) {
143 // Look through a bit convert.
144 if (N->getOpcode() == ISD::BIT_CONVERT)
145 N = N->getOperand(0).Val;
146
147 if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
148
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 Johannesendf8a8312007-08-31 04:03:46 +0000165 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
Dan Gohmanf17a25c2007-07-18 16:29:46 +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;
177}
178
Evan Chengd1045a62008-02-18 23:04:32 +0000179/// isScalarToVector - Return true if the specified node is a
180/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
181/// element is not an undef.
182bool ISD::isScalarToVector(const SDNode *N) {
183 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
184 return true;
185
186 if (N->getOpcode() != ISD::BUILD_VECTOR)
187 return false;
188 if (N->getOperand(0).getOpcode() == ISD::UNDEF)
189 return false;
190 unsigned NumElems = N->getNumOperands();
191 for (unsigned i = 1; i < NumElems; ++i) {
192 SDOperand V = N->getOperand(i);
193 if (V.getOpcode() != ISD::UNDEF)
194 return false;
195 }
196 return true;
197}
198
199
Evan Cheng13d1c292008-01-31 09:59:15 +0000200/// isDebugLabel - Return true if the specified node represents a debug
Evan Chengee6db0f2008-02-04 23:10:38 +0000201/// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
Evan Cheng13d1c292008-01-31 09:59:15 +0000202/// is 0).
203bool ISD::isDebugLabel(const SDNode *N) {
204 SDOperand Zero;
205 if (N->getOpcode() == ISD::LABEL)
206 Zero = N->getOperand(2);
207 else if (N->isTargetOpcode() &&
208 N->getTargetOpcode() == TargetInstrInfo::LABEL)
209 // Chain moved to last operand.
210 Zero = N->getOperand(1);
211 else
212 return false;
213 return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
214}
215
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
217/// when given the operation for (X op Y).
218ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
219 // To perform this operation, we just need to swap the L and G bits of the
220 // operation.
221 unsigned OldL = (Operation >> 2) & 1;
222 unsigned OldG = (Operation >> 1) & 1;
223 return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits
224 (OldL << 1) | // New G bit
225 (OldG << 2)); // New L bit.
226}
227
228/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
229/// 'op' is a valid SetCC operation.
230ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
231 unsigned Operation = Op;
232 if (isInteger)
233 Operation ^= 7; // Flip L, G, E bits, but not U.
234 else
235 Operation ^= 15; // Flip all of the condition bits.
236 if (Operation > ISD::SETTRUE2)
237 Operation &= ~8; // Don't let N and U bits get set.
238 return ISD::CondCode(Operation);
239}
240
241
242/// isSignedOp - For an integer comparison, return 1 if the comparison is a
243/// signed operation and 2 if the result is an unsigned comparison. Return zero
244/// if the operation does not depend on the sign of the input (setne and seteq).
245static int isSignedOp(ISD::CondCode Opcode) {
246 switch (Opcode) {
247 default: assert(0 && "Illegal integer setcc operation!");
248 case ISD::SETEQ:
249 case ISD::SETNE: return 0;
250 case ISD::SETLT:
251 case ISD::SETLE:
252 case ISD::SETGT:
253 case ISD::SETGE: return 1;
254 case ISD::SETULT:
255 case ISD::SETULE:
256 case ISD::SETUGT:
257 case ISD::SETUGE: return 2;
258 }
259}
260
261/// getSetCCOrOperation - Return the result of a logical OR between different
262/// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function
263/// returns SETCC_INVALID if it is not possible to represent the resultant
264/// comparison.
265ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
266 bool isInteger) {
267 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
268 // Cannot fold a signed integer setcc with an unsigned integer setcc.
269 return ISD::SETCC_INVALID;
270
271 unsigned Op = Op1 | Op2; // Combine all of the condition bits.
272
273 // If the N and U bits get set then the resultant comparison DOES suddenly
274 // care about orderedness, and is true when ordered.
275 if (Op > ISD::SETTRUE2)
276 Op &= ~16; // Clear the U bit if the N bit is set.
277
278 // Canonicalize illegal integer setcc's.
279 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
280 Op = ISD::SETNE;
281
282 return ISD::CondCode(Op);
283}
284
285/// getSetCCAndOperation - Return the result of a logical AND between different
286/// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This
287/// function returns zero if it is not possible to represent the resultant
288/// comparison.
289ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
290 bool isInteger) {
291 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
292 // Cannot fold a signed setcc with an unsigned setcc.
293 return ISD::SETCC_INVALID;
294
295 // Combine all of the condition bits.
296 ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
297
298 // Canonicalize illegal integer setcc's.
299 if (isInteger) {
300 switch (Result) {
301 default: break;
302 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT
303 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE
304 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE
305 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE
306 }
307 }
308
309 return Result;
310}
311
312const TargetMachine &SelectionDAG::getTarget() const {
313 return TLI.getTargetMachine();
314}
315
316//===----------------------------------------------------------------------===//
317// SDNode Profile Support
318//===----------------------------------------------------------------------===//
319
320/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
321///
322static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) {
323 ID.AddInteger(OpC);
324}
325
326/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
327/// solely with their pointer.
328void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
329 ID.AddPointer(VTList.VTs);
330}
331
332/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
333///
334static void AddNodeIDOperands(FoldingSetNodeID &ID,
335 const SDOperand *Ops, unsigned NumOps) {
336 for (; NumOps; --NumOps, ++Ops) {
337 ID.AddPointer(Ops->Val);
338 ID.AddInteger(Ops->ResNo);
339 }
340}
341
342static void AddNodeIDNode(FoldingSetNodeID &ID,
343 unsigned short OpC, SDVTList VTList,
344 const SDOperand *OpList, unsigned N) {
345 AddNodeIDOpcode(ID, OpC);
346 AddNodeIDValueTypes(ID, VTList);
347 AddNodeIDOperands(ID, OpList, N);
348}
349
350/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
351/// data.
352static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
353 AddNodeIDOpcode(ID, N->getOpcode());
354 // Add the return value info.
355 AddNodeIDValueTypes(ID, N->getVTList());
356 // Add the operand info.
357 AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
358
359 // Handle SDNode leafs with special info.
360 switch (N->getOpcode()) {
361 default: break; // Normal nodes don't need extra info.
362 case ISD::TargetConstant:
363 case ISD::Constant:
Chris Lattnerf5e3e182008-02-20 06:28:01 +0000364 ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 break;
366 case ISD::TargetConstantFP:
Dale Johannesendf8a8312007-08-31 04:03:46 +0000367 case ISD::ConstantFP: {
Ted Kremenekdc71c802008-02-11 17:24:50 +0000368 ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 break;
Dale Johannesendf8a8312007-08-31 04:03:46 +0000370 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 case ISD::TargetGlobalAddress:
372 case ISD::GlobalAddress:
373 case ISD::TargetGlobalTLSAddress:
374 case ISD::GlobalTLSAddress: {
375 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
376 ID.AddPointer(GA->getGlobal());
377 ID.AddInteger(GA->getOffset());
378 break;
379 }
380 case ISD::BasicBlock:
381 ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
382 break;
383 case ISD::Register:
384 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
385 break;
Dan Gohman12a9c082008-02-06 22:27:42 +0000386 case ISD::SRCVALUE:
387 ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
388 break;
389 case ISD::MEMOPERAND: {
390 const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
391 ID.AddPointer(MO.getValue());
392 ID.AddInteger(MO.getFlags());
393 ID.AddInteger(MO.getOffset());
394 ID.AddInteger(MO.getSize());
395 ID.AddInteger(MO.getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 break;
397 }
398 case ISD::FrameIndex:
399 case ISD::TargetFrameIndex:
400 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
401 break;
402 case ISD::JumpTable:
403 case ISD::TargetJumpTable:
404 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
405 break;
406 case ISD::ConstantPool:
407 case ISD::TargetConstantPool: {
408 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
409 ID.AddInteger(CP->getAlignment());
410 ID.AddInteger(CP->getOffset());
411 if (CP->isMachineConstantPoolEntry())
412 CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
413 else
414 ID.AddPointer(CP->getConstVal());
415 break;
416 }
417 case ISD::LOAD: {
418 LoadSDNode *LD = cast<LoadSDNode>(N);
419 ID.AddInteger(LD->getAddressingMode());
420 ID.AddInteger(LD->getExtensionType());
Dan Gohman9a4c92c2008-01-30 00:15:11 +0000421 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 ID.AddInteger(LD->getAlignment());
423 ID.AddInteger(LD->isVolatile());
424 break;
425 }
426 case ISD::STORE: {
427 StoreSDNode *ST = cast<StoreSDNode>(N);
428 ID.AddInteger(ST->getAddressingMode());
429 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman9a4c92c2008-01-30 00:15:11 +0000430 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 ID.AddInteger(ST->getAlignment());
432 ID.AddInteger(ST->isVolatile());
433 break;
434 }
435 }
436}
437
438//===----------------------------------------------------------------------===//
439// SelectionDAG Class
440//===----------------------------------------------------------------------===//
441
442/// RemoveDeadNodes - This method deletes all unreachable nodes in the
443/// SelectionDAG.
444void SelectionDAG::RemoveDeadNodes() {
445 // Create a dummy node (which is not added to allnodes), that adds a reference
446 // to the root node, preventing it from being deleted.
447 HandleSDNode Dummy(getRoot());
448
449 SmallVector<SDNode*, 128> DeadNodes;
450
451 // Add all obviously-dead nodes to the DeadNodes worklist.
452 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
453 if (I->use_empty())
454 DeadNodes.push_back(I);
455
456 // Process the worklist, deleting the nodes and adding their uses to the
457 // worklist.
458 while (!DeadNodes.empty()) {
459 SDNode *N = DeadNodes.back();
460 DeadNodes.pop_back();
461
462 // Take the node out of the appropriate CSE map.
463 RemoveNodeFromCSEMaps(N);
464
465 // Next, brutally remove the operand list. This is safe to do, as there are
466 // no cycles in the graph.
467 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
468 SDNode *Operand = I->Val;
469 Operand->removeUser(N);
470
471 // Now that we removed this operand, see if there are no uses of it left.
472 if (Operand->use_empty())
473 DeadNodes.push_back(Operand);
474 }
475 if (N->OperandsNeedDelete)
476 delete[] N->OperandList;
477 N->OperandList = 0;
478 N->NumOperands = 0;
479
480 // Finally, remove N itself.
481 AllNodes.erase(N);
482 }
483
484 // If the root changed (e.g. it was a dead load, update the root).
485 setRoot(Dummy.getValue());
486}
487
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000488void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 SmallVector<SDNode*, 16> DeadNodes;
490 DeadNodes.push_back(N);
491
492 // Process the worklist, deleting the nodes and adding their uses to the
493 // worklist.
494 while (!DeadNodes.empty()) {
495 SDNode *N = DeadNodes.back();
496 DeadNodes.pop_back();
497
Chris Lattner7bcb18f2008-02-03 06:49:24 +0000498 if (UpdateListener)
499 UpdateListener->NodeDeleted(N);
500
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501 // Take the node out of the appropriate CSE map.
502 RemoveNodeFromCSEMaps(N);
503
504 // Next, brutally remove the operand list. This is safe to do, as there are
505 // no cycles in the graph.
506 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
507 SDNode *Operand = I->Val;
508 Operand->removeUser(N);
509
510 // Now that we removed this operand, see if there are no uses of it left.
511 if (Operand->use_empty())
512 DeadNodes.push_back(Operand);
513 }
514 if (N->OperandsNeedDelete)
515 delete[] N->OperandList;
516 N->OperandList = 0;
517 N->NumOperands = 0;
518
519 // Finally, remove N itself.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 AllNodes.erase(N);
521 }
522}
523
524void SelectionDAG::DeleteNode(SDNode *N) {
525 assert(N->use_empty() && "Cannot delete a node that is not dead!");
526
527 // First take this out of the appropriate CSE map.
528 RemoveNodeFromCSEMaps(N);
529
530 // Finally, remove uses due to operands of this node, remove from the
531 // AllNodes list, and delete the node.
532 DeleteNodeNotInCSEMaps(N);
533}
534
535void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
536
537 // Remove it from the AllNodes list.
538 AllNodes.remove(N);
539
540 // Drop all of the operands and decrement used nodes use counts.
541 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
542 I->Val->removeUser(N);
543 if (N->OperandsNeedDelete)
544 delete[] N->OperandList;
545 N->OperandList = 0;
546 N->NumOperands = 0;
547
548 delete N;
549}
550
551/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
552/// correspond to it. This is useful when we're about to delete or repurpose
553/// the node. We don't want future request for structurally identical nodes
554/// to return N anymore.
555void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
556 bool Erased = false;
557 switch (N->getOpcode()) {
558 case ISD::HANDLENODE: return; // noop.
559 case ISD::STRING:
560 Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
561 break;
562 case ISD::CONDCODE:
563 assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
564 "Cond code doesn't exist!");
565 Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
566 CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
567 break;
568 case ISD::ExternalSymbol:
569 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
570 break;
571 case ISD::TargetExternalSymbol:
572 Erased =
573 TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
574 break;
Duncan Sandsd7307a92007-10-17 13:49:58 +0000575 case ISD::VALUETYPE: {
576 MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
577 if (MVT::isExtendedVT(VT)) {
578 Erased = ExtendedValueTypeNodes.erase(VT);
579 } else {
580 Erased = ValueTypeNodes[VT] != 0;
581 ValueTypeNodes[VT] = 0;
582 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 break;
Duncan Sandsd7307a92007-10-17 13:49:58 +0000584 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 default:
586 // Remove it from the CSE Map.
587 Erased = CSEMap.RemoveNode(N);
588 break;
589 }
590#ifndef NDEBUG
591 // Verify that the node was actually in one of the CSE maps, unless it has a
592 // flag result (which cannot be CSE'd) or is one of the special cases that are
593 // not subject to CSE.
594 if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
595 !N->isTargetOpcode()) {
596 N->dump(this);
597 cerr << "\n";
598 assert(0 && "Node is not in map!");
599 }
600#endif
601}
602
603/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps. It
604/// has been taken out and modified in some way. If the specified node already
605/// exists in the CSE maps, do not modify the maps, but return the existing node
606/// instead. If it doesn't exist, add it and return null.
607///
608SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
609 assert(N->getNumOperands() && "This is a leaf node!");
610 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
611 return 0; // Never add these nodes.
612
613 // Check that remaining values produced are not flags.
614 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
615 if (N->getValueType(i) == MVT::Flag)
616 return 0; // Never CSE anything that produces a flag.
617
618 SDNode *New = CSEMap.GetOrInsertNode(N);
619 if (New != N) return New; // Node already existed.
620 return 0;
621}
622
623/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
624/// were replaced with those specified. If this node is never memoized,
625/// return null, otherwise return a pointer to the slot it would take. If a
626/// node already exists with these operands, the slot will be non-null.
627SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
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
637 SDOperand Ops[] = { Op };
638 FoldingSetNodeID ID;
639 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
640 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
641}
642
643/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
644/// were replaced with those specified. If this node is never memoized,
645/// return null, otherwise return a pointer to the slot it would take. If a
646/// node already exists with these operands, the slot will be non-null.
647SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
648 SDOperand Op1, SDOperand Op2,
649 void *&InsertPos) {
650 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
651 return 0; // Never add these nodes.
652
653 // Check that remaining values produced are not flags.
654 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
655 if (N->getValueType(i) == MVT::Flag)
656 return 0; // Never CSE anything that produces a flag.
657
658 SDOperand Ops[] = { Op1, Op2 };
659 FoldingSetNodeID ID;
660 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
661 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
662}
663
664
665/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
666/// were replaced with those specified. If this node is never memoized,
667/// return null, otherwise return a pointer to the slot it would take. If a
668/// node already exists with these operands, the slot will be non-null.
669SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
670 const SDOperand *Ops,unsigned NumOps,
671 void *&InsertPos) {
672 if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
673 return 0; // Never add these nodes.
674
675 // Check that remaining values produced are not flags.
676 for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
677 if (N->getValueType(i) == MVT::Flag)
678 return 0; // Never CSE anything that produces a flag.
679
680 FoldingSetNodeID ID;
681 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
682
683 if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
684 ID.AddInteger(LD->getAddressingMode());
685 ID.AddInteger(LD->getExtensionType());
Dan Gohman9a4c92c2008-01-30 00:15:11 +0000686 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 ID.AddInteger(LD->getAlignment());
688 ID.AddInteger(LD->isVolatile());
689 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
690 ID.AddInteger(ST->getAddressingMode());
691 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman9a4c92c2008-01-30 00:15:11 +0000692 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693 ID.AddInteger(ST->getAlignment());
694 ID.AddInteger(ST->isVolatile());
695 }
696
697 return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
698}
699
700
701SelectionDAG::~SelectionDAG() {
702 while (!AllNodes.empty()) {
703 SDNode *N = AllNodes.begin();
704 N->SetNextInBucket(0);
705 if (N->OperandsNeedDelete)
706 delete [] N->OperandList;
707 N->OperandList = 0;
708 N->NumOperands = 0;
709 AllNodes.pop_front();
710 }
711}
712
713SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
714 if (Op.getValueType() == VT) return Op;
715 int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
716 return getNode(ISD::AND, Op.getValueType(), Op,
717 getConstant(Imm, Op.getValueType()));
718}
719
720SDOperand SelectionDAG::getString(const std::string &Val) {
721 StringSDNode *&N = StringNodes[Val];
722 if (!N) {
723 N = new StringSDNode(Val);
724 AllNodes.push_back(N);
725 }
726 return SDOperand(N, 0);
727}
728
729SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
Dan Gohmandc458cf2008-02-08 22:59:30 +0000730 MVT::ValueType EltVT =
731 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
732
733 return getConstant(APInt(MVT::getSizeInBits(EltVT), Val), VT, isT);
734}
735
736SDOperand SelectionDAG::getConstant(const APInt &Val, MVT::ValueType VT, bool isT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737 assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
Dan Gohman5b9d6412007-12-12 22:21:26 +0000738
739 MVT::ValueType EltVT =
740 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741
Dan Gohmandc458cf2008-02-08 22:59:30 +0000742 assert(Val.getBitWidth() == MVT::getSizeInBits(EltVT) &&
743 "APInt size does not match type size!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744
745 unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
746 FoldingSetNodeID ID;
Dan Gohman5b9d6412007-12-12 22:21:26 +0000747 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenekdc71c802008-02-11 17:24:50 +0000748 ID.Add(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 void *IP = 0;
Dan Gohman5b9d6412007-12-12 22:21:26 +0000750 SDNode *N = NULL;
751 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
752 if (!MVT::isVector(VT))
753 return SDOperand(N, 0);
754 if (!N) {
755 N = new ConstantSDNode(isT, Val, EltVT);
756 CSEMap.InsertNode(N, IP);
757 AllNodes.push_back(N);
758 }
759
760 SDOperand Result(N, 0);
761 if (MVT::isVector(VT)) {
762 SmallVector<SDOperand, 8> Ops;
763 Ops.assign(MVT::getVectorNumElements(VT), Result);
764 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
765 }
766 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767}
768
Chris Lattner5872a362008-01-17 07:00:52 +0000769SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
770 return getConstant(Val, TLI.getPointerTy(), isTarget);
771}
772
773
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000774SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 bool isTarget) {
776 assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000777
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 MVT::ValueType EltVT =
779 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000780
781 // Do the map lookup using the actual bit pattern for the floating point
782 // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
783 // we don't have issues with SNANs.
784 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
785 FoldingSetNodeID ID;
786 AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
Ted Kremenekdc71c802008-02-11 17:24:50 +0000787 ID.Add(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 void *IP = 0;
789 SDNode *N = NULL;
790 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
791 if (!MVT::isVector(VT))
792 return SDOperand(N, 0);
793 if (!N) {
Dale Johannesen2fc20782007-09-14 22:26:36 +0000794 N = new ConstantFPSDNode(isTarget, V, EltVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 CSEMap.InsertNode(N, IP);
796 AllNodes.push_back(N);
797 }
798
799 SDOperand Result(N, 0);
800 if (MVT::isVector(VT)) {
801 SmallVector<SDOperand, 8> Ops;
802 Ops.assign(MVT::getVectorNumElements(VT), Result);
803 Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
804 }
805 return Result;
806}
807
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000808SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
809 bool isTarget) {
810 MVT::ValueType EltVT =
811 MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
812 if (EltVT==MVT::f32)
813 return getConstantFP(APFloat((float)Val), VT, isTarget);
814 else
815 return getConstantFP(APFloat(Val), VT, isTarget);
816}
817
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
819 MVT::ValueType VT, int Offset,
820 bool isTargetGA) {
821 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
822 unsigned Opc;
823 if (GVar && GVar->isThreadLocal())
824 Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
825 else
826 Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
827 FoldingSetNodeID ID;
828 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
829 ID.AddPointer(GV);
830 ID.AddInteger(Offset);
831 void *IP = 0;
832 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
833 return SDOperand(E, 0);
834 SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
835 CSEMap.InsertNode(N, IP);
836 AllNodes.push_back(N);
837 return SDOperand(N, 0);
838}
839
840SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
841 bool isTarget) {
842 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
843 FoldingSetNodeID ID;
844 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
845 ID.AddInteger(FI);
846 void *IP = 0;
847 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
848 return SDOperand(E, 0);
849 SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
850 CSEMap.InsertNode(N, IP);
851 AllNodes.push_back(N);
852 return SDOperand(N, 0);
853}
854
855SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
856 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
857 FoldingSetNodeID ID;
858 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
859 ID.AddInteger(JTI);
860 void *IP = 0;
861 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
862 return SDOperand(E, 0);
863 SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
864 CSEMap.InsertNode(N, IP);
865 AllNodes.push_back(N);
866 return SDOperand(N, 0);
867}
868
869SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
870 unsigned Alignment, int Offset,
871 bool isTarget) {
872 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
873 FoldingSetNodeID ID;
874 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
875 ID.AddInteger(Alignment);
876 ID.AddInteger(Offset);
877 ID.AddPointer(C);
878 void *IP = 0;
879 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
880 return SDOperand(E, 0);
881 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
882 CSEMap.InsertNode(N, IP);
883 AllNodes.push_back(N);
884 return SDOperand(N, 0);
885}
886
887
888SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
889 MVT::ValueType VT,
890 unsigned Alignment, int Offset,
891 bool isTarget) {
892 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
893 FoldingSetNodeID ID;
894 AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
895 ID.AddInteger(Alignment);
896 ID.AddInteger(Offset);
897 C->AddSelectionDAGCSEId(ID);
898 void *IP = 0;
899 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
900 return SDOperand(E, 0);
901 SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
902 CSEMap.InsertNode(N, IP);
903 AllNodes.push_back(N);
904 return SDOperand(N, 0);
905}
906
907
908SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
909 FoldingSetNodeID ID;
910 AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
911 ID.AddPointer(MBB);
912 void *IP = 0;
913 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
914 return SDOperand(E, 0);
915 SDNode *N = new BasicBlockSDNode(MBB);
916 CSEMap.InsertNode(N, IP);
917 AllNodes.push_back(N);
918 return SDOperand(N, 0);
919}
920
921SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
Duncan Sandsd7307a92007-10-17 13:49:58 +0000922 if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 ValueTypeNodes.resize(VT+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924
Duncan Sandsd7307a92007-10-17 13:49:58 +0000925 SDNode *&N = MVT::isExtendedVT(VT) ?
926 ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
927
928 if (N) return SDOperand(N, 0);
929 N = new VTSDNode(VT);
930 AllNodes.push_back(N);
931 return SDOperand(N, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932}
933
934SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
935 SDNode *&N = ExternalSymbols[Sym];
936 if (N) return SDOperand(N, 0);
937 N = new ExternalSymbolSDNode(false, Sym, VT);
938 AllNodes.push_back(N);
939 return SDOperand(N, 0);
940}
941
942SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
943 MVT::ValueType VT) {
944 SDNode *&N = TargetExternalSymbols[Sym];
945 if (N) return SDOperand(N, 0);
946 N = new ExternalSymbolSDNode(true, Sym, VT);
947 AllNodes.push_back(N);
948 return SDOperand(N, 0);
949}
950
951SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
952 if ((unsigned)Cond >= CondCodeNodes.size())
953 CondCodeNodes.resize(Cond+1);
954
955 if (CondCodeNodes[Cond] == 0) {
956 CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
957 AllNodes.push_back(CondCodeNodes[Cond]);
958 }
959 return SDOperand(CondCodeNodes[Cond], 0);
960}
961
962SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
963 FoldingSetNodeID ID;
964 AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
965 ID.AddInteger(RegNo);
966 void *IP = 0;
967 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
968 return SDOperand(E, 0);
969 SDNode *N = new RegisterSDNode(RegNo, VT);
970 CSEMap.InsertNode(N, IP);
971 AllNodes.push_back(N);
972 return SDOperand(N, 0);
973}
974
Dan Gohman12a9c082008-02-06 22:27:42 +0000975SDOperand SelectionDAG::getSrcValue(const Value *V) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 assert((!V || isa<PointerType>(V->getType())) &&
977 "SrcValue is not a pointer?");
978
979 FoldingSetNodeID ID;
980 AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
981 ID.AddPointer(V);
Dan Gohman12a9c082008-02-06 22:27:42 +0000982
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 void *IP = 0;
984 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
985 return SDOperand(E, 0);
Dan Gohman12a9c082008-02-06 22:27:42 +0000986
987 SDNode *N = new SrcValueSDNode(V);
988 CSEMap.InsertNode(N, IP);
989 AllNodes.push_back(N);
990 return SDOperand(N, 0);
991}
992
993SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
994 const Value *v = MO.getValue();
995 assert((!v || isa<PointerType>(v->getType())) &&
996 "SrcValue is not a pointer?");
997
998 FoldingSetNodeID ID;
999 AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
1000 ID.AddPointer(v);
1001 ID.AddInteger(MO.getFlags());
1002 ID.AddInteger(MO.getOffset());
1003 ID.AddInteger(MO.getSize());
1004 ID.AddInteger(MO.getAlignment());
1005
1006 void *IP = 0;
1007 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1008 return SDOperand(E, 0);
1009
1010 SDNode *N = new MemOperandSDNode(MO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 CSEMap.InsertNode(N, IP);
1012 AllNodes.push_back(N);
1013 return SDOperand(N, 0);
1014}
1015
Chris Lattner53f5aee2007-10-15 17:47:20 +00001016/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1017/// specified value type.
1018SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
1019 MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1020 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
1021 const Type *Ty = MVT::getTypeForValueType(VT);
1022 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1023 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1024 return getFrameIndex(FrameIdx, TLI.getPointerTy());
1025}
1026
1027
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
1029 SDOperand N2, ISD::CondCode Cond) {
1030 // These setcc operations always fold.
1031 switch (Cond) {
1032 default: break;
1033 case ISD::SETFALSE:
1034 case ISD::SETFALSE2: return getConstant(0, VT);
1035 case ISD::SETTRUE:
1036 case ISD::SETTRUE2: return getConstant(1, VT);
1037
1038 case ISD::SETOEQ:
1039 case ISD::SETOGT:
1040 case ISD::SETOGE:
1041 case ISD::SETOLT:
1042 case ISD::SETOLE:
1043 case ISD::SETONE:
1044 case ISD::SETO:
1045 case ISD::SETUO:
1046 case ISD::SETUEQ:
1047 case ISD::SETUNE:
1048 assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
1049 break;
1050 }
1051
1052 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
1053 uint64_t C2 = N2C->getValue();
1054 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
1055 uint64_t C1 = N1C->getValue();
1056
1057 // Sign extend the operands if required
1058 if (ISD::isSignedIntSetCC(Cond)) {
1059 C1 = N1C->getSignExtended();
1060 C2 = N2C->getSignExtended();
1061 }
1062
1063 switch (Cond) {
1064 default: assert(0 && "Unknown integer setcc!");
1065 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1066 case ISD::SETNE: return getConstant(C1 != C2, VT);
1067 case ISD::SETULT: return getConstant(C1 < C2, VT);
1068 case ISD::SETUGT: return getConstant(C1 > C2, VT);
1069 case ISD::SETULE: return getConstant(C1 <= C2, VT);
1070 case ISD::SETUGE: return getConstant(C1 >= C2, VT);
1071 case ISD::SETLT: return getConstant((int64_t)C1 < (int64_t)C2, VT);
1072 case ISD::SETGT: return getConstant((int64_t)C1 > (int64_t)C2, VT);
1073 case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT);
1074 case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT);
1075 }
1076 }
1077 }
Anton Korobeynikov53422f62008-02-20 11:10:28 +00001078 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
Dale Johannesen80ca14c2007-10-14 01:56:47 +00001080 // No compile time operations on this type yet.
1081 if (N1C->getValueType(0) == MVT::ppcf128)
1082 return SDOperand();
Dale Johannesendf8a8312007-08-31 04:03:46 +00001083
1084 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 switch (Cond) {
Dale Johannesendf8a8312007-08-31 04:03:46 +00001086 default: break;
Dale Johannesen76844472007-08-31 17:03:33 +00001087 case ISD::SETEQ: if (R==APFloat::cmpUnordered)
1088 return getNode(ISD::UNDEF, VT);
1089 // fall through
1090 case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1091 case ISD::SETNE: if (R==APFloat::cmpUnordered)
1092 return getNode(ISD::UNDEF, VT);
1093 // fall through
1094 case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesendf8a8312007-08-31 04:03:46 +00001095 R==APFloat::cmpLessThan, VT);
Dale Johannesen76844472007-08-31 17:03:33 +00001096 case ISD::SETLT: if (R==APFloat::cmpUnordered)
1097 return getNode(ISD::UNDEF, VT);
1098 // fall through
1099 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1100 case ISD::SETGT: if (R==APFloat::cmpUnordered)
1101 return getNode(ISD::UNDEF, VT);
1102 // fall through
1103 case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1104 case ISD::SETLE: if (R==APFloat::cmpUnordered)
1105 return getNode(ISD::UNDEF, VT);
1106 // fall through
1107 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
Dale Johannesendf8a8312007-08-31 04:03:46 +00001108 R==APFloat::cmpEqual, VT);
Dale Johannesen76844472007-08-31 17:03:33 +00001109 case ISD::SETGE: if (R==APFloat::cmpUnordered)
1110 return getNode(ISD::UNDEF, VT);
1111 // fall through
1112 case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
Dale Johannesendf8a8312007-08-31 04:03:46 +00001113 R==APFloat::cmpEqual, VT);
1114 case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT);
1115 case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT);
1116 case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1117 R==APFloat::cmpEqual, VT);
1118 case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1119 case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1120 R==APFloat::cmpLessThan, VT);
1121 case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1122 R==APFloat::cmpUnordered, VT);
1123 case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1124 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125 }
1126 } else {
1127 // Ensure that the constant occurs on the RHS.
1128 return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
1129 }
Anton Korobeynikov53422f62008-02-20 11:10:28 +00001130 }
1131
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 // Could not fold it.
1133 return SDOperand();
1134}
1135
1136/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1137/// this predicate to simplify operations downstream. Mask is known to be zero
1138/// for bits that V cannot have.
1139bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask,
1140 unsigned Depth) const {
1141 // The masks are not wide enough to represent this type! Should use APInt.
1142 if (Op.getValueType() == MVT::i128)
1143 return false;
1144
1145 uint64_t KnownZero, KnownOne;
1146 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1147 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1148 return (KnownZero & Mask) == Mask;
1149}
1150
1151/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1152/// known to be either zero or one and return them in the KnownZero/KnownOne
1153/// bitsets. This code only analyzes bits in Mask, in order to short-circuit
1154/// processing.
Dan Gohmand0dfc772008-02-13 22:28:48 +00001155void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00001156 APInt &KnownZero, APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001157 unsigned Depth) const {
Dan Gohman229fa052008-02-13 00:35:47 +00001158 unsigned BitWidth = Mask.getBitWidth();
Dan Gohman56eaab32008-02-13 23:13:32 +00001159 assert(BitWidth == MVT::getSizeInBits(Op.getValueType()) &&
1160 "Mask size mismatches value type size!");
1161
Dan Gohman229fa052008-02-13 00:35:47 +00001162 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 if (Depth == 6 || Mask == 0)
1164 return; // Limit search depth.
1165
Dan Gohman229fa052008-02-13 00:35:47 +00001166 APInt KnownZero2, KnownOne2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167
1168 switch (Op.getOpcode()) {
1169 case ISD::Constant:
1170 // We know all of the bits for a constant!
Dan Gohman229fa052008-02-13 00:35:47 +00001171 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001172 KnownZero = ~KnownOne & Mask;
1173 return;
1174 case ISD::AND:
1175 // If either the LHS or the RHS are Zero, the result is zero.
1176 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001177 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1178 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1180 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1181
1182 // Output known-1 bits are only known if set in both the LHS & RHS.
1183 KnownOne &= KnownOne2;
1184 // Output known-0 are known to be clear if zero in either the LHS | RHS.
1185 KnownZero |= KnownZero2;
1186 return;
1187 case ISD::OR:
1188 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001189 ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1190 KnownZero2, KnownOne2, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1192 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1193
1194 // Output known-0 bits are only known if clear in both the LHS & RHS.
1195 KnownZero &= KnownZero2;
1196 // Output known-1 are known to be set if set in either the LHS | RHS.
1197 KnownOne |= KnownOne2;
1198 return;
1199 case ISD::XOR: {
1200 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1201 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1202 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1203 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1204
1205 // Output known-0 bits are known if clear or set in both the LHS & RHS.
Dan Gohman229fa052008-02-13 00:35:47 +00001206 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001207 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1208 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1209 KnownZero = KnownZeroOut;
1210 return;
1211 }
1212 case ISD::SELECT:
1213 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1214 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1215 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1216 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1217
1218 // Only known if known in both the LHS and RHS.
1219 KnownOne &= KnownOne2;
1220 KnownZero &= KnownZero2;
1221 return;
1222 case ISD::SELECT_CC:
1223 ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1224 ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1225 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1226 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1227
1228 // Only known if known in both the LHS and RHS.
1229 KnownOne &= KnownOne2;
1230 KnownZero &= KnownZero2;
1231 return;
1232 case ISD::SETCC:
1233 // If we know the result of a setcc has the top bits zero, use this info.
Dan Gohman229fa052008-02-13 00:35:47 +00001234 if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1235 BitWidth > 1)
1236 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237 return;
1238 case ISD::SHL:
1239 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1240 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman229fa052008-02-13 00:35:47 +00001241 ComputeMaskedBits(Op.getOperand(0), Mask.lshr(SA->getValue()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001242 KnownZero, KnownOne, Depth+1);
1243 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1244 KnownZero <<= SA->getValue();
1245 KnownOne <<= SA->getValue();
Dan Gohman229fa052008-02-13 00:35:47 +00001246 // low bits known zero.
1247 KnownZero |= APInt::getLowBitsSet(BitWidth, SA->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001248 }
1249 return;
1250 case ISD::SRL:
1251 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
1252 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253 unsigned ShAmt = SA->getValue();
1254
Dan Gohman229fa052008-02-13 00:35:47 +00001255 ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001256 KnownZero, KnownOne, Depth+1);
1257 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman229fa052008-02-13 00:35:47 +00001258 KnownZero = KnownZero.lshr(ShAmt);
1259 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260
Dan Gohman4d81a742008-02-13 22:43:25 +00001261 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001262 KnownZero |= HighBits; // High bits known zero.
1263 }
1264 return;
1265 case ISD::SRA:
1266 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267 unsigned ShAmt = SA->getValue();
1268
Dan Gohman229fa052008-02-13 00:35:47 +00001269 APInt InDemandedMask = (Mask << ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001270 // If any of the demanded bits are produced by the sign extension, we also
1271 // demand the input sign bit.
Dan Gohman4d81a742008-02-13 22:43:25 +00001272 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1273 if (HighBits.getBoolValue())
Dan Gohman229fa052008-02-13 00:35:47 +00001274 InDemandedMask |= APInt::getSignBit(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001275
1276 ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1277 Depth+1);
1278 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman229fa052008-02-13 00:35:47 +00001279 KnownZero = KnownZero.lshr(ShAmt);
1280 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281
1282 // Handle the sign bits.
Dan Gohman229fa052008-02-13 00:35:47 +00001283 APInt SignBit = APInt::getSignBit(BitWidth);
1284 SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285
Dan Gohman91507292008-02-20 16:30:17 +00001286 if (KnownZero.intersects(SignBit)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001287 KnownZero |= HighBits; // New bits are known zero.
Dan Gohman91507292008-02-20 16:30:17 +00001288 } else if (KnownOne.intersects(SignBit)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001289 KnownOne |= HighBits; // New bits are known one.
1290 }
1291 }
1292 return;
1293 case ISD::SIGN_EXTEND_INREG: {
1294 MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmand0dfc772008-02-13 22:28:48 +00001295 unsigned EBits = MVT::getSizeInBits(EVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296
1297 // Sign extension. Compute the demanded bits in the result that are not
1298 // present in the input.
Dan Gohmand0dfc772008-02-13 22:28:48 +00001299 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300
Dan Gohmand0dfc772008-02-13 22:28:48 +00001301 APInt InSignBit = APInt::getSignBit(EBits);
1302 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303
1304 // If the sign extended bits are demanded, we know that the sign
1305 // bit is demanded.
Dan Gohman229fa052008-02-13 00:35:47 +00001306 InSignBit.zext(BitWidth);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001307 if (NewBits.getBoolValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308 InputDemandedBits |= InSignBit;
1309
1310 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1311 KnownZero, KnownOne, Depth+1);
1312 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1313
1314 // If the sign bit of the input is known set or clear, then we know the
1315 // top bits of the result.
Dan Gohman91507292008-02-20 16:30:17 +00001316 if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001317 KnownZero |= NewBits;
1318 KnownOne &= ~NewBits;
Dan Gohman91507292008-02-20 16:30:17 +00001319 } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 KnownOne |= NewBits;
1321 KnownZero &= ~NewBits;
1322 } else { // Input sign bit unknown
1323 KnownZero &= ~NewBits;
1324 KnownOne &= ~NewBits;
1325 }
1326 return;
1327 }
1328 case ISD::CTTZ:
1329 case ISD::CTLZ:
1330 case ISD::CTPOP: {
Dan Gohman229fa052008-02-13 00:35:47 +00001331 unsigned LowBits = Log2_32(BitWidth)+1;
1332 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1333 KnownOne = APInt(BitWidth, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001334 return;
1335 }
1336 case ISD::LOAD: {
1337 if (ISD::isZEXTLoad(Op.Val)) {
1338 LoadSDNode *LD = cast<LoadSDNode>(Op);
Dan Gohman9a4c92c2008-01-30 00:15:11 +00001339 MVT::ValueType VT = LD->getMemoryVT();
Dan Gohmand0dfc772008-02-13 22:28:48 +00001340 unsigned MemBits = MVT::getSizeInBits(VT);
1341 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342 }
1343 return;
1344 }
1345 case ISD::ZERO_EXTEND: {
Dan Gohman229fa052008-02-13 00:35:47 +00001346 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1347 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001348 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1349 APInt InMask = Mask;
1350 InMask.trunc(InBits);
Dan Gohman229fa052008-02-13 00:35:47 +00001351 KnownZero.trunc(InBits);
1352 KnownOne.trunc(InBits);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001353 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohman229fa052008-02-13 00:35:47 +00001354 KnownZero.zext(BitWidth);
1355 KnownOne.zext(BitWidth);
1356 KnownZero |= NewBits;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357 return;
1358 }
1359 case ISD::SIGN_EXTEND: {
1360 MVT::ValueType InVT = Op.getOperand(0).getValueType();
Dan Gohman229fa052008-02-13 00:35:47 +00001361 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohman229fa052008-02-13 00:35:47 +00001362 APInt InSignBit = APInt::getSignBit(InBits);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001363 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1364 APInt InMask = Mask;
1365 InMask.trunc(InBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366
1367 // If any of the sign extended bits are demanded, we know that the sign
Dan Gohmand0dfc772008-02-13 22:28:48 +00001368 // bit is demanded. Temporarily set this bit in the mask for our callee.
1369 if (NewBits.getBoolValue())
1370 InMask |= InSignBit;
Dan Gohman229fa052008-02-13 00:35:47 +00001371
Dan Gohman229fa052008-02-13 00:35:47 +00001372 KnownZero.trunc(InBits);
1373 KnownOne.trunc(InBits);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001374 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1375
1376 // Note if the sign bit is known to be zero or one.
1377 bool SignBitKnownZero = KnownZero.isNegative();
1378 bool SignBitKnownOne = KnownOne.isNegative();
1379 assert(!(SignBitKnownZero && SignBitKnownOne) &&
1380 "Sign bit can't be known to be both zero and one!");
1381
1382 // If the sign bit wasn't actually demanded by our caller, we don't
1383 // want it set in the KnownZero and KnownOne result values. Reset the
1384 // mask and reapply it to the result values.
1385 InMask = Mask;
1386 InMask.trunc(InBits);
1387 KnownZero &= InMask;
1388 KnownOne &= InMask;
1389
Dan Gohman229fa052008-02-13 00:35:47 +00001390 KnownZero.zext(BitWidth);
1391 KnownOne.zext(BitWidth);
1392
Dan Gohmand0dfc772008-02-13 22:28:48 +00001393 // If the sign bit is known zero or one, the top bits match.
1394 if (SignBitKnownZero)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001395 KnownZero |= NewBits;
Dan Gohmand0dfc772008-02-13 22:28:48 +00001396 else if (SignBitKnownOne)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001397 KnownOne |= NewBits;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001398 return;
1399 }
1400 case ISD::ANY_EXTEND: {
Dan Gohman229fa052008-02-13 00:35:47 +00001401 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1402 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001403 APInt InMask = Mask;
1404 InMask.trunc(InBits);
Dan Gohman229fa052008-02-13 00:35:47 +00001405 KnownZero.trunc(InBits);
1406 KnownOne.trunc(InBits);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001407 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohman229fa052008-02-13 00:35:47 +00001408 KnownZero.zext(BitWidth);
1409 KnownOne.zext(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001410 return;
1411 }
1412 case ISD::TRUNCATE: {
Dan Gohman229fa052008-02-13 00:35:47 +00001413 MVT::ValueType InVT = Op.getOperand(0).getValueType();
1414 unsigned InBits = MVT::getSizeInBits(InVT);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001415 APInt InMask = Mask;
1416 InMask.zext(InBits);
Dan Gohman229fa052008-02-13 00:35:47 +00001417 KnownZero.zext(InBits);
1418 KnownOne.zext(InBits);
Dan Gohmand0dfc772008-02-13 22:28:48 +00001419 ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman229fa052008-02-13 00:35:47 +00001421 KnownZero.trunc(BitWidth);
1422 KnownOne.trunc(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001423 break;
1424 }
1425 case ISD::AssertZext: {
1426 MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman229fa052008-02-13 00:35:47 +00001427 APInt InMask = APInt::getLowBitsSet(BitWidth, MVT::getSizeInBits(VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001428 ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1429 KnownOne, Depth+1);
1430 KnownZero |= (~InMask) & Mask;
1431 return;
1432 }
Chris Lattner13f06832007-12-22 21:26:52 +00001433 case ISD::FGETSIGN:
1434 // All bits are zero except the low bit.
Dan Gohman229fa052008-02-13 00:35:47 +00001435 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Chris Lattner13f06832007-12-22 21:26:52 +00001436 return;
1437
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438 case ISD::ADD: {
1439 // If either the LHS or the RHS are Zero, the result is zero.
1440 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1441 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1442 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1443 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1444
1445 // Output known-0 bits are known if clear or set in both the low clear bits
1446 // common to both LHS & RHS. For example, 8+(X<<3) is known to have the
1447 // low 3 bits clear.
Dan Gohmand0dfc772008-02-13 22:28:48 +00001448 unsigned KnownZeroOut = std::min(KnownZero.countTrailingOnes(),
1449 KnownZero2.countTrailingOnes());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450
Dan Gohman229fa052008-02-13 00:35:47 +00001451 KnownZero = APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1452 KnownOne = APInt(BitWidth, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001453 return;
1454 }
1455 case ISD::SUB: {
1456 ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1457 if (!CLHS) return;
1458
1459 // We know that the top bits of C-X are clear if X contains less bits
1460 // than C (i.e. no wrap-around can happen). For example, 20-X is
1461 // positive if we can prove that X is >= 0 and < 16.
Dan Gohmand0dfc772008-02-13 22:28:48 +00001462 if (CLHS->getAPIntValue().isNonNegative()) {
Dan Gohman229fa052008-02-13 00:35:47 +00001463 unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1464 // NLZ can't be BitWidth with no sign bit
Chris Lattner69946fd2008-02-14 18:48:56 +00001465 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001466 ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1467
1468 // If all of the MaskV bits are known to be zero, then we know the output
1469 // top bits are zero, because we now know that the output is from [0-C].
1470 if ((KnownZero & MaskV) == MaskV) {
Dan Gohman229fa052008-02-13 00:35:47 +00001471 unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1472 // Top bits known zero.
1473 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1474 KnownOne = APInt(BitWidth, 0); // No one bits known.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001475 } else {
Dan Gohman229fa052008-02-13 00:35:47 +00001476 KnownZero = KnownOne = APInt(BitWidth, 0); // Otherwise, nothing known.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001477 }
1478 }
1479 return;
1480 }
1481 default:
1482 // Allow the target to implement this method for its nodes.
1483 if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1484 case ISD::INTRINSIC_WO_CHAIN:
1485 case ISD::INTRINSIC_W_CHAIN:
1486 case ISD::INTRINSIC_VOID:
1487 TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1488 }
1489 return;
1490 }
1491}
1492
Dan Gohman229fa052008-02-13 00:35:47 +00001493/// ComputeMaskedBits - This is a wrapper around the APInt-using
1494/// form of ComputeMaskedBits for use by clients that haven't been converted
1495/// to APInt yet.
1496void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask,
1497 uint64_t &KnownZero, uint64_t &KnownOne,
1498 unsigned Depth) const {
Dan Gohman56eaab32008-02-13 23:13:32 +00001499 // The masks are not wide enough to represent this type! Should use APInt.
1500 if (Op.getValueType() == MVT::i128)
1501 return;
1502
Dan Gohman229fa052008-02-13 00:35:47 +00001503 unsigned NumBits = MVT::getSizeInBits(Op.getValueType());
1504 APInt APIntMask(NumBits, Mask);
1505 APInt APIntKnownZero(NumBits, 0);
1506 APInt APIntKnownOne(NumBits, 0);
1507 ComputeMaskedBits(Op, APIntMask, APIntKnownZero, APIntKnownOne, Depth);
1508 KnownZero = APIntKnownZero.getZExtValue();
1509 KnownOne = APIntKnownOne.getZExtValue();
1510}
1511
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001512/// ComputeNumSignBits - Return the number of times the sign bit of the
1513/// register is replicated into the other bits. We know that at least 1 bit
1514/// is always equal to the sign bit (itself), but other cases can give us
1515/// information. For example, immediately after an "SRA X, 2", we know that
1516/// the top 3 bits are all equal to each other, so we return 3.
1517unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1518 MVT::ValueType VT = Op.getValueType();
1519 assert(MVT::isInteger(VT) && "Invalid VT!");
1520 unsigned VTBits = MVT::getSizeInBits(VT);
1521 unsigned Tmp, Tmp2;
1522
1523 if (Depth == 6)
1524 return 1; // Limit search depth.
1525
1526 switch (Op.getOpcode()) {
1527 default: break;
1528 case ISD::AssertSext:
1529 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1530 return VTBits-Tmp+1;
1531 case ISD::AssertZext:
1532 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1533 return VTBits-Tmp;
1534
1535 case ISD::Constant: {
1536 uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1537 // If negative, invert the bits, then look at it.
1538 if (Val & MVT::getIntVTSignBit(VT))
1539 Val = ~Val;
1540
1541 // Shift the bits so they are the leading bits in the int64_t.
1542 Val <<= 64-VTBits;
1543
1544 // Return # leading zeros. We use 'min' here in case Val was zero before
1545 // shifting. We don't want to return '64' as for an i32 "0".
1546 return std::min(VTBits, CountLeadingZeros_64(Val));
1547 }
1548
1549 case ISD::SIGN_EXTEND:
1550 Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1551 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1552
1553 case ISD::SIGN_EXTEND_INREG:
1554 // Max of the input and what this extends.
1555 Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1556 Tmp = VTBits-Tmp+1;
1557
1558 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1559 return std::max(Tmp, Tmp2);
1560
1561 case ISD::SRA:
1562 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1563 // SRA X, C -> adds C sign bits.
1564 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1565 Tmp += C->getValue();
1566 if (Tmp > VTBits) Tmp = VTBits;
1567 }
1568 return Tmp;
1569 case ISD::SHL:
1570 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1571 // shl destroys sign bits.
1572 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1573 if (C->getValue() >= VTBits || // Bad shift.
1574 C->getValue() >= Tmp) break; // Shifted all sign bits out.
1575 return Tmp - C->getValue();
1576 }
1577 break;
1578 case ISD::AND:
1579 case ISD::OR:
1580 case ISD::XOR: // NOT is handled here.
1581 // Logical binary ops preserve the number of sign bits.
1582 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1583 if (Tmp == 1) return 1; // Early out.
1584 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1585 return std::min(Tmp, Tmp2);
1586
1587 case ISD::SELECT:
1588 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1589 if (Tmp == 1) return 1; // Early out.
1590 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1591 return std::min(Tmp, Tmp2);
1592
1593 case ISD::SETCC:
1594 // If setcc returns 0/-1, all bits are sign bits.
1595 if (TLI.getSetCCResultContents() ==
1596 TargetLowering::ZeroOrNegativeOneSetCCResult)
1597 return VTBits;
1598 break;
1599 case ISD::ROTL:
1600 case ISD::ROTR:
1601 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1602 unsigned RotAmt = C->getValue() & (VTBits-1);
1603
1604 // Handle rotate right by N like a rotate left by 32-N.
1605 if (Op.getOpcode() == ISD::ROTR)
1606 RotAmt = (VTBits-RotAmt) & (VTBits-1);
1607
1608 // If we aren't rotating out all of the known-in sign bits, return the
1609 // number that are left. This handles rotl(sext(x), 1) for example.
1610 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1611 if (Tmp > RotAmt+1) return Tmp-RotAmt;
1612 }
1613 break;
1614 case ISD::ADD:
1615 // Add can have at most one carry bit. Thus we know that the output
1616 // is, at worst, one more bit than the inputs.
1617 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1618 if (Tmp == 1) return 1; // Early out.
1619
1620 // Special case decrementing a value (ADD X, -1):
1621 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1622 if (CRHS->isAllOnesValue()) {
1623 uint64_t KnownZero, KnownOne;
1624 uint64_t Mask = MVT::getIntVTBitMask(VT);
1625 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1626
1627 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1628 // sign bits set.
1629 if ((KnownZero|1) == Mask)
1630 return VTBits;
1631
1632 // If we are subtracting one from a positive number, there is no carry
1633 // out of the result.
1634 if (KnownZero & MVT::getIntVTSignBit(VT))
1635 return Tmp;
1636 }
1637
1638 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1639 if (Tmp2 == 1) return 1;
1640 return std::min(Tmp, Tmp2)-1;
1641 break;
1642
1643 case ISD::SUB:
1644 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1645 if (Tmp2 == 1) return 1;
1646
1647 // Handle NEG.
1648 if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1649 if (CLHS->getValue() == 0) {
1650 uint64_t KnownZero, KnownOne;
1651 uint64_t Mask = MVT::getIntVTBitMask(VT);
1652 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1653 // If the input is known to be 0 or 1, the output is 0/-1, which is all
1654 // sign bits set.
1655 if ((KnownZero|1) == Mask)
1656 return VTBits;
1657
1658 // If the input is known to be positive (the sign bit is known clear),
1659 // the output of the NEG has the same number of sign bits as the input.
1660 if (KnownZero & MVT::getIntVTSignBit(VT))
1661 return Tmp2;
1662
1663 // Otherwise, we treat this like a SUB.
1664 }
1665
1666 // Sub can have at most one carry bit. Thus we know that the output
1667 // is, at worst, one more bit than the inputs.
1668 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1669 if (Tmp == 1) return 1; // Early out.
1670 return std::min(Tmp, Tmp2)-1;
1671 break;
1672 case ISD::TRUNCATE:
1673 // FIXME: it's tricky to do anything useful for this, but it is an important
1674 // case for targets like X86.
1675 break;
1676 }
1677
1678 // Handle LOADX separately here. EXTLOAD case will fallthrough.
1679 if (Op.getOpcode() == ISD::LOAD) {
1680 LoadSDNode *LD = cast<LoadSDNode>(Op);
1681 unsigned ExtType = LD->getExtensionType();
1682 switch (ExtType) {
1683 default: break;
1684 case ISD::SEXTLOAD: // '17' bits known
Dan Gohman9a4c92c2008-01-30 00:15:11 +00001685 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001686 return VTBits-Tmp+1;
1687 case ISD::ZEXTLOAD: // '16' bits known
Dan Gohman9a4c92c2008-01-30 00:15:11 +00001688 Tmp = MVT::getSizeInBits(LD->getMemoryVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001689 return VTBits-Tmp;
1690 }
1691 }
1692
1693 // Allow the target to implement this method for its nodes.
1694 if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1695 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1696 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1697 Op.getOpcode() == ISD::INTRINSIC_VOID) {
1698 unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1699 if (NumBits > 1) return NumBits;
1700 }
1701
1702 // Finally, if we can prove that the top bits of the result are 0's or 1's,
1703 // use this information.
1704 uint64_t KnownZero, KnownOne;
1705 uint64_t Mask = MVT::getIntVTBitMask(VT);
1706 ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1707
1708 uint64_t SignBit = MVT::getIntVTSignBit(VT);
1709 if (KnownZero & SignBit) { // SignBit is 0
1710 Mask = KnownZero;
1711 } else if (KnownOne & SignBit) { // SignBit is 1;
1712 Mask = KnownOne;
1713 } else {
1714 // Nothing known.
1715 return 1;
1716 }
1717
1718 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
1719 // the number of identical bits in the top of the input value.
1720 Mask ^= ~0ULL;
1721 Mask <<= 64-VTBits;
1722 // Return # leading zeros. We use 'min' here in case Val was zero before
1723 // shifting. We don't want to return '64' as for an i32 "0".
1724 return std::min(VTBits, CountLeadingZeros_64(Mask));
1725}
1726
1727
Evan Cheng2e28d622008-02-02 04:07:54 +00001728bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1729 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1730 if (!GA) return false;
1731 GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1732 if (!GV) return false;
1733 MachineModuleInfo *MMI = getMachineModuleInfo();
1734 return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1735}
1736
1737
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738/// getNode - Gets or creates the specified node.
1739///
1740SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
1741 FoldingSetNodeID ID;
1742 AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
1743 void *IP = 0;
1744 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1745 return SDOperand(E, 0);
1746 SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
1747 CSEMap.InsertNode(N, IP);
1748
1749 AllNodes.push_back(N);
1750 return SDOperand(N, 0);
1751}
1752
1753SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1754 SDOperand Operand) {
1755 unsigned Tmp1;
1756 // Constant fold unary operations with an integer constant operand.
1757 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1758 uint64_t Val = C->getValue();
1759 switch (Opcode) {
1760 default: break;
1761 case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
1762 case ISD::ANY_EXTEND:
1763 case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1764 case ISD::TRUNCATE: return getConstant(Val, VT);
Dale Johannesen958b08b2007-09-19 23:55:34 +00001765 case ISD::UINT_TO_FP:
1766 case ISD::SINT_TO_FP: {
1767 const uint64_t zero[] = {0, 0};
Dale Johannesenb89072e2007-10-16 23:38:29 +00001768 // No compile time operations on this type.
1769 if (VT==MVT::ppcf128)
1770 break;
Dale Johannesen958b08b2007-09-19 23:55:34 +00001771 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Neil Booth4bdd45a2007-10-07 11:45:55 +00001772 (void)apf.convertFromZeroExtendedInteger(&Val,
Dale Johannesena6f79742007-09-21 22:09:37 +00001773 MVT::getSizeInBits(Operand.getValueType()),
1774 Opcode==ISD::SINT_TO_FP,
Dale Johannesen87fa68f2007-09-30 18:19:03 +00001775 APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00001776 return getConstantFP(apf, VT);
1777 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001778 case ISD::BIT_CONVERT:
1779 if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
1780 return getConstantFP(BitsToFloat(Val), VT);
1781 else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
1782 return getConstantFP(BitsToDouble(Val), VT);
1783 break;
1784 case ISD::BSWAP:
1785 switch(VT) {
1786 default: assert(0 && "Invalid bswap!"); break;
1787 case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1788 case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1789 case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1790 }
1791 break;
1792 case ISD::CTPOP:
1793 switch(VT) {
1794 default: assert(0 && "Invalid ctpop!"); break;
1795 case MVT::i1: return getConstant(Val != 0, VT);
1796 case MVT::i8:
1797 Tmp1 = (unsigned)Val & 0xFF;
1798 return getConstant(CountPopulation_32(Tmp1), VT);
1799 case MVT::i16:
1800 Tmp1 = (unsigned)Val & 0xFFFF;
1801 return getConstant(CountPopulation_32(Tmp1), VT);
1802 case MVT::i32:
1803 return getConstant(CountPopulation_32((unsigned)Val), VT);
1804 case MVT::i64:
1805 return getConstant(CountPopulation_64(Val), VT);
1806 }
1807 case ISD::CTLZ:
1808 switch(VT) {
1809 default: assert(0 && "Invalid ctlz!"); break;
1810 case MVT::i1: return getConstant(Val == 0, VT);
1811 case MVT::i8:
1812 Tmp1 = (unsigned)Val & 0xFF;
1813 return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1814 case MVT::i16:
1815 Tmp1 = (unsigned)Val & 0xFFFF;
1816 return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1817 case MVT::i32:
1818 return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1819 case MVT::i64:
1820 return getConstant(CountLeadingZeros_64(Val), VT);
1821 }
1822 case ISD::CTTZ:
1823 switch(VT) {
1824 default: assert(0 && "Invalid cttz!"); break;
1825 case MVT::i1: return getConstant(Val == 0, VT);
1826 case MVT::i8:
1827 Tmp1 = (unsigned)Val | 0x100;
1828 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1829 case MVT::i16:
1830 Tmp1 = (unsigned)Val | 0x10000;
1831 return getConstant(CountTrailingZeros_32(Tmp1), VT);
1832 case MVT::i32:
1833 return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1834 case MVT::i64:
1835 return getConstant(CountTrailingZeros_64(Val), VT);
1836 }
1837 }
1838 }
1839
Dale Johannesen7604c1b2007-08-31 23:34:27 +00001840 // Constant fold unary operations with a floating point constant operand.
1841 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1842 APFloat V = C->getValueAPF(); // make copy
Chris Lattner5872a362008-01-17 07:00:52 +00001843 if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
Dale Johannesenb89072e2007-10-16 23:38:29 +00001844 switch (Opcode) {
1845 case ISD::FNEG:
1846 V.changeSign();
1847 return getConstantFP(V, VT);
1848 case ISD::FABS:
1849 V.clearSign();
1850 return getConstantFP(V, VT);
1851 case ISD::FP_ROUND:
1852 case ISD::FP_EXTEND:
1853 // This can return overflow, underflow, or inexact; we don't care.
1854 // FIXME need to be more flexible about rounding mode.
1855 (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle :
1856 VT==MVT::f64 ? APFloat::IEEEdouble :
1857 VT==MVT::f80 ? APFloat::x87DoubleExtended :
1858 VT==MVT::f128 ? APFloat::IEEEquad :
1859 APFloat::Bogus,
1860 APFloat::rmNearestTiesToEven);
1861 return getConstantFP(V, VT);
1862 case ISD::FP_TO_SINT:
1863 case ISD::FP_TO_UINT: {
1864 integerPart x;
1865 assert(integerPartWidth >= 64);
1866 // FIXME need to be more flexible about rounding mode.
1867 APFloat::opStatus s = V.convertToInteger(&x, 64U,
1868 Opcode==ISD::FP_TO_SINT,
1869 APFloat::rmTowardZero);
1870 if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual
1871 break;
1872 return getConstant(x, VT);
1873 }
1874 case ISD::BIT_CONVERT:
1875 if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1876 return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1877 else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1878 return getConstant(V.convertToAPInt().getZExtValue(), VT);
Dale Johannesen7604c1b2007-08-31 23:34:27 +00001879 break;
Dale Johannesenb89072e2007-10-16 23:38:29 +00001880 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001881 }
Dale Johannesen7604c1b2007-08-31 23:34:27 +00001882 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001883
1884 unsigned OpOpcode = Operand.Val->getOpcode();
1885 switch (Opcode) {
1886 case ISD::TokenFactor:
1887 return Operand; // Factor of one node? No factor.
Chris Lattner5872a362008-01-17 07:00:52 +00001888 case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001889 case ISD::FP_EXTEND:
1890 assert(MVT::isFloatingPoint(VT) &&
1891 MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
Chris Lattnerd3f56172008-01-16 17:59:31 +00001892 if (Operand.getValueType() == VT) return Operand; // noop conversion.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001893 break;
Chris Lattner5872a362008-01-17 07:00:52 +00001894 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001895 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1896 "Invalid SIGN_EXTEND!");
1897 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsa9810f32007-10-16 09:56:48 +00001898 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1899 && "Invalid sext node, dst < src!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001900 if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1901 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1902 break;
1903 case ISD::ZERO_EXTEND:
1904 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1905 "Invalid ZERO_EXTEND!");
1906 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsa9810f32007-10-16 09:56:48 +00001907 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1908 && "Invalid zext node, dst < src!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001909 if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x)
1910 return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
1911 break;
1912 case ISD::ANY_EXTEND:
1913 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1914 "Invalid ANY_EXTEND!");
1915 if (Operand.getValueType() == VT) return Operand; // noop extension
Duncan Sandsa9810f32007-10-16 09:56:48 +00001916 assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1917 && "Invalid anyext node, dst < src!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001918 if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1919 // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x)
1920 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1921 break;
1922 case ISD::TRUNCATE:
1923 assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1924 "Invalid TRUNCATE!");
1925 if (Operand.getValueType() == VT) return Operand; // noop truncate
Duncan Sandsa9810f32007-10-16 09:56:48 +00001926 assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1927 && "Invalid truncate node, src < dst!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001928 if (OpOpcode == ISD::TRUNCATE)
1929 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1930 else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1931 OpOpcode == ISD::ANY_EXTEND) {
1932 // If the source is smaller than the dest, we still need an extend.
Duncan Sandsa9810f32007-10-16 09:56:48 +00001933 if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1934 < MVT::getSizeInBits(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001935 return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
Duncan Sandsa9810f32007-10-16 09:56:48 +00001936 else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1937 > MVT::getSizeInBits(VT))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001938 return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1939 else
1940 return Operand.Val->getOperand(0);
1941 }
1942 break;
1943 case ISD::BIT_CONVERT:
1944 // Basic sanity checking.
1945 assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
1946 && "Cannot BIT_CONVERT between types of different sizes!");
1947 if (VT == Operand.getValueType()) return Operand; // noop conversion.
1948 if (OpOpcode == ISD::BIT_CONVERT) // bitconv(bitconv(x)) -> bitconv(x)
1949 return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
1950 if (OpOpcode == ISD::UNDEF)
1951 return getNode(ISD::UNDEF, VT);
1952 break;
1953 case ISD::SCALAR_TO_VECTOR:
1954 assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1955 MVT::getVectorElementType(VT) == Operand.getValueType() &&
1956 "Illegal SCALAR_TO_VECTOR node!");
1957 break;
1958 case ISD::FNEG:
1959 if (OpOpcode == ISD::FSUB) // -(X-Y) -> (Y-X)
1960 return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
1961 Operand.Val->getOperand(0));
1962 if (OpOpcode == ISD::FNEG) // --X -> X
1963 return Operand.Val->getOperand(0);
1964 break;
1965 case ISD::FABS:
1966 if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X)
1967 return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1968 break;
1969 }
1970
1971 SDNode *N;
1972 SDVTList VTs = getVTList(VT);
1973 if (VT != MVT::Flag) { // Don't CSE flag producing nodes
1974 FoldingSetNodeID ID;
1975 SDOperand Ops[1] = { Operand };
1976 AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
1977 void *IP = 0;
1978 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1979 return SDOperand(E, 0);
1980 N = new UnarySDNode(Opcode, VTs, Operand);
1981 CSEMap.InsertNode(N, IP);
1982 } else {
1983 N = new UnarySDNode(Opcode, VTs, Operand);
1984 }
1985 AllNodes.push_back(N);
1986 return SDOperand(N, 0);
1987}
1988
1989
1990
1991SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1992 SDOperand N1, SDOperand N2) {
Chris Lattnercc126e32008-01-22 19:09:33 +00001993 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1994 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001995 switch (Opcode) {
Chris Lattnercc126e32008-01-22 19:09:33 +00001996 default: break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001997 case ISD::TokenFactor:
1998 assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1999 N2.getValueType() == MVT::Other && "Invalid token factor!");
Chris Lattnercc126e32008-01-22 19:09:33 +00002000 // Fold trivial token factors.
2001 if (N1.getOpcode() == ISD::EntryToken) return N2;
2002 if (N2.getOpcode() == ISD::EntryToken) return N1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002003 break;
2004 case ISD::AND:
Chris Lattnercc126e32008-01-22 19:09:33 +00002005 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2006 N1.getValueType() == VT && "Binary operator types must match!");
2007 // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's
2008 // worth handling here.
2009 if (N2C && N2C->getValue() == 0)
2010 return N2;
Chris Lattner8aa8a5e2008-01-26 01:05:42 +00002011 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2012 return N1;
Chris Lattnercc126e32008-01-22 19:09:33 +00002013 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002014 case ISD::OR:
2015 case ISD::XOR:
Chris Lattnercc126e32008-01-22 19:09:33 +00002016 assert(MVT::isInteger(VT) && N1.getValueType() == N2.getValueType() &&
2017 N1.getValueType() == VT && "Binary operator types must match!");
2018 // (X ^| 0) -> X. This commonly occurs when legalizing i64 values, so it's
2019 // worth handling here.
2020 if (N2C && N2C->getValue() == 0)
2021 return N1;
2022 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002023 case ISD::UDIV:
2024 case ISD::UREM:
2025 case ISD::MULHU:
2026 case ISD::MULHS:
2027 assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
2028 // fall through
2029 case ISD::ADD:
2030 case ISD::SUB:
2031 case ISD::MUL:
2032 case ISD::SDIV:
2033 case ISD::SREM:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002034 case ISD::FADD:
2035 case ISD::FSUB:
2036 case ISD::FMUL:
2037 case ISD::FDIV:
2038 case ISD::FREM:
2039 assert(N1.getValueType() == N2.getValueType() &&
2040 N1.getValueType() == VT && "Binary operator types must match!");
2041 break;
2042 case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match.
2043 assert(N1.getValueType() == VT &&
2044 MVT::isFloatingPoint(N1.getValueType()) &&
2045 MVT::isFloatingPoint(N2.getValueType()) &&
2046 "Invalid FCOPYSIGN!");
2047 break;
2048 case ISD::SHL:
2049 case ISD::SRA:
2050 case ISD::SRL:
2051 case ISD::ROTL:
2052 case ISD::ROTR:
2053 assert(VT == N1.getValueType() &&
2054 "Shift operators return type must be the same as their first arg");
2055 assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
2056 VT != MVT::i1 && "Shifts only work on integers");
2057 break;
2058 case ISD::FP_ROUND_INREG: {
2059 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2060 assert(VT == N1.getValueType() && "Not an inreg round!");
2061 assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
2062 "Cannot FP_ROUND_INREG integer types");
Duncan Sandsa9810f32007-10-16 09:56:48 +00002063 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2064 "Not rounding down!");
Chris Lattnercc126e32008-01-22 19:09:33 +00002065 if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002066 break;
2067 }
Chris Lattner5872a362008-01-17 07:00:52 +00002068 case ISD::FP_ROUND:
2069 assert(MVT::isFloatingPoint(VT) &&
2070 MVT::isFloatingPoint(N1.getValueType()) &&
2071 MVT::getSizeInBits(VT) <= MVT::getSizeInBits(N1.getValueType()) &&
2072 isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
Chris Lattnercc126e32008-01-22 19:09:33 +00002073 if (N1.getValueType() == VT) return N1; // noop conversion.
Chris Lattner5872a362008-01-17 07:00:52 +00002074 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002075 case ISD::AssertSext:
Chris Lattnercc126e32008-01-22 19:09:33 +00002076 case ISD::AssertZext: {
2077 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2078 assert(VT == N1.getValueType() && "Not an inreg extend!");
2079 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2080 "Cannot *_EXTEND_INREG FP types");
2081 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2082 "Not extending!");
Duncan Sands539510b2008-02-10 10:08:52 +00002083 if (VT == EVT) return N1; // noop assertion.
Chris Lattnercc126e32008-01-22 19:09:33 +00002084 break;
2085 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002086 case ISD::SIGN_EXTEND_INREG: {
2087 MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2088 assert(VT == N1.getValueType() && "Not an inreg extend!");
2089 assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
2090 "Cannot *_EXTEND_INREG FP types");
Duncan Sandsa9810f32007-10-16 09:56:48 +00002091 assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
2092 "Not extending!");
Chris Lattnercc126e32008-01-22 19:09:33 +00002093 if (EVT == VT) return N1; // Not actually extending
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002094
Chris Lattnercc126e32008-01-22 19:09:33 +00002095 if (N1C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002096 int64_t Val = N1C->getValue();
2097 unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
2098 Val <<= 64-FromBits;
2099 Val >>= 64-FromBits;
2100 return getConstant(Val, VT);
2101 }
Chris Lattnercc126e32008-01-22 19:09:33 +00002102 break;
2103 }
2104 case ISD::EXTRACT_VECTOR_ELT:
2105 assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2106
2107 // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2108 // expanding copies of large vectors from registers.
2109 if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2110 N1.getNumOperands() > 0) {
2111 unsigned Factor =
2112 MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2113 return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2114 N1.getOperand(N2C->getValue() / Factor),
2115 getConstant(N2C->getValue() % Factor, N2.getValueType()));
2116 }
2117
2118 // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2119 // expanding large vector constants.
2120 if (N1.getOpcode() == ISD::BUILD_VECTOR)
2121 return N1.getOperand(N2C->getValue());
2122
2123 // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2124 // operations are lowered to scalars.
2125 if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2126 if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2127 if (IEC == N2C)
2128 return N1.getOperand(1);
2129 else
2130 return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2131 }
2132 break;
2133 case ISD::EXTRACT_ELEMENT:
2134 assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002135
Chris Lattnercc126e32008-01-22 19:09:33 +00002136 // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2137 // 64-bit integers into 32-bit parts. Instead of building the extract of
2138 // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2139 if (N1.getOpcode() == ISD::BUILD_PAIR)
2140 return N1.getOperand(N2C->getValue());
2141
2142 // EXTRACT_ELEMENT of a constant int is also very common.
2143 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2144 unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2145 return getConstant(C->getValue() >> Shift, VT);
2146 }
2147 break;
2148 }
2149
2150 if (N1C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002151 if (N2C) {
2152 uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
2153 switch (Opcode) {
2154 case ISD::ADD: return getConstant(C1 + C2, VT);
2155 case ISD::SUB: return getConstant(C1 - C2, VT);
2156 case ISD::MUL: return getConstant(C1 * C2, VT);
2157 case ISD::UDIV:
2158 if (C2) return getConstant(C1 / C2, VT);
2159 break;
2160 case ISD::UREM :
2161 if (C2) return getConstant(C1 % C2, VT);
2162 break;
2163 case ISD::SDIV :
2164 if (C2) return getConstant(N1C->getSignExtended() /
2165 N2C->getSignExtended(), VT);
2166 break;
2167 case ISD::SREM :
2168 if (C2) return getConstant(N1C->getSignExtended() %
2169 N2C->getSignExtended(), VT);
2170 break;
2171 case ISD::AND : return getConstant(C1 & C2, VT);
2172 case ISD::OR : return getConstant(C1 | C2, VT);
2173 case ISD::XOR : return getConstant(C1 ^ C2, VT);
2174 case ISD::SHL : return getConstant(C1 << C2, VT);
2175 case ISD::SRL : return getConstant(C1 >> C2, VT);
2176 case ISD::SRA : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
2177 case ISD::ROTL :
2178 return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
2179 VT);
2180 case ISD::ROTR :
2181 return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)),
2182 VT);
2183 default: break;
2184 }
2185 } else { // Cannonicalize constant to RHS if commutative
2186 if (isCommutativeBinOp(Opcode)) {
2187 std::swap(N1C, N2C);
2188 std::swap(N1, N2);
2189 }
2190 }
2191 }
2192
Chris Lattnercc126e32008-01-22 19:09:33 +00002193 // Constant fold FP operations.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002194 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2195 ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
2196 if (N1CFP) {
Chris Lattnercc126e32008-01-22 19:09:33 +00002197 if (!N2CFP && isCommutativeBinOp(Opcode)) {
2198 // Cannonicalize constant to RHS if commutative
2199 std::swap(N1CFP, N2CFP);
2200 std::swap(N1, N2);
2201 } else if (N2CFP && VT != MVT::ppcf128) {
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002202 APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2203 APFloat::opStatus s;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002204 switch (Opcode) {
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002205 case ISD::FADD:
2206 s = V1.add(V2, APFloat::rmNearestTiesToEven);
Chris Lattnercc126e32008-01-22 19:09:33 +00002207 if (s != APFloat::opInvalidOp)
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002208 return getConstantFP(V1, VT);
2209 break;
2210 case ISD::FSUB:
2211 s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2212 if (s!=APFloat::opInvalidOp)
2213 return getConstantFP(V1, VT);
2214 break;
2215 case ISD::FMUL:
2216 s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2217 if (s!=APFloat::opInvalidOp)
2218 return getConstantFP(V1, VT);
2219 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002220 case ISD::FDIV:
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002221 s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2222 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2223 return getConstantFP(V1, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002224 break;
2225 case ISD::FREM :
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002226 s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2227 if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2228 return getConstantFP(V1, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002229 break;
Dale Johannesen7604c1b2007-08-31 23:34:27 +00002230 case ISD::FCOPYSIGN:
2231 V1.copySign(V2);
2232 return getConstantFP(V1, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002233 default: break;
2234 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002235 }
2236 }
2237
2238 // Canonicalize an UNDEF to the RHS, even over a constant.
2239 if (N1.getOpcode() == ISD::UNDEF) {
2240 if (isCommutativeBinOp(Opcode)) {
2241 std::swap(N1, N2);
2242 } else {
2243 switch (Opcode) {
2244 case ISD::FP_ROUND_INREG:
2245 case ISD::SIGN_EXTEND_INREG:
2246 case ISD::SUB:
2247 case ISD::FSUB:
2248 case ISD::FDIV:
2249 case ISD::FREM:
2250 case ISD::SRA:
2251 return N1; // fold op(undef, arg2) -> undef
2252 case ISD::UDIV:
2253 case ISD::SDIV:
2254 case ISD::UREM:
2255 case ISD::SREM:
2256 case ISD::SRL:
2257 case ISD::SHL:
2258 if (!MVT::isVector(VT))
2259 return getConstant(0, VT); // fold op(undef, arg2) -> 0
2260 // For vectors, we can't easily build an all zero vector, just return
2261 // the LHS.
2262 return N2;
2263 }
2264 }
2265 }
2266
2267 // Fold a bunch of operators when the RHS is undef.
2268 if (N2.getOpcode() == ISD::UNDEF) {
2269 switch (Opcode) {
2270 case ISD::ADD:
2271 case ISD::ADDC:
2272 case ISD::ADDE:
2273 case ISD::SUB:
2274 case ISD::FADD:
2275 case ISD::FSUB:
2276 case ISD::FMUL:
2277 case ISD::FDIV:
2278 case ISD::FREM:
2279 case ISD::UDIV:
2280 case ISD::SDIV:
2281 case ISD::UREM:
2282 case ISD::SREM:
2283 case ISD::XOR:
2284 return N2; // fold op(arg1, undef) -> undef
2285 case ISD::MUL:
2286 case ISD::AND:
2287 case ISD::SRL:
2288 case ISD::SHL:
2289 if (!MVT::isVector(VT))
2290 return getConstant(0, VT); // fold op(arg1, undef) -> 0
2291 // For vectors, we can't easily build an all zero vector, just return
2292 // the LHS.
2293 return N1;
2294 case ISD::OR:
2295 if (!MVT::isVector(VT))
2296 return getConstant(MVT::getIntVTBitMask(VT), VT);
2297 // For vectors, we can't easily build an all one vector, just return
2298 // the LHS.
2299 return N1;
2300 case ISD::SRA:
2301 return N1;
2302 }
2303 }
2304
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002305 // Memoize this node if possible.
2306 SDNode *N;
2307 SDVTList VTs = getVTList(VT);
2308 if (VT != MVT::Flag) {
2309 SDOperand Ops[] = { N1, N2 };
2310 FoldingSetNodeID ID;
2311 AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
2312 void *IP = 0;
2313 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2314 return SDOperand(E, 0);
2315 N = new BinarySDNode(Opcode, VTs, N1, N2);
2316 CSEMap.InsertNode(N, IP);
2317 } else {
2318 N = new BinarySDNode(Opcode, VTs, N1, N2);
2319 }
2320
2321 AllNodes.push_back(N);
2322 return SDOperand(N, 0);
2323}
2324
2325SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2326 SDOperand N1, SDOperand N2, SDOperand N3) {
2327 // Perform various simplifications.
2328 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2329 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2330 switch (Opcode) {
2331 case ISD::SETCC: {
2332 // Use FoldSetCC to simplify SETCC's.
2333 SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
2334 if (Simp.Val) return Simp;
2335 break;
2336 }
2337 case ISD::SELECT:
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002338 if (N1C) {
2339 if (N1C->getValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002340 return N2; // select true, X, Y -> X
2341 else
2342 return N3; // select false, X, Y -> Y
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002343 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002344
2345 if (N2 == N3) return N2; // select C, X, X -> X
2346 break;
2347 case ISD::BRCOND:
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002348 if (N2C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002349 if (N2C->getValue()) // Unconditional branch
2350 return getNode(ISD::BR, MVT::Other, N1, N3);
2351 else
2352 return N1; // Never-taken branch
Anton Korobeynikov53422f62008-02-20 11:10:28 +00002353 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002354 break;
2355 case ISD::VECTOR_SHUFFLE:
2356 assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2357 MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2358 N3.getOpcode() == ISD::BUILD_VECTOR &&
2359 MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2360 "Illegal VECTOR_SHUFFLE node!");
2361 break;
2362 case ISD::BIT_CONVERT:
2363 // Fold bit_convert nodes from a type to themselves.
2364 if (N1.getValueType() == VT)
2365 return N1;
2366 break;
2367 }
2368
2369 // Memoize node if it doesn't produce a flag.
2370 SDNode *N;
2371 SDVTList VTs = getVTList(VT);
2372 if (VT != MVT::Flag) {
2373 SDOperand Ops[] = { N1, N2, N3 };
2374 FoldingSetNodeID ID;
2375 AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2376 void *IP = 0;
2377 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2378 return SDOperand(E, 0);
2379 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2380 CSEMap.InsertNode(N, IP);
2381 } else {
2382 N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2383 }
2384 AllNodes.push_back(N);
2385 return SDOperand(N, 0);
2386}
2387
2388SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2389 SDOperand N1, SDOperand N2, SDOperand N3,
2390 SDOperand N4) {
2391 SDOperand Ops[] = { N1, N2, N3, N4 };
2392 return getNode(Opcode, VT, Ops, 4);
2393}
2394
2395SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2396 SDOperand N1, SDOperand N2, SDOperand N3,
2397 SDOperand N4, SDOperand N5) {
2398 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2399 return getNode(Opcode, VT, Ops, 5);
2400}
2401
Rafael Espindola80825902007-10-19 10:41:11 +00002402SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2403 SDOperand Src, SDOperand Size,
2404 SDOperand Align,
2405 SDOperand AlwaysInline) {
2406 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2407 return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2408}
2409
2410SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2411 SDOperand Src, SDOperand Size,
2412 SDOperand Align,
2413 SDOperand AlwaysInline) {
2414 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2415 return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2416}
2417
2418SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2419 SDOperand Src, SDOperand Size,
2420 SDOperand Align,
2421 SDOperand AlwaysInline) {
2422 SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2423 return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2424}
2425
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002426SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2427 SDOperand Chain, SDOperand Ptr,
2428 const Value *SV, int SVOffset,
2429 bool isVolatile, unsigned Alignment) {
2430 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2431 const Type *Ty = 0;
2432 if (VT != MVT::iPTR) {
2433 Ty = MVT::getTypeForValueType(VT);
2434 } else if (SV) {
2435 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2436 assert(PT && "Value for load must be a pointer");
2437 Ty = PT->getElementType();
2438 }
2439 assert(Ty && "Could not get type information for load");
2440 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2441 }
2442 SDVTList VTs = getVTList(VT, MVT::Other);
2443 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2444 SDOperand Ops[] = { Chain, Ptr, Undef };
2445 FoldingSetNodeID ID;
2446 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2447 ID.AddInteger(ISD::UNINDEXED);
2448 ID.AddInteger(ISD::NON_EXTLOAD);
Chris Lattner4a22a672007-09-13 06:09:48 +00002449 ID.AddInteger((unsigned int)VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002450 ID.AddInteger(Alignment);
2451 ID.AddInteger(isVolatile);
2452 void *IP = 0;
2453 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2454 return SDOperand(E, 0);
2455 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
2456 ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2457 isVolatile);
2458 CSEMap.InsertNode(N, IP);
2459 AllNodes.push_back(N);
2460 return SDOperand(N, 0);
2461}
2462
2463SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
2464 SDOperand Chain, SDOperand Ptr,
2465 const Value *SV,
2466 int SVOffset, MVT::ValueType EVT,
2467 bool isVolatile, unsigned Alignment) {
2468 // If they are asking for an extending load from/to the same thing, return a
2469 // normal load.
2470 if (VT == EVT)
Duncan Sands9b614742007-10-19 13:05:40 +00002471 return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002472
2473 if (MVT::isVector(VT))
2474 assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
2475 else
Duncan Sandsa9810f32007-10-16 09:56:48 +00002476 assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2477 "Should only be an extending load, not truncating!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002478 assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2479 "Cannot sign/zero extend a FP/Vector load!");
2480 assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2481 "Cannot convert from FP to Int or Int -> FP!");
2482
2483 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2484 const Type *Ty = 0;
2485 if (VT != MVT::iPTR) {
2486 Ty = MVT::getTypeForValueType(VT);
2487 } else if (SV) {
2488 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2489 assert(PT && "Value for load must be a pointer");
2490 Ty = PT->getElementType();
2491 }
2492 assert(Ty && "Could not get type information for load");
2493 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2494 }
2495 SDVTList VTs = getVTList(VT, MVT::Other);
2496 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2497 SDOperand Ops[] = { Chain, Ptr, Undef };
2498 FoldingSetNodeID ID;
2499 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2500 ID.AddInteger(ISD::UNINDEXED);
2501 ID.AddInteger(ExtType);
Chris Lattner4a22a672007-09-13 06:09:48 +00002502 ID.AddInteger((unsigned int)EVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002503 ID.AddInteger(Alignment);
2504 ID.AddInteger(isVolatile);
2505 void *IP = 0;
2506 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2507 return SDOperand(E, 0);
2508 SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
2509 SV, SVOffset, Alignment, isVolatile);
2510 CSEMap.InsertNode(N, IP);
2511 AllNodes.push_back(N);
2512 return SDOperand(N, 0);
2513}
2514
2515SDOperand
2516SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2517 SDOperand Offset, ISD::MemIndexedMode AM) {
2518 LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
2519 assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2520 "Load is already a indexed load!");
2521 MVT::ValueType VT = OrigLoad.getValueType();
2522 SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
2523 SDOperand Ops[] = { LD->getChain(), Base, Offset };
2524 FoldingSetNodeID ID;
2525 AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2526 ID.AddInteger(AM);
2527 ID.AddInteger(LD->getExtensionType());
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002528 ID.AddInteger((unsigned int)(LD->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002529 ID.AddInteger(LD->getAlignment());
2530 ID.AddInteger(LD->isVolatile());
2531 void *IP = 0;
2532 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2533 return SDOperand(E, 0);
2534 SDNode *N = new LoadSDNode(Ops, VTs, AM,
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002535 LD->getExtensionType(), LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002536 LD->getSrcValue(), LD->getSrcValueOffset(),
2537 LD->getAlignment(), LD->isVolatile());
2538 CSEMap.InsertNode(N, IP);
2539 AllNodes.push_back(N);
2540 return SDOperand(N, 0);
2541}
2542
2543SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
2544 SDOperand Ptr, const Value *SV, int SVOffset,
2545 bool isVolatile, unsigned Alignment) {
2546 MVT::ValueType VT = Val.getValueType();
2547
2548 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2549 const Type *Ty = 0;
2550 if (VT != MVT::iPTR) {
2551 Ty = MVT::getTypeForValueType(VT);
2552 } else if (SV) {
2553 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2554 assert(PT && "Value for store must be a pointer");
2555 Ty = PT->getElementType();
2556 }
2557 assert(Ty && "Could not get type information for store");
2558 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2559 }
2560 SDVTList VTs = getVTList(MVT::Other);
2561 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2562 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
2563 FoldingSetNodeID ID;
2564 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2565 ID.AddInteger(ISD::UNINDEXED);
2566 ID.AddInteger(false);
Chris Lattner4a22a672007-09-13 06:09:48 +00002567 ID.AddInteger((unsigned int)VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002568 ID.AddInteger(Alignment);
2569 ID.AddInteger(isVolatile);
2570 void *IP = 0;
2571 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2572 return SDOperand(E, 0);
2573 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
2574 VT, SV, SVOffset, Alignment, isVolatile);
2575 CSEMap.InsertNode(N, IP);
2576 AllNodes.push_back(N);
2577 return SDOperand(N, 0);
2578}
2579
2580SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
2581 SDOperand Ptr, const Value *SV,
2582 int SVOffset, MVT::ValueType SVT,
2583 bool isVolatile, unsigned Alignment) {
2584 MVT::ValueType VT = Val.getValueType();
Duncan Sands06fcf652007-10-30 12:40:58 +00002585
2586 if (VT == SVT)
2587 return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002588
Duncan Sandsa9810f32007-10-16 09:56:48 +00002589 assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2590 "Not a truncation?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002591 assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2592 "Can't do FP-INT conversion!");
2593
2594 if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2595 const Type *Ty = 0;
2596 if (VT != MVT::iPTR) {
2597 Ty = MVT::getTypeForValueType(VT);
2598 } else if (SV) {
2599 const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2600 assert(PT && "Value for store must be a pointer");
2601 Ty = PT->getElementType();
2602 }
2603 assert(Ty && "Could not get type information for store");
2604 Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2605 }
2606 SDVTList VTs = getVTList(MVT::Other);
2607 SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2608 SDOperand Ops[] = { Chain, Val, Ptr, Undef };
2609 FoldingSetNodeID ID;
2610 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2611 ID.AddInteger(ISD::UNINDEXED);
Duncan Sands06fcf652007-10-30 12:40:58 +00002612 ID.AddInteger(1);
Chris Lattner4a22a672007-09-13 06:09:48 +00002613 ID.AddInteger((unsigned int)SVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002614 ID.AddInteger(Alignment);
2615 ID.AddInteger(isVolatile);
2616 void *IP = 0;
2617 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2618 return SDOperand(E, 0);
Duncan Sands06fcf652007-10-30 12:40:58 +00002619 SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002620 SVT, SV, SVOffset, Alignment, isVolatile);
2621 CSEMap.InsertNode(N, IP);
2622 AllNodes.push_back(N);
2623 return SDOperand(N, 0);
2624}
2625
2626SDOperand
2627SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2628 SDOperand Offset, ISD::MemIndexedMode AM) {
2629 StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2630 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2631 "Store is already a indexed store!");
2632 SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2633 SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2634 FoldingSetNodeID ID;
2635 AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2636 ID.AddInteger(AM);
2637 ID.AddInteger(ST->isTruncatingStore());
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002638 ID.AddInteger((unsigned int)(ST->getMemoryVT()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002639 ID.AddInteger(ST->getAlignment());
2640 ID.AddInteger(ST->isVolatile());
2641 void *IP = 0;
2642 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2643 return SDOperand(E, 0);
2644 SDNode *N = new StoreSDNode(Ops, VTs, AM,
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002645 ST->isTruncatingStore(), ST->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002646 ST->getSrcValue(), ST->getSrcValueOffset(),
2647 ST->getAlignment(), ST->isVolatile());
2648 CSEMap.InsertNode(N, IP);
2649 AllNodes.push_back(N);
2650 return SDOperand(N, 0);
2651}
2652
2653SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2654 SDOperand Chain, SDOperand Ptr,
2655 SDOperand SV) {
2656 SDOperand Ops[] = { Chain, Ptr, SV };
2657 return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
2658}
2659
2660SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2661 const SDOperand *Ops, unsigned NumOps) {
2662 switch (NumOps) {
2663 case 0: return getNode(Opcode, VT);
2664 case 1: return getNode(Opcode, VT, Ops[0]);
2665 case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2666 case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
2667 default: break;
2668 }
2669
2670 switch (Opcode) {
2671 default: break;
2672 case ISD::SELECT_CC: {
2673 assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
2674 assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2675 "LHS and RHS of condition must have same type!");
2676 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2677 "True and False arms of SelectCC must have same type!");
2678 assert(Ops[2].getValueType() == VT &&
2679 "select_cc node must be of same type as true and false value!");
2680 break;
2681 }
2682 case ISD::BR_CC: {
2683 assert(NumOps == 5 && "BR_CC takes 5 operands!");
2684 assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2685 "LHS/RHS of comparison should match types!");
2686 break;
2687 }
2688 }
2689
2690 // Memoize nodes.
2691 SDNode *N;
2692 SDVTList VTs = getVTList(VT);
2693 if (VT != MVT::Flag) {
2694 FoldingSetNodeID ID;
2695 AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
2696 void *IP = 0;
2697 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2698 return SDOperand(E, 0);
2699 N = new SDNode(Opcode, VTs, Ops, NumOps);
2700 CSEMap.InsertNode(N, IP);
2701 } else {
2702 N = new SDNode(Opcode, VTs, Ops, NumOps);
2703 }
2704 AllNodes.push_back(N);
2705 return SDOperand(N, 0);
2706}
2707
2708SDOperand SelectionDAG::getNode(unsigned Opcode,
2709 std::vector<MVT::ValueType> &ResultTys,
2710 const SDOperand *Ops, unsigned NumOps) {
2711 return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2712 Ops, NumOps);
2713}
2714
2715SDOperand SelectionDAG::getNode(unsigned Opcode,
2716 const MVT::ValueType *VTs, unsigned NumVTs,
2717 const SDOperand *Ops, unsigned NumOps) {
2718 if (NumVTs == 1)
2719 return getNode(Opcode, VTs[0], Ops, NumOps);
2720 return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2721}
2722
2723SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2724 const SDOperand *Ops, unsigned NumOps) {
2725 if (VTList.NumVTs == 1)
2726 return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
2727
2728 switch (Opcode) {
2729 // FIXME: figure out how to safely handle things like
2730 // int foo(int x) { return 1 << (x & 255); }
2731 // int bar() { return foo(256); }
2732#if 0
2733 case ISD::SRA_PARTS:
2734 case ISD::SRL_PARTS:
2735 case ISD::SHL_PARTS:
2736 if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2737 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
2738 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2739 else if (N3.getOpcode() == ISD::AND)
2740 if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2741 // If the and is only masking out bits that cannot effect the shift,
2742 // eliminate the and.
2743 unsigned NumBits = MVT::getSizeInBits(VT)*2;
2744 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2745 return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2746 }
2747 break;
2748#endif
2749 }
2750
2751 // Memoize the node unless it returns a flag.
2752 SDNode *N;
2753 if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
2754 FoldingSetNodeID ID;
2755 AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
2756 void *IP = 0;
2757 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2758 return SDOperand(E, 0);
2759 if (NumOps == 1)
2760 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2761 else if (NumOps == 2)
2762 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2763 else if (NumOps == 3)
2764 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2765 else
2766 N = new SDNode(Opcode, VTList, Ops, NumOps);
2767 CSEMap.InsertNode(N, IP);
2768 } else {
2769 if (NumOps == 1)
2770 N = new UnarySDNode(Opcode, VTList, Ops[0]);
2771 else if (NumOps == 2)
2772 N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2773 else if (NumOps == 3)
2774 N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2775 else
2776 N = new SDNode(Opcode, VTList, Ops, NumOps);
2777 }
2778 AllNodes.push_back(N);
2779 return SDOperand(N, 0);
2780}
2781
Dan Gohman798d1272007-10-08 15:49:58 +00002782SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2783 return getNode(Opcode, VTList, 0, 0);
2784}
2785
2786SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2787 SDOperand N1) {
2788 SDOperand Ops[] = { N1 };
2789 return getNode(Opcode, VTList, Ops, 1);
2790}
2791
2792SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2793 SDOperand N1, SDOperand N2) {
2794 SDOperand Ops[] = { N1, N2 };
2795 return getNode(Opcode, VTList, Ops, 2);
2796}
2797
2798SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2799 SDOperand N1, SDOperand N2, SDOperand N3) {
2800 SDOperand Ops[] = { N1, N2, N3 };
2801 return getNode(Opcode, VTList, Ops, 3);
2802}
2803
2804SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2805 SDOperand N1, SDOperand N2, SDOperand N3,
2806 SDOperand N4) {
2807 SDOperand Ops[] = { N1, N2, N3, N4 };
2808 return getNode(Opcode, VTList, Ops, 4);
2809}
2810
2811SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2812 SDOperand N1, SDOperand N2, SDOperand N3,
2813 SDOperand N4, SDOperand N5) {
2814 SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2815 return getNode(Opcode, VTList, Ops, 5);
2816}
2817
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002818SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
Duncan Sandsa9810f32007-10-16 09:56:48 +00002819 return makeVTList(SDNode::getValueTypeList(VT), 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002820}
2821
2822SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
2823 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2824 E = VTList.end(); I != E; ++I) {
2825 if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
2826 return makeVTList(&(*I)[0], 2);
2827 }
2828 std::vector<MVT::ValueType> V;
2829 V.push_back(VT1);
2830 V.push_back(VT2);
2831 VTList.push_front(V);
2832 return makeVTList(&(*VTList.begin())[0], 2);
2833}
2834SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2835 MVT::ValueType VT3) {
2836 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2837 E = VTList.end(); I != E; ++I) {
2838 if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2839 (*I)[2] == VT3)
2840 return makeVTList(&(*I)[0], 3);
2841 }
2842 std::vector<MVT::ValueType> V;
2843 V.push_back(VT1);
2844 V.push_back(VT2);
2845 V.push_back(VT3);
2846 VTList.push_front(V);
2847 return makeVTList(&(*VTList.begin())[0], 3);
2848}
2849
2850SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2851 switch (NumVTs) {
2852 case 0: assert(0 && "Cannot have nodes without results!");
2853 case 1: return getVTList(VTs[0]);
2854 case 2: return getVTList(VTs[0], VTs[1]);
2855 case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2856 default: break;
2857 }
2858
2859 for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2860 E = VTList.end(); I != E; ++I) {
2861 if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2862
2863 bool NoMatch = false;
2864 for (unsigned i = 2; i != NumVTs; ++i)
2865 if (VTs[i] != (*I)[i]) {
2866 NoMatch = true;
2867 break;
2868 }
2869 if (!NoMatch)
2870 return makeVTList(&*I->begin(), NumVTs);
2871 }
2872
2873 VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2874 return makeVTList(&*VTList.begin()->begin(), NumVTs);
2875}
2876
2877
2878/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2879/// specified operands. If the resultant node already exists in the DAG,
2880/// this does not modify the specified node, instead it returns the node that
2881/// already exists. If the resultant node does not exist in the DAG, the
2882/// input node is returned. As a degenerate case, if you specify the same
2883/// input operands as the node already has, the input node is returned.
2884SDOperand SelectionDAG::
2885UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2886 SDNode *N = InN.Val;
2887 assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2888
2889 // Check to see if there is no change.
2890 if (Op == N->getOperand(0)) return InN;
2891
2892 // See if the modified node already exists.
2893 void *InsertPos = 0;
2894 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2895 return SDOperand(Existing, InN.ResNo);
2896
2897 // Nope it doesn't. Remove the node from it's current place in the maps.
2898 if (InsertPos)
2899 RemoveNodeFromCSEMaps(N);
2900
2901 // Now we update the operands.
2902 N->OperandList[0].Val->removeUser(N);
2903 Op.Val->addUser(N);
2904 N->OperandList[0] = Op;
2905
2906 // If this gets put into a CSE map, add it.
2907 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2908 return InN;
2909}
2910
2911SDOperand SelectionDAG::
2912UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2913 SDNode *N = InN.Val;
2914 assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2915
2916 // Check to see if there is no change.
2917 if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2918 return InN; // No operands changed, just return the input node.
2919
2920 // See if the modified node already exists.
2921 void *InsertPos = 0;
2922 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2923 return SDOperand(Existing, InN.ResNo);
2924
2925 // Nope it doesn't. Remove the node from it's current place in the maps.
2926 if (InsertPos)
2927 RemoveNodeFromCSEMaps(N);
2928
2929 // Now we update the operands.
2930 if (N->OperandList[0] != Op1) {
2931 N->OperandList[0].Val->removeUser(N);
2932 Op1.Val->addUser(N);
2933 N->OperandList[0] = Op1;
2934 }
2935 if (N->OperandList[1] != Op2) {
2936 N->OperandList[1].Val->removeUser(N);
2937 Op2.Val->addUser(N);
2938 N->OperandList[1] = Op2;
2939 }
2940
2941 // If this gets put into a CSE map, add it.
2942 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2943 return InN;
2944}
2945
2946SDOperand SelectionDAG::
2947UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2948 SDOperand Ops[] = { Op1, Op2, Op3 };
2949 return UpdateNodeOperands(N, Ops, 3);
2950}
2951
2952SDOperand SelectionDAG::
2953UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2954 SDOperand Op3, SDOperand Op4) {
2955 SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2956 return UpdateNodeOperands(N, Ops, 4);
2957}
2958
2959SDOperand SelectionDAG::
2960UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2961 SDOperand Op3, SDOperand Op4, SDOperand Op5) {
2962 SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2963 return UpdateNodeOperands(N, Ops, 5);
2964}
2965
2966
2967SDOperand SelectionDAG::
2968UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
2969 SDNode *N = InN.Val;
2970 assert(N->getNumOperands() == NumOps &&
2971 "Update with wrong number of operands");
2972
2973 // Check to see if there is no change.
2974 bool AnyChange = false;
2975 for (unsigned i = 0; i != NumOps; ++i) {
2976 if (Ops[i] != N->getOperand(i)) {
2977 AnyChange = true;
2978 break;
2979 }
2980 }
2981
2982 // No operands changed, just return the input node.
2983 if (!AnyChange) return InN;
2984
2985 // See if the modified node already exists.
2986 void *InsertPos = 0;
2987 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
2988 return SDOperand(Existing, InN.ResNo);
2989
2990 // Nope it doesn't. Remove the node from it's current place in the maps.
2991 if (InsertPos)
2992 RemoveNodeFromCSEMaps(N);
2993
2994 // Now we update the operands.
2995 for (unsigned i = 0; i != NumOps; ++i) {
2996 if (N->OperandList[i] != Ops[i]) {
2997 N->OperandList[i].Val->removeUser(N);
2998 Ops[i].Val->addUser(N);
2999 N->OperandList[i] = Ops[i];
3000 }
3001 }
3002
3003 // If this gets put into a CSE map, add it.
3004 if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3005 return InN;
3006}
3007
3008
3009/// MorphNodeTo - This frees the operands of the current node, resets the
3010/// opcode, types, and operands to the specified value. This should only be
3011/// used by the SelectionDAG class.
3012void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
3013 const SDOperand *Ops, unsigned NumOps) {
3014 NodeType = Opc;
3015 ValueList = L.VTs;
3016 NumValues = L.NumVTs;
3017
3018 // Clear the operands list, updating used nodes to remove this from their
3019 // use list.
3020 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3021 I->Val->removeUser(this);
3022
3023 // If NumOps is larger than the # of operands we currently have, reallocate
3024 // the operand list.
3025 if (NumOps > NumOperands) {
3026 if (OperandsNeedDelete)
3027 delete [] OperandList;
3028 OperandList = new SDOperand[NumOps];
3029 OperandsNeedDelete = true;
3030 }
3031
3032 // Assign the new operands.
3033 NumOperands = NumOps;
3034
3035 for (unsigned i = 0, e = NumOps; i != e; ++i) {
3036 OperandList[i] = Ops[i];
3037 SDNode *N = OperandList[i].Val;
3038 N->Uses.push_back(this);
3039 }
3040}
3041
3042/// SelectNodeTo - These are used for target selectors to *mutate* the
3043/// specified node to have the specified return type, Target opcode, and
3044/// operands. Note that target opcodes are stored as
3045/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
3046///
3047/// Note that SelectNodeTo returns the resultant node. If there is already a
3048/// node of the specified opcode and operands, it returns that node instead of
3049/// the current one.
3050SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3051 MVT::ValueType VT) {
3052 SDVTList VTs = getVTList(VT);
3053 FoldingSetNodeID ID;
3054 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
3055 void *IP = 0;
3056 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3057 return ON;
3058
3059 RemoveNodeFromCSEMaps(N);
3060
3061 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
3062
3063 CSEMap.InsertNode(N, IP);
3064 return N;
3065}
3066
3067SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3068 MVT::ValueType VT, SDOperand Op1) {
3069 // If an identical node already exists, use it.
3070 SDVTList VTs = getVTList(VT);
3071 SDOperand Ops[] = { Op1 };
3072
3073 FoldingSetNodeID ID;
3074 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
3075 void *IP = 0;
3076 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3077 return ON;
3078
3079 RemoveNodeFromCSEMaps(N);
3080 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
3081 CSEMap.InsertNode(N, IP);
3082 return N;
3083}
3084
3085SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3086 MVT::ValueType VT, SDOperand Op1,
3087 SDOperand Op2) {
3088 // If an identical node already exists, use it.
3089 SDVTList VTs = getVTList(VT);
3090 SDOperand Ops[] = { Op1, Op2 };
3091
3092 FoldingSetNodeID ID;
3093 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3094 void *IP = 0;
3095 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3096 return ON;
3097
3098 RemoveNodeFromCSEMaps(N);
3099
3100 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3101
3102 CSEMap.InsertNode(N, IP); // Memoize the new node.
3103 return N;
3104}
3105
3106SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3107 MVT::ValueType VT, SDOperand Op1,
3108 SDOperand Op2, SDOperand Op3) {
3109 // If an identical node already exists, use it.
3110 SDVTList VTs = getVTList(VT);
3111 SDOperand Ops[] = { Op1, Op2, Op3 };
3112 FoldingSetNodeID ID;
3113 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3114 void *IP = 0;
3115 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3116 return ON;
3117
3118 RemoveNodeFromCSEMaps(N);
3119
3120 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3121
3122 CSEMap.InsertNode(N, IP); // Memoize the new node.
3123 return N;
3124}
3125
3126SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3127 MVT::ValueType VT, const SDOperand *Ops,
3128 unsigned NumOps) {
3129 // If an identical node already exists, use it.
3130 SDVTList VTs = getVTList(VT);
3131 FoldingSetNodeID ID;
3132 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3133 void *IP = 0;
3134 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3135 return ON;
3136
3137 RemoveNodeFromCSEMaps(N);
3138 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3139
3140 CSEMap.InsertNode(N, IP); // Memoize the new node.
3141 return N;
3142}
3143
3144SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3145 MVT::ValueType VT1, MVT::ValueType VT2,
3146 SDOperand Op1, SDOperand Op2) {
3147 SDVTList VTs = getVTList(VT1, VT2);
3148 FoldingSetNodeID ID;
3149 SDOperand Ops[] = { Op1, Op2 };
3150 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3151 void *IP = 0;
3152 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3153 return ON;
3154
3155 RemoveNodeFromCSEMaps(N);
3156 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3157 CSEMap.InsertNode(N, IP); // Memoize the new node.
3158 return N;
3159}
3160
3161SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3162 MVT::ValueType VT1, MVT::ValueType VT2,
3163 SDOperand Op1, SDOperand Op2,
3164 SDOperand Op3) {
3165 // If an identical node already exists, use it.
3166 SDVTList VTs = getVTList(VT1, VT2);
3167 SDOperand Ops[] = { Op1, Op2, Op3 };
3168 FoldingSetNodeID ID;
3169 AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3170 void *IP = 0;
3171 if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3172 return ON;
3173
3174 RemoveNodeFromCSEMaps(N);
3175
3176 N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3177 CSEMap.InsertNode(N, IP); // Memoize the new node.
3178 return N;
3179}
3180
3181
3182/// getTargetNode - These are used for target selectors to create a new node
3183/// with specified return type(s), target opcode, and operands.
3184///
3185/// Note that getTargetNode returns the resultant node. If there is already a
3186/// node of the specified opcode and operands, it returns that node instead of
3187/// the current one.
3188SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3189 return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3190}
3191SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3192 SDOperand Op1) {
3193 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3194}
3195SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3196 SDOperand Op1, SDOperand Op2) {
3197 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3198}
3199SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3200 SDOperand Op1, SDOperand Op2,
3201 SDOperand Op3) {
3202 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3203}
3204SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3205 const SDOperand *Ops, unsigned NumOps) {
3206 return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
3207}
3208SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003209 MVT::ValueType VT2) {
3210 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3211 SDOperand Op;
3212 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3213}
3214SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003215 MVT::ValueType VT2, SDOperand Op1) {
3216 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3217 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
3218}
3219SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3220 MVT::ValueType VT2, SDOperand Op1,
3221 SDOperand Op2) {
3222 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3223 SDOperand Ops[] = { Op1, Op2 };
3224 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
3225}
3226SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3227 MVT::ValueType VT2, SDOperand Op1,
3228 SDOperand Op2, SDOperand Op3) {
3229 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3230 SDOperand Ops[] = { Op1, Op2, Op3 };
3231 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
3232}
3233SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3234 MVT::ValueType VT2,
3235 const SDOperand *Ops, unsigned NumOps) {
3236 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3237 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
3238}
3239SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3240 MVT::ValueType VT2, MVT::ValueType VT3,
3241 SDOperand Op1, SDOperand Op2) {
3242 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3243 SDOperand Ops[] = { Op1, Op2 };
3244 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
3245}
3246SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3247 MVT::ValueType VT2, MVT::ValueType VT3,
3248 SDOperand Op1, SDOperand Op2,
3249 SDOperand Op3) {
3250 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3251 SDOperand Ops[] = { Op1, Op2, Op3 };
3252 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3253}
3254SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3255 MVT::ValueType VT2, MVT::ValueType VT3,
3256 const SDOperand *Ops, unsigned NumOps) {
3257 const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3258 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
3259}
Evan Chenge1d067e2007-09-12 23:39:49 +00003260SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3261 MVT::ValueType VT2, MVT::ValueType VT3,
3262 MVT::ValueType VT4,
3263 const SDOperand *Ops, unsigned NumOps) {
3264 std::vector<MVT::ValueType> VTList;
3265 VTList.push_back(VT1);
3266 VTList.push_back(VT2);
3267 VTList.push_back(VT3);
3268 VTList.push_back(VT4);
3269 const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3270 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3271}
Evan Chenge3940912007-10-05 01:10:49 +00003272SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3273 std::vector<MVT::ValueType> &ResultTys,
3274 const SDOperand *Ops, unsigned NumOps) {
3275 const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3276 return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3277 Ops, NumOps).Val;
3278}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003279
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003280
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003281/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3282/// This can cause recursive merging of nodes in the DAG.
3283///
Chris Lattnerdca329f2008-02-03 03:35:22 +00003284/// This version assumes From has a single result value.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003285///
Chris Lattnerdca329f2008-02-03 03:35:22 +00003286void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003287 DAGUpdateListener *UpdateListener) {
Chris Lattnerdca329f2008-02-03 03:35:22 +00003288 SDNode *From = FromN.Val;
Chris Lattnerdca329f2008-02-03 03:35:22 +00003289 assert(From->getNumValues() == 1 && FromN.ResNo == 0 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003290 "Cannot replace with this method!");
Chris Lattnerdca329f2008-02-03 03:35:22 +00003291 assert(From != To.Val && "Cannot replace uses of with self");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003292
3293 while (!From->use_empty()) {
3294 // Process users until they are all gone.
3295 SDNode *U = *From->use_begin();
3296
3297 // This node is about to morph, remove its old self from the CSE maps.
3298 RemoveNodeFromCSEMaps(U);
3299
3300 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3301 I != E; ++I)
3302 if (I->Val == From) {
3303 From->removeUser(U);
Chris Lattnerdca329f2008-02-03 03:35:22 +00003304 *I = To;
3305 To.Val->addUser(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003306 }
3307
3308 // Now that we have modified U, add it back to the CSE maps. If it already
3309 // exists there, recursively merge the results together.
3310 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003311 ReplaceAllUsesWith(U, Existing, UpdateListener);
3312 // U is now dead. Inform the listener if it exists and delete it.
3313 if (UpdateListener)
3314 UpdateListener->NodeDeleted(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003315 DeleteNodeNotInCSEMaps(U);
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003316 } else {
3317 // If the node doesn't already exist, we updated it. Inform a listener if
3318 // it exists.
3319 if (UpdateListener)
3320 UpdateListener->NodeUpdated(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003321 }
3322 }
3323}
3324
3325/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3326/// This can cause recursive merging of nodes in the DAG.
3327///
3328/// This version assumes From/To have matching types and numbers of result
3329/// values.
3330///
3331void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003332 DAGUpdateListener *UpdateListener) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003333 assert(From != To && "Cannot replace uses of with self");
3334 assert(From->getNumValues() == To->getNumValues() &&
3335 "Cannot use this version of ReplaceAllUsesWith!");
Chris Lattnerdca329f2008-02-03 03:35:22 +00003336 if (From->getNumValues() == 1) // If possible, use the faster version.
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003337 return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3338 UpdateListener);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003339
3340 while (!From->use_empty()) {
3341 // Process users until they are all gone.
3342 SDNode *U = *From->use_begin();
3343
3344 // This node is about to morph, remove its old self from the CSE maps.
3345 RemoveNodeFromCSEMaps(U);
3346
3347 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3348 I != E; ++I)
3349 if (I->Val == From) {
3350 From->removeUser(U);
3351 I->Val = To;
3352 To->addUser(U);
3353 }
3354
3355 // Now that we have modified U, add it back to the CSE maps. If it already
3356 // exists there, recursively merge the results together.
3357 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003358 ReplaceAllUsesWith(U, Existing, UpdateListener);
3359 // U is now dead. Inform the listener if it exists and delete it.
3360 if (UpdateListener)
3361 UpdateListener->NodeDeleted(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003362 DeleteNodeNotInCSEMaps(U);
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003363 } else {
3364 // If the node doesn't already exist, we updated it. Inform a listener if
3365 // it exists.
3366 if (UpdateListener)
3367 UpdateListener->NodeUpdated(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 }
3369 }
3370}
3371
3372/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3373/// This can cause recursive merging of nodes in the DAG.
3374///
3375/// This version can replace From with any result values. To must match the
3376/// number and types of values returned by From.
3377void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
3378 const SDOperand *To,
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003379 DAGUpdateListener *UpdateListener) {
Chris Lattnerdca329f2008-02-03 03:35:22 +00003380 if (From->getNumValues() == 1) // Handle the simple case efficiently.
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003381 return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003382
3383 while (!From->use_empty()) {
3384 // Process users until they are all gone.
3385 SDNode *U = *From->use_begin();
3386
3387 // This node is about to morph, remove its old self from the CSE maps.
3388 RemoveNodeFromCSEMaps(U);
3389
3390 for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3391 I != E; ++I)
3392 if (I->Val == From) {
3393 const SDOperand &ToOp = To[I->ResNo];
3394 From->removeUser(U);
3395 *I = ToOp;
3396 ToOp.Val->addUser(U);
3397 }
3398
3399 // Now that we have modified U, add it back to the CSE maps. If it already
3400 // exists there, recursively merge the results together.
3401 if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003402 ReplaceAllUsesWith(U, Existing, UpdateListener);
3403 // U is now dead. Inform the listener if it exists and delete it.
3404 if (UpdateListener)
3405 UpdateListener->NodeDeleted(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003406 DeleteNodeNotInCSEMaps(U);
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003407 } else {
3408 // If the node doesn't already exist, we updated it. Inform a listener if
3409 // it exists.
3410 if (UpdateListener)
3411 UpdateListener->NodeUpdated(U);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003412 }
3413 }
3414}
3415
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003416namespace {
3417 /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
3418 /// any deleted nodes from the set passed into its constructor and recursively
3419 /// notifies another update listener if specified.
3420 class ChainedSetUpdaterListener :
3421 public SelectionDAG::DAGUpdateListener {
3422 SmallSetVector<SDNode*, 16> &Set;
3423 SelectionDAG::DAGUpdateListener *Chain;
3424 public:
3425 ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
3426 SelectionDAG::DAGUpdateListener *chain)
3427 : Set(set), Chain(chain) {}
3428
3429 virtual void NodeDeleted(SDNode *N) {
3430 Set.remove(N);
3431 if (Chain) Chain->NodeDeleted(N);
3432 }
3433 virtual void NodeUpdated(SDNode *N) {
3434 if (Chain) Chain->NodeUpdated(N);
3435 }
3436 };
3437}
3438
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003439/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3440/// uses of other values produced by From.Val alone. The Deleted vector is
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003441/// handled the same way as for ReplaceAllUsesWith.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003443 DAGUpdateListener *UpdateListener){
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003444 assert(From != To && "Cannot replace a value with itself");
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003445
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003446 // Handle the simple, trivial, case efficiently.
Chris Lattnerdca329f2008-02-03 03:35:22 +00003447 if (From.Val->getNumValues() == 1) {
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003448 ReplaceAllUsesWith(From, To, UpdateListener);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003449 return;
3450 }
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003451
3452 if (From.use_empty()) return;
3453
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003454 // Get all of the users of From.Val. We want these in a nice,
3455 // deterministically ordered and uniqued set, so we use a SmallSetVector.
3456 SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
3457
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003458 // When one of the recursive merges deletes nodes from the graph, we need to
3459 // make sure that UpdateListener is notified *and* that the node is removed
3460 // from Users if present. CSUL does this.
3461 ChainedSetUpdaterListener CSUL(Users, UpdateListener);
Chris Lattner8a258202007-10-15 06:10:22 +00003462
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003463 while (!Users.empty()) {
3464 // We know that this user uses some value of From. If it is the right
3465 // value, update it.
3466 SDNode *User = Users.back();
3467 Users.pop_back();
3468
Chris Lattner8a258202007-10-15 06:10:22 +00003469 // Scan for an operand that matches From.
3470 SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3471 for (; Op != E; ++Op)
3472 if (*Op == From) break;
3473
3474 // If there are no matches, the user must use some other result of From.
3475 if (Op == E) continue;
3476
3477 // Okay, we know this user needs to be updated. Remove its old self
3478 // from the CSE maps.
3479 RemoveNodeFromCSEMaps(User);
3480
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003481 // Update all operands that match "From" in case there are multiple uses.
Chris Lattner8a258202007-10-15 06:10:22 +00003482 for (; Op != E; ++Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003483 if (*Op == From) {
Chris Lattner8a258202007-10-15 06:10:22 +00003484 From.Val->removeUser(User);
3485 *Op = To;
3486 To.Val->addUser(User);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003487 }
3488 }
Chris Lattner8a258202007-10-15 06:10:22 +00003489
3490 // Now that we have modified User, add it back to the CSE maps. If it
3491 // already exists there, recursively merge the results together.
3492 SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003493 if (!Existing) {
3494 if (UpdateListener) UpdateListener->NodeUpdated(User);
3495 continue; // Continue on to next user.
3496 }
Chris Lattner8a258202007-10-15 06:10:22 +00003497
3498 // If there was already an existing matching node, use ReplaceAllUsesWith
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003499 // to replace the dead one with the existing one. This can cause
Chris Lattner8a258202007-10-15 06:10:22 +00003500 // recursive merging of other unrelated nodes down the line. The merging
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003501 // can cause deletion of nodes that used the old value. To handle this, we
3502 // use CSUL to remove them from the Users set.
3503 ReplaceAllUsesWith(User, Existing, &CSUL);
Chris Lattner8a258202007-10-15 06:10:22 +00003504
Chris Lattner7bcb18f2008-02-03 06:49:24 +00003505 // User is now dead. Notify a listener if present.
3506 if (UpdateListener) UpdateListener->NodeDeleted(User);
Chris Lattner8a258202007-10-15 06:10:22 +00003507 DeleteNodeNotInCSEMaps(User);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003508 }
3509}
3510
3511
3512/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3513/// their allnodes order. It returns the maximum id.
3514unsigned SelectionDAG::AssignNodeIds() {
3515 unsigned Id = 0;
3516 for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3517 SDNode *N = I;
3518 N->setNodeId(Id++);
3519 }
3520 return Id;
3521}
3522
3523/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
3524/// based on their topological order. It returns the maximum id and a vector
3525/// of the SDNodes* in assigned order by reference.
3526unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
3527 unsigned DAGSize = AllNodes.size();
3528 std::vector<unsigned> InDegree(DAGSize);
3529 std::vector<SDNode*> Sources;
3530
3531 // Use a two pass approach to avoid using a std::map which is slow.
3532 unsigned Id = 0;
3533 for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3534 SDNode *N = I;
3535 N->setNodeId(Id++);
3536 unsigned Degree = N->use_size();
3537 InDegree[N->getNodeId()] = Degree;
3538 if (Degree == 0)
3539 Sources.push_back(N);
3540 }
3541
3542 TopOrder.clear();
3543 while (!Sources.empty()) {
3544 SDNode *N = Sources.back();
3545 Sources.pop_back();
3546 TopOrder.push_back(N);
3547 for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3548 SDNode *P = I->Val;
3549 unsigned Degree = --InDegree[P->getNodeId()];
3550 if (Degree == 0)
3551 Sources.push_back(P);
3552 }
3553 }
3554
3555 // Second pass, assign the actual topological order as node ids.
3556 Id = 0;
3557 for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3558 TI != TE; ++TI)
3559 (*TI)->setNodeId(Id++);
3560
3561 return Id;
3562}
3563
3564
3565
3566//===----------------------------------------------------------------------===//
3567// SDNode Class
3568//===----------------------------------------------------------------------===//
3569
3570// Out-of-line virtual method to give class a home.
3571void SDNode::ANCHOR() {}
3572void UnarySDNode::ANCHOR() {}
3573void BinarySDNode::ANCHOR() {}
3574void TernarySDNode::ANCHOR() {}
3575void HandleSDNode::ANCHOR() {}
3576void StringSDNode::ANCHOR() {}
3577void ConstantSDNode::ANCHOR() {}
3578void ConstantFPSDNode::ANCHOR() {}
3579void GlobalAddressSDNode::ANCHOR() {}
3580void FrameIndexSDNode::ANCHOR() {}
3581void JumpTableSDNode::ANCHOR() {}
3582void ConstantPoolSDNode::ANCHOR() {}
3583void BasicBlockSDNode::ANCHOR() {}
3584void SrcValueSDNode::ANCHOR() {}
Dan Gohman12a9c082008-02-06 22:27:42 +00003585void MemOperandSDNode::ANCHOR() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586void RegisterSDNode::ANCHOR() {}
3587void ExternalSymbolSDNode::ANCHOR() {}
3588void CondCodeSDNode::ANCHOR() {}
3589void VTSDNode::ANCHOR() {}
3590void LoadSDNode::ANCHOR() {}
3591void StoreSDNode::ANCHOR() {}
3592
3593HandleSDNode::~HandleSDNode() {
3594 SDVTList VTs = { 0, 0 };
3595 MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0); // Drops operand uses.
3596}
3597
3598GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3599 MVT::ValueType VT, int o)
3600 : SDNode(isa<GlobalVariable>(GA) &&
Dan Gohman53491e92007-07-23 20:24:29 +00003601 cast<GlobalVariable>(GA)->isThreadLocal() ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003602 // Thread Local
3603 (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3604 // Non Thread Local
3605 (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3606 getSDVTList(VT)), Offset(o) {
3607 TheGlobal = const_cast<GlobalValue*>(GA);
3608}
3609
Dan Gohman12a9c082008-02-06 22:27:42 +00003610/// getMemOperand - Return a MemOperand object describing the memory
3611/// reference performed by this load or store.
3612MemOperand LSBaseSDNode::getMemOperand() const {
3613 int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
3614 int Flags =
3615 getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
3616 if (IsVolatile) Flags |= MemOperand::MOVolatile;
3617
3618 // Check if the load references a frame index, and does not have
3619 // an SV attached.
3620 const FrameIndexSDNode *FI =
3621 dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
3622 if (!getSrcValue() && FI)
Dan Gohmanfb020b62008-02-07 18:41:25 +00003623 return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
Dan Gohman12a9c082008-02-06 22:27:42 +00003624 FI->getIndex(), Size, Alignment);
3625 else
3626 return MemOperand(getSrcValue(), Flags,
3627 getSrcValueOffset(), Size, Alignment);
3628}
3629
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003630/// Profile - Gather unique data for the node.
3631///
3632void SDNode::Profile(FoldingSetNodeID &ID) {
3633 AddNodeIDNode(ID, this);
3634}
3635
3636/// getValueTypeList - Return a pointer to the specified value type.
3637///
Dan Gohman8cdf7892008-02-08 03:26:46 +00003638const MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
Duncan Sandsa9810f32007-10-16 09:56:48 +00003639 if (MVT::isExtendedVT(VT)) {
3640 static std::set<MVT::ValueType> EVTs;
Dan Gohman8cdf7892008-02-08 03:26:46 +00003641 return &(*EVTs.insert(VT).first);
Duncan Sandsa9810f32007-10-16 09:56:48 +00003642 } else {
3643 static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3644 VTs[VT] = VT;
3645 return &VTs[VT];
3646 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003647}
Duncan Sandsa9810f32007-10-16 09:56:48 +00003648
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003649/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3650/// indicated value. This method ignores uses of other values defined by this
3651/// operation.
3652bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
3653 assert(Value < getNumValues() && "Bad value!");
3654
3655 // If there is only one value, this is easy.
3656 if (getNumValues() == 1)
3657 return use_size() == NUses;
Evan Cheng0af04f72007-08-02 05:29:38 +00003658 if (use_size() < NUses) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003659
3660 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3661
3662 SmallPtrSet<SDNode*, 32> UsersHandled;
3663
3664 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3665 SDNode *User = *UI;
3666 if (User->getNumOperands() == 1 ||
3667 UsersHandled.insert(User)) // First time we've seen this?
3668 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3669 if (User->getOperand(i) == TheValue) {
3670 if (NUses == 0)
3671 return false; // too many uses
3672 --NUses;
3673 }
3674 }
3675
3676 // Found exactly the right number of uses?
3677 return NUses == 0;
3678}
3679
3680
Evan Cheng0af04f72007-08-02 05:29:38 +00003681/// hasAnyUseOfValue - Return true if there are any use of the indicated
3682/// value. This method ignores uses of other values defined by this operation.
3683bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3684 assert(Value < getNumValues() && "Bad value!");
3685
Dan Gohman301f4052008-01-29 13:02:09 +00003686 if (use_empty()) return false;
Evan Cheng0af04f72007-08-02 05:29:38 +00003687
3688 SDOperand TheValue(const_cast<SDNode *>(this), Value);
3689
3690 SmallPtrSet<SDNode*, 32> UsersHandled;
3691
3692 for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3693 SDNode *User = *UI;
3694 if (User->getNumOperands() == 1 ||
3695 UsersHandled.insert(User)) // First time we've seen this?
3696 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3697 if (User->getOperand(i) == TheValue) {
3698 return true;
3699 }
3700 }
3701
3702 return false;
3703}
3704
3705
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003706/// isOnlyUse - Return true if this node is the only use of N.
3707///
3708bool SDNode::isOnlyUse(SDNode *N) const {
3709 bool Seen = false;
3710 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3711 SDNode *User = *I;
3712 if (User == this)
3713 Seen = true;
3714 else
3715 return false;
3716 }
3717
3718 return Seen;
3719}
3720
3721/// isOperand - Return true if this node is an operand of N.
3722///
3723bool SDOperand::isOperand(SDNode *N) const {
3724 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3725 if (*this == N->getOperand(i))
3726 return true;
3727 return false;
3728}
3729
3730bool SDNode::isOperand(SDNode *N) const {
3731 for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3732 if (this == N->OperandList[i].Val)
3733 return true;
3734 return false;
3735}
3736
Chris Lattner10d94f92008-01-16 05:49:24 +00003737/// reachesChainWithoutSideEffects - Return true if this operand (which must
3738/// be a chain) reaches the specified operand without crossing any
3739/// side-effecting instructions. In practice, this looks through token
3740/// factors and non-volatile loads. In order to remain efficient, this only
3741/// looks a couple of nodes in, it does not do an exhaustive search.
3742bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest,
3743 unsigned Depth) const {
3744 if (*this == Dest) return true;
3745
3746 // Don't search too deeply, we just want to be able to see through
3747 // TokenFactor's etc.
3748 if (Depth == 0) return false;
3749
3750 // If this is a token factor, all inputs to the TF happen in parallel. If any
3751 // of the operands of the TF reach dest, then we can do the xform.
3752 if (getOpcode() == ISD::TokenFactor) {
3753 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3754 if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
3755 return true;
3756 return false;
3757 }
3758
3759 // Loads don't have side effects, look through them.
3760 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
3761 if (!Ld->isVolatile())
3762 return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
3763 }
3764 return false;
3765}
3766
3767
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003768static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
3769 SmallPtrSet<SDNode *, 32> &Visited) {
3770 if (found || !Visited.insert(N))
3771 return;
3772
3773 for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3774 SDNode *Op = N->getOperand(i).Val;
3775 if (Op == P) {
3776 found = true;
3777 return;
3778 }
3779 findPredecessor(Op, P, found, Visited);
3780 }
3781}
3782
3783/// isPredecessor - Return true if this node is a predecessor of N. This node
3784/// is either an operand of N or it can be reached by recursively traversing
3785/// up the operands.
3786/// NOTE: this is an expensive method. Use it carefully.
3787bool SDNode::isPredecessor(SDNode *N) const {
3788 SmallPtrSet<SDNode *, 32> Visited;
3789 bool found = false;
3790 findPredecessor(N, this, found, Visited);
3791 return found;
3792}
3793
3794uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3795 assert(Num < NumOperands && "Invalid child # of SDNode!");
3796 return cast<ConstantSDNode>(OperandList[Num])->getValue();
3797}
3798
3799std::string SDNode::getOperationName(const SelectionDAG *G) const {
3800 switch (getOpcode()) {
3801 default:
3802 if (getOpcode() < ISD::BUILTIN_OP_END)
3803 return "<<Unknown DAG Node>>";
3804 else {
3805 if (G) {
3806 if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
3807 if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
Chris Lattner0c2a4f32008-01-07 03:13:06 +00003808 return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003809
3810 TargetLowering &TLI = G->getTargetLoweringInfo();
3811 const char *Name =
3812 TLI.getTargetNodeName(getOpcode());
3813 if (Name) return Name;
3814 }
3815
3816 return "<<Unknown Target Node>>";
3817 }
3818
Andrew Lenharth785610d2008-02-16 01:24:58 +00003819 case ISD::MEMBARRIER: return "MemBarrier";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003820 case ISD::PCMARKER: return "PCMarker";
3821 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
3822 case ISD::SRCVALUE: return "SrcValue";
Dan Gohman12a9c082008-02-06 22:27:42 +00003823 case ISD::MEMOPERAND: return "MemOperand";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003824 case ISD::EntryToken: return "EntryToken";
3825 case ISD::TokenFactor: return "TokenFactor";
3826 case ISD::AssertSext: return "AssertSext";
3827 case ISD::AssertZext: return "AssertZext";
3828
3829 case ISD::STRING: return "String";
3830 case ISD::BasicBlock: return "BasicBlock";
3831 case ISD::VALUETYPE: return "ValueType";
3832 case ISD::Register: return "Register";
3833
3834 case ISD::Constant: return "Constant";
3835 case ISD::ConstantFP: return "ConstantFP";
3836 case ISD::GlobalAddress: return "GlobalAddress";
3837 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
3838 case ISD::FrameIndex: return "FrameIndex";
3839 case ISD::JumpTable: return "JumpTable";
3840 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
3841 case ISD::RETURNADDR: return "RETURNADDR";
3842 case ISD::FRAMEADDR: return "FRAMEADDR";
3843 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
3844 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3845 case ISD::EHSELECTION: return "EHSELECTION";
3846 case ISD::EH_RETURN: return "EH_RETURN";
3847 case ISD::ConstantPool: return "ConstantPool";
3848 case ISD::ExternalSymbol: return "ExternalSymbol";
3849 case ISD::INTRINSIC_WO_CHAIN: {
3850 unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3851 return Intrinsic::getName((Intrinsic::ID)IID);
3852 }
3853 case ISD::INTRINSIC_VOID:
3854 case ISD::INTRINSIC_W_CHAIN: {
3855 unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
3856 return Intrinsic::getName((Intrinsic::ID)IID);
3857 }
3858
3859 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
3860 case ISD::TargetConstant: return "TargetConstant";
3861 case ISD::TargetConstantFP:return "TargetConstantFP";
3862 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
3863 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
3864 case ISD::TargetFrameIndex: return "TargetFrameIndex";
3865 case ISD::TargetJumpTable: return "TargetJumpTable";
3866 case ISD::TargetConstantPool: return "TargetConstantPool";
3867 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
3868
3869 case ISD::CopyToReg: return "CopyToReg";
3870 case ISD::CopyFromReg: return "CopyFromReg";
3871 case ISD::UNDEF: return "undef";
3872 case ISD::MERGE_VALUES: return "merge_values";
3873 case ISD::INLINEASM: return "inlineasm";
3874 case ISD::LABEL: return "label";
Evan Cheng2e28d622008-02-02 04:07:54 +00003875 case ISD::DECLARE: return "declare";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003876 case ISD::HANDLENODE: return "handlenode";
3877 case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
3878 case ISD::CALL: return "call";
3879
3880 // Unary operators
3881 case ISD::FABS: return "fabs";
3882 case ISD::FNEG: return "fneg";
3883 case ISD::FSQRT: return "fsqrt";
3884 case ISD::FSIN: return "fsin";
3885 case ISD::FCOS: return "fcos";
3886 case ISD::FPOWI: return "fpowi";
Dan Gohman1d744bb2007-10-11 23:06:37 +00003887 case ISD::FPOW: return "fpow";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003888
3889 // Binary operators
3890 case ISD::ADD: return "add";
3891 case ISD::SUB: return "sub";
3892 case ISD::MUL: return "mul";
3893 case ISD::MULHU: return "mulhu";
3894 case ISD::MULHS: return "mulhs";
3895 case ISD::SDIV: return "sdiv";
3896 case ISD::UDIV: return "udiv";
3897 case ISD::SREM: return "srem";
3898 case ISD::UREM: return "urem";
Dan Gohmanb945cee2007-10-05 14:11:04 +00003899 case ISD::SMUL_LOHI: return "smul_lohi";
3900 case ISD::UMUL_LOHI: return "umul_lohi";
3901 case ISD::SDIVREM: return "sdivrem";
3902 case ISD::UDIVREM: return "divrem";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003903 case ISD::AND: return "and";
3904 case ISD::OR: return "or";
3905 case ISD::XOR: return "xor";
3906 case ISD::SHL: return "shl";
3907 case ISD::SRA: return "sra";
3908 case ISD::SRL: return "srl";
3909 case ISD::ROTL: return "rotl";
3910 case ISD::ROTR: return "rotr";
3911 case ISD::FADD: return "fadd";
3912 case ISD::FSUB: return "fsub";
3913 case ISD::FMUL: return "fmul";
3914 case ISD::FDIV: return "fdiv";
3915 case ISD::FREM: return "frem";
3916 case ISD::FCOPYSIGN: return "fcopysign";
Chris Lattner13f06832007-12-22 21:26:52 +00003917 case ISD::FGETSIGN: return "fgetsign";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003918
3919 case ISD::SETCC: return "setcc";
3920 case ISD::SELECT: return "select";
3921 case ISD::SELECT_CC: return "select_cc";
3922 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
3923 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
3924 case ISD::CONCAT_VECTORS: return "concat_vectors";
3925 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
3926 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
3927 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
3928 case ISD::CARRY_FALSE: return "carry_false";
3929 case ISD::ADDC: return "addc";
3930 case ISD::ADDE: return "adde";
3931 case ISD::SUBC: return "subc";
3932 case ISD::SUBE: return "sube";
3933 case ISD::SHL_PARTS: return "shl_parts";
3934 case ISD::SRA_PARTS: return "sra_parts";
3935 case ISD::SRL_PARTS: return "srl_parts";
Christopher Lambb768c2e2007-07-26 07:34:40 +00003936
3937 case ISD::EXTRACT_SUBREG: return "extract_subreg";
3938 case ISD::INSERT_SUBREG: return "insert_subreg";
3939
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003940 // Conversion operators.
3941 case ISD::SIGN_EXTEND: return "sign_extend";
3942 case ISD::ZERO_EXTEND: return "zero_extend";
3943 case ISD::ANY_EXTEND: return "any_extend";
3944 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
3945 case ISD::TRUNCATE: return "truncate";
3946 case ISD::FP_ROUND: return "fp_round";
Dan Gohman819574c2008-01-31 00:41:03 +00003947 case ISD::FLT_ROUNDS_: return "flt_rounds";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003948 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
3949 case ISD::FP_EXTEND: return "fp_extend";
3950
3951 case ISD::SINT_TO_FP: return "sint_to_fp";
3952 case ISD::UINT_TO_FP: return "uint_to_fp";
3953 case ISD::FP_TO_SINT: return "fp_to_sint";
3954 case ISD::FP_TO_UINT: return "fp_to_uint";
3955 case ISD::BIT_CONVERT: return "bit_convert";
3956
3957 // Control flow instructions
3958 case ISD::BR: return "br";
3959 case ISD::BRIND: return "brind";
3960 case ISD::BR_JT: return "br_jt";
3961 case ISD::BRCOND: return "brcond";
3962 case ISD::BR_CC: return "br_cc";
3963 case ISD::RET: return "ret";
3964 case ISD::CALLSEQ_START: return "callseq_start";
3965 case ISD::CALLSEQ_END: return "callseq_end";
3966
3967 // Other operators
3968 case ISD::LOAD: return "load";
3969 case ISD::STORE: return "store";
3970 case ISD::VAARG: return "vaarg";
3971 case ISD::VACOPY: return "vacopy";
3972 case ISD::VAEND: return "vaend";
3973 case ISD::VASTART: return "vastart";
3974 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
3975 case ISD::EXTRACT_ELEMENT: return "extract_element";
3976 case ISD::BUILD_PAIR: return "build_pair";
3977 case ISD::STACKSAVE: return "stacksave";
3978 case ISD::STACKRESTORE: return "stackrestore";
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003979 case ISD::TRAP: return "trap";
3980
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003981 // Block memory operations.
3982 case ISD::MEMSET: return "memset";
3983 case ISD::MEMCPY: return "memcpy";
3984 case ISD::MEMMOVE: return "memmove";
3985
3986 // Bit manipulation
3987 case ISD::BSWAP: return "bswap";
3988 case ISD::CTPOP: return "ctpop";
3989 case ISD::CTTZ: return "cttz";
3990 case ISD::CTLZ: return "ctlz";
3991
3992 // Debug info
3993 case ISD::LOCATION: return "location";
3994 case ISD::DEBUG_LOC: return "debug_loc";
3995
Duncan Sands38947cd2007-07-27 12:58:54 +00003996 // Trampolines
Duncan Sands7407a9f2007-09-11 14:10:23 +00003997 case ISD::TRAMPOLINE: return "trampoline";
Duncan Sands38947cd2007-07-27 12:58:54 +00003998
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003999 case ISD::CONDCODE:
4000 switch (cast<CondCodeSDNode>(this)->get()) {
4001 default: assert(0 && "Unknown setcc condition!");
4002 case ISD::SETOEQ: return "setoeq";
4003 case ISD::SETOGT: return "setogt";
4004 case ISD::SETOGE: return "setoge";
4005 case ISD::SETOLT: return "setolt";
4006 case ISD::SETOLE: return "setole";
4007 case ISD::SETONE: return "setone";
4008
4009 case ISD::SETO: return "seto";
4010 case ISD::SETUO: return "setuo";
4011 case ISD::SETUEQ: return "setue";
4012 case ISD::SETUGT: return "setugt";
4013 case ISD::SETUGE: return "setuge";
4014 case ISD::SETULT: return "setult";
4015 case ISD::SETULE: return "setule";
4016 case ISD::SETUNE: return "setune";
4017
4018 case ISD::SETEQ: return "seteq";
4019 case ISD::SETGT: return "setgt";
4020 case ISD::SETGE: return "setge";
4021 case ISD::SETLT: return "setlt";
4022 case ISD::SETLE: return "setle";
4023 case ISD::SETNE: return "setne";
4024 }
4025 }
4026}
4027
4028const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
4029 switch (AM) {
4030 default:
4031 return "";
4032 case ISD::PRE_INC:
4033 return "<pre-inc>";
4034 case ISD::PRE_DEC:
4035 return "<pre-dec>";
4036 case ISD::POST_INC:
4037 return "<post-inc>";
4038 case ISD::POST_DEC:
4039 return "<post-dec>";
4040 }
4041}
4042
4043void SDNode::dump() const { dump(0); }
4044void SDNode::dump(const SelectionDAG *G) const {
4045 cerr << (void*)this << ": ";
4046
4047 for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
4048 if (i) cerr << ",";
4049 if (getValueType(i) == MVT::Other)
4050 cerr << "ch";
4051 else
4052 cerr << MVT::getValueTypeString(getValueType(i));
4053 }
4054 cerr << " = " << getOperationName(G);
4055
4056 cerr << " ";
4057 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
4058 if (i) cerr << ", ";
4059 cerr << (void*)getOperand(i).Val;
4060 if (unsigned RN = getOperand(i).ResNo)
4061 cerr << ":" << RN;
4062 }
4063
Evan Chengaad43a02007-12-11 02:08:35 +00004064 if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4065 SDNode *Mask = getOperand(2).Val;
4066 cerr << "<";
4067 for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4068 if (i) cerr << ",";
4069 if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4070 cerr << "u";
4071 else
4072 cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4073 }
4074 cerr << ">";
4075 }
4076
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004077 if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
4078 cerr << "<" << CSDN->getValue() << ">";
4079 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
Dale Johannesen2fc20782007-09-14 22:26:36 +00004080 if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4081 cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4082 else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4083 cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4084 else {
4085 cerr << "<APFloat(";
4086 CSDN->getValueAPF().convertToAPInt().dump();
4087 cerr << ")>";
4088 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004089 } else if (const GlobalAddressSDNode *GADN =
4090 dyn_cast<GlobalAddressSDNode>(this)) {
4091 int offset = GADN->getOffset();
4092 cerr << "<";
4093 WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
4094 if (offset > 0)
4095 cerr << " + " << offset;
4096 else
4097 cerr << " " << offset;
4098 } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
4099 cerr << "<" << FIDN->getIndex() << ">";
4100 } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
4101 cerr << "<" << JTDN->getIndex() << ">";
4102 } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
4103 int offset = CP->getOffset();
4104 if (CP->isMachineConstantPoolEntry())
4105 cerr << "<" << *CP->getMachineCPVal() << ">";
4106 else
4107 cerr << "<" << *CP->getConstVal() << ">";
4108 if (offset > 0)
4109 cerr << " + " << offset;
4110 else
4111 cerr << " " << offset;
4112 } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
4113 cerr << "<";
4114 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4115 if (LBB)
4116 cerr << LBB->getName() << " ";
4117 cerr << (const void*)BBDN->getBasicBlock() << ">";
4118 } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
Dan Gohman1e57df32008-02-10 18:45:23 +00004119 if (G && R->getReg() &&
4120 TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004121 cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
4122 } else {
4123 cerr << " #" << R->getReg();
4124 }
4125 } else if (const ExternalSymbolSDNode *ES =
4126 dyn_cast<ExternalSymbolSDNode>(this)) {
4127 cerr << "'" << ES->getSymbol() << "'";
4128 } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4129 if (M->getValue())
Dan Gohman12a9c082008-02-06 22:27:42 +00004130 cerr << "<" << M->getValue() << ">";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004131 else
Dan Gohman12a9c082008-02-06 22:27:42 +00004132 cerr << "<null>";
4133 } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4134 if (M->MO.getValue())
4135 cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4136 else
4137 cerr << "<null:" << M->MO.getOffset() << ">";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004138 } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
4139 cerr << ":" << MVT::getValueTypeString(N->getVT());
4140 } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
Evan Cheng034c4f82007-12-18 19:06:30 +00004141 const Value *SrcValue = LD->getSrcValue();
4142 int SrcOffset = LD->getSrcValueOffset();
4143 cerr << " <";
4144 if (SrcValue)
4145 cerr << SrcValue;
4146 else
4147 cerr << "null";
4148 cerr << ":" << SrcOffset << ">";
4149
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004150 bool doExt = true;
4151 switch (LD->getExtensionType()) {
4152 default: doExt = false; break;
4153 case ISD::EXTLOAD:
4154 cerr << " <anyext ";
4155 break;
4156 case ISD::SEXTLOAD:
4157 cerr << " <sext ";
4158 break;
4159 case ISD::ZEXTLOAD:
4160 cerr << " <zext ";
4161 break;
4162 }
4163 if (doExt)
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004164 cerr << MVT::getValueTypeString(LD->getMemoryVT()) << ">";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004165
4166 const char *AM = getIndexedModeName(LD->getAddressingMode());
Duncan Sandsf9a44972007-07-19 07:31:58 +00004167 if (*AM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004168 cerr << " " << AM;
Evan Cheng034c4f82007-12-18 19:06:30 +00004169 if (LD->isVolatile())
4170 cerr << " <volatile>";
4171 cerr << " alignment=" << LD->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004172 } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
Evan Cheng7196a7b2007-12-18 07:02:08 +00004173 const Value *SrcValue = ST->getSrcValue();
4174 int SrcOffset = ST->getSrcValueOffset();
4175 cerr << " <";
4176 if (SrcValue)
4177 cerr << SrcValue;
4178 else
4179 cerr << "null";
4180 cerr << ":" << SrcOffset << ">";
Evan Cheng034c4f82007-12-18 19:06:30 +00004181
4182 if (ST->isTruncatingStore())
4183 cerr << " <trunc "
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004184 << MVT::getValueTypeString(ST->getMemoryVT()) << ">";
Evan Cheng034c4f82007-12-18 19:06:30 +00004185
4186 const char *AM = getIndexedModeName(ST->getAddressingMode());
4187 if (*AM)
4188 cerr << " " << AM;
4189 if (ST->isVolatile())
4190 cerr << " <volatile>";
4191 cerr << " alignment=" << ST->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004192 }
4193}
4194
4195static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
4196 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4197 if (N->getOperand(i).Val->hasOneUse())
4198 DumpNodes(N->getOperand(i).Val, indent+2, G);
4199 else
4200 cerr << "\n" << std::string(indent+2, ' ')
4201 << (void*)N->getOperand(i).Val << ": <multiple use>";
4202
4203
4204 cerr << "\n" << std::string(indent, ' ');
4205 N->dump(G);
4206}
4207
4208void SelectionDAG::dump() const {
4209 cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
4210 std::vector<const SDNode*> Nodes;
4211 for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4212 I != E; ++I)
4213 Nodes.push_back(I);
4214
4215 std::sort(Nodes.begin(), Nodes.end());
4216
4217 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
4218 if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
4219 DumpNodes(Nodes[i], 2, this);
4220 }
4221
4222 if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
4223
4224 cerr << "\n\n";
4225}
4226
4227const Type *ConstantPoolSDNode::getType() const {
4228 if (isMachineConstantPoolEntry())
4229 return Val.MachineCPVal->getType();
4230 return Val.ConstVal->getType();
4231}