023be5c695470da4b9b15bd4cb4071d6b8be3b26
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAG.cpp
1 //===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This implements the SelectionDAG class.
11 //
12 //===----------------------------------------------------------------------===//
13 #include "llvm/CodeGen/SelectionDAG.h"
14 #include "llvm/Constants.h"
15 #include "llvm/Analysis/ValueTracking.h"
16 #include "llvm/GlobalAlias.h"
17 #include "llvm/GlobalVariable.h"
18 #include "llvm/Intrinsics.h"
19 #include "llvm/DerivedTypes.h"
20 #include "llvm/Assembly/Writer.h"
21 #include "llvm/CallingConv.h"
22 #include "llvm/CodeGen/MachineBasicBlock.h"
23 #include "llvm/CodeGen/MachineConstantPool.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineModuleInfo.h"
26 #include "llvm/CodeGen/PseudoSourceValue.h"
27 #include "llvm/Support/MathExtras.h"
28 #include "llvm/Target/TargetRegisterInfo.h"
29 #include "llvm/Target/TargetData.h"
30 #include "llvm/Target/TargetLowering.h"
31 #include "llvm/Target/TargetInstrInfo.h"
32 #include "llvm/Target/TargetMachine.h"
33 #include "llvm/ADT/SetVector.h"
34 #include "llvm/ADT/SmallPtrSet.h"
35 #include "llvm/ADT/SmallSet.h"
36 #include "llvm/ADT/SmallVector.h"
37 #include "llvm/ADT/StringExtras.h"
38 #include <algorithm>
39 #include <cmath>
40 using namespace llvm;
41
42 /// makeVTList - Return an instance of the SDVTList struct initialized with the
43 /// specified members.
44 static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
45   SDVTList Res = {VTs, NumVTs};
46   return Res;
47 }
48
49 static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
50   switch (VT.getSimpleVT()) {
51   default: assert(0 && "Unknown FP format");
52   case MVT::f32:     return &APFloat::IEEEsingle;
53   case MVT::f64:     return &APFloat::IEEEdouble;
54   case MVT::f80:     return &APFloat::x87DoubleExtended;
55   case MVT::f128:    return &APFloat::IEEEquad;
56   case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
57   }
58 }
59
60 SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
61
62 //===----------------------------------------------------------------------===//
63 //                              ConstantFPSDNode Class
64 //===----------------------------------------------------------------------===//
65
66 /// isExactlyValue - We don't rely on operator== working on double values, as
67 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
68 /// As such, this method can be used to do an exact bit-for-bit comparison of
69 /// two floating point values.
70 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
71   return Value.bitwiseIsEqual(V);
72 }
73
74 bool ConstantFPSDNode::isValueValidForType(MVT VT,
75                                            const APFloat& Val) {
76   assert(VT.isFloatingPoint() && "Can only convert between FP types");
77   
78   // PPC long double cannot be converted to any other type.
79   if (VT == MVT::ppcf128 ||
80       &Val.getSemantics() == &APFloat::PPCDoubleDouble)
81     return false;
82   
83   // convert modifies in place, so make a copy.
84   APFloat Val2 = APFloat(Val);
85   return Val2.convert(*MVTToAPFloatSemantics(VT),
86                       APFloat::rmNearestTiesToEven) == APFloat::opOK;
87 }
88
89 //===----------------------------------------------------------------------===//
90 //                              ISD Namespace
91 //===----------------------------------------------------------------------===//
92
93 /// isBuildVectorAllOnes - Return true if the specified node is a
94 /// BUILD_VECTOR where all of the elements are ~0 or undef.
95 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
96   // Look through a bit convert.
97   if (N->getOpcode() == ISD::BIT_CONVERT)
98     N = N->getOperand(0).Val;
99   
100   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
101   
102   unsigned i = 0, e = N->getNumOperands();
103   
104   // Skip over all of the undef values.
105   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
106     ++i;
107   
108   // Do not accept an all-undef vector.
109   if (i == e) return false;
110   
111   // Do not accept build_vectors that aren't all constants or which have non-~0
112   // elements.
113   SDOperand NotZero = N->getOperand(i);
114   if (isa<ConstantSDNode>(NotZero)) {
115     if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
116       return false;
117   } else if (isa<ConstantFPSDNode>(NotZero)) {
118     if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
119                 convertToAPInt().isAllOnesValue())
120       return false;
121   } else
122     return false;
123   
124   // Okay, we have at least one ~0 value, check to see if the rest match or are
125   // undefs.
126   for (++i; i != e; ++i)
127     if (N->getOperand(i) != NotZero &&
128         N->getOperand(i).getOpcode() != ISD::UNDEF)
129       return false;
130   return true;
131 }
132
133
134 /// isBuildVectorAllZeros - Return true if the specified node is a
135 /// BUILD_VECTOR where all of the elements are 0 or undef.
136 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
137   // Look through a bit convert.
138   if (N->getOpcode() == ISD::BIT_CONVERT)
139     N = N->getOperand(0).Val;
140   
141   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
142   
143   unsigned i = 0, e = N->getNumOperands();
144   
145   // Skip over all of the undef values.
146   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
147     ++i;
148   
149   // Do not accept an all-undef vector.
150   if (i == e) return false;
151   
152   // Do not accept build_vectors that aren't all constants or which have non-~0
153   // elements.
154   SDOperand Zero = N->getOperand(i);
155   if (isa<ConstantSDNode>(Zero)) {
156     if (!cast<ConstantSDNode>(Zero)->isNullValue())
157       return false;
158   } else if (isa<ConstantFPSDNode>(Zero)) {
159     if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
160       return false;
161   } else
162     return false;
163   
164   // Okay, we have at least one ~0 value, check to see if the rest match or are
165   // undefs.
166   for (++i; i != e; ++i)
167     if (N->getOperand(i) != Zero &&
168         N->getOperand(i).getOpcode() != ISD::UNDEF)
169       return false;
170   return true;
171 }
172
173 /// isScalarToVector - Return true if the specified node is a
174 /// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
175 /// element is not an undef.
176 bool ISD::isScalarToVector(const SDNode *N) {
177   if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
178     return true;
179
180   if (N->getOpcode() != ISD::BUILD_VECTOR)
181     return false;
182   if (N->getOperand(0).getOpcode() == ISD::UNDEF)
183     return false;
184   unsigned NumElems = N->getNumOperands();
185   for (unsigned i = 1; i < NumElems; ++i) {
186     SDOperand V = N->getOperand(i);
187     if (V.getOpcode() != ISD::UNDEF)
188       return false;
189   }
190   return true;
191 }
192
193
194 /// isDebugLabel - Return true if the specified node represents a debug
195 /// label (i.e. ISD::LABEL or TargetInstrInfo::LABEL node and third operand
196 /// is 0).
197 bool ISD::isDebugLabel(const SDNode *N) {
198   SDOperand Zero;
199   if (N->getOpcode() == ISD::LABEL)
200     Zero = N->getOperand(2);
201   else if (N->isTargetOpcode() &&
202            N->getTargetOpcode() == TargetInstrInfo::LABEL)
203     // Chain moved to last operand.
204     Zero = N->getOperand(1);
205   else
206     return false;
207   return isa<ConstantSDNode>(Zero) && cast<ConstantSDNode>(Zero)->isNullValue();
208 }
209
210 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211 /// when given the operation for (X op Y).
212 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213   // To perform this operation, we just need to swap the L and G bits of the
214   // operation.
215   unsigned OldL = (Operation >> 2) & 1;
216   unsigned OldG = (Operation >> 1) & 1;
217   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
218                        (OldL << 1) |       // New G bit
219                        (OldG << 2));        // New L bit.
220 }
221
222 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223 /// 'op' is a valid SetCC operation.
224 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225   unsigned Operation = Op;
226   if (isInteger)
227     Operation ^= 7;   // Flip L, G, E bits, but not U.
228   else
229     Operation ^= 15;  // Flip all of the condition bits.
230   if (Operation > ISD::SETTRUE2)
231     Operation &= ~8;     // Don't let N and U bits get set.
232   return ISD::CondCode(Operation);
233 }
234
235
236 /// isSignedOp - For an integer comparison, return 1 if the comparison is a
237 /// signed operation and 2 if the result is an unsigned comparison.  Return zero
238 /// if the operation does not depend on the sign of the input (setne and seteq).
239 static int isSignedOp(ISD::CondCode Opcode) {
240   switch (Opcode) {
241   default: assert(0 && "Illegal integer setcc operation!");
242   case ISD::SETEQ:
243   case ISD::SETNE: return 0;
244   case ISD::SETLT:
245   case ISD::SETLE:
246   case ISD::SETGT:
247   case ISD::SETGE: return 1;
248   case ISD::SETULT:
249   case ISD::SETULE:
250   case ISD::SETUGT:
251   case ISD::SETUGE: return 2;
252   }
253 }
254
255 /// getSetCCOrOperation - Return the result of a logical OR between different
256 /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
257 /// returns SETCC_INVALID if it is not possible to represent the resultant
258 /// comparison.
259 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
260                                        bool isInteger) {
261   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
262     // Cannot fold a signed integer setcc with an unsigned integer setcc.
263     return ISD::SETCC_INVALID;
264
265   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
266
267   // If the N and U bits get set then the resultant comparison DOES suddenly
268   // care about orderedness, and is true when ordered.
269   if (Op > ISD::SETTRUE2)
270     Op &= ~16;     // Clear the U bit if the N bit is set.
271   
272   // Canonicalize illegal integer setcc's.
273   if (isInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
274     Op = ISD::SETNE;
275   
276   return ISD::CondCode(Op);
277 }
278
279 /// getSetCCAndOperation - Return the result of a logical AND between different
280 /// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
281 /// function returns zero if it is not possible to represent the resultant
282 /// comparison.
283 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
284                                         bool isInteger) {
285   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
286     // Cannot fold a signed setcc with an unsigned setcc.
287     return ISD::SETCC_INVALID;
288
289   // Combine all of the condition bits.
290   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
291   
292   // Canonicalize illegal integer setcc's.
293   if (isInteger) {
294     switch (Result) {
295     default: break;
296     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
297     case ISD::SETOEQ:                                 // SETEQ  & SETU[LG]E
298     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
299     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
300     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
301     }
302   }
303   
304   return Result;
305 }
306
307 const TargetMachine &SelectionDAG::getTarget() const {
308   return TLI.getTargetMachine();
309 }
310
311 //===----------------------------------------------------------------------===//
312 //                           SDNode Profile Support
313 //===----------------------------------------------------------------------===//
314
315 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
316 ///
317 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
318   ID.AddInteger(OpC);
319 }
320
321 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
322 /// solely with their pointer.
323 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
324   ID.AddPointer(VTList.VTs);  
325 }
326
327 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
328 ///
329 static void AddNodeIDOperands(FoldingSetNodeID &ID,
330                               SDOperandPtr Ops, unsigned NumOps) {
331   for (; NumOps; --NumOps, ++Ops) {
332     ID.AddPointer(Ops->Val);
333     ID.AddInteger(Ops->ResNo);
334   }
335 }
336
337 static void AddNodeIDNode(FoldingSetNodeID &ID,
338                           unsigned short OpC, SDVTList VTList, 
339                           SDOperandPtr OpList, unsigned N) {
340   AddNodeIDOpcode(ID, OpC);
341   AddNodeIDValueTypes(ID, VTList);
342   AddNodeIDOperands(ID, OpList, N);
343 }
344
345
346 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
347 /// data.
348 static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
349   AddNodeIDOpcode(ID, N->getOpcode());
350   // Add the return value info.
351   AddNodeIDValueTypes(ID, N->getVTList());
352   // Add the operand info.
353   AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
354
355   // Handle SDNode leafs with special info.
356   switch (N->getOpcode()) {
357   default: break;  // Normal nodes don't need extra info.
358   case ISD::ARG_FLAGS:
359     ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
360     break;
361   case ISD::TargetConstant:
362   case ISD::Constant:
363     ID.Add(cast<ConstantSDNode>(N)->getAPIntValue());
364     break;
365   case ISD::TargetConstantFP:
366   case ISD::ConstantFP: {
367     ID.Add(cast<ConstantFPSDNode>(N)->getValueAPF());
368     break;
369   }
370   case ISD::TargetGlobalAddress:
371   case ISD::GlobalAddress:
372   case ISD::TargetGlobalTLSAddress:
373   case ISD::GlobalTLSAddress: {
374     GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
375     ID.AddPointer(GA->getGlobal());
376     ID.AddInteger(GA->getOffset());
377     break;
378   }
379   case ISD::BasicBlock:
380     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
381     break;
382   case ISD::Register:
383     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
384     break;
385   case ISD::SRCVALUE:
386     ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
387     break;
388   case ISD::MEMOPERAND: {
389     const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
390     ID.AddPointer(MO.getValue());
391     ID.AddInteger(MO.getFlags());
392     ID.AddInteger(MO.getOffset());
393     ID.AddInteger(MO.getSize());
394     ID.AddInteger(MO.getAlignment());
395     break;
396   }
397   case ISD::FrameIndex:
398   case ISD::TargetFrameIndex:
399     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
400     break;
401   case ISD::JumpTable:
402   case ISD::TargetJumpTable:
403     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
404     break;
405   case ISD::ConstantPool:
406   case ISD::TargetConstantPool: {
407     ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
408     ID.AddInteger(CP->getAlignment());
409     ID.AddInteger(CP->getOffset());
410     if (CP->isMachineConstantPoolEntry())
411       CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
412     else
413       ID.AddPointer(CP->getConstVal());
414     break;
415   }
416   case ISD::LOAD: {
417     LoadSDNode *LD = cast<LoadSDNode>(N);
418     ID.AddInteger(LD->getAddressingMode());
419     ID.AddInteger(LD->getExtensionType());
420     ID.AddInteger(LD->getMemoryVT().getRawBits());
421     ID.AddInteger(LD->getAlignment());
422     ID.AddInteger(LD->isVolatile());
423     break;
424   }
425   case ISD::STORE: {
426     StoreSDNode *ST = cast<StoreSDNode>(N);
427     ID.AddInteger(ST->getAddressingMode());
428     ID.AddInteger(ST->isTruncatingStore());
429     ID.AddInteger(ST->getMemoryVT().getRawBits());
430     ID.AddInteger(ST->getAlignment());
431     ID.AddInteger(ST->isVolatile());
432     break;
433   }
434   case ISD::ATOMIC_CMP_SWAP:
435   case ISD::ATOMIC_LOAD_ADD:
436   case ISD::ATOMIC_SWAP:
437   case ISD::ATOMIC_LOAD_SUB:
438   case ISD::ATOMIC_LOAD_AND:
439   case ISD::ATOMIC_LOAD_OR:
440   case ISD::ATOMIC_LOAD_XOR:
441   case ISD::ATOMIC_LOAD_NAND:
442   case ISD::ATOMIC_LOAD_MIN:
443   case ISD::ATOMIC_LOAD_MAX:
444   case ISD::ATOMIC_LOAD_UMIN:
445   case ISD::ATOMIC_LOAD_UMAX: {
446     AtomicSDNode *AT = cast<AtomicSDNode>(N);
447     ID.AddInteger(AT->getAlignment());
448     ID.AddInteger(AT->isVolatile());
449     break;
450   }
451   } // end switch (N->getOpcode())
452 }
453
454 //===----------------------------------------------------------------------===//
455 //                              SelectionDAG Class
456 //===----------------------------------------------------------------------===//
457
458 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
459 /// SelectionDAG.
460 void SelectionDAG::RemoveDeadNodes() {
461   // Create a dummy node (which is not added to allnodes), that adds a reference
462   // to the root node, preventing it from being deleted.
463   HandleSDNode Dummy(getRoot());
464
465   SmallVector<SDNode*, 128> DeadNodes;
466   
467   // Add all obviously-dead nodes to the DeadNodes worklist.
468   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
469     if (I->use_empty())
470       DeadNodes.push_back(I);
471
472   // Process the worklist, deleting the nodes and adding their uses to the
473   // worklist.
474   while (!DeadNodes.empty()) {
475     SDNode *N = DeadNodes.back();
476     DeadNodes.pop_back();
477     
478     // Take the node out of the appropriate CSE map.
479     RemoveNodeFromCSEMaps(N);
480
481     // Next, brutally remove the operand list.  This is safe to do, as there are
482     // no cycles in the graph.
483     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
484       SDNode *Operand = I->getVal();
485       Operand->removeUser(std::distance(N->op_begin(), I), N);
486       
487       // Now that we removed this operand, see if there are no uses of it left.
488       if (Operand->use_empty())
489         DeadNodes.push_back(Operand);
490     }
491     if (N->OperandsNeedDelete) {
492       delete[] N->OperandList;
493     }
494     N->OperandList = 0;
495     N->NumOperands = 0;
496     
497     // Finally, remove N itself.
498     AllNodes.erase(N);
499   }
500   
501   // If the root changed (e.g. it was a dead load, update the root).
502   setRoot(Dummy.getValue());
503 }
504
505 void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
506   SmallVector<SDNode*, 16> DeadNodes;
507   DeadNodes.push_back(N);
508
509   // Process the worklist, deleting the nodes and adding their uses to the
510   // worklist.
511   while (!DeadNodes.empty()) {
512     SDNode *N = DeadNodes.back();
513     DeadNodes.pop_back();
514     
515     if (UpdateListener)
516       UpdateListener->NodeDeleted(N, 0);
517     
518     // Take the node out of the appropriate CSE map.
519     RemoveNodeFromCSEMaps(N);
520
521     // Next, brutally remove the operand list.  This is safe to do, as there are
522     // no cycles in the graph.
523     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
524       SDNode *Operand = I->getVal();
525       Operand->removeUser(std::distance(N->op_begin(), I), N);
526       
527       // Now that we removed this operand, see if there are no uses of it left.
528       if (Operand->use_empty())
529         DeadNodes.push_back(Operand);
530     }
531     if (N->OperandsNeedDelete) {
532       delete[] N->OperandList;
533     }
534     N->OperandList = 0;
535     N->NumOperands = 0;
536     
537     // Finally, remove N itself.
538     AllNodes.erase(N);
539   }
540 }
541
542 void SelectionDAG::DeleteNode(SDNode *N) {
543   assert(N->use_empty() && "Cannot delete a node that is not dead!");
544
545   // First take this out of the appropriate CSE map.
546   RemoveNodeFromCSEMaps(N);
547
548   // Finally, remove uses due to operands of this node, remove from the 
549   // AllNodes list, and delete the node.
550   DeleteNodeNotInCSEMaps(N);
551 }
552
553 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
554
555   // Remove it from the AllNodes list.
556   AllNodes.remove(N);
557     
558   // Drop all of the operands and decrement used nodes use counts.
559   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
560     I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
561   if (N->OperandsNeedDelete) {
562     delete[] N->OperandList;
563   }
564   N->OperandList = 0;
565   N->NumOperands = 0;
566   
567   delete N;
568 }
569
570 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
571 /// correspond to it.  This is useful when we're about to delete or repurpose
572 /// the node.  We don't want future request for structurally identical nodes
573 /// to return N anymore.
574 void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
575   bool Erased = false;
576   switch (N->getOpcode()) {
577   case ISD::HANDLENODE: return;  // noop.
578   case ISD::STRING:
579     Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
580     break;
581   case ISD::CONDCODE:
582     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
583            "Cond code doesn't exist!");
584     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
585     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
586     break;
587   case ISD::ExternalSymbol:
588     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
589     break;
590   case ISD::TargetExternalSymbol:
591     Erased =
592       TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
593     break;
594   case ISD::VALUETYPE: {
595     MVT VT = cast<VTSDNode>(N)->getVT();
596     if (VT.isExtended()) {
597       Erased = ExtendedValueTypeNodes.erase(VT);
598     } else {
599       Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
600       ValueTypeNodes[VT.getSimpleVT()] = 0;
601     }
602     break;
603   }
604   default:
605     // Remove it from the CSE Map.
606     Erased = CSEMap.RemoveNode(N);
607     break;
608   }
609 #ifndef NDEBUG
610   // Verify that the node was actually in one of the CSE maps, unless it has a 
611   // flag result (which cannot be CSE'd) or is one of the special cases that are
612   // not subject to CSE.
613   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
614       !N->isTargetOpcode()) {
615     N->dump(this);
616     cerr << "\n";
617     assert(0 && "Node is not in map!");
618   }
619 #endif
620 }
621
622 /// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps.  It
623 /// has been taken out and modified in some way.  If the specified node already
624 /// exists in the CSE maps, do not modify the maps, but return the existing node
625 /// instead.  If it doesn't exist, add it and return null.
626 ///
627 SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
628   assert(N->getNumOperands() && "This is a leaf node!");
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   SDNode *New = CSEMap.GetOrInsertNode(N);
638   if (New != N) return New;  // Node already existed.
639   return 0;
640 }
641
642 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
643 /// were replaced with those specified.  If this node is never memoized, 
644 /// return null, otherwise return a pointer to the slot it would take.  If a
645 /// node already exists with these operands, the slot will be non-null.
646 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
647                                            void *&InsertPos) {
648   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
649     return 0;    // Never add these nodes.
650   
651   // Check that remaining values produced are not flags.
652   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
653     if (N->getValueType(i) == MVT::Flag)
654       return 0;   // Never CSE anything that produces a flag.
655   
656   SDOperand Ops[] = { Op };
657   FoldingSetNodeID ID;
658   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
659   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
660 }
661
662 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
663 /// were replaced with those specified.  If this node is never memoized, 
664 /// return null, otherwise return a pointer to the slot it would take.  If a
665 /// node already exists with these operands, the slot will be non-null.
666 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
667                                            SDOperand Op1, SDOperand Op2,
668                                            void *&InsertPos) {
669   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
670     return 0;    // Never add these nodes.
671   
672   // Check that remaining values produced are not flags.
673   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
674     if (N->getValueType(i) == MVT::Flag)
675       return 0;   // Never CSE anything that produces a flag.
676                                               
677   SDOperand Ops[] = { Op1, Op2 };
678   FoldingSetNodeID ID;
679   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
680   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
681 }
682
683
684 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
685 /// were replaced with those specified.  If this node is never memoized, 
686 /// return null, otherwise return a pointer to the slot it would take.  If a
687 /// node already exists with these operands, the slot will be non-null.
688 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
689                                            SDOperandPtr Ops,unsigned NumOps,
690                                            void *&InsertPos) {
691   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
692     return 0;    // Never add these nodes.
693   
694   // Check that remaining values produced are not flags.
695   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
696     if (N->getValueType(i) == MVT::Flag)
697       return 0;   // Never CSE anything that produces a flag.
698   
699   FoldingSetNodeID ID;
700   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
701   
702   if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
703     ID.AddInteger(LD->getAddressingMode());
704     ID.AddInteger(LD->getExtensionType());
705     ID.AddInteger(LD->getMemoryVT().getRawBits());
706     ID.AddInteger(LD->getAlignment());
707     ID.AddInteger(LD->isVolatile());
708   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
709     ID.AddInteger(ST->getAddressingMode());
710     ID.AddInteger(ST->isTruncatingStore());
711     ID.AddInteger(ST->getMemoryVT().getRawBits());
712     ID.AddInteger(ST->getAlignment());
713     ID.AddInteger(ST->isVolatile());
714   }
715   
716   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
717 }
718
719
720 SelectionDAG::~SelectionDAG() {
721   while (!AllNodes.empty()) {
722     SDNode *N = AllNodes.begin();
723     N->SetNextInBucket(0);
724     if (N->OperandsNeedDelete) {
725       delete [] N->OperandList;
726     }
727     N->OperandList = 0;
728     N->NumOperands = 0;
729     AllNodes.pop_front();
730   }
731 }
732
733 SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT VT) {
734   if (Op.getValueType() == VT) return Op;
735   APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
736                                    VT.getSizeInBits());
737   return getNode(ISD::AND, Op.getValueType(), Op,
738                  getConstant(Imm, Op.getValueType()));
739 }
740
741 SDOperand SelectionDAG::getString(const std::string &Val) {
742   StringSDNode *&N = StringNodes[Val];
743   if (!N) {
744     N = new StringSDNode(Val);
745     AllNodes.push_back(N);
746   }
747   return SDOperand(N, 0);
748 }
749
750 SDOperand SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
751   MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
752   return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
753 }
754
755 SDOperand SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
756   assert(VT.isInteger() && "Cannot create FP integer constant!");
757
758   MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
759   assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
760          "APInt size does not match type size!");
761
762   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
763   FoldingSetNodeID ID;
764   AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
765   ID.Add(Val);
766   void *IP = 0;
767   SDNode *N = NULL;
768   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
769     if (!VT.isVector())
770       return SDOperand(N, 0);
771   if (!N) {
772     N = new ConstantSDNode(isT, Val, EltVT);
773     CSEMap.InsertNode(N, IP);
774     AllNodes.push_back(N);
775   }
776
777   SDOperand Result(N, 0);
778   if (VT.isVector()) {
779     SmallVector<SDOperand, 8> Ops;
780     Ops.assign(VT.getVectorNumElements(), Result);
781     Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
782   }
783   return Result;
784 }
785
786 SDOperand SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
787   return getConstant(Val, TLI.getPointerTy(), isTarget);
788 }
789
790
791 SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
792   assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
793                                 
794   MVT EltVT =
795     VT.isVector() ? VT.getVectorElementType() : VT;
796
797   // Do the map lookup using the actual bit pattern for the floating point
798   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
799   // we don't have issues with SNANs.
800   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
801   FoldingSetNodeID ID;
802   AddNodeIDNode(ID, Opc, getVTList(EltVT), (SDOperand*)0, 0);
803   ID.Add(V);
804   void *IP = 0;
805   SDNode *N = NULL;
806   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
807     if (!VT.isVector())
808       return SDOperand(N, 0);
809   if (!N) {
810     N = new ConstantFPSDNode(isTarget, V, EltVT);
811     CSEMap.InsertNode(N, IP);
812     AllNodes.push_back(N);
813   }
814
815   SDOperand Result(N, 0);
816   if (VT.isVector()) {
817     SmallVector<SDOperand, 8> Ops;
818     Ops.assign(VT.getVectorNumElements(), Result);
819     Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
820   }
821   return Result;
822 }
823
824 SDOperand SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
825   MVT EltVT =
826     VT.isVector() ? VT.getVectorElementType() : VT;
827   if (EltVT==MVT::f32)
828     return getConstantFP(APFloat((float)Val), VT, isTarget);
829   else
830     return getConstantFP(APFloat(Val), VT, isTarget);
831 }
832
833 SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
834                                          MVT VT, int Offset,
835                                          bool isTargetGA) {
836   unsigned Opc;
837
838   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
839   if (!GVar) {
840     // If GV is an alias then use the aliasee for determining thread-localness.
841     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
842       GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
843   }
844
845   if (GVar && GVar->isThreadLocal())
846     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
847   else
848     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
849
850   FoldingSetNodeID ID;
851   AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
852   ID.AddPointer(GV);
853   ID.AddInteger(Offset);
854   void *IP = 0;
855   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
856    return SDOperand(E, 0);
857   SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
858   CSEMap.InsertNode(N, IP);
859   AllNodes.push_back(N);
860   return SDOperand(N, 0);
861 }
862
863 SDOperand SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
864   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
865   FoldingSetNodeID ID;
866   AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
867   ID.AddInteger(FI);
868   void *IP = 0;
869   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
870     return SDOperand(E, 0);
871   SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
872   CSEMap.InsertNode(N, IP);
873   AllNodes.push_back(N);
874   return SDOperand(N, 0);
875 }
876
877 SDOperand SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
878   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
879   FoldingSetNodeID ID;
880   AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
881   ID.AddInteger(JTI);
882   void *IP = 0;
883   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
884     return SDOperand(E, 0);
885   SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
886   CSEMap.InsertNode(N, IP);
887   AllNodes.push_back(N);
888   return SDOperand(N, 0);
889 }
890
891 SDOperand SelectionDAG::getConstantPool(Constant *C, MVT VT,
892                                         unsigned Alignment, int Offset,
893                                         bool isTarget) {
894   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
895   FoldingSetNodeID ID;
896   AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
897   ID.AddInteger(Alignment);
898   ID.AddInteger(Offset);
899   ID.AddPointer(C);
900   void *IP = 0;
901   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
902     return SDOperand(E, 0);
903   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
904   CSEMap.InsertNode(N, IP);
905   AllNodes.push_back(N);
906   return SDOperand(N, 0);
907 }
908
909
910 SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
911                                         unsigned Alignment, int Offset,
912                                         bool isTarget) {
913   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
914   FoldingSetNodeID ID;
915   AddNodeIDNode(ID, Opc, getVTList(VT), (SDOperand*)0, 0);
916   ID.AddInteger(Alignment);
917   ID.AddInteger(Offset);
918   C->AddSelectionDAGCSEId(ID);
919   void *IP = 0;
920   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
921     return SDOperand(E, 0);
922   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
923   CSEMap.InsertNode(N, IP);
924   AllNodes.push_back(N);
925   return SDOperand(N, 0);
926 }
927
928
929 SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
930   FoldingSetNodeID ID;
931   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), (SDOperand*)0, 0);
932   ID.AddPointer(MBB);
933   void *IP = 0;
934   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
935     return SDOperand(E, 0);
936   SDNode *N = new BasicBlockSDNode(MBB);
937   CSEMap.InsertNode(N, IP);
938   AllNodes.push_back(N);
939   return SDOperand(N, 0);
940 }
941
942 SDOperand SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
943   FoldingSetNodeID ID;
944   AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), (SDOperand*)0, 0);
945   ID.AddInteger(Flags.getRawBits());
946   void *IP = 0;
947   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
948     return SDOperand(E, 0);
949   SDNode *N = new ARG_FLAGSSDNode(Flags);
950   CSEMap.InsertNode(N, IP);
951   AllNodes.push_back(N);
952   return SDOperand(N, 0);
953 }
954
955 SDOperand SelectionDAG::getValueType(MVT VT) {
956   if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
957     ValueTypeNodes.resize(VT.getSimpleVT()+1);
958
959   SDNode *&N = VT.isExtended() ?
960     ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
961
962   if (N) return SDOperand(N, 0);
963   N = new VTSDNode(VT);
964   AllNodes.push_back(N);
965   return SDOperand(N, 0);
966 }
967
968 SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
969   SDNode *&N = ExternalSymbols[Sym];
970   if (N) return SDOperand(N, 0);
971   N = new ExternalSymbolSDNode(false, Sym, VT);
972   AllNodes.push_back(N);
973   return SDOperand(N, 0);
974 }
975
976 SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
977   SDNode *&N = TargetExternalSymbols[Sym];
978   if (N) return SDOperand(N, 0);
979   N = new ExternalSymbolSDNode(true, Sym, VT);
980   AllNodes.push_back(N);
981   return SDOperand(N, 0);
982 }
983
984 SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
985   if ((unsigned)Cond >= CondCodeNodes.size())
986     CondCodeNodes.resize(Cond+1);
987
988   if (CondCodeNodes[Cond] == 0) {
989     CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
990     AllNodes.push_back(CondCodeNodes[Cond]);
991   }
992   return SDOperand(CondCodeNodes[Cond], 0);
993 }
994
995 SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
996   FoldingSetNodeID ID;
997   AddNodeIDNode(ID, ISD::Register, getVTList(VT), (SDOperand*)0, 0);
998   ID.AddInteger(RegNo);
999   void *IP = 0;
1000   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1001     return SDOperand(E, 0);
1002   SDNode *N = new RegisterSDNode(RegNo, VT);
1003   CSEMap.InsertNode(N, IP);
1004   AllNodes.push_back(N);
1005   return SDOperand(N, 0);
1006 }
1007
1008 SDOperand SelectionDAG::getSrcValue(const Value *V) {
1009   assert((!V || isa<PointerType>(V->getType())) &&
1010          "SrcValue is not a pointer?");
1011
1012   FoldingSetNodeID ID;
1013   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), (SDOperand*)0, 0);
1014   ID.AddPointer(V);
1015
1016   void *IP = 0;
1017   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1018     return SDOperand(E, 0);
1019
1020   SDNode *N = new SrcValueSDNode(V);
1021   CSEMap.InsertNode(N, IP);
1022   AllNodes.push_back(N);
1023   return SDOperand(N, 0);
1024 }
1025
1026 SDOperand SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
1027   const Value *v = MO.getValue();
1028   assert((!v || isa<PointerType>(v->getType())) &&
1029          "SrcValue is not a pointer?");
1030
1031   FoldingSetNodeID ID;
1032   AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), (SDOperand*)0, 0);
1033   ID.AddPointer(v);
1034   ID.AddInteger(MO.getFlags());
1035   ID.AddInteger(MO.getOffset());
1036   ID.AddInteger(MO.getSize());
1037   ID.AddInteger(MO.getAlignment());
1038
1039   void *IP = 0;
1040   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1041     return SDOperand(E, 0);
1042
1043   SDNode *N = new MemOperandSDNode(MO);
1044   CSEMap.InsertNode(N, IP);
1045   AllNodes.push_back(N);
1046   return SDOperand(N, 0);
1047 }
1048
1049 /// CreateStackTemporary - Create a stack temporary, suitable for holding the
1050 /// specified value type.
1051 SDOperand SelectionDAG::CreateStackTemporary(MVT VT) {
1052   MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1053   unsigned ByteSize = VT.getSizeInBits()/8;
1054   const Type *Ty = VT.getTypeForMVT();
1055   unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
1056   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1057   return getFrameIndex(FrameIdx, TLI.getPointerTy());
1058 }
1059
1060
1061 SDOperand SelectionDAG::FoldSetCC(MVT VT, SDOperand N1,
1062                                   SDOperand N2, ISD::CondCode Cond) {
1063   // These setcc operations always fold.
1064   switch (Cond) {
1065   default: break;
1066   case ISD::SETFALSE:
1067   case ISD::SETFALSE2: return getConstant(0, VT);
1068   case ISD::SETTRUE:
1069   case ISD::SETTRUE2:  return getConstant(1, VT);
1070     
1071   case ISD::SETOEQ:
1072   case ISD::SETOGT:
1073   case ISD::SETOGE:
1074   case ISD::SETOLT:
1075   case ISD::SETOLE:
1076   case ISD::SETONE:
1077   case ISD::SETO:
1078   case ISD::SETUO:
1079   case ISD::SETUEQ:
1080   case ISD::SETUNE:
1081     assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
1082     break;
1083   }
1084   
1085   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
1086     const APInt &C2 = N2C->getAPIntValue();
1087     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
1088       const APInt &C1 = N1C->getAPIntValue();
1089       
1090       switch (Cond) {
1091       default: assert(0 && "Unknown integer setcc!");
1092       case ISD::SETEQ:  return getConstant(C1 == C2, VT);
1093       case ISD::SETNE:  return getConstant(C1 != C2, VT);
1094       case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1095       case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1096       case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1097       case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1098       case ISD::SETLT:  return getConstant(C1.slt(C2), VT);
1099       case ISD::SETGT:  return getConstant(C1.sgt(C2), VT);
1100       case ISD::SETLE:  return getConstant(C1.sle(C2), VT);
1101       case ISD::SETGE:  return getConstant(C1.sge(C2), VT);
1102       }
1103     }
1104   }
1105   if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val)) {
1106     if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
1107       // No compile time operations on this type yet.
1108       if (N1C->getValueType(0) == MVT::ppcf128)
1109         return SDOperand();
1110
1111       APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
1112       switch (Cond) {
1113       default: break;
1114       case ISD::SETEQ:  if (R==APFloat::cmpUnordered) 
1115                           return getNode(ISD::UNDEF, VT);
1116                         // fall through
1117       case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1118       case ISD::SETNE:  if (R==APFloat::cmpUnordered) 
1119                           return getNode(ISD::UNDEF, VT);
1120                         // fall through
1121       case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
1122                                            R==APFloat::cmpLessThan, VT);
1123       case ISD::SETLT:  if (R==APFloat::cmpUnordered) 
1124                           return getNode(ISD::UNDEF, VT);
1125                         // fall through
1126       case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1127       case ISD::SETGT:  if (R==APFloat::cmpUnordered) 
1128                           return getNode(ISD::UNDEF, VT);
1129                         // fall through
1130       case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1131       case ISD::SETLE:  if (R==APFloat::cmpUnordered) 
1132                           return getNode(ISD::UNDEF, VT);
1133                         // fall through
1134       case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
1135                                            R==APFloat::cmpEqual, VT);
1136       case ISD::SETGE:  if (R==APFloat::cmpUnordered) 
1137                           return getNode(ISD::UNDEF, VT);
1138                         // fall through
1139       case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
1140                                            R==APFloat::cmpEqual, VT);
1141       case ISD::SETO:   return getConstant(R!=APFloat::cmpUnordered, VT);
1142       case ISD::SETUO:  return getConstant(R==APFloat::cmpUnordered, VT);
1143       case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1144                                            R==APFloat::cmpEqual, VT);
1145       case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1146       case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1147                                            R==APFloat::cmpLessThan, VT);
1148       case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1149                                            R==APFloat::cmpUnordered, VT);
1150       case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1151       case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
1152       }
1153     } else {
1154       // Ensure that the constant occurs on the RHS.
1155       return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
1156     }
1157   }
1158
1159   // Could not fold it.
1160   return SDOperand();
1161 }
1162
1163 /// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
1164 /// use this predicate to simplify operations downstream.
1165 bool SelectionDAG::SignBitIsZero(SDOperand Op, unsigned Depth) const {
1166   unsigned BitWidth = Op.getValueSizeInBits();
1167   return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1168 }
1169
1170 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
1171 /// this predicate to simplify operations downstream.  Mask is known to be zero
1172 /// for bits that V cannot have.
1173 bool SelectionDAG::MaskedValueIsZero(SDOperand Op, const APInt &Mask, 
1174                                      unsigned Depth) const {
1175   APInt KnownZero, KnownOne;
1176   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1177   assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1178   return (KnownZero & Mask) == Mask;
1179 }
1180
1181 /// ComputeMaskedBits - Determine which of the bits specified in Mask are
1182 /// known to be either zero or one and return them in the KnownZero/KnownOne
1183 /// bitsets.  This code only analyzes bits in Mask, in order to short-circuit
1184 /// processing.
1185 void SelectionDAG::ComputeMaskedBits(SDOperand Op, const APInt &Mask, 
1186                                      APInt &KnownZero, APInt &KnownOne,
1187                                      unsigned Depth) const {
1188   unsigned BitWidth = Mask.getBitWidth();
1189   assert(BitWidth == Op.getValueType().getSizeInBits() &&
1190          "Mask size mismatches value type size!");
1191
1192   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
1193   if (Depth == 6 || Mask == 0)
1194     return;  // Limit search depth.
1195   
1196   APInt KnownZero2, KnownOne2;
1197
1198   switch (Op.getOpcode()) {
1199   case ISD::Constant:
1200     // We know all of the bits for a constant!
1201     KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
1202     KnownZero = ~KnownOne & Mask;
1203     return;
1204   case ISD::AND:
1205     // If either the LHS or the RHS are Zero, the result is zero.
1206     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1207     ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1208                       KnownZero2, KnownOne2, Depth+1);
1209     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1210     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1211
1212     // Output known-1 bits are only known if set in both the LHS & RHS.
1213     KnownOne &= KnownOne2;
1214     // Output known-0 are known to be clear if zero in either the LHS | RHS.
1215     KnownZero |= KnownZero2;
1216     return;
1217   case ISD::OR:
1218     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1219     ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1220                       KnownZero2, KnownOne2, Depth+1);
1221     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1222     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1223     
1224     // Output known-0 bits are only known if clear in both the LHS & RHS.
1225     KnownZero &= KnownZero2;
1226     // Output known-1 are known to be set if set in either the LHS | RHS.
1227     KnownOne |= KnownOne2;
1228     return;
1229   case ISD::XOR: {
1230     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1231     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1232     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1233     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1234     
1235     // Output known-0 bits are known if clear or set in both the LHS & RHS.
1236     APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1237     // Output known-1 are known to be set if set in only one of the LHS, RHS.
1238     KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1239     KnownZero = KnownZeroOut;
1240     return;
1241   }
1242   case ISD::MUL: {
1243     APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1244     ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1245     ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1246     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1247     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1248
1249     // If low bits are zero in either operand, output low known-0 bits.
1250     // Also compute a conserative estimate for high known-0 bits.
1251     // More trickiness is possible, but this is sufficient for the
1252     // interesting case of alignment computation.
1253     KnownOne.clear();
1254     unsigned TrailZ = KnownZero.countTrailingOnes() +
1255                       KnownZero2.countTrailingOnes();
1256     unsigned LeadZ =  std::max(KnownZero.countLeadingOnes() +
1257                                KnownZero2.countLeadingOnes(),
1258                                BitWidth) - BitWidth;
1259
1260     TrailZ = std::min(TrailZ, BitWidth);
1261     LeadZ = std::min(LeadZ, BitWidth);
1262     KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1263                 APInt::getHighBitsSet(BitWidth, LeadZ);
1264     KnownZero &= Mask;
1265     return;
1266   }
1267   case ISD::UDIV: {
1268     // For the purposes of computing leading zeros we can conservatively
1269     // treat a udiv as a logical right shift by the power of 2 known to
1270     // be less than the denominator.
1271     APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1272     ComputeMaskedBits(Op.getOperand(0),
1273                       AllOnes, KnownZero2, KnownOne2, Depth+1);
1274     unsigned LeadZ = KnownZero2.countLeadingOnes();
1275
1276     KnownOne2.clear();
1277     KnownZero2.clear();
1278     ComputeMaskedBits(Op.getOperand(1),
1279                       AllOnes, KnownZero2, KnownOne2, Depth+1);
1280     unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1281     if (RHSUnknownLeadingOnes != BitWidth)
1282       LeadZ = std::min(BitWidth,
1283                        LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
1284
1285     KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1286     return;
1287   }
1288   case ISD::SELECT:
1289     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1290     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1291     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1292     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1293     
1294     // Only known if known in both the LHS and RHS.
1295     KnownOne &= KnownOne2;
1296     KnownZero &= KnownZero2;
1297     return;
1298   case ISD::SELECT_CC:
1299     ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1300     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1301     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1302     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1303     
1304     // Only known if known in both the LHS and RHS.
1305     KnownOne &= KnownOne2;
1306     KnownZero &= KnownZero2;
1307     return;
1308   case ISD::SETCC:
1309     // If we know the result of a setcc has the top bits zero, use this info.
1310     if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult &&
1311         BitWidth > 1)
1312       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1313     return;
1314   case ISD::SHL:
1315     // (shl X, C1) & C2 == 0   iff   (X & C2 >>u C1) == 0
1316     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1317       unsigned ShAmt = SA->getValue();
1318
1319       // If the shift count is an invalid immediate, don't do anything.
1320       if (ShAmt >= BitWidth)
1321         return;
1322
1323       ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
1324                         KnownZero, KnownOne, Depth+1);
1325       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1326       KnownZero <<= ShAmt;
1327       KnownOne  <<= ShAmt;
1328       // low bits known zero.
1329       KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
1330     }
1331     return;
1332   case ISD::SRL:
1333     // (ushr X, C1) & C2 == 0   iff  (-1 >> C1) & C2 == 0
1334     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1335       unsigned ShAmt = SA->getValue();
1336
1337       // If the shift count is an invalid immediate, don't do anything.
1338       if (ShAmt >= BitWidth)
1339         return;
1340
1341       ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
1342                         KnownZero, KnownOne, Depth+1);
1343       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1344       KnownZero = KnownZero.lshr(ShAmt);
1345       KnownOne  = KnownOne.lshr(ShAmt);
1346
1347       APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1348       KnownZero |= HighBits;  // High bits known zero.
1349     }
1350     return;
1351   case ISD::SRA:
1352     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1353       unsigned ShAmt = SA->getValue();
1354
1355       // If the shift count is an invalid immediate, don't do anything.
1356       if (ShAmt >= BitWidth)
1357         return;
1358
1359       APInt InDemandedMask = (Mask << ShAmt);
1360       // If any of the demanded bits are produced by the sign extension, we also
1361       // demand the input sign bit.
1362       APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1363       if (HighBits.getBoolValue())
1364         InDemandedMask |= APInt::getSignBit(BitWidth);
1365       
1366       ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1367                         Depth+1);
1368       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1369       KnownZero = KnownZero.lshr(ShAmt);
1370       KnownOne  = KnownOne.lshr(ShAmt);
1371       
1372       // Handle the sign bits.
1373       APInt SignBit = APInt::getSignBit(BitWidth);
1374       SignBit = SignBit.lshr(ShAmt);  // Adjust to where it is now in the mask.
1375       
1376       if (KnownZero.intersects(SignBit)) {
1377         KnownZero |= HighBits;  // New bits are known zero.
1378       } else if (KnownOne.intersects(SignBit)) {
1379         KnownOne  |= HighBits;  // New bits are known one.
1380       }
1381     }
1382     return;
1383   case ISD::SIGN_EXTEND_INREG: {
1384     MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1385     unsigned EBits = EVT.getSizeInBits();
1386     
1387     // Sign extension.  Compute the demanded bits in the result that are not 
1388     // present in the input.
1389     APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
1390
1391     APInt InSignBit = APInt::getSignBit(EBits);
1392     APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
1393     
1394     // If the sign extended bits are demanded, we know that the sign
1395     // bit is demanded.
1396     InSignBit.zext(BitWidth);
1397     if (NewBits.getBoolValue())
1398       InputDemandedBits |= InSignBit;
1399     
1400     ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1401                       KnownZero, KnownOne, Depth+1);
1402     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1403     
1404     // If the sign bit of the input is known set or clear, then we know the
1405     // top bits of the result.
1406     if (KnownZero.intersects(InSignBit)) {         // Input sign bit known clear
1407       KnownZero |= NewBits;
1408       KnownOne  &= ~NewBits;
1409     } else if (KnownOne.intersects(InSignBit)) {   // Input sign bit known set
1410       KnownOne  |= NewBits;
1411       KnownZero &= ~NewBits;
1412     } else {                              // Input sign bit unknown
1413       KnownZero &= ~NewBits;
1414       KnownOne  &= ~NewBits;
1415     }
1416     return;
1417   }
1418   case ISD::CTTZ:
1419   case ISD::CTLZ:
1420   case ISD::CTPOP: {
1421     unsigned LowBits = Log2_32(BitWidth)+1;
1422     KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1423     KnownOne.clear();
1424     return;
1425   }
1426   case ISD::LOAD: {
1427     if (ISD::isZEXTLoad(Op.Val)) {
1428       LoadSDNode *LD = cast<LoadSDNode>(Op);
1429       MVT VT = LD->getMemoryVT();
1430       unsigned MemBits = VT.getSizeInBits();
1431       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
1432     }
1433     return;
1434   }
1435   case ISD::ZERO_EXTEND: {
1436     MVT InVT = Op.getOperand(0).getValueType();
1437     unsigned InBits = InVT.getSizeInBits();
1438     APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1439     APInt InMask    = Mask;
1440     InMask.trunc(InBits);
1441     KnownZero.trunc(InBits);
1442     KnownOne.trunc(InBits);
1443     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1444     KnownZero.zext(BitWidth);
1445     KnownOne.zext(BitWidth);
1446     KnownZero |= NewBits;
1447     return;
1448   }
1449   case ISD::SIGN_EXTEND: {
1450     MVT InVT = Op.getOperand(0).getValueType();
1451     unsigned InBits = InVT.getSizeInBits();
1452     APInt InSignBit = APInt::getSignBit(InBits);
1453     APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1454     APInt InMask = Mask;
1455     InMask.trunc(InBits);
1456
1457     // If any of the sign extended bits are demanded, we know that the sign
1458     // bit is demanded. Temporarily set this bit in the mask for our callee.
1459     if (NewBits.getBoolValue())
1460       InMask |= InSignBit;
1461
1462     KnownZero.trunc(InBits);
1463     KnownOne.trunc(InBits);
1464     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1465
1466     // Note if the sign bit is known to be zero or one.
1467     bool SignBitKnownZero = KnownZero.isNegative();
1468     bool SignBitKnownOne  = KnownOne.isNegative();
1469     assert(!(SignBitKnownZero && SignBitKnownOne) &&
1470            "Sign bit can't be known to be both zero and one!");
1471
1472     // If the sign bit wasn't actually demanded by our caller, we don't
1473     // want it set in the KnownZero and KnownOne result values. Reset the
1474     // mask and reapply it to the result values.
1475     InMask = Mask;
1476     InMask.trunc(InBits);
1477     KnownZero &= InMask;
1478     KnownOne  &= InMask;
1479
1480     KnownZero.zext(BitWidth);
1481     KnownOne.zext(BitWidth);
1482
1483     // If the sign bit is known zero or one, the top bits match.
1484     if (SignBitKnownZero)
1485       KnownZero |= NewBits;
1486     else if (SignBitKnownOne)
1487       KnownOne  |= NewBits;
1488     return;
1489   }
1490   case ISD::ANY_EXTEND: {
1491     MVT InVT = Op.getOperand(0).getValueType();
1492     unsigned InBits = InVT.getSizeInBits();
1493     APInt InMask = Mask;
1494     InMask.trunc(InBits);
1495     KnownZero.trunc(InBits);
1496     KnownOne.trunc(InBits);
1497     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1498     KnownZero.zext(BitWidth);
1499     KnownOne.zext(BitWidth);
1500     return;
1501   }
1502   case ISD::TRUNCATE: {
1503     MVT InVT = Op.getOperand(0).getValueType();
1504     unsigned InBits = InVT.getSizeInBits();
1505     APInt InMask = Mask;
1506     InMask.zext(InBits);
1507     KnownZero.zext(InBits);
1508     KnownOne.zext(InBits);
1509     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1510     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1511     KnownZero.trunc(BitWidth);
1512     KnownOne.trunc(BitWidth);
1513     break;
1514   }
1515   case ISD::AssertZext: {
1516     MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1517     APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
1518     ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero, 
1519                       KnownOne, Depth+1);
1520     KnownZero |= (~InMask) & Mask;
1521     return;
1522   }
1523   case ISD::FGETSIGN:
1524     // All bits are zero except the low bit.
1525     KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1526     return;
1527   
1528   case ISD::SUB: {
1529     if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1530       // We know that the top bits of C-X are clear if X contains less bits
1531       // than C (i.e. no wrap-around can happen).  For example, 20-X is
1532       // positive if we can prove that X is >= 0 and < 16.
1533       if (CLHS->getAPIntValue().isNonNegative()) {
1534         unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1535         // NLZ can't be BitWidth with no sign bit
1536         APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1537         ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1538                           Depth+1);
1539
1540         // If all of the MaskV bits are known to be zero, then we know the
1541         // output top bits are zero, because we now know that the output is
1542         // from [0-C].
1543         if ((KnownZero2 & MaskV) == MaskV) {
1544           unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1545           // Top bits known zero.
1546           KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1547         }
1548       }
1549     }
1550   }
1551   // fall through
1552   case ISD::ADD: {
1553     // Output known-0 bits are known if clear or set in both the low clear bits
1554     // common to both LHS & RHS.  For example, 8+(X<<3) is known to have the
1555     // low 3 bits clear.
1556     APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1557     ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1558     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1559     unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1560
1561     ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1562     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1563     KnownZeroOut = std::min(KnownZeroOut,
1564                             KnownZero2.countTrailingOnes());
1565
1566     KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1567     return;
1568   }
1569   case ISD::SREM:
1570     if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1571       APInt RA = Rem->getAPIntValue();
1572       if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
1573         APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
1574         APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1575         ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
1576
1577         // The sign of a remainder is equal to the sign of the first
1578         // operand (zero being positive).
1579         if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1580           KnownZero2 |= ~LowBits;
1581         else if (KnownOne2[BitWidth-1])
1582           KnownOne2 |= ~LowBits;
1583
1584         KnownZero |= KnownZero2 & Mask;
1585         KnownOne |= KnownOne2 & Mask;
1586
1587         assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1588       }
1589     }
1590     return;
1591   case ISD::UREM: {
1592     if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1593       APInt RA = Rem->getAPIntValue();
1594       if (RA.isPowerOf2()) {
1595         APInt LowBits = (RA - 1);
1596         APInt Mask2 = LowBits & Mask;
1597         KnownZero |= ~LowBits & Mask;
1598         ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1599         assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1600         break;
1601       }
1602     }
1603
1604     // Since the result is less than or equal to either operand, any leading
1605     // zero bits in either operand must also exist in the result.
1606     APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1607     ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1608                       Depth+1);
1609     ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1610                       Depth+1);
1611
1612     uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1613                                 KnownZero2.countLeadingOnes());
1614     KnownOne.clear();
1615     KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1616     return;
1617   }
1618   default:
1619     // Allow the target to implement this method for its nodes.
1620     if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1621   case ISD::INTRINSIC_WO_CHAIN:
1622   case ISD::INTRINSIC_W_CHAIN:
1623   case ISD::INTRINSIC_VOID:
1624       TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1625     }
1626     return;
1627   }
1628 }
1629
1630 /// ComputeNumSignBits - Return the number of times the sign bit of the
1631 /// register is replicated into the other bits.  We know that at least 1 bit
1632 /// is always equal to the sign bit (itself), but other cases can give us
1633 /// information.  For example, immediately after an "SRA X, 2", we know that
1634 /// the top 3 bits are all equal to each other, so we return 3.
1635 unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1636   MVT VT = Op.getValueType();
1637   assert(VT.isInteger() && "Invalid VT!");
1638   unsigned VTBits = VT.getSizeInBits();
1639   unsigned Tmp, Tmp2;
1640   unsigned FirstAnswer = 1;
1641   
1642   if (Depth == 6)
1643     return 1;  // Limit search depth.
1644
1645   switch (Op.getOpcode()) {
1646   default: break;
1647   case ISD::AssertSext:
1648     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1649     return VTBits-Tmp+1;
1650   case ISD::AssertZext:
1651     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1652     return VTBits-Tmp;
1653     
1654   case ISD::Constant: {
1655     const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1656     // If negative, return # leading ones.
1657     if (Val.isNegative())
1658       return Val.countLeadingOnes();
1659     
1660     // Return # leading zeros.
1661     return Val.countLeadingZeros();
1662   }
1663     
1664   case ISD::SIGN_EXTEND:
1665     Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
1666     return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1667     
1668   case ISD::SIGN_EXTEND_INREG:
1669     // Max of the input and what this extends.
1670     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1671     Tmp = VTBits-Tmp+1;
1672     
1673     Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1674     return std::max(Tmp, Tmp2);
1675
1676   case ISD::SRA:
1677     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1678     // SRA X, C   -> adds C sign bits.
1679     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1680       Tmp += C->getValue();
1681       if (Tmp > VTBits) Tmp = VTBits;
1682     }
1683     return Tmp;
1684   case ISD::SHL:
1685     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1686       // shl destroys sign bits.
1687       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1688       if (C->getValue() >= VTBits ||      // Bad shift.
1689           C->getValue() >= Tmp) break;    // Shifted all sign bits out.
1690       return Tmp - C->getValue();
1691     }
1692     break;
1693   case ISD::AND:
1694   case ISD::OR:
1695   case ISD::XOR:    // NOT is handled here.
1696     // Logical binary ops preserve the number of sign bits at the worst.
1697     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1698     if (Tmp != 1) {
1699       Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1700       FirstAnswer = std::min(Tmp, Tmp2);
1701       // We computed what we know about the sign bits as our first
1702       // answer. Now proceed to the generic code that uses
1703       // ComputeMaskedBits, and pick whichever answer is better.
1704     }
1705     break;
1706
1707   case ISD::SELECT:
1708     Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1709     if (Tmp == 1) return 1;  // Early out.
1710     Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
1711     return std::min(Tmp, Tmp2);
1712     
1713   case ISD::SETCC:
1714     // If setcc returns 0/-1, all bits are sign bits.
1715     if (TLI.getSetCCResultContents() ==
1716         TargetLowering::ZeroOrNegativeOneSetCCResult)
1717       return VTBits;
1718     break;
1719   case ISD::ROTL:
1720   case ISD::ROTR:
1721     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1722       unsigned RotAmt = C->getValue() & (VTBits-1);
1723       
1724       // Handle rotate right by N like a rotate left by 32-N.
1725       if (Op.getOpcode() == ISD::ROTR)
1726         RotAmt = (VTBits-RotAmt) & (VTBits-1);
1727
1728       // If we aren't rotating out all of the known-in sign bits, return the
1729       // number that are left.  This handles rotl(sext(x), 1) for example.
1730       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1731       if (Tmp > RotAmt+1) return Tmp-RotAmt;
1732     }
1733     break;
1734   case ISD::ADD:
1735     // Add can have at most one carry bit.  Thus we know that the output
1736     // is, at worst, one more bit than the inputs.
1737     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1738     if (Tmp == 1) return 1;  // Early out.
1739       
1740     // Special case decrementing a value (ADD X, -1):
1741     if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1742       if (CRHS->isAllOnesValue()) {
1743         APInt KnownZero, KnownOne;
1744         APInt Mask = APInt::getAllOnesValue(VTBits);
1745         ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1746         
1747         // If the input is known to be 0 or 1, the output is 0/-1, which is all
1748         // sign bits set.
1749         if ((KnownZero | APInt(VTBits, 1)) == Mask)
1750           return VTBits;
1751         
1752         // If we are subtracting one from a positive number, there is no carry
1753         // out of the result.
1754         if (KnownZero.isNegative())
1755           return Tmp;
1756       }
1757       
1758     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1759     if (Tmp2 == 1) return 1;
1760       return std::min(Tmp, Tmp2)-1;
1761     break;
1762     
1763   case ISD::SUB:
1764     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1765     if (Tmp2 == 1) return 1;
1766       
1767     // Handle NEG.
1768     if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1769       if (CLHS->isNullValue()) {
1770         APInt KnownZero, KnownOne;
1771         APInt Mask = APInt::getAllOnesValue(VTBits);
1772         ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1773         // If the input is known to be 0 or 1, the output is 0/-1, which is all
1774         // sign bits set.
1775         if ((KnownZero | APInt(VTBits, 1)) == Mask)
1776           return VTBits;
1777         
1778         // If the input is known to be positive (the sign bit is known clear),
1779         // the output of the NEG has the same number of sign bits as the input.
1780         if (KnownZero.isNegative())
1781           return Tmp2;
1782         
1783         // Otherwise, we treat this like a SUB.
1784       }
1785     
1786     // Sub can have at most one carry bit.  Thus we know that the output
1787     // is, at worst, one more bit than the inputs.
1788     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1789     if (Tmp == 1) return 1;  // Early out.
1790       return std::min(Tmp, Tmp2)-1;
1791     break;
1792   case ISD::TRUNCATE:
1793     // FIXME: it's tricky to do anything useful for this, but it is an important
1794     // case for targets like X86.
1795     break;
1796   }
1797   
1798   // Handle LOADX separately here. EXTLOAD case will fallthrough.
1799   if (Op.getOpcode() == ISD::LOAD) {
1800     LoadSDNode *LD = cast<LoadSDNode>(Op);
1801     unsigned ExtType = LD->getExtensionType();
1802     switch (ExtType) {
1803     default: break;
1804     case ISD::SEXTLOAD:    // '17' bits known
1805       Tmp = LD->getMemoryVT().getSizeInBits();
1806       return VTBits-Tmp+1;
1807     case ISD::ZEXTLOAD:    // '16' bits known
1808       Tmp = LD->getMemoryVT().getSizeInBits();
1809       return VTBits-Tmp;
1810     }
1811   }
1812
1813   // Allow the target to implement this method for its nodes.
1814   if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1815       Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 
1816       Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1817       Op.getOpcode() == ISD::INTRINSIC_VOID) {
1818     unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1819     if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
1820   }
1821   
1822   // Finally, if we can prove that the top bits of the result are 0's or 1's,
1823   // use this information.
1824   APInt KnownZero, KnownOne;
1825   APInt Mask = APInt::getAllOnesValue(VTBits);
1826   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1827   
1828   if (KnownZero.isNegative()) {        // sign bit is 0
1829     Mask = KnownZero;
1830   } else if (KnownOne.isNegative()) {  // sign bit is 1;
1831     Mask = KnownOne;
1832   } else {
1833     // Nothing known.
1834     return FirstAnswer;
1835   }
1836   
1837   // Okay, we know that the sign bit in Mask is set.  Use CLZ to determine
1838   // the number of identical bits in the top of the input value.
1839   Mask = ~Mask;
1840   Mask <<= Mask.getBitWidth()-VTBits;
1841   // Return # leading zeros.  We use 'min' here in case Val was zero before
1842   // shifting.  We don't want to return '64' as for an i32 "0".
1843   return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
1844 }
1845
1846
1847 bool SelectionDAG::isVerifiedDebugInfoDesc(SDOperand Op) const {
1848   GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1849   if (!GA) return false;
1850   GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
1851   if (!GV) return false;
1852   MachineModuleInfo *MMI = getMachineModuleInfo();
1853   return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
1854 }
1855
1856
1857 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
1858 /// element of the result of the vector shuffle.
1859 SDOperand SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
1860   MVT VT = N->getValueType(0);
1861   SDOperand PermMask = N->getOperand(2);
1862   SDOperand Idx = PermMask.getOperand(i);
1863   if (Idx.getOpcode() == ISD::UNDEF)
1864     return getNode(ISD::UNDEF, VT.getVectorElementType());
1865   unsigned Index = cast<ConstantSDNode>(Idx)->getValue();
1866   unsigned NumElems = PermMask.getNumOperands();
1867   SDOperand V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
1868   Index %= NumElems;
1869
1870   if (V.getOpcode() == ISD::BIT_CONVERT) {
1871     V = V.getOperand(0);
1872     if (V.getValueType().getVectorNumElements() != NumElems)
1873       return SDOperand();
1874   }
1875   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
1876     return (Index == 0) ? V.getOperand(0)
1877                       : getNode(ISD::UNDEF, VT.getVectorElementType());
1878   if (V.getOpcode() == ISD::BUILD_VECTOR)
1879     return V.getOperand(Index);
1880   if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
1881     return getShuffleScalarElt(V.Val, Index);
1882   return SDOperand();
1883 }
1884
1885
1886 /// getNode - Gets or creates the specified node.
1887 ///
1888 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT) {
1889   FoldingSetNodeID ID;
1890   AddNodeIDNode(ID, Opcode, getVTList(VT), (SDOperand*)0, 0);
1891   void *IP = 0;
1892   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1893     return SDOperand(E, 0);
1894   SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
1895   CSEMap.InsertNode(N, IP);
1896   
1897   AllNodes.push_back(N);
1898   return SDOperand(N, 0);
1899 }
1900
1901 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT, SDOperand Operand) {
1902   // Constant fold unary operations with an integer constant operand.
1903   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1904     const APInt &Val = C->getAPIntValue();
1905     unsigned BitWidth = VT.getSizeInBits();
1906     switch (Opcode) {
1907     default: break;
1908     case ISD::SIGN_EXTEND:
1909       return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
1910     case ISD::ANY_EXTEND:
1911     case ISD::ZERO_EXTEND:
1912     case ISD::TRUNCATE:
1913       return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
1914     case ISD::UINT_TO_FP:
1915     case ISD::SINT_TO_FP: {
1916       const uint64_t zero[] = {0, 0};
1917       // No compile time operations on this type.
1918       if (VT==MVT::ppcf128)
1919         break;
1920       APFloat apf = APFloat(APInt(BitWidth, 2, zero));
1921       (void)apf.convertFromAPInt(Val, 
1922                                  Opcode==ISD::SINT_TO_FP,
1923                                  APFloat::rmNearestTiesToEven);
1924       return getConstantFP(apf, VT);
1925     }
1926     case ISD::BIT_CONVERT:
1927       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
1928         return getConstantFP(Val.bitsToFloat(), VT);
1929       else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
1930         return getConstantFP(Val.bitsToDouble(), VT);
1931       break;
1932     case ISD::BSWAP:
1933       return getConstant(Val.byteSwap(), VT);
1934     case ISD::CTPOP:
1935       return getConstant(Val.countPopulation(), VT);
1936     case ISD::CTLZ:
1937       return getConstant(Val.countLeadingZeros(), VT);
1938     case ISD::CTTZ:
1939       return getConstant(Val.countTrailingZeros(), VT);
1940     }
1941   }
1942
1943   // Constant fold unary operations with a floating point constant operand.
1944   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1945     APFloat V = C->getValueAPF();    // make copy
1946     if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
1947       switch (Opcode) {
1948       case ISD::FNEG:
1949         V.changeSign();
1950         return getConstantFP(V, VT);
1951       case ISD::FABS:
1952         V.clearSign();
1953         return getConstantFP(V, VT);
1954       case ISD::FP_ROUND:
1955       case ISD::FP_EXTEND:
1956         // This can return overflow, underflow, or inexact; we don't care.
1957         // FIXME need to be more flexible about rounding mode.
1958         (void)V.convert(*MVTToAPFloatSemantics(VT),
1959                         APFloat::rmNearestTiesToEven);
1960         return getConstantFP(V, VT);
1961       case ISD::FP_TO_SINT:
1962       case ISD::FP_TO_UINT: {
1963         integerPart x;
1964         assert(integerPartWidth >= 64);
1965         // FIXME need to be more flexible about rounding mode.
1966         APFloat::opStatus s = V.convertToInteger(&x, 64U,
1967                               Opcode==ISD::FP_TO_SINT,
1968                               APFloat::rmTowardZero);
1969         if (s==APFloat::opInvalidOp)     // inexact is OK, in fact usual
1970           break;
1971         return getConstant(x, VT);
1972       }
1973       case ISD::BIT_CONVERT:
1974         if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1975           return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1976         else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1977           return getConstant(V.convertToAPInt().getZExtValue(), VT);
1978         break;
1979       }
1980     }
1981   }
1982
1983   unsigned OpOpcode = Operand.Val->getOpcode();
1984   switch (Opcode) {
1985   case ISD::TokenFactor:
1986   case ISD::MERGE_VALUES:
1987     return Operand;         // Factor or merge of one node?  No need.
1988   case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
1989   case ISD::FP_EXTEND:
1990     assert(VT.isFloatingPoint() &&
1991            Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
1992     if (Operand.getValueType() == VT) return Operand;  // noop conversion.
1993     if (Operand.getOpcode() == ISD::UNDEF)
1994       return getNode(ISD::UNDEF, VT);
1995     break;
1996   case ISD::SIGN_EXTEND:
1997     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
1998            "Invalid SIGN_EXTEND!");
1999     if (Operand.getValueType() == VT) return Operand;   // noop extension
2000     assert(Operand.getValueType().bitsLT(VT)
2001            && "Invalid sext node, dst < src!");
2002     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2003       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
2004     break;
2005   case ISD::ZERO_EXTEND:
2006     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2007            "Invalid ZERO_EXTEND!");
2008     if (Operand.getValueType() == VT) return Operand;   // noop extension
2009     assert(Operand.getValueType().bitsLT(VT)
2010            && "Invalid zext node, dst < src!");
2011     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
2012       return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
2013     break;
2014   case ISD::ANY_EXTEND:
2015     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2016            "Invalid ANY_EXTEND!");
2017     if (Operand.getValueType() == VT) return Operand;   // noop extension
2018     assert(Operand.getValueType().bitsLT(VT)
2019            && "Invalid anyext node, dst < src!");
2020     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2021       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
2022       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
2023     break;
2024   case ISD::TRUNCATE:
2025     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2026            "Invalid TRUNCATE!");
2027     if (Operand.getValueType() == VT) return Operand;   // noop truncate
2028     assert(Operand.getValueType().bitsGT(VT)
2029            && "Invalid truncate node, src < dst!");
2030     if (OpOpcode == ISD::TRUNCATE)
2031       return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
2032     else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2033              OpOpcode == ISD::ANY_EXTEND) {
2034       // If the source is smaller than the dest, we still need an extend.
2035       if (Operand.Val->getOperand(0).getValueType().bitsLT(VT))
2036         return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
2037       else if (Operand.Val->getOperand(0).getValueType().bitsGT(VT))
2038         return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
2039       else
2040         return Operand.Val->getOperand(0);
2041     }
2042     break;
2043   case ISD::BIT_CONVERT:
2044     // Basic sanity checking.
2045     assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
2046            && "Cannot BIT_CONVERT between types of different sizes!");
2047     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
2048     if (OpOpcode == ISD::BIT_CONVERT)  // bitconv(bitconv(x)) -> bitconv(x)
2049       return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
2050     if (OpOpcode == ISD::UNDEF)
2051       return getNode(ISD::UNDEF, VT);
2052     break;
2053   case ISD::SCALAR_TO_VECTOR:
2054     assert(VT.isVector() && !Operand.getValueType().isVector() &&
2055            VT.getVectorElementType() == Operand.getValueType() &&
2056            "Illegal SCALAR_TO_VECTOR node!");
2057     if (OpOpcode == ISD::UNDEF)
2058       return getNode(ISD::UNDEF, VT);
2059     // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2060     if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2061         isa<ConstantSDNode>(Operand.getOperand(1)) &&
2062         Operand.getConstantOperandVal(1) == 0 &&
2063         Operand.getOperand(0).getValueType() == VT)
2064       return Operand.getOperand(0);
2065     break;
2066   case ISD::FNEG:
2067     if (OpOpcode == ISD::FSUB)   // -(X-Y) -> (Y-X)
2068       return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
2069                      Operand.Val->getOperand(0));
2070     if (OpOpcode == ISD::FNEG)  // --X -> X
2071       return Operand.Val->getOperand(0);
2072     break;
2073   case ISD::FABS:
2074     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
2075       return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
2076     break;
2077   }
2078
2079   SDNode *N;
2080   SDVTList VTs = getVTList(VT);
2081   if (VT != MVT::Flag) { // Don't CSE flag producing nodes
2082     FoldingSetNodeID ID;
2083     SDOperand Ops[1] = { Operand };
2084     AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
2085     void *IP = 0;
2086     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2087       return SDOperand(E, 0);
2088     N = new UnarySDNode(Opcode, VTs, Operand);
2089     CSEMap.InsertNode(N, IP);
2090   } else {
2091     N = new UnarySDNode(Opcode, VTs, Operand);
2092   }
2093   AllNodes.push_back(N);
2094   return SDOperand(N, 0);
2095 }
2096
2097
2098
2099 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
2100                                 SDOperand N1, SDOperand N2) {
2101   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2102   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2103   switch (Opcode) {
2104   default: break;
2105   case ISD::TokenFactor:
2106     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2107            N2.getValueType() == MVT::Other && "Invalid token factor!");
2108     // Fold trivial token factors.
2109     if (N1.getOpcode() == ISD::EntryToken) return N2;
2110     if (N2.getOpcode() == ISD::EntryToken) return N1;
2111     break;
2112   case ISD::AND:
2113     assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2114            N1.getValueType() == VT && "Binary operator types must match!");
2115     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
2116     // worth handling here.
2117     if (N2C && N2C->isNullValue())
2118       return N2;
2119     if (N2C && N2C->isAllOnesValue())  // X & -1 -> X
2120       return N1;
2121     break;
2122   case ISD::OR:
2123   case ISD::XOR:
2124   case ISD::ADD:
2125   case ISD::SUB:
2126     assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2127            N1.getValueType() == VT && "Binary operator types must match!");
2128     // (X ^|+- 0) -> X.  This commonly occurs when legalizing i64 values, so
2129     // it's worth handling here.
2130     if (N2C && N2C->isNullValue())
2131       return N1;
2132     break;
2133   case ISD::UDIV:
2134   case ISD::UREM:
2135   case ISD::MULHU:
2136   case ISD::MULHS:
2137     assert(VT.isInteger() && "This operator does not apply to FP types!");
2138     // fall through
2139   case ISD::MUL:
2140   case ISD::SDIV:
2141   case ISD::SREM:
2142   case ISD::FADD:
2143   case ISD::FSUB:
2144   case ISD::FMUL:
2145   case ISD::FDIV:
2146   case ISD::FREM:
2147     assert(N1.getValueType() == N2.getValueType() &&
2148            N1.getValueType() == VT && "Binary operator types must match!");
2149     break;
2150   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
2151     assert(N1.getValueType() == VT &&
2152            N1.getValueType().isFloatingPoint() &&
2153            N2.getValueType().isFloatingPoint() &&
2154            "Invalid FCOPYSIGN!");
2155     break;
2156   case ISD::SHL:
2157   case ISD::SRA:
2158   case ISD::SRL:
2159   case ISD::ROTL:
2160   case ISD::ROTR:
2161     assert(VT == N1.getValueType() &&
2162            "Shift operators return type must be the same as their first arg");
2163     assert(VT.isInteger() && N2.getValueType().isInteger() &&
2164            VT != MVT::i1 && "Shifts only work on integers");
2165     break;
2166   case ISD::FP_ROUND_INREG: {
2167     MVT EVT = cast<VTSDNode>(N2)->getVT();
2168     assert(VT == N1.getValueType() && "Not an inreg round!");
2169     assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
2170            "Cannot FP_ROUND_INREG integer types");
2171     assert(EVT.bitsLE(VT) && "Not rounding down!");
2172     if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
2173     break;
2174   }
2175   case ISD::FP_ROUND:
2176     assert(VT.isFloatingPoint() &&
2177            N1.getValueType().isFloatingPoint() &&
2178            VT.bitsLE(N1.getValueType()) &&
2179            isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
2180     if (N1.getValueType() == VT) return N1;  // noop conversion.
2181     break;
2182   case ISD::AssertSext:
2183   case ISD::AssertZext: {
2184     MVT EVT = cast<VTSDNode>(N2)->getVT();
2185     assert(VT == N1.getValueType() && "Not an inreg extend!");
2186     assert(VT.isInteger() && EVT.isInteger() &&
2187            "Cannot *_EXTEND_INREG FP types");
2188     assert(EVT.bitsLE(VT) && "Not extending!");
2189     if (VT == EVT) return N1; // noop assertion.
2190     break;
2191   }
2192   case ISD::SIGN_EXTEND_INREG: {
2193     MVT EVT = cast<VTSDNode>(N2)->getVT();
2194     assert(VT == N1.getValueType() && "Not an inreg extend!");
2195     assert(VT.isInteger() && EVT.isInteger() &&
2196            "Cannot *_EXTEND_INREG FP types");
2197     assert(EVT.bitsLE(VT) && "Not extending!");
2198     if (EVT == VT) return N1;  // Not actually extending
2199
2200     if (N1C) {
2201       APInt Val = N1C->getAPIntValue();
2202       unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
2203       Val <<= Val.getBitWidth()-FromBits;
2204       Val = Val.ashr(Val.getBitWidth()-FromBits);
2205       return getConstant(Val, VT);
2206     }
2207     break;
2208   }
2209   case ISD::EXTRACT_VECTOR_ELT:
2210     assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2211
2212     // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2213     if (N1.getOpcode() == ISD::UNDEF)
2214       return getNode(ISD::UNDEF, VT);
2215       
2216     // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2217     // expanding copies of large vectors from registers.
2218     if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2219         N1.getNumOperands() > 0) {
2220       unsigned Factor =
2221         N1.getOperand(0).getValueType().getVectorNumElements();
2222       return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2223                      N1.getOperand(N2C->getValue() / Factor),
2224                      getConstant(N2C->getValue() % Factor, N2.getValueType()));
2225     }
2226
2227     // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2228     // expanding large vector constants.
2229     if (N1.getOpcode() == ISD::BUILD_VECTOR)
2230       return N1.getOperand(N2C->getValue());
2231       
2232     // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2233     // operations are lowered to scalars.
2234     if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2235       if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2236         if (IEC == N2C)
2237           return N1.getOperand(1);
2238         else
2239           return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2240       }
2241     break;
2242   case ISD::EXTRACT_ELEMENT:
2243     assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
2244     assert(!N1.getValueType().isVector() && !VT.isVector() &&
2245            (N1.getValueType().isInteger() == VT.isInteger()) &&
2246            "Wrong types for EXTRACT_ELEMENT!");
2247
2248     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2249     // 64-bit integers into 32-bit parts.  Instead of building the extract of
2250     // the BUILD_PAIR, only to have legalize rip it apart, just do it now. 
2251     if (N1.getOpcode() == ISD::BUILD_PAIR)
2252       return N1.getOperand(N2C->getValue());
2253
2254     // EXTRACT_ELEMENT of a constant int is also very common.
2255     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2256       unsigned ElementSize = VT.getSizeInBits();
2257       unsigned Shift = ElementSize * N2C->getValue();
2258       APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2259       return getConstant(ShiftedVal.trunc(ElementSize), VT);
2260     }
2261     break;
2262   case ISD::EXTRACT_SUBVECTOR:
2263     if (N1.getValueType() == VT) // Trivial extraction.
2264       return N1;
2265     break;
2266   }
2267
2268   if (N1C) {
2269     if (N2C) {
2270       APInt C1 = N1C->getAPIntValue(), C2 = N2C->getAPIntValue();
2271       switch (Opcode) {
2272       case ISD::ADD: return getConstant(C1 + C2, VT);
2273       case ISD::SUB: return getConstant(C1 - C2, VT);
2274       case ISD::MUL: return getConstant(C1 * C2, VT);
2275       case ISD::UDIV:
2276         if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2277         break;
2278       case ISD::UREM :
2279         if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2280         break;
2281       case ISD::SDIV :
2282         if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2283         break;
2284       case ISD::SREM :
2285         if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2286         break;
2287       case ISD::AND  : return getConstant(C1 & C2, VT);
2288       case ISD::OR   : return getConstant(C1 | C2, VT);
2289       case ISD::XOR  : return getConstant(C1 ^ C2, VT);
2290       case ISD::SHL  : return getConstant(C1 << C2, VT);
2291       case ISD::SRL  : return getConstant(C1.lshr(C2), VT);
2292       case ISD::SRA  : return getConstant(C1.ashr(C2), VT);
2293       case ISD::ROTL : return getConstant(C1.rotl(C2), VT);
2294       case ISD::ROTR : return getConstant(C1.rotr(C2), VT);
2295       default: break;
2296       }
2297     } else {      // Cannonicalize constant to RHS if commutative
2298       if (isCommutativeBinOp(Opcode)) {
2299         std::swap(N1C, N2C);
2300         std::swap(N1, N2);
2301       }
2302     }
2303   }
2304
2305   // Constant fold FP operations.
2306   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
2307   ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
2308   if (N1CFP) {
2309     if (!N2CFP && isCommutativeBinOp(Opcode)) {
2310       // Cannonicalize constant to RHS if commutative
2311       std::swap(N1CFP, N2CFP);
2312       std::swap(N1, N2);
2313     } else if (N2CFP && VT != MVT::ppcf128) {
2314       APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2315       APFloat::opStatus s;
2316       switch (Opcode) {
2317       case ISD::FADD: 
2318         s = V1.add(V2, APFloat::rmNearestTiesToEven);
2319         if (s != APFloat::opInvalidOp)
2320           return getConstantFP(V1, VT);
2321         break;
2322       case ISD::FSUB: 
2323         s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2324         if (s!=APFloat::opInvalidOp)
2325           return getConstantFP(V1, VT);
2326         break;
2327       case ISD::FMUL:
2328         s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2329         if (s!=APFloat::opInvalidOp)
2330           return getConstantFP(V1, VT);
2331         break;
2332       case ISD::FDIV:
2333         s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2334         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2335           return getConstantFP(V1, VT);
2336         break;
2337       case ISD::FREM :
2338         s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2339         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2340           return getConstantFP(V1, VT);
2341         break;
2342       case ISD::FCOPYSIGN:
2343         V1.copySign(V2);
2344         return getConstantFP(V1, VT);
2345       default: break;
2346       }
2347     }
2348   }
2349   
2350   // Canonicalize an UNDEF to the RHS, even over a constant.
2351   if (N1.getOpcode() == ISD::UNDEF) {
2352     if (isCommutativeBinOp(Opcode)) {
2353       std::swap(N1, N2);
2354     } else {
2355       switch (Opcode) {
2356       case ISD::FP_ROUND_INREG:
2357       case ISD::SIGN_EXTEND_INREG:
2358       case ISD::SUB:
2359       case ISD::FSUB:
2360       case ISD::FDIV:
2361       case ISD::FREM:
2362       case ISD::SRA:
2363         return N1;     // fold op(undef, arg2) -> undef
2364       case ISD::UDIV:
2365       case ISD::SDIV:
2366       case ISD::UREM:
2367       case ISD::SREM:
2368       case ISD::SRL:
2369       case ISD::SHL:
2370         if (!VT.isVector())
2371           return getConstant(0, VT);    // fold op(undef, arg2) -> 0
2372         // For vectors, we can't easily build an all zero vector, just return
2373         // the LHS.
2374         return N2;
2375       }
2376     }
2377   }
2378   
2379   // Fold a bunch of operators when the RHS is undef. 
2380   if (N2.getOpcode() == ISD::UNDEF) {
2381     switch (Opcode) {
2382     case ISD::XOR:
2383       if (N1.getOpcode() == ISD::UNDEF)
2384         // Handle undef ^ undef -> 0 special case. This is a common
2385         // idiom (misuse).
2386         return getConstant(0, VT);
2387       // fallthrough
2388     case ISD::ADD:
2389     case ISD::ADDC:
2390     case ISD::ADDE:
2391     case ISD::SUB:
2392     case ISD::FADD:
2393     case ISD::FSUB:
2394     case ISD::FMUL:
2395     case ISD::FDIV:
2396     case ISD::FREM:
2397     case ISD::UDIV:
2398     case ISD::SDIV:
2399     case ISD::UREM:
2400     case ISD::SREM:
2401       return N2;       // fold op(arg1, undef) -> undef
2402     case ISD::MUL: 
2403     case ISD::AND:
2404     case ISD::SRL:
2405     case ISD::SHL:
2406       if (!VT.isVector())
2407         return getConstant(0, VT);  // fold op(arg1, undef) -> 0
2408       // For vectors, we can't easily build an all zero vector, just return
2409       // the LHS.
2410       return N1;
2411     case ISD::OR:
2412       if (!VT.isVector())
2413         return getConstant(VT.getIntegerVTBitMask(), VT);
2414       // For vectors, we can't easily build an all one vector, just return
2415       // the LHS.
2416       return N1;
2417     case ISD::SRA:
2418       return N1;
2419     }
2420   }
2421
2422   // Memoize this node if possible.
2423   SDNode *N;
2424   SDVTList VTs = getVTList(VT);
2425   if (VT != MVT::Flag) {
2426     SDOperand Ops[] = { N1, N2 };
2427     FoldingSetNodeID ID;
2428     AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
2429     void *IP = 0;
2430     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2431       return SDOperand(E, 0);
2432     N = new BinarySDNode(Opcode, VTs, N1, N2);
2433     CSEMap.InsertNode(N, IP);
2434   } else {
2435     N = new BinarySDNode(Opcode, VTs, N1, N2);
2436   }
2437
2438   AllNodes.push_back(N);
2439   return SDOperand(N, 0);
2440 }
2441
2442 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
2443                                 SDOperand N1, SDOperand N2, SDOperand N3) {
2444   // Perform various simplifications.
2445   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2446   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2447   switch (Opcode) {
2448   case ISD::SETCC: {
2449     // Use FoldSetCC to simplify SETCC's.
2450     SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
2451     if (Simp.Val) return Simp;
2452     break;
2453   }
2454   case ISD::SELECT:
2455     if (N1C) {
2456      if (N1C->getValue())
2457         return N2;             // select true, X, Y -> X
2458       else
2459         return N3;             // select false, X, Y -> Y
2460     }
2461
2462     if (N2 == N3) return N2;   // select C, X, X -> X
2463     break;
2464   case ISD::BRCOND:
2465     if (N2C) {
2466       if (N2C->getValue()) // Unconditional branch
2467         return getNode(ISD::BR, MVT::Other, N1, N3);
2468       else
2469         return N1;         // Never-taken branch
2470     }
2471     break;
2472   case ISD::VECTOR_SHUFFLE:
2473     assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2474            VT.isVector() && N3.getValueType().isVector() &&
2475            N3.getOpcode() == ISD::BUILD_VECTOR &&
2476            VT.getVectorNumElements() == N3.getNumOperands() &&
2477            "Illegal VECTOR_SHUFFLE node!");
2478     break;
2479   case ISD::BIT_CONVERT:
2480     // Fold bit_convert nodes from a type to themselves.
2481     if (N1.getValueType() == VT)
2482       return N1;
2483     break;
2484   }
2485
2486   // Memoize node if it doesn't produce a flag.
2487   SDNode *N;
2488   SDVTList VTs = getVTList(VT);
2489   if (VT != MVT::Flag) {
2490     SDOperand Ops[] = { N1, N2, N3 };
2491     FoldingSetNodeID ID;
2492     AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2493     void *IP = 0;
2494     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2495       return SDOperand(E, 0);
2496     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2497     CSEMap.InsertNode(N, IP);
2498   } else {
2499     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2500   }
2501   AllNodes.push_back(N);
2502   return SDOperand(N, 0);
2503 }
2504
2505 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
2506                                 SDOperand N1, SDOperand N2, SDOperand N3,
2507                                 SDOperand N4) {
2508   SDOperand Ops[] = { N1, N2, N3, N4 };
2509   return getNode(Opcode, VT, Ops, 4);
2510 }
2511
2512 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
2513                                 SDOperand N1, SDOperand N2, SDOperand N3,
2514                                 SDOperand N4, SDOperand N5) {
2515   SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2516   return getNode(Opcode, VT, Ops, 5);
2517 }
2518
2519 /// getMemsetValue - Vectorized representation of the memset value
2520 /// operand.
2521 static SDOperand getMemsetValue(SDOperand Value, MVT VT, SelectionDAG &DAG) {
2522   unsigned NumBits = VT.isVector() ?
2523     VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
2524   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2525     APInt Val = APInt(NumBits, C->getValue() & 255);
2526     unsigned Shift = 8;
2527     for (unsigned i = NumBits; i > 8; i >>= 1) {
2528       Val = (Val << Shift) | Val;
2529       Shift <<= 1;
2530     }
2531     if (VT.isInteger())
2532       return DAG.getConstant(Val, VT);
2533     return DAG.getConstantFP(APFloat(Val), VT);
2534   }
2535
2536   Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2537   unsigned Shift = 8;
2538   for (unsigned i = NumBits; i > 8; i >>= 1) {
2539     Value = DAG.getNode(ISD::OR, VT,
2540                         DAG.getNode(ISD::SHL, VT, Value,
2541                                     DAG.getConstant(Shift, MVT::i8)), Value);
2542     Shift <<= 1;
2543   }
2544
2545   return Value;
2546 }
2547
2548 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2549 /// used when a memcpy is turned into a memset when the source is a constant
2550 /// string ptr.
2551 static SDOperand getMemsetStringVal(MVT VT, SelectionDAG &DAG,
2552                                     const TargetLowering &TLI,
2553                                     std::string &Str, unsigned Offset) {
2554   // Handle vector with all elements zero.
2555   if (Str.empty()) {
2556     if (VT.isInteger())
2557       return DAG.getConstant(0, VT);
2558     unsigned NumElts = VT.getVectorNumElements();
2559     MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2560     return DAG.getNode(ISD::BIT_CONVERT, VT,
2561                        DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2562   }
2563
2564   assert(!VT.isVector() && "Can't handle vector type here!");
2565   unsigned NumBits = VT.getSizeInBits();
2566   unsigned MSB = NumBits / 8;
2567   uint64_t Val = 0;
2568   if (TLI.isLittleEndian())
2569     Offset = Offset + MSB - 1;
2570   for (unsigned i = 0; i != MSB; ++i) {
2571     Val = (Val << 8) | (unsigned char)Str[Offset];
2572     Offset += TLI.isLittleEndian() ? -1 : 1;
2573   }
2574   return DAG.getConstant(Val, VT);
2575 }
2576
2577 /// getMemBasePlusOffset - Returns base and offset node for the 
2578 ///
2579 static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2580                                       SelectionDAG &DAG) {
2581   MVT VT = Base.getValueType();
2582   return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2583 }
2584
2585 /// isMemSrcFromString - Returns true if memcpy source is a string constant.
2586 ///
2587 static bool isMemSrcFromString(SDOperand Src, std::string &Str) {
2588   unsigned SrcDelta = 0;
2589   GlobalAddressSDNode *G = NULL;
2590   if (Src.getOpcode() == ISD::GlobalAddress)
2591     G = cast<GlobalAddressSDNode>(Src);
2592   else if (Src.getOpcode() == ISD::ADD &&
2593            Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2594            Src.getOperand(1).getOpcode() == ISD::Constant) {
2595     G = cast<GlobalAddressSDNode>(Src.getOperand(0));
2596     SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getValue();
2597   }
2598   if (!G)
2599     return false;
2600
2601   GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
2602   if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2603     return true;
2604
2605   return false;
2606 }
2607
2608 /// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2609 /// to replace the memset / memcpy is below the threshold. It also returns the
2610 /// types of the sequence of memory ops to perform memset / memcpy.
2611 static
2612 bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
2613                               SDOperand Dst, SDOperand Src,
2614                               unsigned Limit, uint64_t Size, unsigned &Align,
2615                               std::string &Str, bool &isSrcStr,
2616                               SelectionDAG &DAG,
2617                               const TargetLowering &TLI) {
2618   isSrcStr = isMemSrcFromString(Src, Str);
2619   bool isSrcConst = isa<ConstantSDNode>(Src);
2620   bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
2621   MVT VT= TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
2622   if (VT != MVT::iAny) {
2623     unsigned NewAlign = (unsigned)
2624       TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
2625     // If source is a string constant, this will require an unaligned load.
2626     if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2627       if (Dst.getOpcode() != ISD::FrameIndex) {
2628         // Can't change destination alignment. It requires a unaligned store.
2629         if (AllowUnalign)
2630           VT = MVT::iAny;
2631       } else {
2632         int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2633         MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2634         if (MFI->isFixedObjectIndex(FI)) {
2635           // Can't change destination alignment. It requires a unaligned store.
2636           if (AllowUnalign)
2637             VT = MVT::iAny;
2638         } else {
2639           // Give the stack frame object a larger alignment if needed.
2640           if (MFI->getObjectAlignment(FI) < NewAlign)
2641             MFI->setObjectAlignment(FI, NewAlign);
2642           Align = NewAlign;
2643         }
2644       }
2645     }
2646   }
2647
2648   if (VT == MVT::iAny) {
2649     if (AllowUnalign) {
2650       VT = MVT::i64;
2651     } else {
2652       switch (Align & 7) {
2653       case 0:  VT = MVT::i64; break;
2654       case 4:  VT = MVT::i32; break;
2655       case 2:  VT = MVT::i16; break;
2656       default: VT = MVT::i8;  break;
2657       }
2658     }
2659
2660     MVT LVT = MVT::i64;
2661     while (!TLI.isTypeLegal(LVT))
2662       LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2663     assert(LVT.isInteger());
2664
2665     if (VT.bitsGT(LVT))
2666       VT = LVT;
2667   }
2668
2669   unsigned NumMemOps = 0;
2670   while (Size != 0) {
2671     unsigned VTSize = VT.getSizeInBits() / 8;
2672     while (VTSize > Size) {
2673       // For now, only use non-vector load / store's for the left-over pieces.
2674       if (VT.isVector()) {
2675         VT = MVT::i64;
2676         while (!TLI.isTypeLegal(VT))
2677           VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2678         VTSize = VT.getSizeInBits() / 8;
2679       } else {
2680         VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2681         VTSize >>= 1;
2682       }
2683     }
2684
2685     if (++NumMemOps > Limit)
2686       return false;
2687     MemOps.push_back(VT);
2688     Size -= VTSize;
2689   }
2690
2691   return true;
2692 }
2693
2694 static SDOperand getMemcpyLoadsAndStores(SelectionDAG &DAG,
2695                                          SDOperand Chain, SDOperand Dst,
2696                                          SDOperand Src, uint64_t Size,
2697                                          unsigned Align, bool AlwaysInline,
2698                                          const Value *DstSV, uint64_t DstSVOff,
2699                                          const Value *SrcSV, uint64_t SrcSVOff){
2700   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2701
2702   // Expand memcpy to a series of load and store ops if the size operand falls
2703   // below a certain threshold.
2704   std::vector<MVT> MemOps;
2705   uint64_t Limit = -1;
2706   if (!AlwaysInline)
2707     Limit = TLI.getMaxStoresPerMemcpy();
2708   unsigned DstAlign = Align;  // Destination alignment can change.
2709   std::string Str;
2710   bool CopyFromStr;
2711   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
2712                                 Str, CopyFromStr, DAG, TLI))
2713     return SDOperand();
2714
2715
2716   bool isZeroStr = CopyFromStr && Str.empty();
2717   SmallVector<SDOperand, 8> OutChains;
2718   unsigned NumMemOps = MemOps.size();
2719   uint64_t SrcOff = 0, DstOff = 0;
2720   for (unsigned i = 0; i < NumMemOps; i++) {
2721     MVT VT = MemOps[i];
2722     unsigned VTSize = VT.getSizeInBits() / 8;
2723     SDOperand Value, Store;
2724
2725     if (CopyFromStr && (isZeroStr || !VT.isVector())) {
2726       // It's unlikely a store of a vector immediate can be done in a single
2727       // instruction. It would require a load from a constantpool first.
2728       // We also handle store a vector with all zero's.
2729       // FIXME: Handle other cases where store of vector immediate is done in
2730       // a single instruction.
2731       Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2732       Store = DAG.getStore(Chain, Value,
2733                            getMemBasePlusOffset(Dst, DstOff, DAG),
2734                            DstSV, DstSVOff + DstOff);
2735     } else {
2736       Value = DAG.getLoad(VT, Chain,
2737                           getMemBasePlusOffset(Src, SrcOff, DAG),
2738                           SrcSV, SrcSVOff + SrcOff, false, Align);
2739       Store = DAG.getStore(Chain, Value,
2740                            getMemBasePlusOffset(Dst, DstOff, DAG),
2741                            DstSV, DstSVOff + DstOff, false, DstAlign);
2742     }
2743     OutChains.push_back(Store);
2744     SrcOff += VTSize;
2745     DstOff += VTSize;
2746   }
2747
2748   return DAG.getNode(ISD::TokenFactor, MVT::Other,
2749                      &OutChains[0], OutChains.size());
2750 }
2751
2752 static SDOperand getMemmoveLoadsAndStores(SelectionDAG &DAG,
2753                                           SDOperand Chain, SDOperand Dst,
2754                                           SDOperand Src, uint64_t Size,
2755                                           unsigned Align, bool AlwaysInline,
2756                                           const Value *DstSV, uint64_t DstSVOff,
2757                                           const Value *SrcSV, uint64_t SrcSVOff){
2758   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2759
2760   // Expand memmove to a series of load and store ops if the size operand falls
2761   // below a certain threshold.
2762   std::vector<MVT> MemOps;
2763   uint64_t Limit = -1;
2764   if (!AlwaysInline)
2765     Limit = TLI.getMaxStoresPerMemmove();
2766   unsigned DstAlign = Align;  // Destination alignment can change.
2767   std::string Str;
2768   bool CopyFromStr;
2769   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
2770                                 Str, CopyFromStr, DAG, TLI))
2771     return SDOperand();
2772
2773   uint64_t SrcOff = 0, DstOff = 0;
2774
2775   SmallVector<SDOperand, 8> LoadValues;
2776   SmallVector<SDOperand, 8> LoadChains;
2777   SmallVector<SDOperand, 8> OutChains;
2778   unsigned NumMemOps = MemOps.size();
2779   for (unsigned i = 0; i < NumMemOps; i++) {
2780     MVT VT = MemOps[i];
2781     unsigned VTSize = VT.getSizeInBits() / 8;
2782     SDOperand Value, Store;
2783
2784     Value = DAG.getLoad(VT, Chain,
2785                         getMemBasePlusOffset(Src, SrcOff, DAG),
2786                         SrcSV, SrcSVOff + SrcOff, false, Align);
2787     LoadValues.push_back(Value);
2788     LoadChains.push_back(Value.getValue(1));
2789     SrcOff += VTSize;
2790   }
2791   Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2792                       &LoadChains[0], LoadChains.size());
2793   OutChains.clear();
2794   for (unsigned i = 0; i < NumMemOps; i++) {
2795     MVT VT = MemOps[i];
2796     unsigned VTSize = VT.getSizeInBits() / 8;
2797     SDOperand Value, Store;
2798
2799     Store = DAG.getStore(Chain, LoadValues[i],
2800                          getMemBasePlusOffset(Dst, DstOff, DAG),
2801                          DstSV, DstSVOff + DstOff, false, DstAlign);
2802     OutChains.push_back(Store);
2803     DstOff += VTSize;
2804   }
2805
2806   return DAG.getNode(ISD::TokenFactor, MVT::Other,
2807                      &OutChains[0], OutChains.size());
2808 }
2809
2810 static SDOperand getMemsetStores(SelectionDAG &DAG,
2811                                  SDOperand Chain, SDOperand Dst,
2812                                  SDOperand Src, uint64_t Size,
2813                                  unsigned Align,
2814                                  const Value *DstSV, uint64_t DstSVOff) {
2815   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2816
2817   // Expand memset to a series of load/store ops if the size operand
2818   // falls below a certain threshold.
2819   std::vector<MVT> MemOps;
2820   std::string Str;
2821   bool CopyFromStr;
2822   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
2823                                 Size, Align, Str, CopyFromStr, DAG, TLI))
2824     return SDOperand();
2825
2826   SmallVector<SDOperand, 8> OutChains;
2827   uint64_t DstOff = 0;
2828
2829   unsigned NumMemOps = MemOps.size();
2830   for (unsigned i = 0; i < NumMemOps; i++) {
2831     MVT VT = MemOps[i];
2832     unsigned VTSize = VT.getSizeInBits() / 8;
2833     SDOperand Value = getMemsetValue(Src, VT, DAG);
2834     SDOperand Store = DAG.getStore(Chain, Value,
2835                                    getMemBasePlusOffset(Dst, DstOff, DAG),
2836                                    DstSV, DstSVOff + DstOff);
2837     OutChains.push_back(Store);
2838     DstOff += VTSize;
2839   }
2840
2841   return DAG.getNode(ISD::TokenFactor, MVT::Other,
2842                      &OutChains[0], OutChains.size());
2843 }
2844
2845 SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dst,
2846                                   SDOperand Src, SDOperand Size,
2847                                   unsigned Align, bool AlwaysInline,
2848                                   const Value *DstSV, uint64_t DstSVOff,
2849                                   const Value *SrcSV, uint64_t SrcSVOff) {
2850
2851   // Check to see if we should lower the memcpy to loads and stores first.
2852   // For cases within the target-specified limits, this is the best choice.
2853   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2854   if (ConstantSize) {
2855     // Memcpy with size zero? Just return the original chain.
2856     if (ConstantSize->isNullValue())
2857       return Chain;
2858
2859     SDOperand Result =
2860       getMemcpyLoadsAndStores(*this, Chain, Dst, Src, ConstantSize->getValue(),
2861                               Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
2862     if (Result.Val)
2863       return Result;
2864   }
2865
2866   // Then check to see if we should lower the memcpy with target-specific
2867   // code. If the target chooses to do this, this is the next best.
2868   SDOperand Result =
2869     TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
2870                                 AlwaysInline,
2871                                 DstSV, DstSVOff, SrcSV, SrcSVOff);
2872   if (Result.Val)
2873     return Result;
2874
2875   // If we really need inline code and the target declined to provide it,
2876   // use a (potentially long) sequence of loads and stores.
2877   if (AlwaysInline) {
2878     assert(ConstantSize && "AlwaysInline requires a constant size!");
2879     return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
2880                                    ConstantSize->getValue(), Align, true,
2881                                    DstSV, DstSVOff, SrcSV, SrcSVOff);
2882   }
2883
2884   // Emit a library call.
2885   TargetLowering::ArgListTy Args;
2886   TargetLowering::ArgListEntry Entry;
2887   Entry.Ty = TLI.getTargetData()->getIntPtrType();
2888   Entry.Node = Dst; Args.push_back(Entry);
2889   Entry.Node = Src; Args.push_back(Entry);
2890   Entry.Node = Size; Args.push_back(Entry);
2891   std::pair<SDOperand,SDOperand> CallResult =
2892     TLI.LowerCallTo(Chain, Type::VoidTy,
2893                     false, false, false, CallingConv::C, false,
2894                     getExternalSymbol("memcpy", TLI.getPointerTy()),
2895                     Args, *this);
2896   return CallResult.second;
2897 }
2898
2899 SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dst,
2900                                    SDOperand Src, SDOperand Size,
2901                                    unsigned Align,
2902                                    const Value *DstSV, uint64_t DstSVOff,
2903                                    const Value *SrcSV, uint64_t SrcSVOff) {
2904
2905   // Check to see if we should lower the memmove to loads and stores first.
2906   // For cases within the target-specified limits, this is the best choice.
2907   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2908   if (ConstantSize) {
2909     // Memmove with size zero? Just return the original chain.
2910     if (ConstantSize->isNullValue())
2911       return Chain;
2912
2913     SDOperand Result =
2914       getMemmoveLoadsAndStores(*this, Chain, Dst, Src, ConstantSize->getValue(),
2915                                Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
2916     if (Result.Val)
2917       return Result;
2918   }
2919
2920   // Then check to see if we should lower the memmove with target-specific
2921   // code. If the target chooses to do this, this is the next best.
2922   SDOperand Result =
2923     TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
2924                                  DstSV, DstSVOff, SrcSV, SrcSVOff);
2925   if (Result.Val)
2926     return Result;
2927
2928   // Emit a library call.
2929   TargetLowering::ArgListTy Args;
2930   TargetLowering::ArgListEntry Entry;
2931   Entry.Ty = TLI.getTargetData()->getIntPtrType();
2932   Entry.Node = Dst; Args.push_back(Entry);
2933   Entry.Node = Src; Args.push_back(Entry);
2934   Entry.Node = Size; Args.push_back(Entry);
2935   std::pair<SDOperand,SDOperand> CallResult =
2936     TLI.LowerCallTo(Chain, Type::VoidTy,
2937                     false, false, false, CallingConv::C, false,
2938                     getExternalSymbol("memmove", TLI.getPointerTy()),
2939                     Args, *this);
2940   return CallResult.second;
2941 }
2942
2943 SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dst,
2944                                   SDOperand Src, SDOperand Size,
2945                                   unsigned Align,
2946                                   const Value *DstSV, uint64_t DstSVOff) {
2947
2948   // Check to see if we should lower the memset to stores first.
2949   // For cases within the target-specified limits, this is the best choice.
2950   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
2951   if (ConstantSize) {
2952     // Memset with size zero? Just return the original chain.
2953     if (ConstantSize->isNullValue())
2954       return Chain;
2955
2956     SDOperand Result =
2957       getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getValue(), Align,
2958                       DstSV, DstSVOff);
2959     if (Result.Val)
2960       return Result;
2961   }
2962
2963   // Then check to see if we should lower the memset with target-specific
2964   // code. If the target chooses to do this, this is the next best.
2965   SDOperand Result =
2966     TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
2967                                 DstSV, DstSVOff);
2968   if (Result.Val)
2969     return Result;
2970
2971   // Emit a library call.
2972   const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
2973   TargetLowering::ArgListTy Args;
2974   TargetLowering::ArgListEntry Entry;
2975   Entry.Node = Dst; Entry.Ty = IntPtrTy;
2976   Args.push_back(Entry);
2977   // Extend or truncate the argument to be an i32 value for the call.
2978   if (Src.getValueType().bitsGT(MVT::i32))
2979     Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
2980   else
2981     Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
2982   Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
2983   Args.push_back(Entry);
2984   Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
2985   Args.push_back(Entry);
2986   std::pair<SDOperand,SDOperand> CallResult =
2987     TLI.LowerCallTo(Chain, Type::VoidTy,
2988                     false, false, false, CallingConv::C, false,
2989                     getExternalSymbol("memset", TLI.getPointerTy()),
2990                     Args, *this);
2991   return CallResult.second;
2992 }
2993
2994 SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain, 
2995                                   SDOperand Ptr, SDOperand Cmp, 
2996                                   SDOperand Swp, const Value* PtrVal,
2997                                   unsigned Alignment) {
2998   assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
2999   assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
3000   SDVTList VTs = getVTList(Cmp.getValueType(), MVT::Other);
3001   FoldingSetNodeID ID;
3002   SDOperand Ops[] = {Chain, Ptr, Cmp, Swp};
3003   AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
3004   void* IP = 0;
3005   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3006     return SDOperand(E, 0);
3007   SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp,
3008                                PtrVal, Alignment);
3009   CSEMap.InsertNode(N, IP);
3010   AllNodes.push_back(N);
3011   return SDOperand(N, 0);
3012 }
3013
3014 SDOperand SelectionDAG::getAtomic(unsigned Opcode, SDOperand Chain, 
3015                                   SDOperand Ptr, SDOperand Val, 
3016                                   const Value* PtrVal,
3017                                   unsigned Alignment) {
3018   assert((   Opcode == ISD::ATOMIC_LOAD_ADD || Opcode == ISD::ATOMIC_LOAD_SUB
3019           || Opcode == ISD::ATOMIC_SWAP || Opcode == ISD::ATOMIC_LOAD_AND
3020           || Opcode == ISD::ATOMIC_LOAD_OR || Opcode == ISD::ATOMIC_LOAD_XOR
3021           || Opcode == ISD::ATOMIC_LOAD_NAND 
3022           || Opcode == ISD::ATOMIC_LOAD_MIN || Opcode == ISD::ATOMIC_LOAD_MAX
3023           || Opcode == ISD::ATOMIC_LOAD_UMIN || Opcode == ISD::ATOMIC_LOAD_UMAX) 
3024          && "Invalid Atomic Op");
3025   SDVTList VTs = getVTList(Val.getValueType(), MVT::Other);
3026   FoldingSetNodeID ID;
3027   SDOperand Ops[] = {Chain, Ptr, Val};
3028   AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
3029   void* IP = 0;
3030   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3031     return SDOperand(E, 0);
3032   SDNode* N = new AtomicSDNode(Opcode, VTs, Chain, Ptr, Val,
3033                                PtrVal, Alignment);
3034   CSEMap.InsertNode(N, IP);
3035   AllNodes.push_back(N);
3036   return SDOperand(N, 0);
3037 }
3038
3039 SDOperand
3040 SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
3041                       MVT VT, SDOperand Chain,
3042                       SDOperand Ptr, SDOperand Offset,
3043                       const Value *SV, int SVOffset, MVT EVT,
3044                       bool isVolatile, unsigned Alignment) {
3045   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3046     const Type *Ty = 0;
3047     if (VT != MVT::iPTR) {
3048       Ty = VT.getTypeForMVT();
3049     } else if (SV) {
3050       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3051       assert(PT && "Value for load must be a pointer");
3052       Ty = PT->getElementType();
3053     }
3054     assert(Ty && "Could not get type information for load");
3055     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3056   }
3057
3058   if (VT == EVT) {
3059     ExtType = ISD::NON_EXTLOAD;
3060   } else if (ExtType == ISD::NON_EXTLOAD) {
3061     assert(VT == EVT && "Non-extending load from different memory type!");
3062   } else {
3063     // Extending load.
3064     if (VT.isVector())
3065       assert(EVT == VT.getVectorElementType() && "Invalid vector extload!");
3066     else
3067       assert(EVT.bitsLT(VT) &&
3068              "Should only be an extending load, not truncating!");
3069     assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
3070            "Cannot sign/zero extend a FP/Vector load!");
3071     assert(VT.isInteger() == EVT.isInteger() &&
3072            "Cannot convert from FP to Int or Int -> FP!");
3073   }
3074
3075   bool Indexed = AM != ISD::UNINDEXED;
3076   assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
3077          "Unindexed load with an offset!");
3078
3079   SDVTList VTs = Indexed ?
3080     getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
3081   SDOperand Ops[] = { Chain, Ptr, Offset };
3082   FoldingSetNodeID ID;
3083   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
3084   ID.AddInteger(AM);
3085   ID.AddInteger(ExtType);
3086   ID.AddInteger(EVT.getRawBits());
3087   ID.AddInteger(Alignment);
3088   ID.AddInteger(isVolatile);
3089   void *IP = 0;
3090   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3091     return SDOperand(E, 0);
3092   SDNode *N = new LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3093                              Alignment, isVolatile);
3094   CSEMap.InsertNode(N, IP);
3095   AllNodes.push_back(N);
3096   return SDOperand(N, 0);
3097 }
3098
3099 SDOperand SelectionDAG::getLoad(MVT VT,
3100                                 SDOperand Chain, SDOperand Ptr,
3101                                 const Value *SV, int SVOffset,
3102                                 bool isVolatile, unsigned Alignment) {
3103   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3104   return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3105                  SV, SVOffset, VT, isVolatile, Alignment);
3106 }
3107
3108 SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3109                                    SDOperand Chain, SDOperand Ptr,
3110                                    const Value *SV,
3111                                    int SVOffset, MVT EVT,
3112                                    bool isVolatile, unsigned Alignment) {
3113   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3114   return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3115                  SV, SVOffset, EVT, isVolatile, Alignment);
3116 }
3117
3118 SDOperand
3119 SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
3120                              SDOperand Offset, ISD::MemIndexedMode AM) {
3121   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
3122   assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3123          "Load is already a indexed load!");
3124   return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3125                  LD->getChain(), Base, Offset, LD->getSrcValue(),
3126                  LD->getSrcValueOffset(), LD->getMemoryVT(),
3127                  LD->isVolatile(), LD->getAlignment());
3128 }
3129
3130 SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
3131                                  SDOperand Ptr, const Value *SV, int SVOffset,
3132                                  bool isVolatile, unsigned Alignment) {
3133   MVT VT = Val.getValueType();
3134
3135   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3136     const Type *Ty = 0;
3137     if (VT != MVT::iPTR) {
3138       Ty = VT.getTypeForMVT();
3139     } else if (SV) {
3140       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3141       assert(PT && "Value for store must be a pointer");
3142       Ty = PT->getElementType();
3143     }
3144     assert(Ty && "Could not get type information for store");
3145     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3146   }
3147   SDVTList VTs = getVTList(MVT::Other);
3148   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3149   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
3150   FoldingSetNodeID ID;
3151   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3152   ID.AddInteger(ISD::UNINDEXED);
3153   ID.AddInteger(false);
3154   ID.AddInteger(VT.getRawBits());
3155   ID.AddInteger(Alignment);
3156   ID.AddInteger(isVolatile);
3157   void *IP = 0;
3158   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3159     return SDOperand(E, 0);
3160   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3161                               VT, SV, SVOffset, Alignment, isVolatile);
3162   CSEMap.InsertNode(N, IP);
3163   AllNodes.push_back(N);
3164   return SDOperand(N, 0);
3165 }
3166
3167 SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
3168                                       SDOperand Ptr, const Value *SV,
3169                                       int SVOffset, MVT SVT,
3170                                       bool isVolatile, unsigned Alignment) {
3171   MVT VT = Val.getValueType();
3172
3173   if (VT == SVT)
3174     return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
3175
3176   assert(VT.bitsGT(SVT) && "Not a truncation?");
3177   assert(VT.isInteger() == SVT.isInteger() &&
3178          "Can't do FP-INT conversion!");
3179
3180   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
3181     const Type *Ty = 0;
3182     if (VT != MVT::iPTR) {
3183       Ty = VT.getTypeForMVT();
3184     } else if (SV) {
3185       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
3186       assert(PT && "Value for store must be a pointer");
3187       Ty = PT->getElementType();
3188     }
3189     assert(Ty && "Could not get type information for store");
3190     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
3191   }
3192   SDVTList VTs = getVTList(MVT::Other);
3193   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3194   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
3195   FoldingSetNodeID ID;
3196   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3197   ID.AddInteger(ISD::UNINDEXED);
3198   ID.AddInteger(1);
3199   ID.AddInteger(SVT.getRawBits());
3200   ID.AddInteger(Alignment);
3201   ID.AddInteger(isVolatile);
3202   void *IP = 0;
3203   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3204     return SDOperand(E, 0);
3205   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3206                               SVT, SV, SVOffset, Alignment, isVolatile);
3207   CSEMap.InsertNode(N, IP);
3208   AllNodes.push_back(N);
3209   return SDOperand(N, 0);
3210 }
3211
3212 SDOperand
3213 SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
3214                               SDOperand Offset, ISD::MemIndexedMode AM) {
3215   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3216   assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3217          "Store is already a indexed store!");
3218   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
3219   SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
3220   FoldingSetNodeID ID;
3221   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3222   ID.AddInteger(AM);
3223   ID.AddInteger(ST->isTruncatingStore());
3224   ID.AddInteger(ST->getMemoryVT().getRawBits());
3225   ID.AddInteger(ST->getAlignment());
3226   ID.AddInteger(ST->isVolatile());
3227   void *IP = 0;
3228   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3229     return SDOperand(E, 0);
3230   SDNode *N = new StoreSDNode(Ops, VTs, AM,
3231                               ST->isTruncatingStore(), ST->getMemoryVT(),
3232                               ST->getSrcValue(), ST->getSrcValueOffset(),
3233                               ST->getAlignment(), ST->isVolatile());
3234   CSEMap.InsertNode(N, IP);
3235   AllNodes.push_back(N);
3236   return SDOperand(N, 0);
3237 }
3238
3239 SDOperand SelectionDAG::getVAArg(MVT VT,
3240                                  SDOperand Chain, SDOperand Ptr,
3241                                  SDOperand SV) {
3242   SDOperand Ops[] = { Chain, Ptr, SV };
3243   return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
3244 }
3245
3246 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT VT,
3247                                 SDOperandPtr Ops, unsigned NumOps) {
3248   switch (NumOps) {
3249   case 0: return getNode(Opcode, VT);
3250   case 1: return getNode(Opcode, VT, Ops[0]);
3251   case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3252   case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
3253   default: break;
3254   }
3255   
3256   switch (Opcode) {
3257   default: break;
3258   case ISD::SELECT_CC: {
3259     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
3260     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3261            "LHS and RHS of condition must have same type!");
3262     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3263            "True and False arms of SelectCC must have same type!");
3264     assert(Ops[2].getValueType() == VT &&
3265            "select_cc node must be of same type as true and false value!");
3266     break;
3267   }
3268   case ISD::BR_CC: {
3269     assert(NumOps == 5 && "BR_CC takes 5 operands!");
3270     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3271            "LHS/RHS of comparison should match types!");
3272     break;
3273   }
3274   }
3275
3276   // Memoize nodes.
3277   SDNode *N;
3278   SDVTList VTs = getVTList(VT);
3279   if (VT != MVT::Flag) {
3280     FoldingSetNodeID ID;
3281     AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
3282     void *IP = 0;
3283     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3284       return SDOperand(E, 0);
3285     N = new SDNode(Opcode, VTs, Ops, NumOps);
3286     CSEMap.InsertNode(N, IP);
3287   } else {
3288     N = new SDNode(Opcode, VTs, Ops, NumOps);
3289   }
3290   AllNodes.push_back(N);
3291   return SDOperand(N, 0);
3292 }
3293
3294 SDOperand SelectionDAG::getNode(unsigned Opcode,
3295                                 std::vector<MVT> &ResultTys,
3296                                 SDOperandPtr Ops, unsigned NumOps) {
3297   return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3298                  Ops, NumOps);
3299 }
3300
3301 SDOperand SelectionDAG::getNode(unsigned Opcode,
3302                                 const MVT *VTs, unsigned NumVTs,
3303                                 SDOperandPtr Ops, unsigned NumOps) {
3304   if (NumVTs == 1)
3305     return getNode(Opcode, VTs[0], Ops, NumOps);
3306   return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3307 }  
3308   
3309 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3310                                 SDOperandPtr Ops, unsigned NumOps) {
3311   if (VTList.NumVTs == 1)
3312     return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
3313
3314   switch (Opcode) {
3315   // FIXME: figure out how to safely handle things like
3316   // int foo(int x) { return 1 << (x & 255); }
3317   // int bar() { return foo(256); }
3318 #if 0
3319   case ISD::SRA_PARTS:
3320   case ISD::SRL_PARTS:
3321   case ISD::SHL_PARTS:
3322     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3323         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
3324       return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3325     else if (N3.getOpcode() == ISD::AND)
3326       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3327         // If the and is only masking out bits that cannot effect the shift,
3328         // eliminate the and.
3329         unsigned NumBits = VT.getSizeInBits()*2;
3330         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3331           return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3332       }
3333     break;
3334 #endif
3335   }
3336
3337   // Memoize the node unless it returns a flag.
3338   SDNode *N;
3339   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3340     FoldingSetNodeID ID;
3341     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3342     void *IP = 0;
3343     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3344       return SDOperand(E, 0);
3345     if (NumOps == 1)
3346       N = new UnarySDNode(Opcode, VTList, Ops[0]);
3347     else if (NumOps == 2)
3348       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3349     else if (NumOps == 3)
3350       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3351     else
3352       N = new SDNode(Opcode, VTList, Ops, NumOps);
3353     CSEMap.InsertNode(N, IP);
3354   } else {
3355     if (NumOps == 1)
3356       N = new UnarySDNode(Opcode, VTList, Ops[0]);
3357     else if (NumOps == 2)
3358       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3359     else if (NumOps == 3)
3360       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3361     else
3362       N = new SDNode(Opcode, VTList, Ops, NumOps);
3363   }
3364   AllNodes.push_back(N);
3365   return SDOperand(N, 0);
3366 }
3367
3368 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
3369   return getNode(Opcode, VTList, (SDOperand*)0, 0);
3370 }
3371
3372 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3373                                 SDOperand N1) {
3374   SDOperand Ops[] = { N1 };
3375   return getNode(Opcode, VTList, Ops, 1);
3376 }
3377
3378 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3379                                 SDOperand N1, SDOperand N2) {
3380   SDOperand Ops[] = { N1, N2 };
3381   return getNode(Opcode, VTList, Ops, 2);
3382 }
3383
3384 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3385                                 SDOperand N1, SDOperand N2, SDOperand N3) {
3386   SDOperand Ops[] = { N1, N2, N3 };
3387   return getNode(Opcode, VTList, Ops, 3);
3388 }
3389
3390 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3391                                 SDOperand N1, SDOperand N2, SDOperand N3,
3392                                 SDOperand N4) {
3393   SDOperand Ops[] = { N1, N2, N3, N4 };
3394   return getNode(Opcode, VTList, Ops, 4);
3395 }
3396
3397 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3398                                 SDOperand N1, SDOperand N2, SDOperand N3,
3399                                 SDOperand N4, SDOperand N5) {
3400   SDOperand Ops[] = { N1, N2, N3, N4, N5 };
3401   return getNode(Opcode, VTList, Ops, 5);
3402 }
3403
3404 SDVTList SelectionDAG::getVTList(MVT VT) {
3405   return makeVTList(SDNode::getValueTypeList(VT), 1);
3406 }
3407
3408 SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
3409   for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
3410        E = VTList.end(); I != E; ++I) {
3411     if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
3412       return makeVTList(&(*I)[0], 2);
3413   }
3414   std::vector<MVT> V;
3415   V.push_back(VT1);
3416   V.push_back(VT2);
3417   VTList.push_front(V);
3418   return makeVTList(&(*VTList.begin())[0], 2);
3419 }
3420 SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2,
3421                                  MVT VT3) {
3422   for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
3423        E = VTList.end(); I != E; ++I) {
3424     if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
3425         (*I)[2] == VT3)
3426       return makeVTList(&(*I)[0], 3);
3427   }
3428   std::vector<MVT> V;
3429   V.push_back(VT1);
3430   V.push_back(VT2);
3431   V.push_back(VT3);
3432   VTList.push_front(V);
3433   return makeVTList(&(*VTList.begin())[0], 3);
3434 }
3435
3436 SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
3437   switch (NumVTs) {
3438     case 0: assert(0 && "Cannot have nodes without results!");
3439     case 1: return getVTList(VTs[0]);
3440     case 2: return getVTList(VTs[0], VTs[1]);
3441     case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3442     default: break;
3443   }
3444
3445   for (std::list<std::vector<MVT> >::iterator I = VTList.begin(),
3446        E = VTList.end(); I != E; ++I) {
3447     if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
3448    
3449     bool NoMatch = false;
3450     for (unsigned i = 2; i != NumVTs; ++i)
3451       if (VTs[i] != (*I)[i]) {
3452         NoMatch = true;
3453         break;
3454       }
3455     if (!NoMatch)
3456       return makeVTList(&*I->begin(), NumVTs);
3457   }
3458   
3459   VTList.push_front(std::vector<MVT>(VTs, VTs+NumVTs));
3460   return makeVTList(&*VTList.begin()->begin(), NumVTs);
3461 }
3462
3463
3464 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3465 /// specified operands.  If the resultant node already exists in the DAG,
3466 /// this does not modify the specified node, instead it returns the node that
3467 /// already exists.  If the resultant node does not exist in the DAG, the
3468 /// input node is returned.  As a degenerate case, if you specify the same
3469 /// input operands as the node already has, the input node is returned.
3470 SDOperand SelectionDAG::
3471 UpdateNodeOperands(SDOperand InN, SDOperand Op) {
3472   SDNode *N = InN.Val;
3473   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3474   
3475   // Check to see if there is no change.
3476   if (Op == N->getOperand(0)) return InN;
3477   
3478   // See if the modified node already exists.
3479   void *InsertPos = 0;
3480   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
3481     return SDOperand(Existing, InN.ResNo);
3482   
3483   // Nope it doesn't.  Remove the node from it's current place in the maps.
3484   if (InsertPos)
3485     RemoveNodeFromCSEMaps(N);
3486   
3487   // Now we update the operands.
3488   N->OperandList[0].getVal()->removeUser(0, N);
3489   N->OperandList[0] = Op;
3490   N->OperandList[0].setUser(N);
3491   Op.Val->addUser(0, N);
3492   
3493   // If this gets put into a CSE map, add it.
3494   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3495   return InN;
3496 }
3497
3498 SDOperand SelectionDAG::
3499 UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
3500   SDNode *N = InN.Val;
3501   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3502   
3503   // Check to see if there is no change.
3504   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3505     return InN;   // No operands changed, just return the input node.
3506   
3507   // See if the modified node already exists.
3508   void *InsertPos = 0;
3509   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
3510     return SDOperand(Existing, InN.ResNo);
3511   
3512   // Nope it doesn't.  Remove the node from it's current place in the maps.
3513   if (InsertPos)
3514     RemoveNodeFromCSEMaps(N);
3515   
3516   // Now we update the operands.
3517   if (N->OperandList[0] != Op1) {
3518     N->OperandList[0].getVal()->removeUser(0, N);
3519     N->OperandList[0] = Op1;
3520     N->OperandList[0].setUser(N);
3521     Op1.Val->addUser(0, N);
3522   }
3523   if (N->OperandList[1] != Op2) {
3524     N->OperandList[1].getVal()->removeUser(1, N);
3525     N->OperandList[1] = Op2;
3526     N->OperandList[1].setUser(N);
3527     Op2.Val->addUser(1, N);
3528   }
3529   
3530   // If this gets put into a CSE map, add it.
3531   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3532   return InN;
3533 }
3534
3535 SDOperand SelectionDAG::
3536 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
3537   SDOperand Ops[] = { Op1, Op2, Op3 };
3538   return UpdateNodeOperands(N, Ops, 3);
3539 }
3540
3541 SDOperand SelectionDAG::
3542 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, 
3543                    SDOperand Op3, SDOperand Op4) {
3544   SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
3545   return UpdateNodeOperands(N, Ops, 4);
3546 }
3547
3548 SDOperand SelectionDAG::
3549 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
3550                    SDOperand Op3, SDOperand Op4, SDOperand Op5) {
3551   SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
3552   return UpdateNodeOperands(N, Ops, 5);
3553 }
3554
3555 SDOperand SelectionDAG::
3556 UpdateNodeOperands(SDOperand InN, SDOperandPtr Ops, unsigned NumOps) {
3557   SDNode *N = InN.Val;
3558   assert(N->getNumOperands() == NumOps &&
3559          "Update with wrong number of operands");
3560   
3561   // Check to see if there is no change.
3562   bool AnyChange = false;
3563   for (unsigned i = 0; i != NumOps; ++i) {
3564     if (Ops[i] != N->getOperand(i)) {
3565       AnyChange = true;
3566       break;
3567     }
3568   }
3569   
3570   // No operands changed, just return the input node.
3571   if (!AnyChange) return InN;
3572   
3573   // See if the modified node already exists.
3574   void *InsertPos = 0;
3575   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
3576     return SDOperand(Existing, InN.ResNo);
3577   
3578   // Nope it doesn't.  Remove the node from its current place in the maps.
3579   if (InsertPos)
3580     RemoveNodeFromCSEMaps(N);
3581   
3582   // Now we update the operands.
3583   for (unsigned i = 0; i != NumOps; ++i) {
3584     if (N->OperandList[i] != Ops[i]) {
3585       N->OperandList[i].getVal()->removeUser(i, N);
3586       N->OperandList[i] = Ops[i];
3587       N->OperandList[i].setUser(N);
3588       Ops[i].Val->addUser(i, N);
3589     }
3590   }
3591
3592   // If this gets put into a CSE map, add it.
3593   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3594   return InN;
3595 }
3596
3597 /// MorphNodeTo - This frees the operands of the current node, resets the
3598 /// opcode, types, and operands to the specified value.  This should only be
3599 /// used by the SelectionDAG class.
3600 void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
3601                          SDOperandPtr Ops, unsigned NumOps) {
3602   NodeType = Opc;
3603   ValueList = L.VTs;
3604   NumValues = L.NumVTs;
3605   
3606   // Clear the operands list, updating used nodes to remove this from their
3607   // use list.
3608   for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
3609     I->getVal()->removeUser(std::distance(op_begin(), I), this);
3610   
3611   // If NumOps is larger than the # of operands we currently have, reallocate
3612   // the operand list.
3613   if (NumOps > NumOperands) {
3614     if (OperandsNeedDelete) {
3615       delete [] OperandList;
3616     }
3617     OperandList = new SDUse[NumOps];
3618     OperandsNeedDelete = true;
3619   }
3620   
3621   // Assign the new operands.
3622   NumOperands = NumOps;
3623   
3624   for (unsigned i = 0, e = NumOps; i != e; ++i) {
3625     OperandList[i] = Ops[i];
3626     OperandList[i].setUser(this);
3627     SDNode *N = OperandList[i].getVal();
3628     N->addUser(i, this);
3629     ++N->UsesSize;
3630   }
3631 }
3632
3633 /// SelectNodeTo - These are used for target selectors to *mutate* the
3634 /// specified node to have the specified return type, Target opcode, and
3635 /// operands.  Note that target opcodes are stored as
3636 /// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
3637 ///
3638 /// Note that SelectNodeTo returns the resultant node.  If there is already a
3639 /// node of the specified opcode and operands, it returns that node instead of
3640 /// the current one.
3641 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3642                                    MVT VT) {
3643   SDVTList VTs = getVTList(VT);
3644   FoldingSetNodeID ID;
3645   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, (SDOperand*)0, 0);
3646   void *IP = 0;
3647   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3648     return ON;
3649    
3650   RemoveNodeFromCSEMaps(N);
3651   
3652   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, SDOperandPtr(), 0);
3653
3654   CSEMap.InsertNode(N, IP);
3655   return N;
3656 }
3657
3658 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3659                                    MVT VT, SDOperand Op1) {
3660   // If an identical node already exists, use it.
3661   SDVTList VTs = getVTList(VT);
3662   SDOperand Ops[] = { Op1 };
3663   
3664   FoldingSetNodeID ID;
3665   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
3666   void *IP = 0;
3667   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3668     return ON;
3669                                        
3670   RemoveNodeFromCSEMaps(N);
3671   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
3672   CSEMap.InsertNode(N, IP);
3673   return N;
3674 }
3675
3676 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3677                                    MVT VT, SDOperand Op1,
3678                                    SDOperand Op2) {
3679   // If an identical node already exists, use it.
3680   SDVTList VTs = getVTList(VT);
3681   SDOperand Ops[] = { Op1, Op2 };
3682   
3683   FoldingSetNodeID ID;
3684   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3685   void *IP = 0;
3686   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3687     return ON;
3688                                        
3689   RemoveNodeFromCSEMaps(N);
3690   
3691   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3692   
3693   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3694   return N;
3695 }
3696
3697 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3698                                    MVT VT, SDOperand Op1,
3699                                    SDOperand Op2, SDOperand Op3) {
3700   // If an identical node already exists, use it.
3701   SDVTList VTs = getVTList(VT);
3702   SDOperand Ops[] = { Op1, Op2, Op3 };
3703   FoldingSetNodeID ID;
3704   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3705   void *IP = 0;
3706   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3707     return ON;
3708                                        
3709   RemoveNodeFromCSEMaps(N);
3710   
3711   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3712
3713   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3714   return N;
3715 }
3716
3717 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3718                                    MVT VT, SDOperandPtr Ops,
3719                                    unsigned NumOps) {
3720   // If an identical node already exists, use it.
3721   SDVTList VTs = getVTList(VT);
3722   FoldingSetNodeID ID;
3723   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3724   void *IP = 0;
3725   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3726     return ON;
3727                                        
3728   RemoveNodeFromCSEMaps(N);
3729   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3730   
3731   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3732   return N;
3733 }
3734
3735 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc, 
3736                                    MVT VT1, MVT VT2,
3737                                    SDOperand Op1, SDOperand Op2) {
3738   SDVTList VTs = getVTList(VT1, VT2);
3739   FoldingSetNodeID ID;
3740   SDOperand Ops[] = { Op1, Op2 };
3741   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3742   void *IP = 0;
3743   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3744     return ON;
3745
3746   RemoveNodeFromCSEMaps(N);
3747   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3748   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3749   return N;
3750 }
3751
3752 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3753                                    MVT VT1, MVT VT2,
3754                                    SDOperand Op1, SDOperand Op2, 
3755                                    SDOperand Op3) {
3756   // If an identical node already exists, use it.
3757   SDVTList VTs = getVTList(VT1, VT2);
3758   SDOperand Ops[] = { Op1, Op2, Op3 };
3759   FoldingSetNodeID ID;
3760   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3761   void *IP = 0;
3762   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3763     return ON;
3764
3765   RemoveNodeFromCSEMaps(N);
3766
3767   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3768   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3769   return N;
3770 }
3771
3772
3773 /// getTargetNode - These are used for target selectors to create a new node
3774 /// with specified return type(s), target opcode, and operands.
3775 ///
3776 /// Note that getTargetNode returns the resultant node.  If there is already a
3777 /// node of the specified opcode and operands, it returns that node instead of
3778 /// the current one.
3779 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
3780   return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3781 }
3782 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDOperand Op1) {
3783   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3784 }
3785 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
3786                                     SDOperand Op1, SDOperand Op2) {
3787   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3788 }
3789 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
3790                                     SDOperand Op1, SDOperand Op2,
3791                                     SDOperand Op3) {
3792   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3793 }
3794 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
3795                                     SDOperandPtr Ops, unsigned NumOps) {
3796   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
3797 }
3798 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
3799   const MVT *VTs = getNodeValueTypes(VT1, VT2);
3800   SDOperand Op;
3801   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3802 }
3803 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3804                                     MVT VT2, SDOperand Op1) {
3805   const MVT *VTs = getNodeValueTypes(VT1, VT2);
3806   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
3807 }
3808 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3809                                     MVT VT2, SDOperand Op1,
3810                                     SDOperand Op2) {
3811   const MVT *VTs = getNodeValueTypes(VT1, VT2);
3812   SDOperand Ops[] = { Op1, Op2 };
3813   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
3814 }
3815 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3816                                     MVT VT2, SDOperand Op1,
3817                                     SDOperand Op2, SDOperand Op3) {
3818   const MVT *VTs = getNodeValueTypes(VT1, VT2);
3819   SDOperand Ops[] = { Op1, Op2, Op3 };
3820   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
3821 }
3822 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
3823                                     SDOperandPtr Ops, unsigned NumOps) {
3824   const MVT *VTs = getNodeValueTypes(VT1, VT2);
3825   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
3826 }
3827 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
3828                                     SDOperand Op1, SDOperand Op2) {
3829   const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
3830   SDOperand Ops[] = { Op1, Op2 };
3831   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
3832 }
3833 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
3834                                     SDOperand Op1, SDOperand Op2,
3835                                     SDOperand Op3) {
3836   const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
3837   SDOperand Ops[] = { Op1, Op2, Op3 };
3838   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3839 }
3840 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
3841                                     SDOperandPtr Ops, unsigned NumOps) {
3842   const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
3843   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
3844 }
3845 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
3846                                     MVT VT2, MVT VT3, MVT VT4,
3847                                     SDOperandPtr Ops, unsigned NumOps) {
3848   std::vector<MVT> VTList;
3849   VTList.push_back(VT1);
3850   VTList.push_back(VT2);
3851   VTList.push_back(VT3);
3852   VTList.push_back(VT4);
3853   const MVT *VTs = getNodeValueTypes(VTList);
3854   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3855 }
3856 SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3857                                     std::vector<MVT> &ResultTys,
3858                                     SDOperandPtr Ops, unsigned NumOps) {
3859   const MVT *VTs = getNodeValueTypes(ResultTys);
3860   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3861                  Ops, NumOps).Val;
3862 }
3863
3864 /// getNodeIfExists - Get the specified node if it's already available, or
3865 /// else return NULL.
3866 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
3867                                       SDOperandPtr Ops, unsigned NumOps) {
3868   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3869     FoldingSetNodeID ID;
3870     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3871     void *IP = 0;
3872     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3873       return E;
3874   }
3875   return NULL;
3876 }
3877
3878
3879 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3880 /// This can cause recursive merging of nodes in the DAG.
3881 ///
3882 /// This version assumes From has a single result value.
3883 ///
3884 void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand To,
3885                                       DAGUpdateListener *UpdateListener) {
3886   SDNode *From = FromN.Val;
3887   assert(From->getNumValues() == 1 && FromN.ResNo == 0 && 
3888          "Cannot replace with this method!");
3889   assert(From != To.Val && "Cannot replace uses of with self");
3890
3891   while (!From->use_empty()) {
3892     SDNode::use_iterator UI = From->use_begin();
3893     SDNode *U = UI->getUser();
3894
3895     // This node is about to morph, remove its old self from the CSE maps.
3896     RemoveNodeFromCSEMaps(U);
3897     int operandNum = 0;
3898     for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3899          I != E; ++I, ++operandNum)
3900       if (I->getVal() == From) {
3901         From->removeUser(operandNum, U);
3902         *I = To;
3903         I->setUser(U);
3904         To.Val->addUser(operandNum, U);
3905       }    
3906
3907     // Now that we have modified U, add it back to the CSE maps.  If it already
3908     // exists there, recursively merge the results together.
3909     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3910       ReplaceAllUsesWith(U, Existing, UpdateListener);
3911       // U is now dead.  Inform the listener if it exists and delete it.
3912       if (UpdateListener) 
3913         UpdateListener->NodeDeleted(U, Existing);
3914       DeleteNodeNotInCSEMaps(U);
3915     } else {
3916       // If the node doesn't already exist, we updated it.  Inform a listener if
3917       // it exists.
3918       if (UpdateListener) 
3919         UpdateListener->NodeUpdated(U);
3920     }
3921   }
3922 }
3923
3924 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3925 /// This can cause recursive merging of nodes in the DAG.
3926 ///
3927 /// This version assumes From/To have matching types and numbers of result
3928 /// values.
3929 ///
3930 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
3931                                       DAGUpdateListener *UpdateListener) {
3932   assert(From != To && "Cannot replace uses of with self");
3933   assert(From->getNumValues() == To->getNumValues() &&
3934          "Cannot use this version of ReplaceAllUsesWith!");
3935   if (From->getNumValues() == 1)   // If possible, use the faster version.
3936     return ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0),
3937                               UpdateListener);
3938   
3939   while (!From->use_empty()) {
3940     SDNode::use_iterator UI = From->use_begin();
3941     SDNode *U = UI->getUser();
3942
3943     // This node is about to morph, remove its old self from the CSE maps.
3944     RemoveNodeFromCSEMaps(U);
3945     int operandNum = 0;
3946     for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3947          I != E; ++I, ++operandNum)
3948       if (I->getVal() == From) {
3949         From->removeUser(operandNum, U);
3950         I->getVal() = To;
3951         To->addUser(operandNum, U);
3952       }
3953
3954     // Now that we have modified U, add it back to the CSE maps.  If it already
3955     // exists there, recursively merge the results together.
3956     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3957       ReplaceAllUsesWith(U, Existing, UpdateListener);
3958       // U is now dead.  Inform the listener if it exists and delete it.
3959       if (UpdateListener) 
3960         UpdateListener->NodeDeleted(U, Existing);
3961       DeleteNodeNotInCSEMaps(U);
3962     } else {
3963       // If the node doesn't already exist, we updated it.  Inform a listener if
3964       // it exists.
3965       if (UpdateListener) 
3966         UpdateListener->NodeUpdated(U);
3967     }
3968   }
3969 }
3970
3971 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3972 /// This can cause recursive merging of nodes in the DAG.
3973 ///
3974 /// This version can replace From with any result values.  To must match the
3975 /// number and types of values returned by From.
3976 void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
3977                                       SDOperandPtr To,
3978                                       DAGUpdateListener *UpdateListener) {
3979   if (From->getNumValues() == 1)  // Handle the simple case efficiently.
3980     return ReplaceAllUsesWith(SDOperand(From, 0), To[0], UpdateListener);
3981
3982   while (!From->use_empty()) {
3983     SDNode::use_iterator UI = From->use_begin();
3984     SDNode *U = UI->getUser();
3985
3986     // This node is about to morph, remove its old self from the CSE maps.
3987     RemoveNodeFromCSEMaps(U);
3988     int operandNum = 0;
3989     for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
3990          I != E; ++I, ++operandNum)
3991       if (I->getVal() == From) {
3992         const SDOperand &ToOp = To[I->getSDOperand().ResNo];
3993         From->removeUser(operandNum, U);
3994         *I = ToOp;
3995         I->setUser(U);
3996         ToOp.Val->addUser(operandNum, U);
3997       }
3998
3999     // Now that we have modified U, add it back to the CSE maps.  If it already
4000     // exists there, recursively merge the results together.
4001     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
4002       ReplaceAllUsesWith(U, Existing, UpdateListener);
4003       // U is now dead.  Inform the listener if it exists and delete it.
4004       if (UpdateListener) 
4005         UpdateListener->NodeDeleted(U, Existing);
4006       DeleteNodeNotInCSEMaps(U);
4007     } else {
4008       // If the node doesn't already exist, we updated it.  Inform a listener if
4009       // it exists.
4010       if (UpdateListener) 
4011         UpdateListener->NodeUpdated(U);
4012     }
4013   }
4014 }
4015
4016 namespace {
4017   /// ChainedSetUpdaterListener - This class is a DAGUpdateListener that removes
4018   /// any deleted nodes from the set passed into its constructor and recursively
4019   /// notifies another update listener if specified.
4020   class ChainedSetUpdaterListener : 
4021   public SelectionDAG::DAGUpdateListener {
4022     SmallSetVector<SDNode*, 16> &Set;
4023     SelectionDAG::DAGUpdateListener *Chain;
4024   public:
4025     ChainedSetUpdaterListener(SmallSetVector<SDNode*, 16> &set,
4026                               SelectionDAG::DAGUpdateListener *chain)
4027       : Set(set), Chain(chain) {}
4028  
4029     virtual void NodeDeleted(SDNode *N, SDNode *E) {
4030       Set.remove(N);
4031       if (Chain) Chain->NodeDeleted(N, E);
4032     }
4033     virtual void NodeUpdated(SDNode *N) {
4034       if (Chain) Chain->NodeUpdated(N);
4035     }
4036   };
4037 }
4038
4039 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
4040 /// uses of other values produced by From.Val alone.  The Deleted vector is
4041 /// handled the same way as for ReplaceAllUsesWith.
4042 void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
4043                                              DAGUpdateListener *UpdateListener){
4044   assert(From != To && "Cannot replace a value with itself");
4045   
4046   // Handle the simple, trivial, case efficiently.
4047   if (From.Val->getNumValues() == 1) {
4048     ReplaceAllUsesWith(From, To, UpdateListener);
4049     return;
4050   }
4051
4052   if (From.use_empty()) return;
4053
4054   // Get all of the users of From.Val.  We want these in a nice,
4055   // deterministically ordered and uniqued set, so we use a SmallSetVector.
4056   SmallSetVector<SDNode*, 16> Users;
4057   for (SDNode::use_iterator UI = From.Val->use_begin(), 
4058       E = From.Val->use_end(); UI != E; ++UI) {
4059     SDNode *User = UI->getUser();
4060     if (!Users.count(User))
4061       Users.insert(User);
4062   }
4063
4064   // When one of the recursive merges deletes nodes from the graph, we need to
4065   // make sure that UpdateListener is notified *and* that the node is removed
4066   // from Users if present.  CSUL does this.
4067   ChainedSetUpdaterListener CSUL(Users, UpdateListener);
4068   
4069   while (!Users.empty()) {
4070     // We know that this user uses some value of From.  If it is the right
4071     // value, update it.
4072     SDNode *User = Users.back();
4073     Users.pop_back();
4074     
4075     // Scan for an operand that matches From.
4076     SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4077     for (; Op != E; ++Op)
4078       if (*Op == From) break;
4079     
4080     // If there are no matches, the user must use some other result of From.
4081     if (Op == E) continue;
4082       
4083     // Okay, we know this user needs to be updated.  Remove its old self
4084     // from the CSE maps.
4085     RemoveNodeFromCSEMaps(User);
4086     
4087     // Update all operands that match "From" in case there are multiple uses.
4088     for (; Op != E; ++Op) {
4089       if (*Op == From) {
4090         From.Val->removeUser(Op-User->op_begin(), User);
4091         *Op = To;
4092         Op->setUser(User);
4093         To.Val->addUser(Op-User->op_begin(), User);
4094       }
4095     }
4096                
4097     // Now that we have modified User, add it back to the CSE maps.  If it
4098     // already exists there, recursively merge the results together.
4099     SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4100     if (!Existing) {
4101       if (UpdateListener) UpdateListener->NodeUpdated(User);
4102       continue;  // Continue on to next user.
4103     }
4104     
4105     // If there was already an existing matching node, use ReplaceAllUsesWith
4106     // to replace the dead one with the existing one.  This can cause
4107     // recursive merging of other unrelated nodes down the line.  The merging
4108     // can cause deletion of nodes that used the old value.  To handle this, we
4109     // use CSUL to remove them from the Users set.
4110     ReplaceAllUsesWith(User, Existing, &CSUL);
4111     
4112     // User is now dead.  Notify a listener if present.
4113     if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4114     DeleteNodeNotInCSEMaps(User);
4115   }
4116 }
4117
4118 /// AssignNodeIds - Assign a unique node id for each node in the DAG based on
4119 /// their allnodes order. It returns the maximum id.
4120 unsigned SelectionDAG::AssignNodeIds() {
4121   unsigned Id = 0;
4122   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
4123     SDNode *N = I;
4124     N->setNodeId(Id++);
4125   }
4126   return Id;
4127 }
4128
4129 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
4130 /// based on their topological order. It returns the maximum id and a vector
4131 /// of the SDNodes* in assigned order by reference.
4132 unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
4133   unsigned DAGSize = AllNodes.size();
4134   std::vector<unsigned> InDegree(DAGSize);
4135   std::vector<SDNode*> Sources;
4136
4137   // Use a two pass approach to avoid using a std::map which is slow.
4138   unsigned Id = 0;
4139   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
4140     SDNode *N = I;
4141     N->setNodeId(Id++);
4142     unsigned Degree = N->use_size();
4143     InDegree[N->getNodeId()] = Degree;
4144     if (Degree == 0)
4145       Sources.push_back(N);
4146   }
4147
4148   TopOrder.clear();
4149   while (!Sources.empty()) {
4150     SDNode *N = Sources.back();
4151     Sources.pop_back();
4152     TopOrder.push_back(N);
4153     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
4154       SDNode *P = I->getVal();
4155       unsigned Degree = --InDegree[P->getNodeId()];
4156       if (Degree == 0)
4157         Sources.push_back(P);
4158     }
4159   }
4160
4161   // Second pass, assign the actual topological order as node ids.
4162   Id = 0;
4163   for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
4164        TI != TE; ++TI)
4165     (*TI)->setNodeId(Id++);
4166
4167   return Id;
4168 }
4169
4170
4171
4172 //===----------------------------------------------------------------------===//
4173 //                              SDNode Class
4174 //===----------------------------------------------------------------------===//
4175
4176 // Out-of-line virtual method to give class a home.
4177 void SDNode::ANCHOR() {}
4178 void UnarySDNode::ANCHOR() {}
4179 void BinarySDNode::ANCHOR() {}
4180 void TernarySDNode::ANCHOR() {}
4181 void HandleSDNode::ANCHOR() {}
4182 void StringSDNode::ANCHOR() {}
4183 void ConstantSDNode::ANCHOR() {}
4184 void ConstantFPSDNode::ANCHOR() {}
4185 void GlobalAddressSDNode::ANCHOR() {}
4186 void FrameIndexSDNode::ANCHOR() {}
4187 void JumpTableSDNode::ANCHOR() {}
4188 void ConstantPoolSDNode::ANCHOR() {}
4189 void BasicBlockSDNode::ANCHOR() {}
4190 void SrcValueSDNode::ANCHOR() {}
4191 void MemOperandSDNode::ANCHOR() {}
4192 void RegisterSDNode::ANCHOR() {}
4193 void ExternalSymbolSDNode::ANCHOR() {}
4194 void CondCodeSDNode::ANCHOR() {}
4195 void ARG_FLAGSSDNode::ANCHOR() {}
4196 void VTSDNode::ANCHOR() {}
4197 void MemSDNode::ANCHOR() {}
4198 void LoadSDNode::ANCHOR() {}
4199 void StoreSDNode::ANCHOR() {}
4200 void AtomicSDNode::ANCHOR() {}
4201
4202 HandleSDNode::~HandleSDNode() {
4203   SDVTList VTs = { 0, 0 };
4204   MorphNodeTo(ISD::HANDLENODE, VTs, SDOperandPtr(), 0);  // Drops operand uses.
4205 }
4206
4207 GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
4208                                          MVT VT, int o)
4209   : SDNode(isa<GlobalVariable>(GA) &&
4210            cast<GlobalVariable>(GA)->isThreadLocal() ?
4211            // Thread Local
4212            (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4213            // Non Thread Local
4214            (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4215            getSDVTList(VT)), Offset(o) {
4216   TheGlobal = const_cast<GlobalValue*>(GA);
4217 }
4218
4219 /// getMemOperand - Return a MachineMemOperand object describing the memory
4220 /// reference performed by this atomic.
4221 MachineMemOperand AtomicSDNode::getMemOperand() const {
4222   int Size = (getValueType(0).getSizeInBits() + 7) >> 3;
4223   int Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4224   if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4225   
4226   // Check if the atomic references a frame index
4227   const FrameIndexSDNode *FI = 
4228   dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
4229   if (!getSrcValue() && FI)
4230     return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
4231                              FI->getIndex(), Size, getAlignment());
4232   else
4233     return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4234                              Size, getAlignment());
4235 }
4236
4237 /// getMemOperand - Return a MachineMemOperand object describing the memory
4238 /// reference performed by this load or store.
4239 MachineMemOperand LSBaseSDNode::getMemOperand() const {
4240   int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
4241   int Flags =
4242     getOpcode() == ISD::LOAD ? MachineMemOperand::MOLoad :
4243                                MachineMemOperand::MOStore;
4244   if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4245
4246   // Check if the load references a frame index, and does not have
4247   // an SV attached.
4248   const FrameIndexSDNode *FI =
4249     dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
4250   if (!getSrcValue() && FI)
4251     return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
4252                              FI->getIndex(), Size, getAlignment());
4253   else
4254     return MachineMemOperand(getSrcValue(), Flags,
4255                              getSrcValueOffset(), Size, getAlignment());
4256 }
4257
4258 /// Profile - Gather unique data for the node.
4259 ///
4260 void SDNode::Profile(FoldingSetNodeID &ID) {
4261   AddNodeIDNode(ID, this);
4262 }
4263
4264 /// getValueTypeList - Return a pointer to the specified value type.
4265 ///
4266 const MVT *SDNode::getValueTypeList(MVT VT) {
4267   if (VT.isExtended()) {
4268     static std::set<MVT, MVT::compareRawBits> EVTs;
4269     return &(*EVTs.insert(VT).first);
4270   } else {
4271     static MVT VTs[MVT::LAST_VALUETYPE];
4272     VTs[VT.getSimpleVT()] = VT;
4273     return &VTs[VT.getSimpleVT()];
4274   }
4275 }
4276
4277 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4278 /// indicated value.  This method ignores uses of other values defined by this
4279 /// operation.
4280 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
4281   assert(Value < getNumValues() && "Bad value!");
4282
4283   // If there is only one value, this is easy.
4284   if (getNumValues() == 1)
4285     return use_size() == NUses;
4286   if (use_size() < NUses) return false;
4287
4288   SDOperand TheValue(const_cast<SDNode *>(this), Value);
4289
4290   SmallPtrSet<SDNode*, 32> UsersHandled;
4291
4292   // TODO: Only iterate over uses of a given value of the node
4293   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4294     if (*UI == TheValue) {
4295       if (NUses == 0)
4296         return false;
4297       --NUses;
4298     }
4299   }
4300
4301   // Found exactly the right number of uses?
4302   return NUses == 0;
4303 }
4304
4305
4306 /// hasAnyUseOfValue - Return true if there are any use of the indicated
4307 /// value. This method ignores uses of other values defined by this operation.
4308 bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4309   assert(Value < getNumValues() && "Bad value!");
4310
4311   if (use_empty()) return false;
4312
4313   SDOperand TheValue(const_cast<SDNode *>(this), Value);
4314
4315   SmallPtrSet<SDNode*, 32> UsersHandled;
4316
4317   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4318     SDNode *User = UI->getUser();
4319     if (User->getNumOperands() == 1 ||
4320         UsersHandled.insert(User))     // First time we've seen this?
4321       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
4322         if (User->getOperand(i) == TheValue) {
4323           return true;
4324         }
4325   }
4326
4327   return false;
4328 }
4329
4330
4331 /// isOnlyUseOf - Return true if this node is the only use of N.
4332 ///
4333 bool SDNode::isOnlyUseOf(SDNode *N) const {
4334   bool Seen = false;
4335   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
4336     SDNode *User = I->getUser();
4337     if (User == this)
4338       Seen = true;
4339     else
4340       return false;
4341   }
4342
4343   return Seen;
4344 }
4345
4346 /// isOperand - Return true if this node is an operand of N.
4347 ///
4348 bool SDOperand::isOperandOf(SDNode *N) const {
4349   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4350     if (*this == N->getOperand(i))
4351       return true;
4352   return false;
4353 }
4354
4355 bool SDNode::isOperandOf(SDNode *N) const {
4356   for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
4357     if (this == N->OperandList[i].getVal())
4358       return true;
4359   return false;
4360 }
4361
4362 /// reachesChainWithoutSideEffects - Return true if this operand (which must
4363 /// be a chain) reaches the specified operand without crossing any 
4364 /// side-effecting instructions.  In practice, this looks through token
4365 /// factors and non-volatile loads.  In order to remain efficient, this only
4366 /// looks a couple of nodes in, it does not do an exhaustive search.
4367 bool SDOperand::reachesChainWithoutSideEffects(SDOperand Dest, 
4368                                                unsigned Depth) const {
4369   if (*this == Dest) return true;
4370   
4371   // Don't search too deeply, we just want to be able to see through
4372   // TokenFactor's etc.
4373   if (Depth == 0) return false;
4374   
4375   // If this is a token factor, all inputs to the TF happen in parallel.  If any
4376   // of the operands of the TF reach dest, then we can do the xform.
4377   if (getOpcode() == ISD::TokenFactor) {
4378     for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4379       if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4380         return true;
4381     return false;
4382   }
4383   
4384   // Loads don't have side effects, look through them.
4385   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4386     if (!Ld->isVolatile())
4387       return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4388   }
4389   return false;
4390 }
4391
4392
4393 static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
4394                             SmallPtrSet<SDNode *, 32> &Visited) {
4395   if (found || !Visited.insert(N))
4396     return;
4397
4398   for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
4399     SDNode *Op = N->getOperand(i).Val;
4400     if (Op == P) {
4401       found = true;
4402       return;
4403     }
4404     findPredecessor(Op, P, found, Visited);
4405   }
4406 }
4407
4408 /// isPredecessorOf - Return true if this node is a predecessor of N. This node
4409 /// is either an operand of N or it can be reached by recursively traversing
4410 /// up the operands.
4411 /// NOTE: this is an expensive method. Use it carefully.
4412 bool SDNode::isPredecessorOf(SDNode *N) const {
4413   SmallPtrSet<SDNode *, 32> Visited;
4414   bool found = false;
4415   findPredecessor(N, this, found, Visited);
4416   return found;
4417 }
4418
4419 uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4420   assert(Num < NumOperands && "Invalid child # of SDNode!");
4421   return cast<ConstantSDNode>(OperandList[Num])->getValue();
4422 }
4423
4424 std::string SDNode::getOperationName(const SelectionDAG *G) const {
4425   switch (getOpcode()) {
4426   default:
4427     if (getOpcode() < ISD::BUILTIN_OP_END)
4428       return "<<Unknown DAG Node>>";
4429     else {
4430       if (G) {
4431         if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
4432           if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
4433             return TII->get(getOpcode()-ISD::BUILTIN_OP_END).getName();
4434
4435         TargetLowering &TLI = G->getTargetLoweringInfo();
4436         const char *Name =
4437           TLI.getTargetNodeName(getOpcode());
4438         if (Name) return Name;
4439       }
4440
4441       return "<<Unknown Target Node>>";
4442     }
4443    
4444   case ISD::PREFETCH:      return "Prefetch";
4445   case ISD::MEMBARRIER:    return "MemBarrier";
4446   case ISD::ATOMIC_CMP_SWAP:  return "AtomicCmpSwap";
4447   case ISD::ATOMIC_LOAD_ADD:  return "AtomicLoadAdd";
4448   case ISD::ATOMIC_LOAD_SUB:  return "AtomicLoadSub";
4449   case ISD::ATOMIC_LOAD_AND:  return "AtomicLoadAnd";
4450   case ISD::ATOMIC_LOAD_OR:   return "AtomicLoadOr";
4451   case ISD::ATOMIC_LOAD_XOR:  return "AtomicLoadXor";
4452   case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
4453   case ISD::ATOMIC_LOAD_MIN:  return "AtomicLoadMin";
4454   case ISD::ATOMIC_LOAD_MAX:  return "AtomicLoadMax";
4455   case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
4456   case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
4457   case ISD::ATOMIC_SWAP:   return "AtomicSWAP";
4458   case ISD::PCMARKER:      return "PCMarker";
4459   case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
4460   case ISD::SRCVALUE:      return "SrcValue";
4461   case ISD::MEMOPERAND:    return "MemOperand";
4462   case ISD::EntryToken:    return "EntryToken";
4463   case ISD::TokenFactor:   return "TokenFactor";
4464   case ISD::AssertSext:    return "AssertSext";
4465   case ISD::AssertZext:    return "AssertZext";
4466
4467   case ISD::STRING:        return "String";
4468   case ISD::BasicBlock:    return "BasicBlock";
4469   case ISD::ARG_FLAGS:     return "ArgFlags";
4470   case ISD::VALUETYPE:     return "ValueType";
4471   case ISD::Register:      return "Register";
4472
4473   case ISD::Constant:      return "Constant";
4474   case ISD::ConstantFP:    return "ConstantFP";
4475   case ISD::GlobalAddress: return "GlobalAddress";
4476   case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
4477   case ISD::FrameIndex:    return "FrameIndex";
4478   case ISD::JumpTable:     return "JumpTable";
4479   case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
4480   case ISD::RETURNADDR: return "RETURNADDR";
4481   case ISD::FRAMEADDR: return "FRAMEADDR";
4482   case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
4483   case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
4484   case ISD::EHSELECTION: return "EHSELECTION";
4485   case ISD::EH_RETURN: return "EH_RETURN";
4486   case ISD::ConstantPool:  return "ConstantPool";
4487   case ISD::ExternalSymbol: return "ExternalSymbol";
4488   case ISD::INTRINSIC_WO_CHAIN: {
4489     unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
4490     return Intrinsic::getName((Intrinsic::ID)IID);
4491   }
4492   case ISD::INTRINSIC_VOID:
4493   case ISD::INTRINSIC_W_CHAIN: {
4494     unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
4495     return Intrinsic::getName((Intrinsic::ID)IID);
4496   }
4497
4498   case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
4499   case ISD::TargetConstant: return "TargetConstant";
4500   case ISD::TargetConstantFP:return "TargetConstantFP";
4501   case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
4502   case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
4503   case ISD::TargetFrameIndex: return "TargetFrameIndex";
4504   case ISD::TargetJumpTable:  return "TargetJumpTable";
4505   case ISD::TargetConstantPool:  return "TargetConstantPool";
4506   case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
4507
4508   case ISD::CopyToReg:     return "CopyToReg";
4509   case ISD::CopyFromReg:   return "CopyFromReg";
4510   case ISD::UNDEF:         return "undef";
4511   case ISD::MERGE_VALUES:  return "merge_values";
4512   case ISD::INLINEASM:     return "inlineasm";
4513   case ISD::LABEL:         return "label";
4514   case ISD::DECLARE:       return "declare";
4515   case ISD::HANDLENODE:    return "handlenode";
4516   case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
4517   case ISD::CALL:          return "call";
4518     
4519   // Unary operators
4520   case ISD::FABS:   return "fabs";
4521   case ISD::FNEG:   return "fneg";
4522   case ISD::FSQRT:  return "fsqrt";
4523   case ISD::FSIN:   return "fsin";
4524   case ISD::FCOS:   return "fcos";
4525   case ISD::FPOWI:  return "fpowi";
4526   case ISD::FPOW:   return "fpow";
4527
4528   // Binary operators
4529   case ISD::ADD:    return "add";
4530   case ISD::SUB:    return "sub";
4531   case ISD::MUL:    return "mul";
4532   case ISD::MULHU:  return "mulhu";
4533   case ISD::MULHS:  return "mulhs";
4534   case ISD::SDIV:   return "sdiv";
4535   case ISD::UDIV:   return "udiv";
4536   case ISD::SREM:   return "srem";
4537   case ISD::UREM:   return "urem";
4538   case ISD::SMUL_LOHI:  return "smul_lohi";
4539   case ISD::UMUL_LOHI:  return "umul_lohi";
4540   case ISD::SDIVREM:    return "sdivrem";
4541   case ISD::UDIVREM:    return "divrem";
4542   case ISD::AND:    return "and";
4543   case ISD::OR:     return "or";
4544   case ISD::XOR:    return "xor";
4545   case ISD::SHL:    return "shl";
4546   case ISD::SRA:    return "sra";
4547   case ISD::SRL:    return "srl";
4548   case ISD::ROTL:   return "rotl";
4549   case ISD::ROTR:   return "rotr";
4550   case ISD::FADD:   return "fadd";
4551   case ISD::FSUB:   return "fsub";
4552   case ISD::FMUL:   return "fmul";
4553   case ISD::FDIV:   return "fdiv";
4554   case ISD::FREM:   return "frem";
4555   case ISD::FCOPYSIGN: return "fcopysign";
4556   case ISD::FGETSIGN:  return "fgetsign";
4557
4558   case ISD::SETCC:       return "setcc";
4559   case ISD::VSETCC:      return "vsetcc";
4560   case ISD::SELECT:      return "select";
4561   case ISD::SELECT_CC:   return "select_cc";
4562   case ISD::INSERT_VECTOR_ELT:   return "insert_vector_elt";
4563   case ISD::EXTRACT_VECTOR_ELT:  return "extract_vector_elt";
4564   case ISD::CONCAT_VECTORS:      return "concat_vectors";
4565   case ISD::EXTRACT_SUBVECTOR:   return "extract_subvector";
4566   case ISD::SCALAR_TO_VECTOR:    return "scalar_to_vector";
4567   case ISD::VECTOR_SHUFFLE:      return "vector_shuffle";
4568   case ISD::CARRY_FALSE:         return "carry_false";
4569   case ISD::ADDC:        return "addc";
4570   case ISD::ADDE:        return "adde";
4571   case ISD::SUBC:        return "subc";
4572   case ISD::SUBE:        return "sube";
4573   case ISD::SHL_PARTS:   return "shl_parts";
4574   case ISD::SRA_PARTS:   return "sra_parts";
4575   case ISD::SRL_PARTS:   return "srl_parts";
4576   
4577   case ISD::EXTRACT_SUBREG:     return "extract_subreg";
4578   case ISD::INSERT_SUBREG:      return "insert_subreg";
4579   
4580   // Conversion operators.
4581   case ISD::SIGN_EXTEND: return "sign_extend";
4582   case ISD::ZERO_EXTEND: return "zero_extend";
4583   case ISD::ANY_EXTEND:  return "any_extend";
4584   case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
4585   case ISD::TRUNCATE:    return "truncate";
4586   case ISD::FP_ROUND:    return "fp_round";
4587   case ISD::FLT_ROUNDS_: return "flt_rounds";
4588   case ISD::FP_ROUND_INREG: return "fp_round_inreg";
4589   case ISD::FP_EXTEND:   return "fp_extend";
4590
4591   case ISD::SINT_TO_FP:  return "sint_to_fp";
4592   case ISD::UINT_TO_FP:  return "uint_to_fp";
4593   case ISD::FP_TO_SINT:  return "fp_to_sint";
4594   case ISD::FP_TO_UINT:  return "fp_to_uint";
4595   case ISD::BIT_CONVERT: return "bit_convert";
4596
4597     // Control flow instructions
4598   case ISD::BR:      return "br";
4599   case ISD::BRIND:   return "brind";
4600   case ISD::BR_JT:   return "br_jt";
4601   case ISD::BRCOND:  return "brcond";
4602   case ISD::BR_CC:   return "br_cc";
4603   case ISD::RET:     return "ret";
4604   case ISD::CALLSEQ_START:  return "callseq_start";
4605   case ISD::CALLSEQ_END:    return "callseq_end";
4606
4607     // Other operators
4608   case ISD::LOAD:               return "load";
4609   case ISD::STORE:              return "store";
4610   case ISD::VAARG:              return "vaarg";
4611   case ISD::VACOPY:             return "vacopy";
4612   case ISD::VAEND:              return "vaend";
4613   case ISD::VASTART:            return "vastart";
4614   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
4615   case ISD::EXTRACT_ELEMENT:    return "extract_element";
4616   case ISD::BUILD_PAIR:         return "build_pair";
4617   case ISD::STACKSAVE:          return "stacksave";
4618   case ISD::STACKRESTORE:       return "stackrestore";
4619   case ISD::TRAP:               return "trap";
4620
4621   // Bit manipulation
4622   case ISD::BSWAP:   return "bswap";
4623   case ISD::CTPOP:   return "ctpop";
4624   case ISD::CTTZ:    return "cttz";
4625   case ISD::CTLZ:    return "ctlz";
4626
4627   // Debug info
4628   case ISD::LOCATION: return "location";
4629   case ISD::DEBUG_LOC: return "debug_loc";
4630
4631   // Trampolines
4632   case ISD::TRAMPOLINE: return "trampoline";
4633
4634   case ISD::CONDCODE:
4635     switch (cast<CondCodeSDNode>(this)->get()) {
4636     default: assert(0 && "Unknown setcc condition!");
4637     case ISD::SETOEQ:  return "setoeq";
4638     case ISD::SETOGT:  return "setogt";
4639     case ISD::SETOGE:  return "setoge";
4640     case ISD::SETOLT:  return "setolt";
4641     case ISD::SETOLE:  return "setole";
4642     case ISD::SETONE:  return "setone";
4643
4644     case ISD::SETO:    return "seto";
4645     case ISD::SETUO:   return "setuo";
4646     case ISD::SETUEQ:  return "setue";
4647     case ISD::SETUGT:  return "setugt";
4648     case ISD::SETUGE:  return "setuge";
4649     case ISD::SETULT:  return "setult";
4650     case ISD::SETULE:  return "setule";
4651     case ISD::SETUNE:  return "setune";
4652
4653     case ISD::SETEQ:   return "seteq";
4654     case ISD::SETGT:   return "setgt";
4655     case ISD::SETGE:   return "setge";
4656     case ISD::SETLT:   return "setlt";
4657     case ISD::SETLE:   return "setle";
4658     case ISD::SETNE:   return "setne";
4659     }
4660   }
4661 }
4662
4663 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
4664   switch (AM) {
4665   default:
4666     return "";
4667   case ISD::PRE_INC:
4668     return "<pre-inc>";
4669   case ISD::PRE_DEC:
4670     return "<pre-dec>";
4671   case ISD::POST_INC:
4672     return "<post-inc>";
4673   case ISD::POST_DEC:
4674     return "<post-dec>";
4675   }
4676 }
4677
4678 std::string ISD::ArgFlagsTy::getArgFlagsString() {
4679   std::string S = "< ";
4680
4681   if (isZExt())
4682     S += "zext ";
4683   if (isSExt())
4684     S += "sext ";
4685   if (isInReg())
4686     S += "inreg ";
4687   if (isSRet())
4688     S += "sret ";
4689   if (isByVal())
4690     S += "byval ";
4691   if (isNest())
4692     S += "nest ";
4693   if (getByValAlign())
4694     S += "byval-align:" + utostr(getByValAlign()) + " ";
4695   if (getOrigAlign())
4696     S += "orig-align:" + utostr(getOrigAlign()) + " ";
4697   if (getByValSize())
4698     S += "byval-size:" + utostr(getByValSize()) + " ";
4699   return S + ">";
4700 }
4701
4702 void SDNode::dump() const { dump(0); }
4703 void SDNode::dump(const SelectionDAG *G) const {
4704   cerr << (void*)this << ": ";
4705
4706   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
4707     if (i) cerr << ",";
4708     if (getValueType(i) == MVT::Other)
4709       cerr << "ch";
4710     else
4711       cerr << getValueType(i).getMVTString();
4712   }
4713   cerr << " = " << getOperationName(G);
4714
4715   cerr << " ";
4716   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
4717     if (i) cerr << ", ";
4718     cerr << (void*)getOperand(i).Val;
4719     if (unsigned RN = getOperand(i).ResNo)
4720       cerr << ":" << RN;
4721   }
4722
4723   if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
4724     SDNode *Mask = getOperand(2).Val;
4725     cerr << "<";
4726     for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
4727       if (i) cerr << ",";
4728       if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
4729         cerr << "u";
4730       else
4731         cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
4732     }
4733     cerr << ">";
4734   }
4735
4736   if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
4737     cerr << "<" << CSDN->getValue() << ">";
4738   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
4739     if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
4740       cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
4741     else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
4742       cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
4743     else {
4744       cerr << "<APFloat(";
4745       CSDN->getValueAPF().convertToAPInt().dump();
4746       cerr << ")>";
4747     }
4748   } else if (const GlobalAddressSDNode *GADN =
4749              dyn_cast<GlobalAddressSDNode>(this)) {
4750     int offset = GADN->getOffset();
4751     cerr << "<";
4752     WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
4753     if (offset > 0)
4754       cerr << " + " << offset;
4755     else
4756       cerr << " " << offset;
4757   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
4758     cerr << "<" << FIDN->getIndex() << ">";
4759   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
4760     cerr << "<" << JTDN->getIndex() << ">";
4761   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
4762     int offset = CP->getOffset();
4763     if (CP->isMachineConstantPoolEntry())
4764       cerr << "<" << *CP->getMachineCPVal() << ">";
4765     else
4766       cerr << "<" << *CP->getConstVal() << ">";
4767     if (offset > 0)
4768       cerr << " + " << offset;
4769     else
4770       cerr << " " << offset;
4771   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
4772     cerr << "<";
4773     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
4774     if (LBB)
4775       cerr << LBB->getName() << " ";
4776     cerr << (const void*)BBDN->getBasicBlock() << ">";
4777   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
4778     if (G && R->getReg() &&
4779         TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
4780       cerr << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
4781     } else {
4782       cerr << " #" << R->getReg();
4783     }
4784   } else if (const ExternalSymbolSDNode *ES =
4785              dyn_cast<ExternalSymbolSDNode>(this)) {
4786     cerr << "'" << ES->getSymbol() << "'";
4787   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
4788     if (M->getValue())
4789       cerr << "<" << M->getValue() << ">";
4790     else
4791       cerr << "<null>";
4792   } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
4793     if (M->MO.getValue())
4794       cerr << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
4795     else
4796       cerr << "<null:" << M->MO.getOffset() << ">";
4797   } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
4798     cerr << N->getArgFlags().getArgFlagsString();
4799   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
4800     cerr << ":" << N->getVT().getMVTString();
4801   }
4802   else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
4803     const Value *SrcValue = LD->getSrcValue();
4804     int SrcOffset = LD->getSrcValueOffset();
4805     cerr << " <";
4806     if (SrcValue)
4807       cerr << SrcValue;
4808     else
4809       cerr << "null";
4810     cerr << ":" << SrcOffset << ">";
4811
4812     bool doExt = true;
4813     switch (LD->getExtensionType()) {
4814     default: doExt = false; break;
4815     case ISD::EXTLOAD:
4816       cerr << " <anyext ";
4817       break;
4818     case ISD::SEXTLOAD:
4819       cerr << " <sext ";
4820       break;
4821     case ISD::ZEXTLOAD:
4822       cerr << " <zext ";
4823       break;
4824     }
4825     if (doExt)
4826       cerr << LD->getMemoryVT().getMVTString() << ">";
4827
4828     const char *AM = getIndexedModeName(LD->getAddressingMode());
4829     if (*AM)
4830       cerr << " " << AM;
4831     if (LD->isVolatile())
4832       cerr << " <volatile>";
4833     cerr << " alignment=" << LD->getAlignment();
4834   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
4835     const Value *SrcValue = ST->getSrcValue();
4836     int SrcOffset = ST->getSrcValueOffset();
4837     cerr << " <";
4838     if (SrcValue)
4839       cerr << SrcValue;
4840     else
4841       cerr << "null";
4842     cerr << ":" << SrcOffset << ">";
4843
4844     if (ST->isTruncatingStore())
4845       cerr << " <trunc "
4846            << ST->getMemoryVT().getMVTString() << ">";
4847
4848     const char *AM = getIndexedModeName(ST->getAddressingMode());
4849     if (*AM)
4850       cerr << " " << AM;
4851     if (ST->isVolatile())
4852       cerr << " <volatile>";
4853     cerr << " alignment=" << ST->getAlignment();
4854   } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
4855     const Value *SrcValue = AT->getSrcValue();
4856     int SrcOffset = AT->getSrcValueOffset();
4857     cerr << " <";
4858     if (SrcValue)
4859       cerr << SrcValue;
4860     else
4861       cerr << "null";
4862     cerr << ":" << SrcOffset << ">";
4863     if (AT->isVolatile())
4864       cerr << " <volatile>";
4865     cerr << " alignment=" << AT->getAlignment();
4866   }
4867 }
4868
4869 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
4870   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4871     if (N->getOperand(i).Val->hasOneUse())
4872       DumpNodes(N->getOperand(i).Val, indent+2, G);
4873     else
4874       cerr << "\n" << std::string(indent+2, ' ')
4875            << (void*)N->getOperand(i).Val << ": <multiple use>";
4876
4877
4878   cerr << "\n" << std::string(indent, ' ');
4879   N->dump(G);
4880 }
4881
4882 void SelectionDAG::dump() const {
4883   cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
4884   std::vector<const SDNode*> Nodes;
4885   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
4886        I != E; ++I)
4887     Nodes.push_back(I);
4888   
4889   std::sort(Nodes.begin(), Nodes.end());
4890
4891   for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
4892     if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
4893       DumpNodes(Nodes[i], 2, this);
4894   }
4895
4896   if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
4897
4898   cerr << "\n\n";
4899 }
4900
4901 const Type *ConstantPoolSDNode::getType() const {
4902   if (isMachineConstantPoolEntry())
4903     return Val.MachineCPVal->getType();
4904   return Val.ConstVal->getType();
4905 }