Change the SREM case to match the logic in the IR version ComputeMaskedBits.
[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
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "SDNodeOrdering.h"
16 #include "llvm/Constants.h"
17 #include "llvm/Analysis/ValueTracking.h"
18 #include "llvm/Function.h"
19 #include "llvm/GlobalAlias.h"
20 #include "llvm/GlobalVariable.h"
21 #include "llvm/Intrinsics.h"
22 #include "llvm/DerivedTypes.h"
23 #include "llvm/Assembly/Writer.h"
24 #include "llvm/CallingConv.h"
25 #include "llvm/CodeGen/MachineBasicBlock.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineModuleInfo.h"
29 #include "llvm/CodeGen/PseudoSourceValue.h"
30 #include "llvm/Target/TargetRegisterInfo.h"
31 #include "llvm/Target/TargetData.h"
32 #include "llvm/Target/TargetFrameInfo.h"
33 #include "llvm/Target/TargetLowering.h"
34 #include "llvm/Target/TargetOptions.h"
35 #include "llvm/Target/TargetInstrInfo.h"
36 #include "llvm/Target/TargetIntrinsicInfo.h"
37 #include "llvm/Target/TargetMachine.h"
38 #include "llvm/Support/CommandLine.h"
39 #include "llvm/Support/Debug.h"
40 #include "llvm/Support/ErrorHandling.h"
41 #include "llvm/Support/ManagedStatic.h"
42 #include "llvm/Support/MathExtras.h"
43 #include "llvm/Support/raw_ostream.h"
44 #include "llvm/System/Mutex.h"
45 #include "llvm/ADT/SetVector.h"
46 #include "llvm/ADT/SmallPtrSet.h"
47 #include "llvm/ADT/SmallSet.h"
48 #include "llvm/ADT/SmallVector.h"
49 #include "llvm/ADT/StringExtras.h"
50 #include <algorithm>
51 #include <cmath>
52 using namespace llvm;
53
54 /// makeVTList - Return an instance of the SDVTList struct initialized with the
55 /// specified members.
56 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
57   SDVTList Res = {VTs, NumVTs};
58   return Res;
59 }
60
61 static const fltSemantics *EVTToAPFloatSemantics(EVT VT) {
62   switch (VT.getSimpleVT().SimpleTy) {
63   default: llvm_unreachable("Unknown FP format");
64   case MVT::f32:     return &APFloat::IEEEsingle;
65   case MVT::f64:     return &APFloat::IEEEdouble;
66   case MVT::f80:     return &APFloat::x87DoubleExtended;
67   case MVT::f128:    return &APFloat::IEEEquad;
68   case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
69   }
70 }
71
72 SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
73
74 //===----------------------------------------------------------------------===//
75 //                              ConstantFPSDNode Class
76 //===----------------------------------------------------------------------===//
77
78 /// isExactlyValue - We don't rely on operator== working on double values, as
79 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
80 /// As such, this method can be used to do an exact bit-for-bit comparison of
81 /// two floating point values.
82 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
83   return getValueAPF().bitwiseIsEqual(V);
84 }
85
86 bool ConstantFPSDNode::isValueValidForType(EVT VT,
87                                            const APFloat& Val) {
88   assert(VT.isFloatingPoint() && "Can only convert between FP types");
89
90   // PPC long double cannot be converted to any other type.
91   if (VT == MVT::ppcf128 ||
92       &Val.getSemantics() == &APFloat::PPCDoubleDouble)
93     return false;
94
95   // convert modifies in place, so make a copy.
96   APFloat Val2 = APFloat(Val);
97   bool losesInfo;
98   (void) Val2.convert(*EVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
99                       &losesInfo);
100   return !losesInfo;
101 }
102
103 //===----------------------------------------------------------------------===//
104 //                              ISD Namespace
105 //===----------------------------------------------------------------------===//
106
107 /// isBuildVectorAllOnes - Return true if the specified node is a
108 /// BUILD_VECTOR where all of the elements are ~0 or undef.
109 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
110   // Look through a bit convert.
111   if (N->getOpcode() == ISD::BIT_CONVERT)
112     N = N->getOperand(0).getNode();
113
114   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
115
116   unsigned i = 0, e = N->getNumOperands();
117
118   // Skip over all of the undef values.
119   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
120     ++i;
121
122   // Do not accept an all-undef vector.
123   if (i == e) return false;
124
125   // Do not accept build_vectors that aren't all constants or which have non-~0
126   // elements.
127   SDValue NotZero = N->getOperand(i);
128   if (isa<ConstantSDNode>(NotZero)) {
129     if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
130       return false;
131   } else if (isa<ConstantFPSDNode>(NotZero)) {
132     if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
133                 bitcastToAPInt().isAllOnesValue())
134       return false;
135   } else
136     return false;
137
138   // Okay, we have at least one ~0 value, check to see if the rest match or are
139   // undefs.
140   for (++i; i != e; ++i)
141     if (N->getOperand(i) != NotZero &&
142         N->getOperand(i).getOpcode() != ISD::UNDEF)
143       return false;
144   return true;
145 }
146
147
148 /// isBuildVectorAllZeros - Return true if the specified node is a
149 /// BUILD_VECTOR where all of the elements are 0 or undef.
150 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
151   // Look through a bit convert.
152   if (N->getOpcode() == ISD::BIT_CONVERT)
153     N = N->getOperand(0).getNode();
154
155   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
156
157   unsigned i = 0, e = N->getNumOperands();
158
159   // Skip over all of the undef values.
160   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
161     ++i;
162
163   // Do not accept an all-undef vector.
164   if (i == e) return false;
165
166   // Do not accept build_vectors that aren't all constants or which have non-0
167   // elements.
168   SDValue Zero = N->getOperand(i);
169   if (isa<ConstantSDNode>(Zero)) {
170     if (!cast<ConstantSDNode>(Zero)->isNullValue())
171       return false;
172   } else if (isa<ConstantFPSDNode>(Zero)) {
173     if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
174       return false;
175   } else
176     return false;
177
178   // Okay, we have at least one 0 value, check to see if the rest match or are
179   // undefs.
180   for (++i; i != e; ++i)
181     if (N->getOperand(i) != Zero &&
182         N->getOperand(i).getOpcode() != ISD::UNDEF)
183       return false;
184   return true;
185 }
186
187 /// isScalarToVector - Return true if the specified node is a
188 /// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
189 /// element is not an undef.
190 bool ISD::isScalarToVector(const SDNode *N) {
191   if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
192     return true;
193
194   if (N->getOpcode() != ISD::BUILD_VECTOR)
195     return false;
196   if (N->getOperand(0).getOpcode() == ISD::UNDEF)
197     return false;
198   unsigned NumElems = N->getNumOperands();
199   for (unsigned i = 1; i < NumElems; ++i) {
200     SDValue V = N->getOperand(i);
201     if (V.getOpcode() != ISD::UNDEF)
202       return false;
203   }
204   return true;
205 }
206
207 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
208 /// when given the operation for (X op Y).
209 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
210   // To perform this operation, we just need to swap the L and G bits of the
211   // operation.
212   unsigned OldL = (Operation >> 2) & 1;
213   unsigned OldG = (Operation >> 1) & 1;
214   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
215                        (OldL << 1) |       // New G bit
216                        (OldG << 2));       // New L bit.
217 }
218
219 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
220 /// 'op' is a valid SetCC operation.
221 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
222   unsigned Operation = Op;
223   if (isInteger)
224     Operation ^= 7;   // Flip L, G, E bits, but not U.
225   else
226     Operation ^= 15;  // Flip all of the condition bits.
227
228   if (Operation > ISD::SETTRUE2)
229     Operation &= ~8;  // Don't let N and U bits get set.
230
231   return ISD::CondCode(Operation);
232 }
233
234
235 /// isSignedOp - For an integer comparison, return 1 if the comparison is a
236 /// signed operation and 2 if the result is an unsigned comparison.  Return zero
237 /// if the operation does not depend on the sign of the input (setne and seteq).
238 static int isSignedOp(ISD::CondCode Opcode) {
239   switch (Opcode) {
240   default: llvm_unreachable("Illegal integer setcc operation!");
241   case ISD::SETEQ:
242   case ISD::SETNE: return 0;
243   case ISD::SETLT:
244   case ISD::SETLE:
245   case ISD::SETGT:
246   case ISD::SETGE: return 1;
247   case ISD::SETULT:
248   case ISD::SETULE:
249   case ISD::SETUGT:
250   case ISD::SETUGE: return 2;
251   }
252 }
253
254 /// getSetCCOrOperation - Return the result of a logical OR between different
255 /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
256 /// returns SETCC_INVALID if it is not possible to represent the resultant
257 /// comparison.
258 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
259                                        bool isInteger) {
260   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
261     // Cannot fold a signed integer setcc with an unsigned integer setcc.
262     return ISD::SETCC_INVALID;
263
264   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
265
266   // If the N and U bits get set then the resultant comparison DOES suddenly
267   // care about orderedness, and is true when ordered.
268   if (Op > ISD::SETTRUE2)
269     Op &= ~16;     // Clear the U bit if the N bit is set.
270
271   // Canonicalize illegal integer setcc's.
272   if (isInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
273     Op = ISD::SETNE;
274
275   return ISD::CondCode(Op);
276 }
277
278 /// getSetCCAndOperation - Return the result of a logical AND between different
279 /// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
280 /// function returns zero if it is not possible to represent the resultant
281 /// comparison.
282 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
283                                         bool isInteger) {
284   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
285     // Cannot fold a signed setcc with an unsigned setcc.
286     return ISD::SETCC_INVALID;
287
288   // Combine all of the condition bits.
289   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
290
291   // Canonicalize illegal integer setcc's.
292   if (isInteger) {
293     switch (Result) {
294     default: break;
295     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
296     case ISD::SETOEQ:                                 // SETEQ  & SETU[LG]E
297     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
298     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
299     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
300     }
301   }
302
303   return Result;
304 }
305
306 const TargetMachine &SelectionDAG::getTarget() const {
307   return MF->getTarget();
308 }
309
310 //===----------------------------------------------------------------------===//
311 //                           SDNode Profile Support
312 //===----------------------------------------------------------------------===//
313
314 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
315 ///
316 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
317   ID.AddInteger(OpC);
318 }
319
320 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
321 /// solely with their pointer.
322 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
323   ID.AddPointer(VTList.VTs);
324 }
325
326 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
327 ///
328 static void AddNodeIDOperands(FoldingSetNodeID &ID,
329                               const SDValue *Ops, unsigned NumOps) {
330   for (; NumOps; --NumOps, ++Ops) {
331     ID.AddPointer(Ops->getNode());
332     ID.AddInteger(Ops->getResNo());
333   }
334 }
335
336 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
337 ///
338 static void AddNodeIDOperands(FoldingSetNodeID &ID,
339                               const SDUse *Ops, unsigned NumOps) {
340   for (; NumOps; --NumOps, ++Ops) {
341     ID.AddPointer(Ops->getNode());
342     ID.AddInteger(Ops->getResNo());
343   }
344 }
345
346 static void AddNodeIDNode(FoldingSetNodeID &ID,
347                           unsigned short OpC, SDVTList VTList,
348                           const SDValue *OpList, unsigned N) {
349   AddNodeIDOpcode(ID, OpC);
350   AddNodeIDValueTypes(ID, VTList);
351   AddNodeIDOperands(ID, OpList, N);
352 }
353
354 /// AddNodeIDCustom - If this is an SDNode with special info, add this info to
355 /// the NodeID data.
356 static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
357   switch (N->getOpcode()) {
358   case ISD::TargetExternalSymbol:
359   case ISD::ExternalSymbol:
360     llvm_unreachable("Should only be used on nodes with operands");
361   default: break;  // Normal nodes don't need extra info.
362   case ISD::TargetConstant:
363   case ISD::Constant:
364     ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
365     break;
366   case ISD::TargetConstantFP:
367   case ISD::ConstantFP: {
368     ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
369     break;
370   }
371   case ISD::TargetGlobalAddress:
372   case ISD::GlobalAddress:
373   case ISD::TargetGlobalTLSAddress:
374   case ISD::GlobalTLSAddress: {
375     const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
376     ID.AddPointer(GA->getGlobal());
377     ID.AddInteger(GA->getOffset());
378     ID.AddInteger(GA->getTargetFlags());
379     break;
380   }
381   case ISD::BasicBlock:
382     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
383     break;
384   case ISD::Register:
385     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
386     break;
387
388   case ISD::SRCVALUE:
389     ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
390     break;
391   case ISD::FrameIndex:
392   case ISD::TargetFrameIndex:
393     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
394     break;
395   case ISD::JumpTable:
396   case ISD::TargetJumpTable:
397     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
398     ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags());
399     break;
400   case ISD::ConstantPool:
401   case ISD::TargetConstantPool: {
402     const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
403     ID.AddInteger(CP->getAlignment());
404     ID.AddInteger(CP->getOffset());
405     if (CP->isMachineConstantPoolEntry())
406       CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
407     else
408       ID.AddPointer(CP->getConstVal());
409     ID.AddInteger(CP->getTargetFlags());
410     break;
411   }
412   case ISD::LOAD: {
413     const LoadSDNode *LD = cast<LoadSDNode>(N);
414     ID.AddInteger(LD->getMemoryVT().getRawBits());
415     ID.AddInteger(LD->getRawSubclassData());
416     break;
417   }
418   case ISD::STORE: {
419     const StoreSDNode *ST = cast<StoreSDNode>(N);
420     ID.AddInteger(ST->getMemoryVT().getRawBits());
421     ID.AddInteger(ST->getRawSubclassData());
422     break;
423   }
424   case ISD::ATOMIC_CMP_SWAP:
425   case ISD::ATOMIC_SWAP:
426   case ISD::ATOMIC_LOAD_ADD:
427   case ISD::ATOMIC_LOAD_SUB:
428   case ISD::ATOMIC_LOAD_AND:
429   case ISD::ATOMIC_LOAD_OR:
430   case ISD::ATOMIC_LOAD_XOR:
431   case ISD::ATOMIC_LOAD_NAND:
432   case ISD::ATOMIC_LOAD_MIN:
433   case ISD::ATOMIC_LOAD_MAX:
434   case ISD::ATOMIC_LOAD_UMIN:
435   case ISD::ATOMIC_LOAD_UMAX: {
436     const AtomicSDNode *AT = cast<AtomicSDNode>(N);
437     ID.AddInteger(AT->getMemoryVT().getRawBits());
438     ID.AddInteger(AT->getRawSubclassData());
439     break;
440   }
441   case ISD::VECTOR_SHUFFLE: {
442     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
443     for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements();
444          i != e; ++i)
445       ID.AddInteger(SVN->getMaskElt(i));
446     break;
447   }
448   case ISD::TargetBlockAddress:
449   case ISD::BlockAddress: {
450     ID.AddPointer(cast<BlockAddressSDNode>(N)->getBlockAddress());
451     ID.AddInteger(cast<BlockAddressSDNode>(N)->getTargetFlags());
452     break;
453   }
454   } // end switch (N->getOpcode())
455 }
456
457 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
458 /// data.
459 static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
460   AddNodeIDOpcode(ID, N->getOpcode());
461   // Add the return value info.
462   AddNodeIDValueTypes(ID, N->getVTList());
463   // Add the operand info.
464   AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
465
466   // Handle SDNode leafs with special info.
467   AddNodeIDCustom(ID, N);
468 }
469
470 /// encodeMemSDNodeFlags - Generic routine for computing a value for use in
471 /// the CSE map that carries volatility, indexing mode, and
472 /// extension/truncation information.
473 ///
474 static inline unsigned
475 encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile) {
476   assert((ConvType & 3) == ConvType &&
477          "ConvType may not require more than 2 bits!");
478   assert((AM & 7) == AM &&
479          "AM may not require more than 3 bits!");
480   return ConvType |
481          (AM << 2) |
482          (isVolatile << 5);
483 }
484
485 //===----------------------------------------------------------------------===//
486 //                              SelectionDAG Class
487 //===----------------------------------------------------------------------===//
488
489 /// doNotCSE - Return true if CSE should not be performed for this node.
490 static bool doNotCSE(SDNode *N) {
491   if (N->getValueType(0) == MVT::Flag)
492     return true; // Never CSE anything that produces a flag.
493
494   switch (N->getOpcode()) {
495   default: break;
496   case ISD::HANDLENODE:
497   case ISD::EH_LABEL:
498     return true;   // Never CSE these nodes.
499   }
500
501   // Check that remaining values produced are not flags.
502   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
503     if (N->getValueType(i) == MVT::Flag)
504       return true; // Never CSE anything that produces a flag.
505
506   return false;
507 }
508
509 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
510 /// SelectionDAG.
511 void SelectionDAG::RemoveDeadNodes() {
512   // Create a dummy node (which is not added to allnodes), that adds a reference
513   // to the root node, preventing it from being deleted.
514   HandleSDNode Dummy(getRoot());
515
516   SmallVector<SDNode*, 128> DeadNodes;
517
518   // Add all obviously-dead nodes to the DeadNodes worklist.
519   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
520     if (I->use_empty())
521       DeadNodes.push_back(I);
522
523   RemoveDeadNodes(DeadNodes);
524
525   // If the root changed (e.g. it was a dead load, update the root).
526   setRoot(Dummy.getValue());
527 }
528
529 /// RemoveDeadNodes - This method deletes the unreachable nodes in the
530 /// given list, and any nodes that become unreachable as a result.
531 void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
532                                    DAGUpdateListener *UpdateListener) {
533
534   // Process the worklist, deleting the nodes and adding their uses to the
535   // worklist.
536   while (!DeadNodes.empty()) {
537     SDNode *N = DeadNodes.pop_back_val();
538
539     if (UpdateListener)
540       UpdateListener->NodeDeleted(N, 0);
541
542     // Take the node out of the appropriate CSE map.
543     RemoveNodeFromCSEMaps(N);
544
545     // Next, brutally remove the operand list.  This is safe to do, as there are
546     // no cycles in the graph.
547     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
548       SDUse &Use = *I++;
549       SDNode *Operand = Use.getNode();
550       Use.set(SDValue());
551
552       // Now that we removed this operand, see if there are no uses of it left.
553       if (Operand->use_empty())
554         DeadNodes.push_back(Operand);
555     }
556
557     DeallocateNode(N);
558   }
559 }
560
561 void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
562   SmallVector<SDNode*, 16> DeadNodes(1, N);
563   RemoveDeadNodes(DeadNodes, UpdateListener);
564 }
565
566 void SelectionDAG::DeleteNode(SDNode *N) {
567   // First take this out of the appropriate CSE map.
568   RemoveNodeFromCSEMaps(N);
569
570   // Finally, remove uses due to operands of this node, remove from the
571   // AllNodes list, and delete the node.
572   DeleteNodeNotInCSEMaps(N);
573 }
574
575 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
576   assert(N != AllNodes.begin() && "Cannot delete the entry node!");
577   assert(N->use_empty() && "Cannot delete a node that is not dead!");
578
579   // Drop all of the operands and decrement used node's use counts.
580   N->DropOperands();
581
582   DeallocateNode(N);
583 }
584
585 void SelectionDAG::DeallocateNode(SDNode *N) {
586   if (N->OperandsNeedDelete)
587     delete[] N->OperandList;
588
589   // Set the opcode to DELETED_NODE to help catch bugs when node
590   // memory is reallocated.
591   N->NodeType = ISD::DELETED_NODE;
592
593   NodeAllocator.Deallocate(AllNodes.remove(N));
594
595   // Remove the ordering of this node.
596   Ordering->remove(N);
597 }
598
599 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
600 /// correspond to it.  This is useful when we're about to delete or repurpose
601 /// the node.  We don't want future request for structurally identical nodes
602 /// to return N anymore.
603 bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
604   bool Erased = false;
605   switch (N->getOpcode()) {
606   case ISD::EntryToken:
607     llvm_unreachable("EntryToken should not be in CSEMaps!");
608     return false;
609   case ISD::HANDLENODE: return false;  // noop.
610   case ISD::CONDCODE:
611     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
612            "Cond code doesn't exist!");
613     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
614     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
615     break;
616   case ISD::ExternalSymbol:
617     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
618     break;
619   case ISD::TargetExternalSymbol: {
620     ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
621     Erased = TargetExternalSymbols.erase(
622                std::pair<std::string,unsigned char>(ESN->getSymbol(),
623                                                     ESN->getTargetFlags()));
624     break;
625   }
626   case ISD::VALUETYPE: {
627     EVT VT = cast<VTSDNode>(N)->getVT();
628     if (VT.isExtended()) {
629       Erased = ExtendedValueTypeNodes.erase(VT);
630     } else {
631       Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != 0;
632       ValueTypeNodes[VT.getSimpleVT().SimpleTy] = 0;
633     }
634     break;
635   }
636   default:
637     // Remove it from the CSE Map.
638     Erased = CSEMap.RemoveNode(N);
639     break;
640   }
641 #ifndef NDEBUG
642   // Verify that the node was actually in one of the CSE maps, unless it has a
643   // flag result (which cannot be CSE'd) or is one of the special cases that are
644   // not subject to CSE.
645   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
646       !N->isMachineOpcode() && !doNotCSE(N)) {
647     N->dump(this);
648     dbgs() << "\n";
649     llvm_unreachable("Node is not in map!");
650   }
651 #endif
652   return Erased;
653 }
654
655 /// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
656 /// maps and modified in place. Add it back to the CSE maps, unless an identical
657 /// node already exists, in which case transfer all its users to the existing
658 /// node. This transfer can potentially trigger recursive merging.
659 ///
660 void
661 SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N,
662                                        DAGUpdateListener *UpdateListener) {
663   // For node types that aren't CSE'd, just act as if no identical node
664   // already exists.
665   if (!doNotCSE(N)) {
666     SDNode *Existing = CSEMap.GetOrInsertNode(N);
667     if (Existing != N) {
668       // If there was already an existing matching node, use ReplaceAllUsesWith
669       // to replace the dead one with the existing one.  This can cause
670       // recursive merging of other unrelated nodes down the line.
671       ReplaceAllUsesWith(N, Existing, UpdateListener);
672
673       // N is now dead.  Inform the listener if it exists and delete it.
674       if (UpdateListener)
675         UpdateListener->NodeDeleted(N, Existing);
676       DeleteNodeNotInCSEMaps(N);
677       return;
678     }
679   }
680
681   // If the node doesn't already exist, we updated it.  Inform a listener if
682   // it exists.
683   if (UpdateListener)
684     UpdateListener->NodeUpdated(N);
685 }
686
687 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
688 /// were replaced with those specified.  If this node is never memoized,
689 /// return null, otherwise return a pointer to the slot it would take.  If a
690 /// node already exists with these operands, the slot will be non-null.
691 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
692                                            void *&InsertPos) {
693   if (doNotCSE(N))
694     return 0;
695
696   SDValue Ops[] = { Op };
697   FoldingSetNodeID ID;
698   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
699   AddNodeIDCustom(ID, N);
700   SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
701   return Node;
702 }
703
704 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
705 /// were replaced with those specified.  If this node is never memoized,
706 /// return null, otherwise return a pointer to the slot it would take.  If a
707 /// node already exists with these operands, the slot will be non-null.
708 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
709                                            SDValue Op1, SDValue Op2,
710                                            void *&InsertPos) {
711   if (doNotCSE(N))
712     return 0;
713
714   SDValue Ops[] = { Op1, Op2 };
715   FoldingSetNodeID ID;
716   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
717   AddNodeIDCustom(ID, N);
718   SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
719   return Node;
720 }
721
722
723 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
724 /// were replaced with those specified.  If this node is never memoized,
725 /// return null, otherwise return a pointer to the slot it would take.  If a
726 /// node already exists with these operands, the slot will be non-null.
727 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
728                                            const SDValue *Ops,unsigned NumOps,
729                                            void *&InsertPos) {
730   if (doNotCSE(N))
731     return 0;
732
733   FoldingSetNodeID ID;
734   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
735   AddNodeIDCustom(ID, N);
736   SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
737   return Node;
738 }
739
740 /// VerifyNode - Sanity check the given node.  Aborts if it is invalid.
741 void SelectionDAG::VerifyNode(SDNode *N) {
742   switch (N->getOpcode()) {
743   default:
744     break;
745   case ISD::BUILD_PAIR: {
746     EVT VT = N->getValueType(0);
747     assert(N->getNumValues() == 1 && "Too many results!");
748     assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
749            "Wrong return type!");
750     assert(N->getNumOperands() == 2 && "Wrong number of operands!");
751     assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
752            "Mismatched operand types!");
753     assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
754            "Wrong operand type!");
755     assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
756            "Wrong return type size");
757     break;
758   }
759   case ISD::BUILD_VECTOR: {
760     assert(N->getNumValues() == 1 && "Too many results!");
761     assert(N->getValueType(0).isVector() && "Wrong return type!");
762     assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
763            "Wrong number of operands!");
764     EVT EltVT = N->getValueType(0).getVectorElementType();
765     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
766       assert((I->getValueType() == EltVT ||
767              (EltVT.isInteger() && I->getValueType().isInteger() &&
768               EltVT.bitsLE(I->getValueType()))) &&
769             "Wrong operand type!");
770     break;
771   }
772   }
773 }
774
775 /// getEVTAlignment - Compute the default alignment value for the
776 /// given type.
777 ///
778 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
779   const Type *Ty = VT == MVT::iPTR ?
780                    PointerType::get(Type::getInt8Ty(*getContext()), 0) :
781                    VT.getTypeForEVT(*getContext());
782
783   return TLI.getTargetData()->getABITypeAlignment(Ty);
784 }
785
786 // EntryNode could meaningfully have debug info if we can find it...
787 SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
788   : TLI(tli), FLI(fli), DW(0),
789     EntryNode(ISD::EntryToken, DebugLoc::getUnknownLoc(),
790               getVTList(MVT::Other)),
791     Root(getEntryNode()), Ordering(0) {
792   AllNodes.push_back(&EntryNode);
793   Ordering = new SDNodeOrdering();
794 }
795
796 void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi,
797                         DwarfWriter *dw) {
798   MF = &mf;
799   MMI = mmi;
800   DW = dw;
801   Context = &mf.getFunction()->getContext();
802 }
803
804 SelectionDAG::~SelectionDAG() {
805   allnodes_clear();
806   delete Ordering;
807 }
808
809 void SelectionDAG::allnodes_clear() {
810   assert(&*AllNodes.begin() == &EntryNode);
811   AllNodes.remove(AllNodes.begin());
812   while (!AllNodes.empty())
813     DeallocateNode(AllNodes.begin());
814 }
815
816 void SelectionDAG::clear() {
817   allnodes_clear();
818   OperandAllocator.Reset();
819   CSEMap.clear();
820
821   ExtendedValueTypeNodes.clear();
822   ExternalSymbols.clear();
823   TargetExternalSymbols.clear();
824   std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
825             static_cast<CondCodeSDNode*>(0));
826   std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
827             static_cast<SDNode*>(0));
828
829   EntryNode.UseList = 0;
830   AllNodes.push_back(&EntryNode);
831   Root = getEntryNode();
832   Ordering = new SDNodeOrdering();
833 }
834
835 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
836   return VT.bitsGT(Op.getValueType()) ?
837     getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
838     getNode(ISD::TRUNCATE, DL, VT, Op);
839 }
840
841 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, DebugLoc DL, EVT VT) {
842   return VT.bitsGT(Op.getValueType()) ?
843     getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
844     getNode(ISD::TRUNCATE, DL, VT, Op);
845 }
846
847 SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, DebugLoc DL, EVT VT) {
848   assert(!VT.isVector() &&
849          "getZeroExtendInReg should use the vector element type instead of "
850          "the vector type!");
851   if (Op.getValueType() == VT) return Op;
852   unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
853   APInt Imm = APInt::getLowBitsSet(BitWidth,
854                                    VT.getSizeInBits());
855   return getNode(ISD::AND, DL, Op.getValueType(), Op,
856                  getConstant(Imm, Op.getValueType()));
857 }
858
859 /// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
860 ///
861 SDValue SelectionDAG::getNOT(DebugLoc DL, SDValue Val, EVT VT) {
862   EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
863   SDValue NegOne =
864     getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
865   return getNode(ISD::XOR, DL, VT, Val, NegOne);
866 }
867
868 SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT) {
869   EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
870   assert((EltVT.getSizeInBits() >= 64 ||
871          (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
872          "getConstant with a uint64_t value that doesn't fit in the type!");
873   return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
874 }
875
876 SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT) {
877   return getConstant(*ConstantInt::get(*Context, Val), VT, isT);
878 }
879
880 SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT) {
881   assert(VT.isInteger() && "Cannot create FP integer constant!");
882
883   EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
884   assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
885          "APInt size does not match type size!");
886
887   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
888   FoldingSetNodeID ID;
889   AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
890   ID.AddPointer(&Val);
891   void *IP = 0;
892   SDNode *N = NULL;
893   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
894     if (!VT.isVector())
895       return SDValue(N, 0);
896
897   if (!N) {
898     N = NodeAllocator.Allocate<ConstantSDNode>();
899     new (N) ConstantSDNode(isT, &Val, EltVT);
900     CSEMap.InsertNode(N, IP);
901     AllNodes.push_back(N);
902   }
903
904   SDValue Result(N, 0);
905   if (VT.isVector()) {
906     SmallVector<SDValue, 8> Ops;
907     Ops.assign(VT.getVectorNumElements(), Result);
908     Result = getNode(ISD::BUILD_VECTOR, DebugLoc::getUnknownLoc(),
909                      VT, &Ops[0], Ops.size());
910   }
911   return Result;
912 }
913
914 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
915   return getConstant(Val, TLI.getPointerTy(), isTarget);
916 }
917
918
919 SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
920   return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
921 }
922
923 SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
924   assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
925
926   EVT EltVT =
927     VT.isVector() ? VT.getVectorElementType() : VT;
928
929   // Do the map lookup using the actual bit pattern for the floating point
930   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
931   // we don't have issues with SNANs.
932   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
933   FoldingSetNodeID ID;
934   AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
935   ID.AddPointer(&V);
936   void *IP = 0;
937   SDNode *N = NULL;
938   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
939     if (!VT.isVector())
940       return SDValue(N, 0);
941
942   if (!N) {
943     N = NodeAllocator.Allocate<ConstantFPSDNode>();
944     new (N) ConstantFPSDNode(isTarget, &V, EltVT);
945     CSEMap.InsertNode(N, IP);
946     AllNodes.push_back(N);
947   }
948
949   SDValue Result(N, 0);
950   if (VT.isVector()) {
951     SmallVector<SDValue, 8> Ops;
952     Ops.assign(VT.getVectorNumElements(), Result);
953     // FIXME DebugLoc info might be appropriate here
954     Result = getNode(ISD::BUILD_VECTOR, DebugLoc::getUnknownLoc(),
955                      VT, &Ops[0], Ops.size());
956   }
957   return Result;
958 }
959
960 SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
961   EVT EltVT =
962     VT.isVector() ? VT.getVectorElementType() : VT;
963   if (EltVT==MVT::f32)
964     return getConstantFP(APFloat((float)Val), VT, isTarget);
965   else
966     return getConstantFP(APFloat(Val), VT, isTarget);
967 }
968
969 SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
970                                        EVT VT, int64_t Offset,
971                                        bool isTargetGA,
972                                        unsigned char TargetFlags) {
973   assert((TargetFlags == 0 || isTargetGA) &&
974          "Cannot set target flags on target-independent globals");
975
976   // Truncate (with sign-extension) the offset value to the pointer size.
977   EVT PTy = TLI.getPointerTy();
978   unsigned BitWidth = PTy.getSizeInBits();
979   if (BitWidth < 64)
980     Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
981
982   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
983   if (!GVar) {
984     // If GV is an alias then use the aliasee for determining thread-localness.
985     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
986       GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
987   }
988
989   unsigned Opc;
990   if (GVar && GVar->isThreadLocal())
991     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
992   else
993     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
994
995   FoldingSetNodeID ID;
996   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
997   ID.AddPointer(GV);
998   ID.AddInteger(Offset);
999   ID.AddInteger(TargetFlags);
1000   void *IP = 0;
1001   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1002     return SDValue(E, 0);
1003
1004   SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
1005   new (N) GlobalAddressSDNode(Opc, GV, VT, Offset, TargetFlags);
1006   CSEMap.InsertNode(N, IP);
1007   AllNodes.push_back(N);
1008   return SDValue(N, 0);
1009 }
1010
1011 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
1012   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
1013   FoldingSetNodeID ID;
1014   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1015   ID.AddInteger(FI);
1016   void *IP = 0;
1017   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1018     return SDValue(E, 0);
1019
1020   SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
1021   new (N) FrameIndexSDNode(FI, VT, isTarget);
1022   CSEMap.InsertNode(N, IP);
1023   AllNodes.push_back(N);
1024   return SDValue(N, 0);
1025 }
1026
1027 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
1028                                    unsigned char TargetFlags) {
1029   assert((TargetFlags == 0 || isTarget) &&
1030          "Cannot set target flags on target-independent jump tables");
1031   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1032   FoldingSetNodeID ID;
1033   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1034   ID.AddInteger(JTI);
1035   ID.AddInteger(TargetFlags);
1036   void *IP = 0;
1037   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1038     return SDValue(E, 0);
1039
1040   SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
1041   new (N) JumpTableSDNode(JTI, VT, isTarget, TargetFlags);
1042   CSEMap.InsertNode(N, IP);
1043   AllNodes.push_back(N);
1044   return SDValue(N, 0);
1045 }
1046
1047 SDValue SelectionDAG::getConstantPool(Constant *C, EVT VT,
1048                                       unsigned Alignment, int Offset,
1049                                       bool isTarget,
1050                                       unsigned char TargetFlags) {
1051   assert((TargetFlags == 0 || isTarget) &&
1052          "Cannot set target flags on target-independent globals");
1053   if (Alignment == 0)
1054     Alignment = TLI.getTargetData()->getPrefTypeAlignment(C->getType());
1055   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1056   FoldingSetNodeID ID;
1057   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1058   ID.AddInteger(Alignment);
1059   ID.AddInteger(Offset);
1060   ID.AddPointer(C);
1061   ID.AddInteger(TargetFlags);
1062   void *IP = 0;
1063   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1064     return SDValue(E, 0);
1065
1066   SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
1067   new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment, TargetFlags);
1068   CSEMap.InsertNode(N, IP);
1069   AllNodes.push_back(N);
1070   return SDValue(N, 0);
1071 }
1072
1073
1074 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
1075                                       unsigned Alignment, int Offset,
1076                                       bool isTarget,
1077                                       unsigned char TargetFlags) {
1078   assert((TargetFlags == 0 || isTarget) &&
1079          "Cannot set target flags on target-independent globals");
1080   if (Alignment == 0)
1081     Alignment = TLI.getTargetData()->getPrefTypeAlignment(C->getType());
1082   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1083   FoldingSetNodeID ID;
1084   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1085   ID.AddInteger(Alignment);
1086   ID.AddInteger(Offset);
1087   C->AddSelectionDAGCSEId(ID);
1088   ID.AddInteger(TargetFlags);
1089   void *IP = 0;
1090   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1091     return SDValue(E, 0);
1092
1093   SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
1094   new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment, TargetFlags);
1095   CSEMap.InsertNode(N, IP);
1096   AllNodes.push_back(N);
1097   return SDValue(N, 0);
1098 }
1099
1100 SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
1101   FoldingSetNodeID ID;
1102   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
1103   ID.AddPointer(MBB);
1104   void *IP = 0;
1105   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1106     return SDValue(E, 0);
1107
1108   SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
1109   new (N) BasicBlockSDNode(MBB);
1110   CSEMap.InsertNode(N, IP);
1111   AllNodes.push_back(N);
1112   return SDValue(N, 0);
1113 }
1114
1115 SDValue SelectionDAG::getValueType(EVT VT) {
1116   if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1117       ValueTypeNodes.size())
1118     ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
1119
1120   SDNode *&N = VT.isExtended() ?
1121     ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
1122
1123   if (N) return SDValue(N, 0);
1124   N = NodeAllocator.Allocate<VTSDNode>();
1125   new (N) VTSDNode(VT);
1126   AllNodes.push_back(N);
1127   return SDValue(N, 0);
1128 }
1129
1130 SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
1131   SDNode *&N = ExternalSymbols[Sym];
1132   if (N) return SDValue(N, 0);
1133   N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1134   new (N) ExternalSymbolSDNode(false, Sym, 0, VT);
1135   AllNodes.push_back(N);
1136   return SDValue(N, 0);
1137 }
1138
1139 SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
1140                                               unsigned char TargetFlags) {
1141   SDNode *&N =
1142     TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1143                                                                TargetFlags)];
1144   if (N) return SDValue(N, 0);
1145   N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1146   new (N) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
1147   AllNodes.push_back(N);
1148   return SDValue(N, 0);
1149 }
1150
1151 SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
1152   if ((unsigned)Cond >= CondCodeNodes.size())
1153     CondCodeNodes.resize(Cond+1);
1154
1155   if (CondCodeNodes[Cond] == 0) {
1156     CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
1157     new (N) CondCodeSDNode(Cond);
1158     CondCodeNodes[Cond] = N;
1159     AllNodes.push_back(N);
1160   }
1161
1162   return SDValue(CondCodeNodes[Cond], 0);
1163 }
1164
1165 // commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1166 // the shuffle mask M that point at N1 to point at N2, and indices that point
1167 // N2 to point at N1.
1168 static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) {
1169   std::swap(N1, N2);
1170   int NElts = M.size();
1171   for (int i = 0; i != NElts; ++i) {
1172     if (M[i] >= NElts)
1173       M[i] -= NElts;
1174     else if (M[i] >= 0)
1175       M[i] += NElts;
1176   }
1177 }
1178
1179 SDValue SelectionDAG::getVectorShuffle(EVT VT, DebugLoc dl, SDValue N1,
1180                                        SDValue N2, const int *Mask) {
1181   assert(N1.getValueType() == N2.getValueType() && "Invalid VECTOR_SHUFFLE");
1182   assert(VT.isVector() && N1.getValueType().isVector() &&
1183          "Vector Shuffle VTs must be a vectors");
1184   assert(VT.getVectorElementType() == N1.getValueType().getVectorElementType()
1185          && "Vector Shuffle VTs must have same element type");
1186
1187   // Canonicalize shuffle undef, undef -> undef
1188   if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
1189     return getUNDEF(VT);
1190
1191   // Validate that all indices in Mask are within the range of the elements
1192   // input to the shuffle.
1193   unsigned NElts = VT.getVectorNumElements();
1194   SmallVector<int, 8> MaskVec;
1195   for (unsigned i = 0; i != NElts; ++i) {
1196     assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
1197     MaskVec.push_back(Mask[i]);
1198   }
1199
1200   // Canonicalize shuffle v, v -> v, undef
1201   if (N1 == N2) {
1202     N2 = getUNDEF(VT);
1203     for (unsigned i = 0; i != NElts; ++i)
1204       if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
1205   }
1206
1207   // Canonicalize shuffle undef, v -> v, undef.  Commute the shuffle mask.
1208   if (N1.getOpcode() == ISD::UNDEF)
1209     commuteShuffle(N1, N2, MaskVec);
1210
1211   // Canonicalize all index into lhs, -> shuffle lhs, undef
1212   // Canonicalize all index into rhs, -> shuffle rhs, undef
1213   bool AllLHS = true, AllRHS = true;
1214   bool N2Undef = N2.getOpcode() == ISD::UNDEF;
1215   for (unsigned i = 0; i != NElts; ++i) {
1216     if (MaskVec[i] >= (int)NElts) {
1217       if (N2Undef)
1218         MaskVec[i] = -1;
1219       else
1220         AllLHS = false;
1221     } else if (MaskVec[i] >= 0) {
1222       AllRHS = false;
1223     }
1224   }
1225   if (AllLHS && AllRHS)
1226     return getUNDEF(VT);
1227   if (AllLHS && !N2Undef)
1228     N2 = getUNDEF(VT);
1229   if (AllRHS) {
1230     N1 = getUNDEF(VT);
1231     commuteShuffle(N1, N2, MaskVec);
1232   }
1233
1234   // If Identity shuffle, or all shuffle in to undef, return that node.
1235   bool AllUndef = true;
1236   bool Identity = true;
1237   for (unsigned i = 0; i != NElts; ++i) {
1238     if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false;
1239     if (MaskVec[i] >= 0) AllUndef = false;
1240   }
1241   if (Identity && NElts == N1.getValueType().getVectorNumElements())
1242     return N1;
1243   if (AllUndef)
1244     return getUNDEF(VT);
1245
1246   FoldingSetNodeID ID;
1247   SDValue Ops[2] = { N1, N2 };
1248   AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops, 2);
1249   for (unsigned i = 0; i != NElts; ++i)
1250     ID.AddInteger(MaskVec[i]);
1251
1252   void* IP = 0;
1253   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1254     return SDValue(E, 0);
1255
1256   // Allocate the mask array for the node out of the BumpPtrAllocator, since
1257   // SDNode doesn't have access to it.  This memory will be "leaked" when
1258   // the node is deallocated, but recovered when the NodeAllocator is released.
1259   int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1260   memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int));
1261
1262   ShuffleVectorSDNode *N = NodeAllocator.Allocate<ShuffleVectorSDNode>();
1263   new (N) ShuffleVectorSDNode(VT, dl, N1, N2, MaskAlloc);
1264   CSEMap.InsertNode(N, IP);
1265   AllNodes.push_back(N);
1266   return SDValue(N, 0);
1267 }
1268
1269 SDValue SelectionDAG::getConvertRndSat(EVT VT, DebugLoc dl,
1270                                        SDValue Val, SDValue DTy,
1271                                        SDValue STy, SDValue Rnd, SDValue Sat,
1272                                        ISD::CvtCode Code) {
1273   // If the src and dest types are the same and the conversion is between
1274   // integer types of the same sign or two floats, no conversion is necessary.
1275   if (DTy == STy &&
1276       (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF))
1277     return Val;
1278
1279   FoldingSetNodeID ID;
1280   SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1281   AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), &Ops[0], 5);
1282   void* IP = 0;
1283   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1284     return SDValue(E, 0);
1285
1286   CvtRndSatSDNode *N = NodeAllocator.Allocate<CvtRndSatSDNode>();
1287   new (N) CvtRndSatSDNode(VT, dl, Ops, 5, Code);
1288   CSEMap.InsertNode(N, IP);
1289   AllNodes.push_back(N);
1290   return SDValue(N, 0);
1291 }
1292
1293 SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
1294   FoldingSetNodeID ID;
1295   AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
1296   ID.AddInteger(RegNo);
1297   void *IP = 0;
1298   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1299     return SDValue(E, 0);
1300
1301   SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
1302   new (N) RegisterSDNode(RegNo, VT);
1303   CSEMap.InsertNode(N, IP);
1304   AllNodes.push_back(N);
1305   return SDValue(N, 0);
1306 }
1307
1308 SDValue SelectionDAG::getLabel(unsigned Opcode, DebugLoc dl,
1309                                SDValue Root,
1310                                unsigned LabelID) {
1311   FoldingSetNodeID ID;
1312   SDValue Ops[] = { Root };
1313   AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1314   ID.AddInteger(LabelID);
1315   void *IP = 0;
1316   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1317     return SDValue(E, 0);
1318
1319   SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
1320   new (N) LabelSDNode(Opcode, dl, Root, LabelID);
1321   CSEMap.InsertNode(N, IP);
1322   AllNodes.push_back(N);
1323   return SDValue(N, 0);
1324 }
1325
1326 SDValue SelectionDAG::getBlockAddress(BlockAddress *BA, EVT VT,
1327                                       bool isTarget,
1328                                       unsigned char TargetFlags) {
1329   unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1330
1331   FoldingSetNodeID ID;
1332   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1333   ID.AddPointer(BA);
1334   ID.AddInteger(TargetFlags);
1335   void *IP = 0;
1336   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1337     return SDValue(E, 0);
1338
1339   SDNode *N = NodeAllocator.Allocate<BlockAddressSDNode>();
1340   new (N) BlockAddressSDNode(Opc, VT, BA, TargetFlags);
1341   CSEMap.InsertNode(N, IP);
1342   AllNodes.push_back(N);
1343   return SDValue(N, 0);
1344 }
1345
1346 SDValue SelectionDAG::getSrcValue(const Value *V) {
1347   assert((!V || isa<PointerType>(V->getType())) &&
1348          "SrcValue is not a pointer?");
1349
1350   FoldingSetNodeID ID;
1351   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
1352   ID.AddPointer(V);
1353
1354   void *IP = 0;
1355   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1356     return SDValue(E, 0);
1357
1358   SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
1359   new (N) SrcValueSDNode(V);
1360   CSEMap.InsertNode(N, IP);
1361   AllNodes.push_back(N);
1362   return SDValue(N, 0);
1363 }
1364
1365 /// getShiftAmountOperand - Return the specified value casted to
1366 /// the target's desired shift amount type.
1367 SDValue SelectionDAG::getShiftAmountOperand(SDValue Op) {
1368   EVT OpTy = Op.getValueType();
1369   MVT ShTy = TLI.getShiftAmountTy();
1370   if (OpTy == ShTy || OpTy.isVector()) return Op;
1371
1372   ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ?  ISD::TRUNCATE : ISD::ZERO_EXTEND;
1373   return getNode(Opcode, Op.getDebugLoc(), ShTy, Op);
1374 }
1375
1376 /// CreateStackTemporary - Create a stack temporary, suitable for holding the
1377 /// specified value type.
1378 SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
1379   MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1380   unsigned ByteSize = VT.getStoreSize();
1381   const Type *Ty = VT.getTypeForEVT(*getContext());
1382   unsigned StackAlign =
1383   std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1384
1385   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
1386   return getFrameIndex(FrameIdx, TLI.getPointerTy());
1387 }
1388
1389 /// CreateStackTemporary - Create a stack temporary suitable for holding
1390 /// either of the specified value types.
1391 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
1392   unsigned Bytes = std::max(VT1.getStoreSizeInBits(),
1393                             VT2.getStoreSizeInBits())/8;
1394   const Type *Ty1 = VT1.getTypeForEVT(*getContext());
1395   const Type *Ty2 = VT2.getTypeForEVT(*getContext());
1396   const TargetData *TD = TLI.getTargetData();
1397   unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1),
1398                             TD->getPrefTypeAlignment(Ty2));
1399
1400   MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1401   int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false);
1402   return getFrameIndex(FrameIdx, TLI.getPointerTy());
1403 }
1404
1405 SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1,
1406                                 SDValue N2, ISD::CondCode Cond, DebugLoc dl) {
1407   // These setcc operations always fold.
1408   switch (Cond) {
1409   default: break;
1410   case ISD::SETFALSE:
1411   case ISD::SETFALSE2: return getConstant(0, VT);
1412   case ISD::SETTRUE:
1413   case ISD::SETTRUE2:  return getConstant(1, VT);
1414
1415   case ISD::SETOEQ:
1416   case ISD::SETOGT:
1417   case ISD::SETOGE:
1418   case ISD::SETOLT:
1419   case ISD::SETOLE:
1420   case ISD::SETONE:
1421   case ISD::SETO:
1422   case ISD::SETUO:
1423   case ISD::SETUEQ:
1424   case ISD::SETUNE:
1425     assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
1426     break;
1427   }
1428
1429   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
1430     const APInt &C2 = N2C->getAPIntValue();
1431     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
1432       const APInt &C1 = N1C->getAPIntValue();
1433
1434       switch (Cond) {
1435       default: llvm_unreachable("Unknown integer setcc!");
1436       case ISD::SETEQ:  return getConstant(C1 == C2, VT);
1437       case ISD::SETNE:  return getConstant(C1 != C2, VT);
1438       case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1439       case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1440       case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1441       case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1442       case ISD::SETLT:  return getConstant(C1.slt(C2), VT);
1443       case ISD::SETGT:  return getConstant(C1.sgt(C2), VT);
1444       case ISD::SETLE:  return getConstant(C1.sle(C2), VT);
1445       case ISD::SETGE:  return getConstant(C1.sge(C2), VT);
1446       }
1447     }
1448   }
1449   if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1450     if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
1451       // No compile time operations on this type yet.
1452       if (N1C->getValueType(0) == MVT::ppcf128)
1453         return SDValue();
1454
1455       APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
1456       switch (Cond) {
1457       default: break;
1458       case ISD::SETEQ:  if (R==APFloat::cmpUnordered)
1459                           return getUNDEF(VT);
1460                         // fall through
1461       case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1462       case ISD::SETNE:  if (R==APFloat::cmpUnordered)
1463                           return getUNDEF(VT);
1464                         // fall through
1465       case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
1466                                            R==APFloat::cmpLessThan, VT);
1467       case ISD::SETLT:  if (R==APFloat::cmpUnordered)
1468                           return getUNDEF(VT);
1469                         // fall through
1470       case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1471       case ISD::SETGT:  if (R==APFloat::cmpUnordered)
1472                           return getUNDEF(VT);
1473                         // fall through
1474       case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1475       case ISD::SETLE:  if (R==APFloat::cmpUnordered)
1476                           return getUNDEF(VT);
1477                         // fall through
1478       case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
1479                                            R==APFloat::cmpEqual, VT);
1480       case ISD::SETGE:  if (R==APFloat::cmpUnordered)
1481                           return getUNDEF(VT);
1482                         // fall through
1483       case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
1484                                            R==APFloat::cmpEqual, VT);
1485       case ISD::SETO:   return getConstant(R!=APFloat::cmpUnordered, VT);
1486       case ISD::SETUO:  return getConstant(R==APFloat::cmpUnordered, VT);
1487       case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1488                                            R==APFloat::cmpEqual, VT);
1489       case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1490       case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1491                                            R==APFloat::cmpLessThan, VT);
1492       case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1493                                            R==APFloat::cmpUnordered, VT);
1494       case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1495       case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
1496       }
1497     } else {
1498       // Ensure that the constant occurs on the RHS.
1499       return getSetCC(dl, VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
1500     }
1501   }
1502
1503   // Could not fold it.
1504   return SDValue();
1505 }
1506
1507 /// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
1508 /// use this predicate to simplify operations downstream.
1509 bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
1510   // This predicate is not safe for vector operations.
1511   if (Op.getValueType().isVector())
1512     return false;
1513
1514   unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
1515   return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1516 }
1517
1518 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
1519 /// this predicate to simplify operations downstream.  Mask is known to be zero
1520 /// for bits that V cannot have.
1521 bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
1522                                      unsigned Depth) const {
1523   APInt KnownZero, KnownOne;
1524   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1525   assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1526   return (KnownZero & Mask) == Mask;
1527 }
1528
1529 /// ComputeMaskedBits - Determine which of the bits specified in Mask are
1530 /// known to be either zero or one and return them in the KnownZero/KnownOne
1531 /// bitsets.  This code only analyzes bits in Mask, in order to short-circuit
1532 /// processing.
1533 void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
1534                                      APInt &KnownZero, APInt &KnownOne,
1535                                      unsigned Depth) const {
1536   unsigned BitWidth = Mask.getBitWidth();
1537   assert(BitWidth == Op.getValueType().getScalarType().getSizeInBits() &&
1538          "Mask size mismatches value type size!");
1539
1540   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
1541   if (Depth == 6 || Mask == 0)
1542     return;  // Limit search depth.
1543
1544   APInt KnownZero2, KnownOne2;
1545
1546   switch (Op.getOpcode()) {
1547   case ISD::Constant:
1548     // We know all of the bits for a constant!
1549     KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
1550     KnownZero = ~KnownOne & Mask;
1551     return;
1552   case ISD::AND:
1553     // If either the LHS or the RHS are Zero, the result is zero.
1554     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1555     ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1556                       KnownZero2, KnownOne2, Depth+1);
1557     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1558     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1559
1560     // Output known-1 bits are only known if set in both the LHS & RHS.
1561     KnownOne &= KnownOne2;
1562     // Output known-0 are known to be clear if zero in either the LHS | RHS.
1563     KnownZero |= KnownZero2;
1564     return;
1565   case ISD::OR:
1566     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1567     ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1568                       KnownZero2, KnownOne2, Depth+1);
1569     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1570     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1571
1572     // Output known-0 bits are only known if clear in both the LHS & RHS.
1573     KnownZero &= KnownZero2;
1574     // Output known-1 are known to be set if set in either the LHS | RHS.
1575     KnownOne |= KnownOne2;
1576     return;
1577   case ISD::XOR: {
1578     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1579     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1580     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1581     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1582
1583     // Output known-0 bits are known if clear or set in both the LHS & RHS.
1584     APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1585     // Output known-1 are known to be set if set in only one of the LHS, RHS.
1586     KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1587     KnownZero = KnownZeroOut;
1588     return;
1589   }
1590   case ISD::MUL: {
1591     APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1592     ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1593     ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1594     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1595     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1596
1597     // If low bits are zero in either operand, output low known-0 bits.
1598     // Also compute a conserative estimate for high known-0 bits.
1599     // More trickiness is possible, but this is sufficient for the
1600     // interesting case of alignment computation.
1601     KnownOne.clear();
1602     unsigned TrailZ = KnownZero.countTrailingOnes() +
1603                       KnownZero2.countTrailingOnes();
1604     unsigned LeadZ =  std::max(KnownZero.countLeadingOnes() +
1605                                KnownZero2.countLeadingOnes(),
1606                                BitWidth) - BitWidth;
1607
1608     TrailZ = std::min(TrailZ, BitWidth);
1609     LeadZ = std::min(LeadZ, BitWidth);
1610     KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1611                 APInt::getHighBitsSet(BitWidth, LeadZ);
1612     KnownZero &= Mask;
1613     return;
1614   }
1615   case ISD::UDIV: {
1616     // For the purposes of computing leading zeros we can conservatively
1617     // treat a udiv as a logical right shift by the power of 2 known to
1618     // be less than the denominator.
1619     APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1620     ComputeMaskedBits(Op.getOperand(0),
1621                       AllOnes, KnownZero2, KnownOne2, Depth+1);
1622     unsigned LeadZ = KnownZero2.countLeadingOnes();
1623
1624     KnownOne2.clear();
1625     KnownZero2.clear();
1626     ComputeMaskedBits(Op.getOperand(1),
1627                       AllOnes, KnownZero2, KnownOne2, Depth+1);
1628     unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1629     if (RHSUnknownLeadingOnes != BitWidth)
1630       LeadZ = std::min(BitWidth,
1631                        LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
1632
1633     KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1634     return;
1635   }
1636   case ISD::SELECT:
1637     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1638     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1639     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1640     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1641
1642     // Only known if known in both the LHS and RHS.
1643     KnownOne &= KnownOne2;
1644     KnownZero &= KnownZero2;
1645     return;
1646   case ISD::SELECT_CC:
1647     ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1648     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1649     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1650     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1651
1652     // Only known if known in both the LHS and RHS.
1653     KnownOne &= KnownOne2;
1654     KnownZero &= KnownZero2;
1655     return;
1656   case ISD::SADDO:
1657   case ISD::UADDO:
1658   case ISD::SSUBO:
1659   case ISD::USUBO:
1660   case ISD::SMULO:
1661   case ISD::UMULO:
1662     if (Op.getResNo() != 1)
1663       return;
1664     // The boolean result conforms to getBooleanContents.  Fall through.
1665   case ISD::SETCC:
1666     // If we know the result of a setcc has the top bits zero, use this info.
1667     if (TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent &&
1668         BitWidth > 1)
1669       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1670     return;
1671   case ISD::SHL:
1672     // (shl X, C1) & C2 == 0   iff   (X & C2 >>u C1) == 0
1673     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1674       unsigned ShAmt = SA->getZExtValue();
1675
1676       // If the shift count is an invalid immediate, don't do anything.
1677       if (ShAmt >= BitWidth)
1678         return;
1679
1680       ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
1681                         KnownZero, KnownOne, Depth+1);
1682       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1683       KnownZero <<= ShAmt;
1684       KnownOne  <<= ShAmt;
1685       // low bits known zero.
1686       KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
1687     }
1688     return;
1689   case ISD::SRL:
1690     // (ushr X, C1) & C2 == 0   iff  (-1 >> C1) & C2 == 0
1691     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1692       unsigned ShAmt = SA->getZExtValue();
1693
1694       // If the shift count is an invalid immediate, don't do anything.
1695       if (ShAmt >= BitWidth)
1696         return;
1697
1698       ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
1699                         KnownZero, KnownOne, Depth+1);
1700       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1701       KnownZero = KnownZero.lshr(ShAmt);
1702       KnownOne  = KnownOne.lshr(ShAmt);
1703
1704       APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1705       KnownZero |= HighBits;  // High bits known zero.
1706     }
1707     return;
1708   case ISD::SRA:
1709     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1710       unsigned ShAmt = SA->getZExtValue();
1711
1712       // If the shift count is an invalid immediate, don't do anything.
1713       if (ShAmt >= BitWidth)
1714         return;
1715
1716       APInt InDemandedMask = (Mask << ShAmt);
1717       // If any of the demanded bits are produced by the sign extension, we also
1718       // demand the input sign bit.
1719       APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1720       if (HighBits.getBoolValue())
1721         InDemandedMask |= APInt::getSignBit(BitWidth);
1722
1723       ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1724                         Depth+1);
1725       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1726       KnownZero = KnownZero.lshr(ShAmt);
1727       KnownOne  = KnownOne.lshr(ShAmt);
1728
1729       // Handle the sign bits.
1730       APInt SignBit = APInt::getSignBit(BitWidth);
1731       SignBit = SignBit.lshr(ShAmt);  // Adjust to where it is now in the mask.
1732
1733       if (KnownZero.intersects(SignBit)) {
1734         KnownZero |= HighBits;  // New bits are known zero.
1735       } else if (KnownOne.intersects(SignBit)) {
1736         KnownOne  |= HighBits;  // New bits are known one.
1737       }
1738     }
1739     return;
1740   case ISD::SIGN_EXTEND_INREG: {
1741     EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1742     unsigned EBits = EVT.getScalarType().getSizeInBits();
1743
1744     // Sign extension.  Compute the demanded bits in the result that are not
1745     // present in the input.
1746     APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
1747
1748     APInt InSignBit = APInt::getSignBit(EBits);
1749     APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
1750
1751     // If the sign extended bits are demanded, we know that the sign
1752     // bit is demanded.
1753     InSignBit.zext(BitWidth);
1754     if (NewBits.getBoolValue())
1755       InputDemandedBits |= InSignBit;
1756
1757     ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1758                       KnownZero, KnownOne, Depth+1);
1759     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1760
1761     // If the sign bit of the input is known set or clear, then we know the
1762     // top bits of the result.
1763     if (KnownZero.intersects(InSignBit)) {         // Input sign bit known clear
1764       KnownZero |= NewBits;
1765       KnownOne  &= ~NewBits;
1766     } else if (KnownOne.intersects(InSignBit)) {   // Input sign bit known set
1767       KnownOne  |= NewBits;
1768       KnownZero &= ~NewBits;
1769     } else {                              // Input sign bit unknown
1770       KnownZero &= ~NewBits;
1771       KnownOne  &= ~NewBits;
1772     }
1773     return;
1774   }
1775   case ISD::CTTZ:
1776   case ISD::CTLZ:
1777   case ISD::CTPOP: {
1778     unsigned LowBits = Log2_32(BitWidth)+1;
1779     KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1780     KnownOne.clear();
1781     return;
1782   }
1783   case ISD::LOAD: {
1784     if (ISD::isZEXTLoad(Op.getNode())) {
1785       LoadSDNode *LD = cast<LoadSDNode>(Op);
1786       EVT VT = LD->getMemoryVT();
1787       unsigned MemBits = VT.getScalarType().getSizeInBits();
1788       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
1789     }
1790     return;
1791   }
1792   case ISD::ZERO_EXTEND: {
1793     EVT InVT = Op.getOperand(0).getValueType();
1794     unsigned InBits = InVT.getScalarType().getSizeInBits();
1795     APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1796     APInt InMask    = Mask;
1797     InMask.trunc(InBits);
1798     KnownZero.trunc(InBits);
1799     KnownOne.trunc(InBits);
1800     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1801     KnownZero.zext(BitWidth);
1802     KnownOne.zext(BitWidth);
1803     KnownZero |= NewBits;
1804     return;
1805   }
1806   case ISD::SIGN_EXTEND: {
1807     EVT InVT = Op.getOperand(0).getValueType();
1808     unsigned InBits = InVT.getScalarType().getSizeInBits();
1809     APInt InSignBit = APInt::getSignBit(InBits);
1810     APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1811     APInt InMask = Mask;
1812     InMask.trunc(InBits);
1813
1814     // If any of the sign extended bits are demanded, we know that the sign
1815     // bit is demanded. Temporarily set this bit in the mask for our callee.
1816     if (NewBits.getBoolValue())
1817       InMask |= InSignBit;
1818
1819     KnownZero.trunc(InBits);
1820     KnownOne.trunc(InBits);
1821     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1822
1823     // Note if the sign bit is known to be zero or one.
1824     bool SignBitKnownZero = KnownZero.isNegative();
1825     bool SignBitKnownOne  = KnownOne.isNegative();
1826     assert(!(SignBitKnownZero && SignBitKnownOne) &&
1827            "Sign bit can't be known to be both zero and one!");
1828
1829     // If the sign bit wasn't actually demanded by our caller, we don't
1830     // want it set in the KnownZero and KnownOne result values. Reset the
1831     // mask and reapply it to the result values.
1832     InMask = Mask;
1833     InMask.trunc(InBits);
1834     KnownZero &= InMask;
1835     KnownOne  &= InMask;
1836
1837     KnownZero.zext(BitWidth);
1838     KnownOne.zext(BitWidth);
1839
1840     // If the sign bit is known zero or one, the top bits match.
1841     if (SignBitKnownZero)
1842       KnownZero |= NewBits;
1843     else if (SignBitKnownOne)
1844       KnownOne  |= NewBits;
1845     return;
1846   }
1847   case ISD::ANY_EXTEND: {
1848     EVT InVT = Op.getOperand(0).getValueType();
1849     unsigned InBits = InVT.getScalarType().getSizeInBits();
1850     APInt InMask = Mask;
1851     InMask.trunc(InBits);
1852     KnownZero.trunc(InBits);
1853     KnownOne.trunc(InBits);
1854     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1855     KnownZero.zext(BitWidth);
1856     KnownOne.zext(BitWidth);
1857     return;
1858   }
1859   case ISD::TRUNCATE: {
1860     EVT InVT = Op.getOperand(0).getValueType();
1861     unsigned InBits = InVT.getScalarType().getSizeInBits();
1862     APInt InMask = Mask;
1863     InMask.zext(InBits);
1864     KnownZero.zext(InBits);
1865     KnownOne.zext(InBits);
1866     ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1867     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1868     KnownZero.trunc(BitWidth);
1869     KnownOne.trunc(BitWidth);
1870     break;
1871   }
1872   case ISD::AssertZext: {
1873     EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1874     APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
1875     ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1876                       KnownOne, Depth+1);
1877     KnownZero |= (~InMask) & Mask;
1878     return;
1879   }
1880   case ISD::FGETSIGN:
1881     // All bits are zero except the low bit.
1882     KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1883     return;
1884
1885   case ISD::SUB: {
1886     if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1887       // We know that the top bits of C-X are clear if X contains less bits
1888       // than C (i.e. no wrap-around can happen).  For example, 20-X is
1889       // positive if we can prove that X is >= 0 and < 16.
1890       if (CLHS->getAPIntValue().isNonNegative()) {
1891         unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1892         // NLZ can't be BitWidth with no sign bit
1893         APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1894         ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1895                           Depth+1);
1896
1897         // If all of the MaskV bits are known to be zero, then we know the
1898         // output top bits are zero, because we now know that the output is
1899         // from [0-C].
1900         if ((KnownZero2 & MaskV) == MaskV) {
1901           unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1902           // Top bits known zero.
1903           KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1904         }
1905       }
1906     }
1907   }
1908   // fall through
1909   case ISD::ADD: {
1910     // Output known-0 bits are known if clear or set in both the low clear bits
1911     // common to both LHS & RHS.  For example, 8+(X<<3) is known to have the
1912     // low 3 bits clear.
1913     APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1914     ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1915     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1916     unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1917
1918     ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1919     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1920     KnownZeroOut = std::min(KnownZeroOut,
1921                             KnownZero2.countTrailingOnes());
1922
1923     KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1924     return;
1925   }
1926   case ISD::SREM:
1927     if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1928       const APInt &RA = Rem->getAPIntValue().abs();
1929       if (RA.isPowerOf2()) {
1930         APInt LowBits = RA - 1;
1931         APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1932         ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
1933
1934         // The low bits of the first operand are unchanged by the srem.
1935         KnownZero = KnownZero2 & LowBits;
1936         KnownOne = KnownOne2 & LowBits;
1937
1938         // If the first operand is non-negative or has all low bits zero, then
1939         // the upper bits are all zero.
1940         if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1941           KnownZero |= ~LowBits;
1942
1943         // If the first operand is negative and not all low bits are zero, then
1944         // the upper bits are all one.
1945         if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
1946           KnownOne |= ~LowBits;
1947
1948         KnownZero &= Mask;
1949         KnownOne &= Mask;
1950
1951         assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1952       }
1953     }
1954     return;
1955   case ISD::UREM: {
1956     if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1957       const APInt &RA = Rem->getAPIntValue();
1958       if (RA.isPowerOf2()) {
1959         APInt LowBits = (RA - 1);
1960         APInt Mask2 = LowBits & Mask;
1961         KnownZero |= ~LowBits & Mask;
1962         ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1963         assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1964         break;
1965       }
1966     }
1967
1968     // Since the result is less than or equal to either operand, any leading
1969     // zero bits in either operand must also exist in the result.
1970     APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1971     ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1972                       Depth+1);
1973     ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1974                       Depth+1);
1975
1976     uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1977                                 KnownZero2.countLeadingOnes());
1978     KnownOne.clear();
1979     KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1980     return;
1981   }
1982   default:
1983     // Allow the target to implement this method for its nodes.
1984     if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1985   case ISD::INTRINSIC_WO_CHAIN:
1986   case ISD::INTRINSIC_W_CHAIN:
1987   case ISD::INTRINSIC_VOID:
1988       TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this,
1989                                          Depth);
1990     }
1991     return;
1992   }
1993 }
1994
1995 /// ComputeNumSignBits - Return the number of times the sign bit of the
1996 /// register is replicated into the other bits.  We know that at least 1 bit
1997 /// is always equal to the sign bit (itself), but other cases can give us
1998 /// information.  For example, immediately after an "SRA X, 2", we know that
1999 /// the top 3 bits are all equal to each other, so we return 3.
2000 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
2001   EVT VT = Op.getValueType();
2002   assert(VT.isInteger() && "Invalid VT!");
2003   unsigned VTBits = VT.getScalarType().getSizeInBits();
2004   unsigned Tmp, Tmp2;
2005   unsigned FirstAnswer = 1;
2006
2007   if (Depth == 6)
2008     return 1;  // Limit search depth.
2009
2010   switch (Op.getOpcode()) {
2011   default: break;
2012   case ISD::AssertSext:
2013     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
2014     return VTBits-Tmp+1;
2015   case ISD::AssertZext:
2016     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
2017     return VTBits-Tmp;
2018
2019   case ISD::Constant: {
2020     const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
2021     // If negative, return # leading ones.
2022     if (Val.isNegative())
2023       return Val.countLeadingOnes();
2024
2025     // Return # leading zeros.
2026     return Val.countLeadingZeros();
2027   }
2028
2029   case ISD::SIGN_EXTEND:
2030     Tmp = VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
2031     return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
2032
2033   case ISD::SIGN_EXTEND_INREG:
2034     // Max of the input and what this extends.
2035     Tmp =
2036       cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits();
2037     Tmp = VTBits-Tmp+1;
2038
2039     Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2040     return std::max(Tmp, Tmp2);
2041
2042   case ISD::SRA:
2043     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2044     // SRA X, C   -> adds C sign bits.
2045     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2046       Tmp += C->getZExtValue();
2047       if (Tmp > VTBits) Tmp = VTBits;
2048     }
2049     return Tmp;
2050   case ISD::SHL:
2051     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2052       // shl destroys sign bits.
2053       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2054       if (C->getZExtValue() >= VTBits ||      // Bad shift.
2055           C->getZExtValue() >= Tmp) break;    // Shifted all sign bits out.
2056       return Tmp - C->getZExtValue();
2057     }
2058     break;
2059   case ISD::AND:
2060   case ISD::OR:
2061   case ISD::XOR:    // NOT is handled here.
2062     // Logical binary ops preserve the number of sign bits at the worst.
2063     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2064     if (Tmp != 1) {
2065       Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2066       FirstAnswer = std::min(Tmp, Tmp2);
2067       // We computed what we know about the sign bits as our first
2068       // answer. Now proceed to the generic code that uses
2069       // ComputeMaskedBits, and pick whichever answer is better.
2070     }
2071     break;
2072
2073   case ISD::SELECT:
2074     Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2075     if (Tmp == 1) return 1;  // Early out.
2076     Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
2077     return std::min(Tmp, Tmp2);
2078
2079   case ISD::SADDO:
2080   case ISD::UADDO:
2081   case ISD::SSUBO:
2082   case ISD::USUBO:
2083   case ISD::SMULO:
2084   case ISD::UMULO:
2085     if (Op.getResNo() != 1)
2086       break;
2087     // The boolean result conforms to getBooleanContents.  Fall through.
2088   case ISD::SETCC:
2089     // If setcc returns 0/-1, all bits are sign bits.
2090     if (TLI.getBooleanContents() ==
2091         TargetLowering::ZeroOrNegativeOneBooleanContent)
2092       return VTBits;
2093     break;
2094   case ISD::ROTL:
2095   case ISD::ROTR:
2096     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2097       unsigned RotAmt = C->getZExtValue() & (VTBits-1);
2098
2099       // Handle rotate right by N like a rotate left by 32-N.
2100       if (Op.getOpcode() == ISD::ROTR)
2101         RotAmt = (VTBits-RotAmt) & (VTBits-1);
2102
2103       // If we aren't rotating out all of the known-in sign bits, return the
2104       // number that are left.  This handles rotl(sext(x), 1) for example.
2105       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2106       if (Tmp > RotAmt+1) return Tmp-RotAmt;
2107     }
2108     break;
2109   case ISD::ADD:
2110     // Add can have at most one carry bit.  Thus we know that the output
2111     // is, at worst, one more bit than the inputs.
2112     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2113     if (Tmp == 1) return 1;  // Early out.
2114
2115     // Special case decrementing a value (ADD X, -1):
2116     if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2117       if (CRHS->isAllOnesValue()) {
2118         APInt KnownZero, KnownOne;
2119         APInt Mask = APInt::getAllOnesValue(VTBits);
2120         ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
2121
2122         // If the input is known to be 0 or 1, the output is 0/-1, which is all
2123         // sign bits set.
2124         if ((KnownZero | APInt(VTBits, 1)) == Mask)
2125           return VTBits;
2126
2127         // If we are subtracting one from a positive number, there is no carry
2128         // out of the result.
2129         if (KnownZero.isNegative())
2130           return Tmp;
2131       }
2132
2133     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2134     if (Tmp2 == 1) return 1;
2135       return std::min(Tmp, Tmp2)-1;
2136     break;
2137
2138   case ISD::SUB:
2139     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2140     if (Tmp2 == 1) return 1;
2141
2142     // Handle NEG.
2143     if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
2144       if (CLHS->isNullValue()) {
2145         APInt KnownZero, KnownOne;
2146         APInt Mask = APInt::getAllOnesValue(VTBits);
2147         ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
2148         // If the input is known to be 0 or 1, the output is 0/-1, which is all
2149         // sign bits set.
2150         if ((KnownZero | APInt(VTBits, 1)) == Mask)
2151           return VTBits;
2152
2153         // If the input is known to be positive (the sign bit is known clear),
2154         // the output of the NEG has the same number of sign bits as the input.
2155         if (KnownZero.isNegative())
2156           return Tmp2;
2157
2158         // Otherwise, we treat this like a SUB.
2159       }
2160
2161     // Sub can have at most one carry bit.  Thus we know that the output
2162     // is, at worst, one more bit than the inputs.
2163     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2164     if (Tmp == 1) return 1;  // Early out.
2165       return std::min(Tmp, Tmp2)-1;
2166     break;
2167   case ISD::TRUNCATE:
2168     // FIXME: it's tricky to do anything useful for this, but it is an important
2169     // case for targets like X86.
2170     break;
2171   }
2172
2173   // Handle LOADX separately here. EXTLOAD case will fallthrough.
2174   if (Op.getOpcode() == ISD::LOAD) {
2175     LoadSDNode *LD = cast<LoadSDNode>(Op);
2176     unsigned ExtType = LD->getExtensionType();
2177     switch (ExtType) {
2178     default: break;
2179     case ISD::SEXTLOAD:    // '17' bits known
2180       Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2181       return VTBits-Tmp+1;
2182     case ISD::ZEXTLOAD:    // '16' bits known
2183       Tmp = LD->getMemoryVT().getScalarType().getSizeInBits();
2184       return VTBits-Tmp;
2185     }
2186   }
2187
2188   // Allow the target to implement this method for its nodes.
2189   if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2190       Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2191       Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2192       Op.getOpcode() == ISD::INTRINSIC_VOID) {
2193     unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
2194     if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
2195   }
2196
2197   // Finally, if we can prove that the top bits of the result are 0's or 1's,
2198   // use this information.
2199   APInt KnownZero, KnownOne;
2200   APInt Mask = APInt::getAllOnesValue(VTBits);
2201   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2202
2203   if (KnownZero.isNegative()) {        // sign bit is 0
2204     Mask = KnownZero;
2205   } else if (KnownOne.isNegative()) {  // sign bit is 1;
2206     Mask = KnownOne;
2207   } else {
2208     // Nothing known.
2209     return FirstAnswer;
2210   }
2211
2212   // Okay, we know that the sign bit in Mask is set.  Use CLZ to determine
2213   // the number of identical bits in the top of the input value.
2214   Mask = ~Mask;
2215   Mask <<= Mask.getBitWidth()-VTBits;
2216   // Return # leading zeros.  We use 'min' here in case Val was zero before
2217   // shifting.  We don't want to return '64' as for an i32 "0".
2218   return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
2219 }
2220
2221 bool SelectionDAG::isKnownNeverNaN(SDValue Op) const {
2222   // If we're told that NaNs won't happen, assume they won't.
2223   if (FiniteOnlyFPMath())
2224     return true;
2225
2226   // If the value is a constant, we can obviously see if it is a NaN or not.
2227   if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
2228     return !C->getValueAPF().isNaN();
2229
2230   // TODO: Recognize more cases here.
2231
2232   return false;
2233 }
2234
2235 bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
2236   GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2237   if (!GA) return false;
2238   if (GA->getOffset() != 0) return false;
2239   GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2240   if (!GV) return false;
2241   MachineModuleInfo *MMI = getMachineModuleInfo();
2242   return MMI && MMI->hasDebugInfo();
2243 }
2244
2245
2246 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
2247 /// element of the result of the vector shuffle.
2248 SDValue SelectionDAG::getShuffleScalarElt(const ShuffleVectorSDNode *N,
2249                                           unsigned i) {
2250   EVT VT = N->getValueType(0);
2251   DebugLoc dl = N->getDebugLoc();
2252   if (N->getMaskElt(i) < 0)
2253     return getUNDEF(VT.getVectorElementType());
2254   unsigned Index = N->getMaskElt(i);
2255   unsigned NumElems = VT.getVectorNumElements();
2256   SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
2257   Index %= NumElems;
2258
2259   if (V.getOpcode() == ISD::BIT_CONVERT) {
2260     V = V.getOperand(0);
2261     EVT VVT = V.getValueType();
2262     if (!VVT.isVector() || VVT.getVectorNumElements() != (unsigned)NumElems)
2263       return SDValue();
2264   }
2265   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
2266     return (Index == 0) ? V.getOperand(0)
2267                       : getUNDEF(VT.getVectorElementType());
2268   if (V.getOpcode() == ISD::BUILD_VECTOR)
2269     return V.getOperand(Index);
2270   if (const ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(V))
2271     return getShuffleScalarElt(SVN, Index);
2272   return SDValue();
2273 }
2274
2275
2276 /// getNode - Gets or creates the specified node.
2277 ///
2278 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT) {
2279   FoldingSetNodeID ID;
2280   AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
2281   void *IP = 0;
2282   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2283     return SDValue(E, 0);
2284
2285   SDNode *N = NodeAllocator.Allocate<SDNode>();
2286   new (N) SDNode(Opcode, DL, getVTList(VT));
2287   CSEMap.InsertNode(N, IP);
2288
2289   AllNodes.push_back(N);
2290 #ifndef NDEBUG
2291   VerifyNode(N);
2292 #endif
2293   return SDValue(N, 0);
2294 }
2295
2296 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL,
2297                               EVT VT, SDValue Operand) {
2298   // Constant fold unary operations with an integer constant operand.
2299   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
2300     const APInt &Val = C->getAPIntValue();
2301     unsigned BitWidth = VT.getSizeInBits();
2302     switch (Opcode) {
2303     default: break;
2304     case ISD::SIGN_EXTEND:
2305       return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
2306     case ISD::ANY_EXTEND:
2307     case ISD::ZERO_EXTEND:
2308     case ISD::TRUNCATE:
2309       return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
2310     case ISD::UINT_TO_FP:
2311     case ISD::SINT_TO_FP: {
2312       const uint64_t zero[] = {0, 0};
2313       // No compile time operations on this type.
2314       if (VT==MVT::ppcf128)
2315         break;
2316       APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2317       (void)apf.convertFromAPInt(Val,
2318                                  Opcode==ISD::SINT_TO_FP,
2319                                  APFloat::rmNearestTiesToEven);
2320       return getConstantFP(apf, VT);
2321     }
2322     case ISD::BIT_CONVERT:
2323       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
2324         return getConstantFP(Val.bitsToFloat(), VT);
2325       else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
2326         return getConstantFP(Val.bitsToDouble(), VT);
2327       break;
2328     case ISD::BSWAP:
2329       return getConstant(Val.byteSwap(), VT);
2330     case ISD::CTPOP:
2331       return getConstant(Val.countPopulation(), VT);
2332     case ISD::CTLZ:
2333       return getConstant(Val.countLeadingZeros(), VT);
2334     case ISD::CTTZ:
2335       return getConstant(Val.countTrailingZeros(), VT);
2336     }
2337   }
2338
2339   // Constant fold unary operations with a floating point constant operand.
2340   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
2341     APFloat V = C->getValueAPF();    // make copy
2342     if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
2343       switch (Opcode) {
2344       case ISD::FNEG:
2345         V.changeSign();
2346         return getConstantFP(V, VT);
2347       case ISD::FABS:
2348         V.clearSign();
2349         return getConstantFP(V, VT);
2350       case ISD::FP_ROUND:
2351       case ISD::FP_EXTEND: {
2352         bool ignored;
2353         // This can return overflow, underflow, or inexact; we don't care.
2354         // FIXME need to be more flexible about rounding mode.
2355         (void)V.convert(*EVTToAPFloatSemantics(VT),
2356                         APFloat::rmNearestTiesToEven, &ignored);
2357         return getConstantFP(V, VT);
2358       }
2359       case ISD::FP_TO_SINT:
2360       case ISD::FP_TO_UINT: {
2361         integerPart x[2];
2362         bool ignored;
2363         assert(integerPartWidth >= 64);
2364         // FIXME need to be more flexible about rounding mode.
2365         APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(),
2366                               Opcode==ISD::FP_TO_SINT,
2367                               APFloat::rmTowardZero, &ignored);
2368         if (s==APFloat::opInvalidOp)     // inexact is OK, in fact usual
2369           break;
2370         APInt api(VT.getSizeInBits(), 2, x);
2371         return getConstant(api, VT);
2372       }
2373       case ISD::BIT_CONVERT:
2374         if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2375           return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2376         else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2377           return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2378         break;
2379       }
2380     }
2381   }
2382
2383   unsigned OpOpcode = Operand.getNode()->getOpcode();
2384   switch (Opcode) {
2385   case ISD::TokenFactor:
2386   case ISD::MERGE_VALUES:
2387   case ISD::CONCAT_VECTORS:
2388     return Operand;         // Factor, merge or concat of one node?  No need.
2389   case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
2390   case ISD::FP_EXTEND:
2391     assert(VT.isFloatingPoint() &&
2392            Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
2393     if (Operand.getValueType() == VT) return Operand;  // noop conversion.
2394     assert((!VT.isVector() ||
2395             VT.getVectorNumElements() ==
2396             Operand.getValueType().getVectorNumElements()) &&
2397            "Vector element count mismatch!");
2398     if (Operand.getOpcode() == ISD::UNDEF)
2399       return getUNDEF(VT);
2400     break;
2401   case ISD::SIGN_EXTEND:
2402     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2403            "Invalid SIGN_EXTEND!");
2404     if (Operand.getValueType() == VT) return Operand;   // noop extension
2405     assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2406            "Invalid sext node, dst < src!");
2407     assert((!VT.isVector() ||
2408             VT.getVectorNumElements() ==
2409             Operand.getValueType().getVectorNumElements()) &&
2410            "Vector element count mismatch!");
2411     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2412       return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2413     break;
2414   case ISD::ZERO_EXTEND:
2415     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2416            "Invalid ZERO_EXTEND!");
2417     if (Operand.getValueType() == VT) return Operand;   // noop extension
2418     assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2419            "Invalid zext node, dst < src!");
2420     assert((!VT.isVector() ||
2421             VT.getVectorNumElements() ==
2422             Operand.getValueType().getVectorNumElements()) &&
2423            "Vector element count mismatch!");
2424     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
2425       return getNode(ISD::ZERO_EXTEND, DL, VT,
2426                      Operand.getNode()->getOperand(0));
2427     break;
2428   case ISD::ANY_EXTEND:
2429     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2430            "Invalid ANY_EXTEND!");
2431     if (Operand.getValueType() == VT) return Operand;   // noop extension
2432     assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) &&
2433            "Invalid anyext node, dst < src!");
2434     assert((!VT.isVector() ||
2435             VT.getVectorNumElements() ==
2436             Operand.getValueType().getVectorNumElements()) &&
2437            "Vector element count mismatch!");
2438     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2439       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
2440       return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2441     break;
2442   case ISD::TRUNCATE:
2443     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2444            "Invalid TRUNCATE!");
2445     if (Operand.getValueType() == VT) return Operand;   // noop truncate
2446     assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) &&
2447            "Invalid truncate node, src < dst!");
2448     assert((!VT.isVector() ||
2449             VT.getVectorNumElements() ==
2450             Operand.getValueType().getVectorNumElements()) &&
2451            "Vector element count mismatch!");
2452     if (OpOpcode == ISD::TRUNCATE)
2453       return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
2454     else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2455              OpOpcode == ISD::ANY_EXTEND) {
2456       // If the source is smaller than the dest, we still need an extend.
2457       if (Operand.getNode()->getOperand(0).getValueType().getScalarType()
2458             .bitsLT(VT.getScalarType()))
2459         return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0));
2460       else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2461         return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0));
2462       else
2463         return Operand.getNode()->getOperand(0);
2464     }
2465     break;
2466   case ISD::BIT_CONVERT:
2467     // Basic sanity checking.
2468     assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
2469            && "Cannot BIT_CONVERT between types of different sizes!");
2470     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
2471     if (OpOpcode == ISD::BIT_CONVERT)  // bitconv(bitconv(x)) -> bitconv(x)
2472       return getNode(ISD::BIT_CONVERT, DL, VT, Operand.getOperand(0));
2473     if (OpOpcode == ISD::UNDEF)
2474       return getUNDEF(VT);
2475     break;
2476   case ISD::SCALAR_TO_VECTOR:
2477     assert(VT.isVector() && !Operand.getValueType().isVector() &&
2478            (VT.getVectorElementType() == Operand.getValueType() ||
2479             (VT.getVectorElementType().isInteger() &&
2480              Operand.getValueType().isInteger() &&
2481              VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
2482            "Illegal SCALAR_TO_VECTOR node!");
2483     if (OpOpcode == ISD::UNDEF)
2484       return getUNDEF(VT);
2485     // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2486     if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2487         isa<ConstantSDNode>(Operand.getOperand(1)) &&
2488         Operand.getConstantOperandVal(1) == 0 &&
2489         Operand.getOperand(0).getValueType() == VT)
2490       return Operand.getOperand(0);
2491     break;
2492   case ISD::FNEG:
2493     // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
2494     if (UnsafeFPMath && OpOpcode == ISD::FSUB)
2495       return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1),
2496                      Operand.getNode()->getOperand(0));
2497     if (OpOpcode == ISD::FNEG)  // --X -> X
2498       return Operand.getNode()->getOperand(0);
2499     break;
2500   case ISD::FABS:
2501     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
2502       return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0));
2503     break;
2504   }
2505
2506   SDNode *N;
2507   SDVTList VTs = getVTList(VT);
2508   if (VT != MVT::Flag) { // Don't CSE flag producing nodes
2509     FoldingSetNodeID ID;
2510     SDValue Ops[1] = { Operand };
2511     AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
2512     void *IP = 0;
2513     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2514       return SDValue(E, 0);
2515
2516     N = NodeAllocator.Allocate<UnarySDNode>();
2517     new (N) UnarySDNode(Opcode, DL, VTs, Operand);
2518     CSEMap.InsertNode(N, IP);
2519   } else {
2520     N = NodeAllocator.Allocate<UnarySDNode>();
2521     new (N) UnarySDNode(Opcode, DL, VTs, Operand);
2522   }
2523
2524   AllNodes.push_back(N);
2525 #ifndef NDEBUG
2526   VerifyNode(N);
2527 #endif
2528   return SDValue(N, 0);
2529 }
2530
2531 SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2532                                              EVT VT,
2533                                              ConstantSDNode *Cst1,
2534                                              ConstantSDNode *Cst2) {
2535   const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2536
2537   switch (Opcode) {
2538   case ISD::ADD:  return getConstant(C1 + C2, VT);
2539   case ISD::SUB:  return getConstant(C1 - C2, VT);
2540   case ISD::MUL:  return getConstant(C1 * C2, VT);
2541   case ISD::UDIV:
2542     if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2543     break;
2544   case ISD::UREM:
2545     if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2546     break;
2547   case ISD::SDIV:
2548     if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2549     break;
2550   case ISD::SREM:
2551     if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2552     break;
2553   case ISD::AND:  return getConstant(C1 & C2, VT);
2554   case ISD::OR:   return getConstant(C1 | C2, VT);
2555   case ISD::XOR:  return getConstant(C1 ^ C2, VT);
2556   case ISD::SHL:  return getConstant(C1 << C2, VT);
2557   case ISD::SRL:  return getConstant(C1.lshr(C2), VT);
2558   case ISD::SRA:  return getConstant(C1.ashr(C2), VT);
2559   case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2560   case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2561   default: break;
2562   }
2563
2564   return SDValue();
2565 }
2566
2567 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
2568                               SDValue N1, SDValue N2) {
2569   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2570   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
2571   switch (Opcode) {
2572   default: break;
2573   case ISD::TokenFactor:
2574     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2575            N2.getValueType() == MVT::Other && "Invalid token factor!");
2576     // Fold trivial token factors.
2577     if (N1.getOpcode() == ISD::EntryToken) return N2;
2578     if (N2.getOpcode() == ISD::EntryToken) return N1;
2579     if (N1 == N2) return N1;
2580     break;
2581   case ISD::CONCAT_VECTORS:
2582     // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2583     // one big BUILD_VECTOR.
2584     if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2585         N2.getOpcode() == ISD::BUILD_VECTOR) {
2586       SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2587       Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2588       return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size());
2589     }
2590     break;
2591   case ISD::AND:
2592     assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2593            N1.getValueType() == VT && "Binary operator types must match!");
2594     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
2595     // worth handling here.
2596     if (N2C && N2C->isNullValue())
2597       return N2;
2598     if (N2C && N2C->isAllOnesValue())  // X & -1 -> X
2599       return N1;
2600     break;
2601   case ISD::OR:
2602   case ISD::XOR:
2603   case ISD::ADD:
2604   case ISD::SUB:
2605     assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2606            N1.getValueType() == VT && "Binary operator types must match!");
2607     // (X ^|+- 0) -> X.  This commonly occurs when legalizing i64 values, so
2608     // it's worth handling here.
2609     if (N2C && N2C->isNullValue())
2610       return N1;
2611     break;
2612   case ISD::UDIV:
2613   case ISD::UREM:
2614   case ISD::MULHU:
2615   case ISD::MULHS:
2616   case ISD::MUL:
2617   case ISD::SDIV:
2618   case ISD::SREM:
2619     assert(VT.isInteger() && "This operator does not apply to FP types!");
2620     // fall through
2621   case ISD::FADD:
2622   case ISD::FSUB:
2623   case ISD::FMUL:
2624   case ISD::FDIV:
2625   case ISD::FREM:
2626     if (UnsafeFPMath) {
2627       if (Opcode == ISD::FADD) {
2628         // 0+x --> x
2629         if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1))
2630           if (CFP->getValueAPF().isZero())
2631             return N2;
2632         // x+0 --> x
2633         if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2634           if (CFP->getValueAPF().isZero())
2635             return N1;
2636       } else if (Opcode == ISD::FSUB) {
2637         // x-0 --> x
2638         if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2))
2639           if (CFP->getValueAPF().isZero())
2640             return N1;
2641       }
2642     }
2643     assert(N1.getValueType() == N2.getValueType() &&
2644            N1.getValueType() == VT && "Binary operator types must match!");
2645     break;
2646   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
2647     assert(N1.getValueType() == VT &&
2648            N1.getValueType().isFloatingPoint() &&
2649            N2.getValueType().isFloatingPoint() &&
2650            "Invalid FCOPYSIGN!");
2651     break;
2652   case ISD::SHL:
2653   case ISD::SRA:
2654   case ISD::SRL:
2655   case ISD::ROTL:
2656   case ISD::ROTR:
2657     assert(VT == N1.getValueType() &&
2658            "Shift operators return type must be the same as their first arg");
2659     assert(VT.isInteger() && N2.getValueType().isInteger() &&
2660            "Shifts only work on integers");
2661
2662     // Always fold shifts of i1 values so the code generator doesn't need to
2663     // handle them.  Since we know the size of the shift has to be less than the
2664     // size of the value, the shift/rotate count is guaranteed to be zero.
2665     if (VT == MVT::i1)
2666       return N1;
2667     if (N2C && N2C->isNullValue())
2668       return N1;
2669     break;
2670   case ISD::FP_ROUND_INREG: {
2671     EVT EVT = cast<VTSDNode>(N2)->getVT();
2672     assert(VT == N1.getValueType() && "Not an inreg round!");
2673     assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
2674            "Cannot FP_ROUND_INREG integer types");
2675     assert(EVT.isVector() == VT.isVector() &&
2676            "FP_ROUND_INREG type should be vector iff the operand "
2677            "type is vector!");
2678     assert((!EVT.isVector() ||
2679             EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
2680            "Vector element counts must match in FP_ROUND_INREG");
2681     assert(EVT.bitsLE(VT) && "Not rounding down!");
2682     if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
2683     break;
2684   }
2685   case ISD::FP_ROUND:
2686     assert(VT.isFloatingPoint() &&
2687            N1.getValueType().isFloatingPoint() &&
2688            VT.bitsLE(N1.getValueType()) &&
2689            isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
2690     if (N1.getValueType() == VT) return N1;  // noop conversion.
2691     break;
2692   case ISD::AssertSext:
2693   case ISD::AssertZext: {
2694     EVT EVT = cast<VTSDNode>(N2)->getVT();
2695     assert(VT == N1.getValueType() && "Not an inreg extend!");
2696     assert(VT.isInteger() && EVT.isInteger() &&
2697            "Cannot *_EXTEND_INREG FP types");
2698     assert(!EVT.isVector() &&
2699            "AssertSExt/AssertZExt type should be the vector element type "
2700            "rather than the vector type!");
2701     assert(EVT.bitsLE(VT) && "Not extending!");
2702     if (VT == EVT) return N1; // noop assertion.
2703     break;
2704   }
2705   case ISD::SIGN_EXTEND_INREG: {
2706     EVT EVT = cast<VTSDNode>(N2)->getVT();
2707     assert(VT == N1.getValueType() && "Not an inreg extend!");
2708     assert(VT.isInteger() && EVT.isInteger() &&
2709            "Cannot *_EXTEND_INREG FP types");
2710     assert(EVT.isVector() == VT.isVector() &&
2711            "SIGN_EXTEND_INREG type should be vector iff the operand "
2712            "type is vector!");
2713     assert((!EVT.isVector() ||
2714             EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
2715            "Vector element counts must match in SIGN_EXTEND_INREG");
2716     assert(EVT.bitsLE(VT) && "Not extending!");
2717     if (EVT == VT) return N1;  // Not actually extending
2718
2719     if (N1C) {
2720       APInt Val = N1C->getAPIntValue();
2721       unsigned FromBits = EVT.getScalarType().getSizeInBits();
2722       Val <<= Val.getBitWidth()-FromBits;
2723       Val = Val.ashr(Val.getBitWidth()-FromBits);
2724       return getConstant(Val, VT);
2725     }
2726     break;
2727   }
2728   case ISD::EXTRACT_VECTOR_ELT:
2729     // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2730     if (N1.getOpcode() == ISD::UNDEF)
2731       return getUNDEF(VT);
2732
2733     // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2734     // expanding copies of large vectors from registers.
2735     if (N2C &&
2736         N1.getOpcode() == ISD::CONCAT_VECTORS &&
2737         N1.getNumOperands() > 0) {
2738       unsigned Factor =
2739         N1.getOperand(0).getValueType().getVectorNumElements();
2740       return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
2741                      N1.getOperand(N2C->getZExtValue() / Factor),
2742                      getConstant(N2C->getZExtValue() % Factor,
2743                                  N2.getValueType()));
2744     }
2745
2746     // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2747     // expanding large vector constants.
2748     if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
2749       SDValue Elt = N1.getOperand(N2C->getZExtValue());
2750       EVT VEltTy = N1.getValueType().getVectorElementType();
2751       if (Elt.getValueType() != VEltTy) {
2752         // If the vector element type is not legal, the BUILD_VECTOR operands
2753         // are promoted and implicitly truncated.  Make that explicit here.
2754         Elt = getNode(ISD::TRUNCATE, DL, VEltTy, Elt);
2755       }
2756       if (VT != VEltTy) {
2757         // If the vector element type is not legal, the EXTRACT_VECTOR_ELT
2758         // result is implicitly extended.
2759         Elt = getNode(ISD::ANY_EXTEND, DL, VT, Elt);
2760       }
2761       return Elt;
2762     }
2763
2764     // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2765     // operations are lowered to scalars.
2766     if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2767       // If the indices are the same, return the inserted element.
2768       if (N1.getOperand(2) == N2)
2769         return N1.getOperand(1);
2770       // If the indices are known different, extract the element from
2771       // the original vector.
2772       else if (isa<ConstantSDNode>(N1.getOperand(2)) &&
2773                isa<ConstantSDNode>(N2))
2774         return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
2775     }
2776     break;
2777   case ISD::EXTRACT_ELEMENT:
2778     assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
2779     assert(!N1.getValueType().isVector() && !VT.isVector() &&
2780            (N1.getValueType().isInteger() == VT.isInteger()) &&
2781            "Wrong types for EXTRACT_ELEMENT!");
2782
2783     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2784     // 64-bit integers into 32-bit parts.  Instead of building the extract of
2785     // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2786     if (N1.getOpcode() == ISD::BUILD_PAIR)
2787       return N1.getOperand(N2C->getZExtValue());
2788
2789     // EXTRACT_ELEMENT of a constant int is also very common.
2790     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2791       unsigned ElementSize = VT.getSizeInBits();
2792       unsigned Shift = ElementSize * N2C->getZExtValue();
2793       APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2794       return getConstant(ShiftedVal.trunc(ElementSize), VT);
2795     }
2796     break;
2797   case ISD::EXTRACT_SUBVECTOR:
2798     if (N1.getValueType() == VT) // Trivial extraction.
2799       return N1;
2800     break;
2801   }
2802
2803   if (N1C) {
2804     if (N2C) {
2805       SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2806       if (SV.getNode()) return SV;
2807     } else {      // Cannonicalize constant to RHS if commutative
2808       if (isCommutativeBinOp(Opcode)) {
2809         std::swap(N1C, N2C);
2810         std::swap(N1, N2);
2811       }
2812     }
2813   }
2814
2815   // Constant fold FP operations.
2816   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2817   ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
2818   if (N1CFP) {
2819     if (!N2CFP && isCommutativeBinOp(Opcode)) {
2820       // Cannonicalize constant to RHS if commutative
2821       std::swap(N1CFP, N2CFP);
2822       std::swap(N1, N2);
2823     } else if (N2CFP && VT != MVT::ppcf128) {
2824       APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2825       APFloat::opStatus s;
2826       switch (Opcode) {
2827       case ISD::FADD:
2828         s = V1.add(V2, APFloat::rmNearestTiesToEven);
2829         if (s != APFloat::opInvalidOp)
2830           return getConstantFP(V1, VT);
2831         break;
2832       case ISD::FSUB:
2833         s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2834         if (s!=APFloat::opInvalidOp)
2835           return getConstantFP(V1, VT);
2836         break;
2837       case ISD::FMUL:
2838         s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2839         if (s!=APFloat::opInvalidOp)
2840           return getConstantFP(V1, VT);
2841         break;
2842       case ISD::FDIV:
2843         s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2844         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2845           return getConstantFP(V1, VT);
2846         break;
2847       case ISD::FREM :
2848         s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2849         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2850           return getConstantFP(V1, VT);
2851         break;
2852       case ISD::FCOPYSIGN:
2853         V1.copySign(V2);
2854         return getConstantFP(V1, VT);
2855       default: break;
2856       }
2857     }
2858   }
2859
2860   // Canonicalize an UNDEF to the RHS, even over a constant.
2861   if (N1.getOpcode() == ISD::UNDEF) {
2862     if (isCommutativeBinOp(Opcode)) {
2863       std::swap(N1, N2);
2864     } else {
2865       switch (Opcode) {
2866       case ISD::FP_ROUND_INREG:
2867       case ISD::SIGN_EXTEND_INREG:
2868       case ISD::SUB:
2869       case ISD::FSUB:
2870       case ISD::FDIV:
2871       case ISD::FREM:
2872       case ISD::SRA:
2873         return N1;     // fold op(undef, arg2) -> undef
2874       case ISD::UDIV:
2875       case ISD::SDIV:
2876       case ISD::UREM:
2877       case ISD::SREM:
2878       case ISD::SRL:
2879       case ISD::SHL:
2880         if (!VT.isVector())
2881           return getConstant(0, VT);    // fold op(undef, arg2) -> 0
2882         // For vectors, we can't easily build an all zero vector, just return
2883         // the LHS.
2884         return N2;
2885       }
2886     }
2887   }
2888
2889   // Fold a bunch of operators when the RHS is undef.
2890   if (N2.getOpcode() == ISD::UNDEF) {
2891     switch (Opcode) {
2892     case ISD::XOR:
2893       if (N1.getOpcode() == ISD::UNDEF)
2894         // Handle undef ^ undef -> 0 special case. This is a common
2895         // idiom (misuse).
2896         return getConstant(0, VT);
2897       // fallthrough
2898     case ISD::ADD:
2899     case ISD::ADDC:
2900     case ISD::ADDE:
2901     case ISD::SUB:
2902     case ISD::UDIV:
2903     case ISD::SDIV:
2904     case ISD::UREM:
2905     case ISD::SREM:
2906       return N2;       // fold op(arg1, undef) -> undef
2907     case ISD::FADD:
2908     case ISD::FSUB:
2909     case ISD::FMUL:
2910     case ISD::FDIV:
2911     case ISD::FREM:
2912       if (UnsafeFPMath)
2913         return N2;
2914       break;
2915     case ISD::MUL:
2916     case ISD::AND:
2917     case ISD::SRL:
2918     case ISD::SHL:
2919       if (!VT.isVector())
2920         return getConstant(0, VT);  // fold op(arg1, undef) -> 0
2921       // For vectors, we can't easily build an all zero vector, just return
2922       // the LHS.
2923       return N1;
2924     case ISD::OR:
2925       if (!VT.isVector())
2926         return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
2927       // For vectors, we can't easily build an all one vector, just return
2928       // the LHS.
2929       return N1;
2930     case ISD::SRA:
2931       return N1;
2932     }
2933   }
2934
2935   // Memoize this node if possible.
2936   SDNode *N;
2937   SDVTList VTs = getVTList(VT);
2938   if (VT != MVT::Flag) {
2939     SDValue Ops[] = { N1, N2 };
2940     FoldingSetNodeID ID;
2941     AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
2942     void *IP = 0;
2943     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2944       return SDValue(E, 0);
2945
2946     N = NodeAllocator.Allocate<BinarySDNode>();
2947     new (N) BinarySDNode(Opcode, DL, VTs, N1, N2);
2948     CSEMap.InsertNode(N, IP);
2949   } else {
2950     N = NodeAllocator.Allocate<BinarySDNode>();
2951     new (N) BinarySDNode(Opcode, DL, VTs, N1, N2);
2952   }
2953
2954   AllNodes.push_back(N);
2955 #ifndef NDEBUG
2956   VerifyNode(N);
2957 #endif
2958   return SDValue(N, 0);
2959 }
2960
2961 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
2962                               SDValue N1, SDValue N2, SDValue N3) {
2963   // Perform various simplifications.
2964   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2965   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
2966   switch (Opcode) {
2967   case ISD::CONCAT_VECTORS:
2968     // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2969     // one big BUILD_VECTOR.
2970     if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2971         N2.getOpcode() == ISD::BUILD_VECTOR &&
2972         N3.getOpcode() == ISD::BUILD_VECTOR) {
2973       SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2974       Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2975       Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
2976       return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size());
2977     }
2978     break;
2979   case ISD::SETCC: {
2980     // Use FoldSetCC to simplify SETCC's.
2981     SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL);
2982     if (Simp.getNode()) return Simp;
2983     break;
2984   }
2985   case ISD::SELECT:
2986     if (N1C) {
2987      if (N1C->getZExtValue())
2988         return N2;             // select true, X, Y -> X
2989       else
2990         return N3;             // select false, X, Y -> Y
2991     }
2992
2993     if (N2 == N3) return N2;   // select C, X, X -> X
2994     break;
2995   case ISD::BRCOND:
2996     if (N2C) {
2997       if (N2C->getZExtValue()) // Unconditional branch
2998         return getNode(ISD::BR, DL, MVT::Other, N1, N3);
2999       else
3000         return N1;         // Never-taken branch
3001     }
3002     break;
3003   case ISD::VECTOR_SHUFFLE:
3004     llvm_unreachable("should use getVectorShuffle constructor!");
3005     break;
3006   case ISD::BIT_CONVERT:
3007     // Fold bit_convert nodes from a type to themselves.
3008     if (N1.getValueType() == VT)
3009       return N1;
3010     break;
3011   }
3012
3013   // Memoize node if it doesn't produce a flag.
3014   SDNode *N;
3015   SDVTList VTs = getVTList(VT);
3016   if (VT != MVT::Flag) {
3017     SDValue Ops[] = { N1, N2, N3 };
3018     FoldingSetNodeID ID;
3019     AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
3020     void *IP = 0;
3021     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3022       return SDValue(E, 0);
3023
3024     N = NodeAllocator.Allocate<TernarySDNode>();
3025     new (N) TernarySDNode(Opcode, DL, VTs, N1, N2, N3);
3026     CSEMap.InsertNode(N, IP);
3027   } else {
3028     N = NodeAllocator.Allocate<TernarySDNode>();
3029     new (N) TernarySDNode(Opcode, DL, VTs, N1, N2, N3);
3030   }
3031
3032   AllNodes.push_back(N);
3033 #ifndef NDEBUG
3034   VerifyNode(N);
3035 #endif
3036   return SDValue(N, 0);
3037 }
3038
3039 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
3040                               SDValue N1, SDValue N2, SDValue N3,
3041                               SDValue N4) {
3042   SDValue Ops[] = { N1, N2, N3, N4 };
3043   return getNode(Opcode, DL, VT, Ops, 4);
3044 }
3045
3046 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
3047                               SDValue N1, SDValue N2, SDValue N3,
3048                               SDValue N4, SDValue N5) {
3049   SDValue Ops[] = { N1, N2, N3, N4, N5 };
3050   return getNode(Opcode, DL, VT, Ops, 5);
3051 }
3052
3053 /// getStackArgumentTokenFactor - Compute a TokenFactor to force all
3054 /// the incoming stack arguments to be loaded from the stack.
3055 SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
3056   SmallVector<SDValue, 8> ArgChains;
3057
3058   // Include the original chain at the beginning of the list. When this is
3059   // used by target LowerCall hooks, this helps legalize find the
3060   // CALLSEQ_BEGIN node.
3061   ArgChains.push_back(Chain);
3062
3063   // Add a chain value for each stack argument.
3064   for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
3065        UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
3066     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
3067       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
3068         if (FI->getIndex() < 0)
3069           ArgChains.push_back(SDValue(L, 1));
3070
3071   // Build a tokenfactor for all the chains.
3072   return getNode(ISD::TokenFactor, Chain.getDebugLoc(), MVT::Other,
3073                  &ArgChains[0], ArgChains.size());
3074 }
3075
3076 /// getMemsetValue - Vectorized representation of the memset value
3077 /// operand.
3078 static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
3079                               DebugLoc dl) {
3080   unsigned NumBits = VT.isVector() ?
3081     VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
3082   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
3083     APInt Val = APInt(NumBits, C->getZExtValue() & 255);
3084     unsigned Shift = 8;
3085     for (unsigned i = NumBits; i > 8; i >>= 1) {
3086       Val = (Val << Shift) | Val;
3087       Shift <<= 1;
3088     }
3089     if (VT.isInteger())
3090       return DAG.getConstant(Val, VT);
3091     return DAG.getConstantFP(APFloat(Val), VT);
3092   }
3093
3094   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3095   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value);
3096   unsigned Shift = 8;
3097   for (unsigned i = NumBits; i > 8; i >>= 1) {
3098     Value = DAG.getNode(ISD::OR, dl, VT,
3099                         DAG.getNode(ISD::SHL, dl, VT, Value,
3100                                     DAG.getConstant(Shift,
3101                                                     TLI.getShiftAmountTy())),
3102                         Value);
3103     Shift <<= 1;
3104   }
3105
3106   return Value;
3107 }
3108
3109 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
3110 /// used when a memcpy is turned into a memset when the source is a constant
3111 /// string ptr.
3112 static SDValue getMemsetStringVal(EVT VT, DebugLoc dl, SelectionDAG &DAG,
3113                                   const TargetLowering &TLI,
3114                                   std::string &Str, unsigned Offset) {
3115   // Handle vector with all elements zero.
3116   if (Str.empty()) {
3117     if (VT.isInteger())
3118       return DAG.getConstant(0, VT);
3119     unsigned NumElts = VT.getVectorNumElements();
3120     MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
3121     return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3122                        DAG.getConstant(0,
3123                        EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts)));
3124   }
3125
3126   assert(!VT.isVector() && "Can't handle vector type here!");
3127   unsigned NumBits = VT.getSizeInBits();
3128   unsigned MSB = NumBits / 8;
3129   uint64_t Val = 0;
3130   if (TLI.isLittleEndian())
3131     Offset = Offset + MSB - 1;
3132   for (unsigned i = 0; i != MSB; ++i) {
3133     Val = (Val << 8) | (unsigned char)Str[Offset];
3134     Offset += TLI.isLittleEndian() ? -1 : 1;
3135   }
3136   return DAG.getConstant(Val, VT);
3137 }
3138
3139 /// getMemBasePlusOffset - Returns base and offset node for the
3140 ///
3141 static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
3142                                       SelectionDAG &DAG) {
3143   EVT VT = Base.getValueType();
3144   return DAG.getNode(ISD::ADD, Base.getDebugLoc(),
3145                      VT, Base, DAG.getConstant(Offset, VT));
3146 }
3147
3148 /// isMemSrcFromString - Returns true if memcpy source is a string constant.
3149 ///
3150 static bool isMemSrcFromString(SDValue Src, std::string &Str) {
3151   unsigned SrcDelta = 0;
3152   GlobalAddressSDNode *G = NULL;
3153   if (Src.getOpcode() == ISD::GlobalAddress)
3154     G = cast<GlobalAddressSDNode>(Src);
3155   else if (Src.getOpcode() == ISD::ADD &&
3156            Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
3157            Src.getOperand(1).getOpcode() == ISD::Constant) {
3158     G = cast<GlobalAddressSDNode>(Src.getOperand(0));
3159     SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
3160   }
3161   if (!G)
3162     return false;
3163
3164   GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
3165   if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
3166     return true;
3167
3168   return false;
3169 }
3170
3171 /// MeetsMaxMemopRequirement - Determines if the number of memory ops required
3172 /// to replace the memset / memcpy is below the threshold. It also returns the
3173 /// types of the sequence of memory ops to perform memset / memcpy.
3174 static
3175 bool MeetsMaxMemopRequirement(std::vector<EVT> &MemOps,
3176                               SDValue Dst, SDValue Src,
3177                               unsigned Limit, uint64_t Size, unsigned &Align,
3178                               std::string &Str, bool &isSrcStr,
3179                               SelectionDAG &DAG,
3180                               const TargetLowering &TLI) {
3181   isSrcStr = isMemSrcFromString(Src, Str);
3182   bool isSrcConst = isa<ConstantSDNode>(Src);
3183   EVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr, DAG);
3184   bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses(VT);
3185   if (VT != MVT::iAny) {
3186     const Type *Ty = VT.getTypeForEVT(*DAG.getContext());
3187     unsigned NewAlign = (unsigned) TLI.getTargetData()->getABITypeAlignment(Ty);
3188     // If source is a string constant, this will require an unaligned load.
3189     if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
3190       if (Dst.getOpcode() != ISD::FrameIndex) {
3191         // Can't change destination alignment. It requires a unaligned store.
3192         if (AllowUnalign)
3193           VT = MVT::iAny;
3194       } else {
3195         int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
3196         MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3197         if (MFI->isFixedObjectIndex(FI)) {
3198           // Can't change destination alignment. It requires a unaligned store.
3199           if (AllowUnalign)
3200             VT = MVT::iAny;
3201         } else {
3202           // Give the stack frame object a larger alignment if needed.
3203           if (MFI->getObjectAlignment(FI) < NewAlign)
3204             MFI->setObjectAlignment(FI, NewAlign);
3205           Align = NewAlign;
3206         }
3207       }
3208     }
3209   }
3210
3211   if (VT == MVT::iAny) {
3212     if (TLI.allowsUnalignedMemoryAccesses(MVT::i64)) {
3213       VT = MVT::i64;
3214     } else {
3215       switch (Align & 7) {
3216       case 0:  VT = MVT::i64; break;
3217       case 4:  VT = MVT::i32; break;
3218       case 2:  VT = MVT::i16; break;
3219       default: VT = MVT::i8;  break;
3220       }
3221     }
3222
3223     MVT LVT = MVT::i64;
3224     while (!TLI.isTypeLegal(LVT))
3225       LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
3226     assert(LVT.isInteger());
3227
3228     if (VT.bitsGT(LVT))
3229       VT = LVT;
3230   }
3231
3232   unsigned NumMemOps = 0;
3233   while (Size != 0) {
3234     unsigned VTSize = VT.getSizeInBits() / 8;
3235     while (VTSize > Size) {
3236       // For now, only use non-vector load / store's for the left-over pieces.
3237       if (VT.isVector()) {
3238         VT = MVT::i64;
3239         while (!TLI.isTypeLegal(VT))
3240           VT = (MVT::SimpleValueType)(VT.getSimpleVT().SimpleTy - 1);
3241         VTSize = VT.getSizeInBits() / 8;
3242       } else {
3243         // This can result in a type that is not legal on the target, e.g.
3244         // 1 or 2 bytes on PPC.
3245         VT = (MVT::SimpleValueType)(VT.getSimpleVT().SimpleTy - 1);
3246         VTSize >>= 1;
3247       }
3248     }
3249
3250     if (++NumMemOps > Limit)
3251       return false;
3252     MemOps.push_back(VT);
3253     Size -= VTSize;
3254   }
3255
3256   return true;
3257 }
3258
3259 static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, DebugLoc dl,
3260                                          SDValue Chain, SDValue Dst,
3261                                          SDValue Src, uint64_t Size,
3262                                          unsigned Align, bool AlwaysInline,
3263                                          const Value *DstSV, uint64_t DstSVOff,
3264                                          const Value *SrcSV, uint64_t SrcSVOff){
3265   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3266
3267   // Expand memcpy to a series of load and store ops if the size operand falls
3268   // below a certain threshold.
3269   std::vector<EVT> MemOps;
3270   uint64_t Limit = -1ULL;
3271   if (!AlwaysInline)
3272     Limit = TLI.getMaxStoresPerMemcpy();
3273   unsigned DstAlign = Align;  // Destination alignment can change.
3274   std::string Str;
3275   bool CopyFromStr;
3276   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
3277                                 Str, CopyFromStr, DAG, TLI))
3278     return SDValue();
3279
3280
3281   bool isZeroStr = CopyFromStr && Str.empty();
3282   SmallVector<SDValue, 8> OutChains;
3283   unsigned NumMemOps = MemOps.size();
3284   uint64_t SrcOff = 0, DstOff = 0;
3285   for (unsigned i = 0; i != NumMemOps; ++i) {
3286     EVT VT = MemOps[i];
3287     unsigned VTSize = VT.getSizeInBits() / 8;
3288     SDValue Value, Store;
3289
3290     if (CopyFromStr && (isZeroStr || !VT.isVector())) {
3291       // It's unlikely a store of a vector immediate can be done in a single
3292       // instruction. It would require a load from a constantpool first.
3293       // We also handle store a vector with all zero's.
3294       // FIXME: Handle other cases where store of vector immediate is done in
3295       // a single instruction.
3296       Value = getMemsetStringVal(VT, dl, DAG, TLI, Str, SrcOff);
3297       Store = DAG.getStore(Chain, dl, Value,
3298                            getMemBasePlusOffset(Dst, DstOff, DAG),
3299                            DstSV, DstSVOff + DstOff, false, DstAlign);
3300     } else {
3301       // The type might not be legal for the target.  This should only happen
3302       // if the type is smaller than a legal type, as on PPC, so the right
3303       // thing to do is generate a LoadExt/StoreTrunc pair.  These simplify
3304       // to Load/Store if NVT==VT.
3305       // FIXME does the case above also need this?
3306       EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
3307       assert(NVT.bitsGE(VT));
3308       Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
3309                              getMemBasePlusOffset(Src, SrcOff, DAG),
3310                              SrcSV, SrcSVOff + SrcOff, VT, false, Align);
3311       Store = DAG.getTruncStore(Chain, dl, Value,
3312                              getMemBasePlusOffset(Dst, DstOff, DAG),
3313                              DstSV, DstSVOff + DstOff, VT, false, DstAlign);
3314     }
3315     OutChains.push_back(Store);
3316     SrcOff += VTSize;
3317     DstOff += VTSize;
3318   }
3319
3320   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3321                      &OutChains[0], OutChains.size());
3322 }
3323
3324 static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, DebugLoc dl,
3325                                           SDValue Chain, SDValue Dst,
3326                                           SDValue Src, uint64_t Size,
3327                                           unsigned Align, bool AlwaysInline,
3328                                           const Value *DstSV, uint64_t DstSVOff,
3329                                           const Value *SrcSV, uint64_t SrcSVOff){
3330   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3331
3332   // Expand memmove to a series of load and store ops if the size operand falls
3333   // below a certain threshold.
3334   std::vector<EVT> MemOps;
3335   uint64_t Limit = -1ULL;
3336   if (!AlwaysInline)
3337     Limit = TLI.getMaxStoresPerMemmove();
3338   unsigned DstAlign = Align;  // Destination alignment can change.
3339   std::string Str;
3340   bool CopyFromStr;
3341   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
3342                                 Str, CopyFromStr, DAG, TLI))
3343     return SDValue();
3344
3345   uint64_t SrcOff = 0, DstOff = 0;
3346
3347   SmallVector<SDValue, 8> LoadValues;
3348   SmallVector<SDValue, 8> LoadChains;
3349   SmallVector<SDValue, 8> OutChains;
3350   unsigned NumMemOps = MemOps.size();
3351   for (unsigned i = 0; i < NumMemOps; i++) {
3352     EVT VT = MemOps[i];
3353     unsigned VTSize = VT.getSizeInBits() / 8;
3354     SDValue Value, Store;
3355
3356     Value = DAG.getLoad(VT, dl, Chain,
3357                         getMemBasePlusOffset(Src, SrcOff, DAG),
3358                         SrcSV, SrcSVOff + SrcOff, false, Align);
3359     LoadValues.push_back(Value);
3360     LoadChains.push_back(Value.getValue(1));
3361     SrcOff += VTSize;
3362   }
3363   Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3364                       &LoadChains[0], LoadChains.size());
3365   OutChains.clear();
3366   for (unsigned i = 0; i < NumMemOps; i++) {
3367     EVT VT = MemOps[i];
3368     unsigned VTSize = VT.getSizeInBits() / 8;
3369     SDValue Value, Store;
3370
3371     Store = DAG.getStore(Chain, dl, LoadValues[i],
3372                          getMemBasePlusOffset(Dst, DstOff, DAG),
3373                          DstSV, DstSVOff + DstOff, false, DstAlign);
3374     OutChains.push_back(Store);
3375     DstOff += VTSize;
3376   }
3377
3378   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3379                      &OutChains[0], OutChains.size());
3380 }
3381
3382 static SDValue getMemsetStores(SelectionDAG &DAG, DebugLoc dl,
3383                                  SDValue Chain, SDValue Dst,
3384                                  SDValue Src, uint64_t Size,
3385                                  unsigned Align,
3386                                  const Value *DstSV, uint64_t DstSVOff) {
3387   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3388
3389   // Expand memset to a series of load/store ops if the size operand
3390   // falls below a certain threshold.
3391   std::vector<EVT> MemOps;
3392   std::string Str;
3393   bool CopyFromStr;
3394   if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
3395                                 Size, Align, Str, CopyFromStr, DAG, TLI))
3396     return SDValue();
3397
3398   SmallVector<SDValue, 8> OutChains;
3399   uint64_t DstOff = 0;
3400
3401   unsigned NumMemOps = MemOps.size();
3402   for (unsigned i = 0; i < NumMemOps; i++) {
3403     EVT VT = MemOps[i];
3404     unsigned VTSize = VT.getSizeInBits() / 8;
3405     SDValue Value = getMemsetValue(Src, VT, DAG, dl);
3406     SDValue Store = DAG.getStore(Chain, dl, Value,
3407                                  getMemBasePlusOffset(Dst, DstOff, DAG),
3408                                  DstSV, DstSVOff + DstOff);
3409     OutChains.push_back(Store);
3410     DstOff += VTSize;
3411   }
3412
3413   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
3414                      &OutChains[0], OutChains.size());
3415 }
3416
3417 SDValue SelectionDAG::getMemcpy(SDValue Chain, DebugLoc dl, SDValue Dst,
3418                                 SDValue Src, SDValue Size,
3419                                 unsigned Align, bool AlwaysInline,
3420                                 const Value *DstSV, uint64_t DstSVOff,
3421                                 const Value *SrcSV, uint64_t SrcSVOff) {
3422
3423   // Check to see if we should lower the memcpy to loads and stores first.
3424   // For cases within the target-specified limits, this is the best choice.
3425   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3426   if (ConstantSize) {
3427     // Memcpy with size zero? Just return the original chain.
3428     if (ConstantSize->isNullValue())
3429       return Chain;
3430
3431     SDValue Result =
3432       getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
3433                               ConstantSize->getZExtValue(),
3434                               Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
3435     if (Result.getNode())
3436       return Result;
3437   }
3438
3439   // Then check to see if we should lower the memcpy with target-specific
3440   // code. If the target chooses to do this, this is the next best.
3441   SDValue Result =
3442     TLI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align,
3443                                 AlwaysInline,
3444                                 DstSV, DstSVOff, SrcSV, SrcSVOff);
3445   if (Result.getNode())
3446     return Result;
3447
3448   // If we really need inline code and the target declined to provide it,
3449   // use a (potentially long) sequence of loads and stores.
3450   if (AlwaysInline) {
3451     assert(ConstantSize && "AlwaysInline requires a constant size!");
3452     return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
3453                                    ConstantSize->getZExtValue(), Align, true,
3454                                    DstSV, DstSVOff, SrcSV, SrcSVOff);
3455   }
3456
3457   // Emit a library call.
3458   TargetLowering::ArgListTy Args;
3459   TargetLowering::ArgListEntry Entry;
3460   Entry.Ty = TLI.getTargetData()->getIntPtrType(*getContext());
3461   Entry.Node = Dst; Args.push_back(Entry);
3462   Entry.Node = Src; Args.push_back(Entry);
3463   Entry.Node = Size; Args.push_back(Entry);
3464   // FIXME: pass in DebugLoc
3465   std::pair<SDValue,SDValue> CallResult =
3466     TLI.LowerCallTo(Chain, Type::getVoidTy(*getContext()),
3467                     false, false, false, false, 0,
3468                     TLI.getLibcallCallingConv(RTLIB::MEMCPY), false,
3469                     /*isReturnValueUsed=*/false,
3470                     getExternalSymbol(TLI.getLibcallName(RTLIB::MEMCPY),
3471                                       TLI.getPointerTy()),
3472                     Args, *this, dl, GetOrdering(Chain.getNode()));
3473   return CallResult.second;
3474 }
3475
3476 SDValue SelectionDAG::getMemmove(SDValue Chain, DebugLoc dl, SDValue Dst,
3477                                  SDValue Src, SDValue Size,
3478                                  unsigned Align,
3479                                  const Value *DstSV, uint64_t DstSVOff,
3480                                  const Value *SrcSV, uint64_t SrcSVOff) {
3481
3482   // Check to see if we should lower the memmove to loads and stores first.
3483   // For cases within the target-specified limits, this is the best choice.
3484   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3485   if (ConstantSize) {
3486     // Memmove with size zero? Just return the original chain.
3487     if (ConstantSize->isNullValue())
3488       return Chain;
3489
3490     SDValue Result =
3491       getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
3492                                ConstantSize->getZExtValue(),
3493                                Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
3494     if (Result.getNode())
3495       return Result;
3496   }
3497
3498   // Then check to see if we should lower the memmove with target-specific
3499   // code. If the target chooses to do this, this is the next best.
3500   SDValue Result =
3501     TLI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align,
3502                                  DstSV, DstSVOff, SrcSV, SrcSVOff);
3503   if (Result.getNode())
3504     return Result;
3505
3506   // Emit a library call.
3507   TargetLowering::ArgListTy Args;
3508   TargetLowering::ArgListEntry Entry;
3509   Entry.Ty = TLI.getTargetData()->getIntPtrType(*getContext());
3510   Entry.Node = Dst; Args.push_back(Entry);
3511   Entry.Node = Src; Args.push_back(Entry);
3512   Entry.Node = Size; Args.push_back(Entry);
3513   // FIXME:  pass in DebugLoc
3514   std::pair<SDValue,SDValue> CallResult =
3515     TLI.LowerCallTo(Chain, Type::getVoidTy(*getContext()),
3516                     false, false, false, false, 0,
3517                     TLI.getLibcallCallingConv(RTLIB::MEMMOVE), false,
3518                     /*isReturnValueUsed=*/false,
3519                     getExternalSymbol(TLI.getLibcallName(RTLIB::MEMMOVE),
3520                                       TLI.getPointerTy()),
3521                     Args, *this, dl, GetOrdering(Chain.getNode()));
3522   return CallResult.second;
3523 }
3524
3525 SDValue SelectionDAG::getMemset(SDValue Chain, DebugLoc dl, SDValue Dst,
3526                                 SDValue Src, SDValue Size,
3527                                 unsigned Align,
3528                                 const Value *DstSV, uint64_t DstSVOff) {
3529
3530   // Check to see if we should lower the memset to stores first.
3531   // For cases within the target-specified limits, this is the best choice.
3532   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3533   if (ConstantSize) {
3534     // Memset with size zero? Just return the original chain.
3535     if (ConstantSize->isNullValue())
3536       return Chain;
3537
3538     SDValue Result =
3539       getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
3540                       Align, DstSV, DstSVOff);
3541     if (Result.getNode())
3542       return Result;
3543   }
3544
3545   // Then check to see if we should lower the memset with target-specific
3546   // code. If the target chooses to do this, this is the next best.
3547   SDValue Result =
3548     TLI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align,
3549                                 DstSV, DstSVOff);
3550   if (Result.getNode())
3551     return Result;
3552
3553   // Emit a library call.
3554   const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType(*getContext());
3555   TargetLowering::ArgListTy Args;
3556   TargetLowering::ArgListEntry Entry;
3557   Entry.Node = Dst; Entry.Ty = IntPtrTy;
3558   Args.push_back(Entry);
3559   // Extend or truncate the argument to be an i32 value for the call.
3560   if (Src.getValueType().bitsGT(MVT::i32))
3561     Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
3562   else
3563     Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
3564   Entry.Node = Src;
3565   Entry.Ty = Type::getInt32Ty(*getContext());
3566   Entry.isSExt = true;
3567   Args.push_back(Entry);
3568   Entry.Node = Size;
3569   Entry.Ty = IntPtrTy;
3570   Entry.isSExt = false;
3571   Args.push_back(Entry);
3572   // FIXME: pass in DebugLoc
3573   std::pair<SDValue,SDValue> CallResult =
3574     TLI.LowerCallTo(Chain, Type::getVoidTy(*getContext()),
3575                     false, false, false, false, 0,
3576                     TLI.getLibcallCallingConv(RTLIB::MEMSET), false,
3577                     /*isReturnValueUsed=*/false,
3578                     getExternalSymbol(TLI.getLibcallName(RTLIB::MEMSET),
3579                                       TLI.getPointerTy()),
3580                     Args, *this, dl, GetOrdering(Chain.getNode()));
3581   return CallResult.second;
3582 }
3583
3584 SDValue SelectionDAG::getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT,
3585                                 SDValue Chain,
3586                                 SDValue Ptr, SDValue Cmp,
3587                                 SDValue Swp, const Value* PtrVal,
3588                                 unsigned Alignment) {
3589   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3590     Alignment = getEVTAlignment(MemVT);
3591
3592   // Check if the memory reference references a frame index
3593   if (!PtrVal)
3594     if (const FrameIndexSDNode *FI =
3595           dyn_cast<const FrameIndexSDNode>(Ptr.getNode()))
3596       PtrVal = PseudoSourceValue::getFixedStack(FI->getIndex());
3597
3598   MachineFunction &MF = getMachineFunction();
3599   unsigned Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
3600
3601   // For now, atomics are considered to be volatile always.
3602   Flags |= MachineMemOperand::MOVolatile;
3603
3604   MachineMemOperand *MMO =
3605     MF.getMachineMemOperand(PtrVal, Flags, 0,
3606                             MemVT.getStoreSize(), Alignment);
3607
3608   return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Cmp, Swp, MMO);
3609 }
3610
3611 SDValue SelectionDAG::getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT,
3612                                 SDValue Chain,
3613                                 SDValue Ptr, SDValue Cmp,
3614                                 SDValue Swp, MachineMemOperand *MMO) {
3615   assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op");
3616   assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
3617
3618   EVT VT = Cmp.getValueType();
3619
3620   SDVTList VTs = getVTList(VT, MVT::Other);
3621   FoldingSetNodeID ID;
3622   ID.AddInteger(MemVT.getRawBits());
3623   SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
3624   AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
3625   void* IP = 0;
3626   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3627     cast<AtomicSDNode>(E)->refineAlignment(MMO);
3628     return SDValue(E, 0);
3629   }
3630   SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
3631   new (N) AtomicSDNode(Opcode, dl, VTs, MemVT, Chain, Ptr, Cmp, Swp, MMO);
3632   CSEMap.InsertNode(N, IP);
3633   AllNodes.push_back(N);
3634   return SDValue(N, 0);
3635 }
3636
3637 SDValue SelectionDAG::getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT,
3638                                 SDValue Chain,
3639                                 SDValue Ptr, SDValue Val,
3640                                 const Value* PtrVal,
3641                                 unsigned Alignment) {
3642   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3643     Alignment = getEVTAlignment(MemVT);
3644
3645   // Check if the memory reference references a frame index
3646   if (!PtrVal)
3647     if (const FrameIndexSDNode *FI =
3648           dyn_cast<const FrameIndexSDNode>(Ptr.getNode()))
3649       PtrVal = PseudoSourceValue::getFixedStack(FI->getIndex());
3650
3651   MachineFunction &MF = getMachineFunction();
3652   unsigned Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
3653
3654   // For now, atomics are considered to be volatile always.
3655   Flags |= MachineMemOperand::MOVolatile;
3656
3657   MachineMemOperand *MMO =
3658     MF.getMachineMemOperand(PtrVal, Flags, 0,
3659                             MemVT.getStoreSize(), Alignment);
3660
3661   return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO);
3662 }
3663
3664 SDValue SelectionDAG::getAtomic(unsigned Opcode, DebugLoc dl, EVT MemVT,
3665                                 SDValue Chain,
3666                                 SDValue Ptr, SDValue Val,
3667                                 MachineMemOperand *MMO) {
3668   assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
3669           Opcode == ISD::ATOMIC_LOAD_SUB ||
3670           Opcode == ISD::ATOMIC_LOAD_AND ||
3671           Opcode == ISD::ATOMIC_LOAD_OR ||
3672           Opcode == ISD::ATOMIC_LOAD_XOR ||
3673           Opcode == ISD::ATOMIC_LOAD_NAND ||
3674           Opcode == ISD::ATOMIC_LOAD_MIN ||
3675           Opcode == ISD::ATOMIC_LOAD_MAX ||
3676           Opcode == ISD::ATOMIC_LOAD_UMIN ||
3677           Opcode == ISD::ATOMIC_LOAD_UMAX ||
3678           Opcode == ISD::ATOMIC_SWAP) &&
3679          "Invalid Atomic Op");
3680
3681   EVT VT = Val.getValueType();
3682
3683   SDVTList VTs = getVTList(VT, MVT::Other);
3684   FoldingSetNodeID ID;
3685   ID.AddInteger(MemVT.getRawBits());
3686   SDValue Ops[] = {Chain, Ptr, Val};
3687   AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
3688   void* IP = 0;
3689   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3690     cast<AtomicSDNode>(E)->refineAlignment(MMO);
3691     return SDValue(E, 0);
3692   }
3693   SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
3694   new (N) AtomicSDNode(Opcode, dl, VTs, MemVT, Chain, Ptr, Val, MMO);
3695   CSEMap.InsertNode(N, IP);
3696   AllNodes.push_back(N);
3697   return SDValue(N, 0);
3698 }
3699
3700 /// getMergeValues - Create a MERGE_VALUES node from the given operands.
3701 /// Allowed to return something different (and simpler) if Simplify is true.
3702 SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3703                                      DebugLoc dl) {
3704   if (NumOps == 1)
3705     return Ops[0];
3706
3707   SmallVector<EVT, 4> VTs;
3708   VTs.reserve(NumOps);
3709   for (unsigned i = 0; i < NumOps; ++i)
3710     VTs.push_back(Ops[i].getValueType());
3711   return getNode(ISD::MERGE_VALUES, dl, getVTList(&VTs[0], NumOps),
3712                  Ops, NumOps);
3713 }
3714
3715 SDValue
3716 SelectionDAG::getMemIntrinsicNode(unsigned Opcode, DebugLoc dl,
3717                                   const EVT *VTs, unsigned NumVTs,
3718                                   const SDValue *Ops, unsigned NumOps,
3719                                   EVT MemVT, const Value *srcValue, int SVOff,
3720                                   unsigned Align, bool Vol,
3721                                   bool ReadMem, bool WriteMem) {
3722   return getMemIntrinsicNode(Opcode, dl, makeVTList(VTs, NumVTs), Ops, NumOps,
3723                              MemVT, srcValue, SVOff, Align, Vol,
3724                              ReadMem, WriteMem);
3725 }
3726
3727 SDValue
3728 SelectionDAG::getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, SDVTList VTList,
3729                                   const SDValue *Ops, unsigned NumOps,
3730                                   EVT MemVT, const Value *srcValue, int SVOff,
3731                                   unsigned Align, bool Vol,
3732                                   bool ReadMem, bool WriteMem) {
3733   if (Align == 0)  // Ensure that codegen never sees alignment 0
3734     Align = getEVTAlignment(MemVT);
3735
3736   MachineFunction &MF = getMachineFunction();
3737   unsigned Flags = 0;
3738   if (WriteMem)
3739     Flags |= MachineMemOperand::MOStore;
3740   if (ReadMem)
3741     Flags |= MachineMemOperand::MOLoad;
3742   if (Vol)
3743     Flags |= MachineMemOperand::MOVolatile;
3744   MachineMemOperand *MMO =
3745     MF.getMachineMemOperand(srcValue, Flags, SVOff,
3746                             MemVT.getStoreSize(), Align);
3747
3748   return getMemIntrinsicNode(Opcode, dl, VTList, Ops, NumOps, MemVT, MMO);
3749 }
3750
3751 SDValue
3752 SelectionDAG::getMemIntrinsicNode(unsigned Opcode, DebugLoc dl, SDVTList VTList,
3753                                   const SDValue *Ops, unsigned NumOps,
3754                                   EVT MemVT, MachineMemOperand *MMO) {
3755   assert((Opcode == ISD::INTRINSIC_VOID ||
3756           Opcode == ISD::INTRINSIC_W_CHAIN ||
3757           (Opcode <= INT_MAX &&
3758            (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
3759          "Opcode is not a memory-accessing opcode!");
3760
3761   // Memoize the node unless it returns a flag.
3762   MemIntrinsicSDNode *N;
3763   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3764     FoldingSetNodeID ID;
3765     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3766     void *IP = 0;
3767     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3768       cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
3769       return SDValue(E, 0);
3770     }
3771
3772     N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3773     new (N) MemIntrinsicSDNode(Opcode, dl, VTList, Ops, NumOps, MemVT, MMO);
3774     CSEMap.InsertNode(N, IP);
3775   } else {
3776     N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3777     new (N) MemIntrinsicSDNode(Opcode, dl, VTList, Ops, NumOps, MemVT, MMO);
3778   }
3779   AllNodes.push_back(N);
3780   return SDValue(N, 0);
3781 }
3782
3783 SDValue
3784 SelectionDAG::getLoad(ISD::MemIndexedMode AM, DebugLoc dl,
3785                       ISD::LoadExtType ExtType, EVT VT, SDValue Chain,
3786                       SDValue Ptr, SDValue Offset,
3787                       const Value *SV, int SVOffset, EVT MemVT,
3788                       bool isVolatile, unsigned Alignment) {
3789   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3790     Alignment = getEVTAlignment(VT);
3791
3792   // Check if the memory reference references a frame index
3793   if (!SV)
3794     if (const FrameIndexSDNode *FI =
3795           dyn_cast<const FrameIndexSDNode>(Ptr.getNode()))
3796       SV = PseudoSourceValue::getFixedStack(FI->getIndex());
3797
3798   MachineFunction &MF = getMachineFunction();
3799   unsigned Flags = MachineMemOperand::MOLoad;
3800   if (isVolatile)
3801     Flags |= MachineMemOperand::MOVolatile;
3802   MachineMemOperand *MMO =
3803     MF.getMachineMemOperand(SV, Flags, SVOffset,
3804                             MemVT.getStoreSize(), Alignment);
3805   return getLoad(AM, dl, ExtType, VT, Chain, Ptr, Offset, MemVT, MMO);
3806 }
3807
3808 SDValue
3809 SelectionDAG::getLoad(ISD::MemIndexedMode AM, DebugLoc dl,
3810                       ISD::LoadExtType ExtType, EVT VT, SDValue Chain,
3811                       SDValue Ptr, SDValue Offset, EVT MemVT,
3812                       MachineMemOperand *MMO) {
3813   if (VT == MemVT) {
3814     ExtType = ISD::NON_EXTLOAD;
3815   } else if (ExtType == ISD::NON_EXTLOAD) {
3816     assert(VT == MemVT && "Non-extending load from different memory type!");
3817   } else {
3818     // Extending load.
3819     assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
3820            "Should only be an extending load, not truncating!");
3821     assert(VT.isInteger() == MemVT.isInteger() &&
3822            "Cannot convert from FP to Int or Int -> FP!");
3823     assert(VT.isVector() == MemVT.isVector() &&
3824            "Cannot use trunc store to convert to or from a vector!");
3825     assert((!VT.isVector() ||
3826             VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
3827            "Cannot use trunc store to change the number of vector elements!");
3828   }
3829
3830   bool Indexed = AM != ISD::UNINDEXED;
3831   assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
3832          "Unindexed load with an offset!");
3833
3834   SDVTList VTs = Indexed ?
3835     getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
3836   SDValue Ops[] = { Chain, Ptr, Offset };
3837   FoldingSetNodeID ID;
3838   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
3839   ID.AddInteger(MemVT.getRawBits());
3840   ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile()));
3841   void *IP = 0;
3842   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3843     cast<LoadSDNode>(E)->refineAlignment(MMO);
3844     return SDValue(E, 0);
3845   }
3846   SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
3847   new (N) LoadSDNode(Ops, dl, VTs, AM, ExtType, MemVT, MMO);
3848   CSEMap.InsertNode(N, IP);
3849   AllNodes.push_back(N);
3850   return SDValue(N, 0);
3851 }
3852
3853 SDValue SelectionDAG::getLoad(EVT VT, DebugLoc dl,
3854                               SDValue Chain, SDValue Ptr,
3855                               const Value *SV, int SVOffset,
3856                               bool isVolatile, unsigned Alignment) {
3857   SDValue Undef = getUNDEF(Ptr.getValueType());
3858   return getLoad(ISD::UNINDEXED, dl, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3859                  SV, SVOffset, VT, isVolatile, Alignment);
3860 }
3861
3862 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, DebugLoc dl, EVT VT,
3863                                  SDValue Chain, SDValue Ptr,
3864                                  const Value *SV,
3865                                  int SVOffset, EVT MemVT,
3866                                  bool isVolatile, unsigned Alignment) {
3867   SDValue Undef = getUNDEF(Ptr.getValueType());
3868   return getLoad(ISD::UNINDEXED, dl, ExtType, VT, Chain, Ptr, Undef,
3869                  SV, SVOffset, MemVT, isVolatile, Alignment);
3870 }
3871
3872 SDValue
3873 SelectionDAG::getIndexedLoad(SDValue OrigLoad, DebugLoc dl, SDValue Base,
3874                              SDValue Offset, ISD::MemIndexedMode AM) {
3875   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
3876   assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3877          "Load is already a indexed load!");
3878   return getLoad(AM, dl, LD->getExtensionType(), OrigLoad.getValueType(),
3879                  LD->getChain(), Base, Offset, LD->getSrcValue(),
3880                  LD->getSrcValueOffset(), LD->getMemoryVT(),
3881                  LD->isVolatile(), LD->getAlignment());
3882 }
3883
3884 SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val,
3885                                SDValue Ptr, const Value *SV, int SVOffset,
3886                                bool isVolatile, unsigned Alignment) {
3887   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3888     Alignment = getEVTAlignment(Val.getValueType());
3889
3890   // Check if the memory reference references a frame index
3891   if (!SV)
3892     if (const FrameIndexSDNode *FI =
3893           dyn_cast<const FrameIndexSDNode>(Ptr.getNode()))
3894       SV = PseudoSourceValue::getFixedStack(FI->getIndex());
3895
3896   MachineFunction &MF = getMachineFunction();
3897   unsigned Flags = MachineMemOperand::MOStore;
3898   if (isVolatile)
3899     Flags |= MachineMemOperand::MOVolatile;
3900   MachineMemOperand *MMO =
3901     MF.getMachineMemOperand(SV, Flags, SVOffset,
3902                             Val.getValueType().getStoreSize(), Alignment);
3903
3904   return getStore(Chain, dl, Val, Ptr, MMO);
3905 }
3906
3907 SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val,
3908                                SDValue Ptr, MachineMemOperand *MMO) {
3909   EVT VT = Val.getValueType();
3910   SDVTList VTs = getVTList(MVT::Other);
3911   SDValue Undef = getUNDEF(Ptr.getValueType());
3912   SDValue Ops[] = { Chain, Val, Ptr, Undef };
3913   FoldingSetNodeID ID;
3914   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3915   ID.AddInteger(VT.getRawBits());
3916   ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile()));
3917   void *IP = 0;
3918   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3919     cast<StoreSDNode>(E)->refineAlignment(MMO);
3920     return SDValue(E, 0);
3921   }
3922   SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
3923   new (N) StoreSDNode(Ops, dl, VTs, ISD::UNINDEXED, false, VT, MMO);
3924   CSEMap.InsertNode(N, IP);
3925   AllNodes.push_back(N);
3926   return SDValue(N, 0);
3927 }
3928
3929 SDValue SelectionDAG::getTruncStore(SDValue Chain, DebugLoc dl, SDValue Val,
3930                                     SDValue Ptr, const Value *SV,
3931                                     int SVOffset, EVT SVT,
3932                                     bool isVolatile, unsigned Alignment) {
3933   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3934     Alignment = getEVTAlignment(SVT);
3935
3936   // Check if the memory reference references a frame index
3937   if (!SV)
3938     if (const FrameIndexSDNode *FI =
3939           dyn_cast<const FrameIndexSDNode>(Ptr.getNode()))
3940       SV = PseudoSourceValue::getFixedStack(FI->getIndex());
3941
3942   MachineFunction &MF = getMachineFunction();
3943   unsigned Flags = MachineMemOperand::MOStore;
3944   if (isVolatile)
3945     Flags |= MachineMemOperand::MOVolatile;
3946   MachineMemOperand *MMO =
3947     MF.getMachineMemOperand(SV, Flags, SVOffset, SVT.getStoreSize(), Alignment);
3948
3949   return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
3950 }
3951
3952 SDValue SelectionDAG::getTruncStore(SDValue Chain, DebugLoc dl, SDValue Val,
3953                                     SDValue Ptr, EVT SVT,
3954                                     MachineMemOperand *MMO) {
3955   EVT VT = Val.getValueType();
3956
3957   if (VT == SVT)
3958     return getStore(Chain, dl, Val, Ptr, MMO);
3959
3960   assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
3961          "Should only be a truncating store, not extending!");
3962   assert(VT.isInteger() == SVT.isInteger() &&
3963          "Can't do FP-INT conversion!");
3964   assert(VT.isVector() == SVT.isVector() &&
3965          "Cannot use trunc store to convert to or from a vector!");
3966   assert((!VT.isVector() ||
3967           VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
3968          "Cannot use trunc store to change the number of vector elements!");
3969
3970   SDVTList VTs = getVTList(MVT::Other);
3971   SDValue Undef = getUNDEF(Ptr.getValueType());
3972   SDValue Ops[] = { Chain, Val, Ptr, Undef };
3973   FoldingSetNodeID ID;
3974   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3975   ID.AddInteger(SVT.getRawBits());
3976   ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile()));
3977   void *IP = 0;
3978   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3979     cast<StoreSDNode>(E)->refineAlignment(MMO);
3980     return SDValue(E, 0);
3981   }
3982   SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
3983   new (N) StoreSDNode(Ops, dl, VTs, ISD::UNINDEXED, true, SVT, MMO);
3984   CSEMap.InsertNode(N, IP);
3985   AllNodes.push_back(N);
3986   return SDValue(N, 0);
3987 }
3988
3989 SDValue
3990 SelectionDAG::getIndexedStore(SDValue OrigStore, DebugLoc dl, SDValue Base,
3991                               SDValue Offset, ISD::MemIndexedMode AM) {
3992   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3993   assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3994          "Store is already a indexed store!");
3995   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
3996   SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
3997   FoldingSetNodeID ID;
3998   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3999   ID.AddInteger(ST->getMemoryVT().getRawBits());
4000   ID.AddInteger(ST->getRawSubclassData());
4001   void *IP = 0;
4002   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4003     return SDValue(E, 0);
4004
4005   SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
4006   new (N) StoreSDNode(Ops, dl, VTs, AM,
4007                       ST->isTruncatingStore(), ST->getMemoryVT(),
4008                       ST->getMemOperand());
4009   CSEMap.InsertNode(N, IP);
4010   AllNodes.push_back(N);
4011   return SDValue(N, 0);
4012 }
4013
4014 SDValue SelectionDAG::getVAArg(EVT VT, DebugLoc dl,
4015                                SDValue Chain, SDValue Ptr,
4016                                SDValue SV) {
4017   SDValue Ops[] = { Chain, Ptr, SV };
4018   return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops, 3);
4019 }
4020
4021 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
4022                               const SDUse *Ops, unsigned NumOps) {
4023   switch (NumOps) {
4024   case 0: return getNode(Opcode, DL, VT);
4025   case 1: return getNode(Opcode, DL, VT, Ops[0]);
4026   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4027   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
4028   default: break;
4029   }
4030
4031   // Copy from an SDUse array into an SDValue array for use with
4032   // the regular getNode logic.
4033   SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
4034   return getNode(Opcode, DL, VT, &NewOps[0], NumOps);
4035 }
4036
4037 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, EVT VT,
4038                               const SDValue *Ops, unsigned NumOps) {
4039   switch (NumOps) {
4040   case 0: return getNode(Opcode, DL, VT);
4041   case 1: return getNode(Opcode, DL, VT, Ops[0]);
4042   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
4043   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
4044   default: break;
4045   }
4046
4047   switch (Opcode) {
4048   default: break;
4049   case ISD::SELECT_CC: {
4050     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
4051     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
4052            "LHS and RHS of condition must have same type!");
4053     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4054            "True and False arms of SelectCC must have same type!");
4055     assert(Ops[2].getValueType() == VT &&
4056            "select_cc node must be of same type as true and false value!");
4057     break;
4058   }
4059   case ISD::BR_CC: {
4060     assert(NumOps == 5 && "BR_CC takes 5 operands!");
4061     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
4062            "LHS/RHS of comparison should match types!");
4063     break;
4064   }
4065   }
4066
4067   // Memoize nodes.
4068   SDNode *N;
4069   SDVTList VTs = getVTList(VT);
4070
4071   if (VT != MVT::Flag) {
4072     FoldingSetNodeID ID;
4073     AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
4074     void *IP = 0;
4075
4076     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4077       return SDValue(E, 0);
4078
4079     N = NodeAllocator.Allocate<SDNode>();
4080     new (N) SDNode(Opcode, DL, VTs, Ops, NumOps);
4081     CSEMap.InsertNode(N, IP);
4082   } else {
4083     N = NodeAllocator.Allocate<SDNode>();
4084     new (N) SDNode(Opcode, DL, VTs, Ops, NumOps);
4085   }
4086
4087   AllNodes.push_back(N);
4088 #ifndef NDEBUG
4089   VerifyNode(N);
4090 #endif
4091   return SDValue(N, 0);
4092 }
4093
4094 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL,
4095                               const std::vector<EVT> &ResultTys,
4096                               const SDValue *Ops, unsigned NumOps) {
4097   return getNode(Opcode, DL, getVTList(&ResultTys[0], ResultTys.size()),
4098                  Ops, NumOps);
4099 }
4100
4101 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL,
4102                               const EVT *VTs, unsigned NumVTs,
4103                               const SDValue *Ops, unsigned NumOps) {
4104   if (NumVTs == 1)
4105     return getNode(Opcode, DL, VTs[0], Ops, NumOps);
4106   return getNode(Opcode, DL, makeVTList(VTs, NumVTs), Ops, NumOps);
4107 }
4108
4109 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4110                               const SDValue *Ops, unsigned NumOps) {
4111   if (VTList.NumVTs == 1)
4112     return getNode(Opcode, DL, VTList.VTs[0], Ops, NumOps);
4113
4114 #if 0
4115   switch (Opcode) {
4116   // FIXME: figure out how to safely handle things like
4117   // int foo(int x) { return 1 << (x & 255); }
4118   // int bar() { return foo(256); }
4119   case ISD::SRA_PARTS:
4120   case ISD::SRL_PARTS:
4121   case ISD::SHL_PARTS:
4122     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
4123         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
4124       return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
4125     else if (N3.getOpcode() == ISD::AND)
4126       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
4127         // If the and is only masking out bits that cannot effect the shift,
4128         // eliminate the and.
4129         unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
4130         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
4131           return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
4132       }
4133     break;
4134   }
4135 #endif
4136
4137   // Memoize the node unless it returns a flag.
4138   SDNode *N;
4139   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4140     FoldingSetNodeID ID;
4141     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4142     void *IP = 0;
4143     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4144       return SDValue(E, 0);
4145
4146     if (NumOps == 1) {
4147       N = NodeAllocator.Allocate<UnarySDNode>();
4148       new (N) UnarySDNode(Opcode, DL, VTList, Ops[0]);
4149     } else if (NumOps == 2) {
4150       N = NodeAllocator.Allocate<BinarySDNode>();
4151       new (N) BinarySDNode(Opcode, DL, VTList, Ops[0], Ops[1]);
4152     } else if (NumOps == 3) {
4153       N = NodeAllocator.Allocate<TernarySDNode>();
4154       new (N) TernarySDNode(Opcode, DL, VTList, Ops[0], Ops[1], Ops[2]);
4155     } else {
4156       N = NodeAllocator.Allocate<SDNode>();
4157       new (N) SDNode(Opcode, DL, VTList, Ops, NumOps);
4158     }
4159     CSEMap.InsertNode(N, IP);
4160   } else {
4161     if (NumOps == 1) {
4162       N = NodeAllocator.Allocate<UnarySDNode>();
4163       new (N) UnarySDNode(Opcode, DL, VTList, Ops[0]);
4164     } else if (NumOps == 2) {
4165       N = NodeAllocator.Allocate<BinarySDNode>();
4166       new (N) BinarySDNode(Opcode, DL, VTList, Ops[0], Ops[1]);
4167     } else if (NumOps == 3) {
4168       N = NodeAllocator.Allocate<TernarySDNode>();
4169       new (N) TernarySDNode(Opcode, DL, VTList, Ops[0], Ops[1], Ops[2]);
4170     } else {
4171       N = NodeAllocator.Allocate<SDNode>();
4172       new (N) SDNode(Opcode, DL, VTList, Ops, NumOps);
4173     }
4174   }
4175   AllNodes.push_back(N);
4176 #ifndef NDEBUG
4177   VerifyNode(N);
4178 #endif
4179   return SDValue(N, 0);
4180 }
4181
4182 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList) {
4183   return getNode(Opcode, DL, VTList, 0, 0);
4184 }
4185
4186 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4187                               SDValue N1) {
4188   SDValue Ops[] = { N1 };
4189   return getNode(Opcode, DL, VTList, Ops, 1);
4190 }
4191
4192 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4193                               SDValue N1, SDValue N2) {
4194   SDValue Ops[] = { N1, N2 };
4195   return getNode(Opcode, DL, VTList, Ops, 2);
4196 }
4197
4198 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4199                               SDValue N1, SDValue N2, SDValue N3) {
4200   SDValue Ops[] = { N1, N2, N3 };
4201   return getNode(Opcode, DL, VTList, Ops, 3);
4202 }
4203
4204 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4205                               SDValue N1, SDValue N2, SDValue N3,
4206                               SDValue N4) {
4207   SDValue Ops[] = { N1, N2, N3, N4 };
4208   return getNode(Opcode, DL, VTList, Ops, 4);
4209 }
4210
4211 SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
4212                               SDValue N1, SDValue N2, SDValue N3,
4213                               SDValue N4, SDValue N5) {
4214   SDValue Ops[] = { N1, N2, N3, N4, N5 };
4215   return getNode(Opcode, DL, VTList, Ops, 5);
4216 }
4217
4218 SDVTList SelectionDAG::getVTList(EVT VT) {
4219   return makeVTList(SDNode::getValueTypeList(VT), 1);
4220 }
4221
4222 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
4223   for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4224        E = VTList.rend(); I != E; ++I)
4225     if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
4226       return *I;
4227
4228   EVT *Array = Allocator.Allocate<EVT>(2);
4229   Array[0] = VT1;
4230   Array[1] = VT2;
4231   SDVTList Result = makeVTList(Array, 2);
4232   VTList.push_back(Result);
4233   return Result;
4234 }
4235
4236 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
4237   for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4238        E = VTList.rend(); I != E; ++I)
4239     if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4240                           I->VTs[2] == VT3)
4241       return *I;
4242
4243   EVT *Array = Allocator.Allocate<EVT>(3);
4244   Array[0] = VT1;
4245   Array[1] = VT2;
4246   Array[2] = VT3;
4247   SDVTList Result = makeVTList(Array, 3);
4248   VTList.push_back(Result);
4249   return Result;
4250 }
4251
4252 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
4253   for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4254        E = VTList.rend(); I != E; ++I)
4255     if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
4256                           I->VTs[2] == VT3 && I->VTs[3] == VT4)
4257       return *I;
4258
4259   EVT *Array = Allocator.Allocate<EVT>(4);
4260   Array[0] = VT1;
4261   Array[1] = VT2;
4262   Array[2] = VT3;
4263   Array[3] = VT4;
4264   SDVTList Result = makeVTList(Array, 4);
4265   VTList.push_back(Result);
4266   return Result;
4267 }
4268
4269 SDVTList SelectionDAG::getVTList(const EVT *VTs, unsigned NumVTs) {
4270   switch (NumVTs) {
4271     case 0: llvm_unreachable("Cannot have nodes without results!");
4272     case 1: return getVTList(VTs[0]);
4273     case 2: return getVTList(VTs[0], VTs[1]);
4274     case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
4275     case 4: return getVTList(VTs[0], VTs[1], VTs[2], VTs[3]);
4276     default: break;
4277   }
4278
4279   for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
4280        E = VTList.rend(); I != E; ++I) {
4281     if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
4282       continue;
4283
4284     bool NoMatch = false;
4285     for (unsigned i = 2; i != NumVTs; ++i)
4286       if (VTs[i] != I->VTs[i]) {
4287         NoMatch = true;
4288         break;
4289       }
4290     if (!NoMatch)
4291       return *I;
4292   }
4293
4294   EVT *Array = Allocator.Allocate<EVT>(NumVTs);
4295   std::copy(VTs, VTs+NumVTs, Array);
4296   SDVTList Result = makeVTList(Array, NumVTs);
4297   VTList.push_back(Result);
4298   return Result;
4299 }
4300
4301
4302 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
4303 /// specified operands.  If the resultant node already exists in the DAG,
4304 /// this does not modify the specified node, instead it returns the node that
4305 /// already exists.  If the resultant node does not exist in the DAG, the
4306 /// input node is returned.  As a degenerate case, if you specify the same
4307 /// input operands as the node already has, the input node is returned.
4308 SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
4309   SDNode *N = InN.getNode();
4310   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
4311
4312   // Check to see if there is no change.
4313   if (Op == N->getOperand(0)) return InN;
4314
4315   // See if the modified node already exists.
4316   void *InsertPos = 0;
4317   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
4318     return SDValue(Existing, InN.getResNo());
4319
4320   // Nope it doesn't.  Remove the node from its current place in the maps.
4321   if (InsertPos)
4322     if (!RemoveNodeFromCSEMaps(N))
4323       InsertPos = 0;
4324
4325   // Now we update the operands.
4326   N->OperandList[0].set(Op);
4327
4328   // If this gets put into a CSE map, add it.
4329   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
4330   return InN;
4331 }
4332
4333 SDValue SelectionDAG::
4334 UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
4335   SDNode *N = InN.getNode();
4336   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
4337
4338   // Check to see if there is no change.
4339   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
4340     return InN;   // No operands changed, just return the input node.
4341
4342   // See if the modified node already exists.
4343   void *InsertPos = 0;
4344   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
4345     return SDValue(Existing, InN.getResNo());
4346
4347   // Nope it doesn't.  Remove the node from its current place in the maps.
4348   if (InsertPos)
4349     if (!RemoveNodeFromCSEMaps(N))
4350       InsertPos = 0;
4351
4352   // Now we update the operands.
4353   if (N->OperandList[0] != Op1)
4354     N->OperandList[0].set(Op1);
4355   if (N->OperandList[1] != Op2)
4356     N->OperandList[1].set(Op2);
4357
4358   // If this gets put into a CSE map, add it.
4359   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
4360   return InN;
4361 }
4362
4363 SDValue SelectionDAG::
4364 UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
4365   SDValue Ops[] = { Op1, Op2, Op3 };
4366   return UpdateNodeOperands(N, Ops, 3);
4367 }
4368
4369 SDValue SelectionDAG::
4370 UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
4371                    SDValue Op3, SDValue Op4) {
4372   SDValue Ops[] = { Op1, Op2, Op3, Op4 };
4373   return UpdateNodeOperands(N, Ops, 4);
4374 }
4375
4376 SDValue SelectionDAG::
4377 UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
4378                    SDValue Op3, SDValue Op4, SDValue Op5) {
4379   SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
4380   return UpdateNodeOperands(N, Ops, 5);
4381 }
4382
4383 SDValue SelectionDAG::
4384 UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
4385   SDNode *N = InN.getNode();
4386   assert(N->getNumOperands() == NumOps &&
4387          "Update with wrong number of operands");
4388
4389   // Check to see if there is no change.
4390   bool AnyChange = false;
4391   for (unsigned i = 0; i != NumOps; ++i) {
4392     if (Ops[i] != N->getOperand(i)) {
4393       AnyChange = true;
4394       break;
4395     }
4396   }
4397
4398   // No operands changed, just return the input node.
4399   if (!AnyChange) return InN;
4400
4401   // See if the modified node already exists.
4402   void *InsertPos = 0;
4403   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
4404     return SDValue(Existing, InN.getResNo());
4405
4406   // Nope it doesn't.  Remove the node from its current place in the maps.
4407   if (InsertPos)
4408     if (!RemoveNodeFromCSEMaps(N))
4409       InsertPos = 0;
4410
4411   // Now we update the operands.
4412   for (unsigned i = 0; i != NumOps; ++i)
4413     if (N->OperandList[i] != Ops[i])
4414       N->OperandList[i].set(Ops[i]);
4415
4416   // If this gets put into a CSE map, add it.
4417   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
4418   return InN;
4419 }
4420
4421 /// DropOperands - Release the operands and set this node to have
4422 /// zero operands.
4423 void SDNode::DropOperands() {
4424   // Unlike the code in MorphNodeTo that does this, we don't need to
4425   // watch for dead nodes here.
4426   for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
4427     SDUse &Use = *I++;
4428     Use.set(SDValue());
4429   }
4430 }
4431
4432 /// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4433 /// machine opcode.
4434 ///
4435 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4436                                    EVT VT) {
4437   SDVTList VTs = getVTList(VT);
4438   return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
4439 }
4440
4441 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4442                                    EVT VT, SDValue Op1) {
4443   SDVTList VTs = getVTList(VT);
4444   SDValue Ops[] = { Op1 };
4445   return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
4446 }
4447
4448 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4449                                    EVT VT, SDValue Op1,
4450                                    SDValue Op2) {
4451   SDVTList VTs = getVTList(VT);
4452   SDValue Ops[] = { Op1, Op2 };
4453   return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
4454 }
4455
4456 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4457                                    EVT VT, SDValue Op1,
4458                                    SDValue Op2, SDValue Op3) {
4459   SDVTList VTs = getVTList(VT);
4460   SDValue Ops[] = { Op1, Op2, Op3 };
4461   return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4462 }
4463
4464 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4465                                    EVT VT, const SDValue *Ops,
4466                                    unsigned NumOps) {
4467   SDVTList VTs = getVTList(VT);
4468   return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4469 }
4470
4471 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4472                                    EVT VT1, EVT VT2, const SDValue *Ops,
4473                                    unsigned NumOps) {
4474   SDVTList VTs = getVTList(VT1, VT2);
4475   return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4476 }
4477
4478 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4479                                    EVT VT1, EVT VT2) {
4480   SDVTList VTs = getVTList(VT1, VT2);
4481   return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
4482 }
4483
4484 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4485                                    EVT VT1, EVT VT2, EVT VT3,
4486                                    const SDValue *Ops, unsigned NumOps) {
4487   SDVTList VTs = getVTList(VT1, VT2, VT3);
4488   return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4489 }
4490
4491 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4492                                    EVT VT1, EVT VT2, EVT VT3, EVT VT4,
4493                                    const SDValue *Ops, unsigned NumOps) {
4494   SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
4495   return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4496 }
4497
4498 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4499                                    EVT VT1, EVT VT2,
4500                                    SDValue Op1) {
4501   SDVTList VTs = getVTList(VT1, VT2);
4502   SDValue Ops[] = { Op1 };
4503   return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
4504 }
4505
4506 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4507                                    EVT VT1, EVT VT2,
4508                                    SDValue Op1, SDValue Op2) {
4509   SDVTList VTs = getVTList(VT1, VT2);
4510   SDValue Ops[] = { Op1, Op2 };
4511   return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
4512 }
4513
4514 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4515                                    EVT VT1, EVT VT2,
4516                                    SDValue Op1, SDValue Op2,
4517                                    SDValue Op3) {
4518   SDVTList VTs = getVTList(VT1, VT2);
4519   SDValue Ops[] = { Op1, Op2, Op3 };
4520   return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4521 }
4522
4523 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4524                                    EVT VT1, EVT VT2, EVT VT3,
4525                                    SDValue Op1, SDValue Op2,
4526                                    SDValue Op3) {
4527   SDVTList VTs = getVTList(VT1, VT2, VT3);
4528   SDValue Ops[] = { Op1, Op2, Op3 };
4529   return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4530 }
4531
4532 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4533                                    SDVTList VTs, const SDValue *Ops,
4534                                    unsigned NumOps) {
4535   return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4536 }
4537
4538 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4539                                   EVT VT) {
4540   SDVTList VTs = getVTList(VT);
4541   return MorphNodeTo(N, Opc, VTs, 0, 0);
4542 }
4543
4544 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4545                                   EVT VT, SDValue Op1) {
4546   SDVTList VTs = getVTList(VT);
4547   SDValue Ops[] = { Op1 };
4548   return MorphNodeTo(N, Opc, VTs, Ops, 1);
4549 }
4550
4551 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4552                                   EVT VT, SDValue Op1,
4553                                   SDValue Op2) {
4554   SDVTList VTs = getVTList(VT);
4555   SDValue Ops[] = { Op1, Op2 };
4556   return MorphNodeTo(N, Opc, VTs, Ops, 2);
4557 }
4558
4559 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4560                                   EVT VT, SDValue Op1,
4561                                   SDValue Op2, SDValue Op3) {
4562   SDVTList VTs = getVTList(VT);
4563   SDValue Ops[] = { Op1, Op2, Op3 };
4564   return MorphNodeTo(N, Opc, VTs, Ops, 3);
4565 }
4566
4567 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4568                                   EVT VT, const SDValue *Ops,
4569                                   unsigned NumOps) {
4570   SDVTList VTs = getVTList(VT);
4571   return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4572 }
4573
4574 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4575                                   EVT VT1, EVT VT2, const SDValue *Ops,
4576                                   unsigned NumOps) {
4577   SDVTList VTs = getVTList(VT1, VT2);
4578   return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4579 }
4580
4581 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4582                                   EVT VT1, EVT VT2) {
4583   SDVTList VTs = getVTList(VT1, VT2);
4584   return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
4585 }
4586
4587 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4588                                   EVT VT1, EVT VT2, EVT VT3,
4589                                   const SDValue *Ops, unsigned NumOps) {
4590   SDVTList VTs = getVTList(VT1, VT2, VT3);
4591   return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4592 }
4593
4594 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4595                                   EVT VT1, EVT VT2,
4596                                   SDValue Op1) {
4597   SDVTList VTs = getVTList(VT1, VT2);
4598   SDValue Ops[] = { Op1 };
4599   return MorphNodeTo(N, Opc, VTs, Ops, 1);
4600 }
4601
4602 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4603                                   EVT VT1, EVT VT2,
4604                                   SDValue Op1, SDValue Op2) {
4605   SDVTList VTs = getVTList(VT1, VT2);
4606   SDValue Ops[] = { Op1, Op2 };
4607   return MorphNodeTo(N, Opc, VTs, Ops, 2);
4608 }
4609
4610 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4611                                   EVT VT1, EVT VT2,
4612                                   SDValue Op1, SDValue Op2,
4613                                   SDValue Op3) {
4614   SDVTList VTs = getVTList(VT1, VT2);
4615   SDValue Ops[] = { Op1, Op2, Op3 };
4616   return MorphNodeTo(N, Opc, VTs, Ops, 3);
4617 }
4618
4619 /// MorphNodeTo - These *mutate* the specified node to have the specified
4620 /// return type, opcode, and operands.
4621 ///
4622 /// Note that MorphNodeTo returns the resultant node.  If there is already a
4623 /// node of the specified opcode and operands, it returns that node instead of
4624 /// the current one.  Note that the DebugLoc need not be the same.
4625 ///
4626 /// Using MorphNodeTo is faster than creating a new node and swapping it in
4627 /// with ReplaceAllUsesWith both because it often avoids allocating a new
4628 /// node, and because it doesn't require CSE recalculation for any of
4629 /// the node's users.
4630 ///
4631 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4632                                   SDVTList VTs, const SDValue *Ops,
4633                                   unsigned NumOps) {
4634   // If an identical node already exists, use it.
4635   void *IP = 0;
4636   if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4637     FoldingSetNodeID ID;
4638     AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4639     if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4640       return ON;
4641   }
4642
4643   if (!RemoveNodeFromCSEMaps(N))
4644     IP = 0;
4645
4646   // Start the morphing.
4647   N->NodeType = Opc;
4648   N->ValueList = VTs.VTs;
4649   N->NumValues = VTs.NumVTs;
4650
4651   // Clear the operands list, updating used nodes to remove this from their
4652   // use list.  Keep track of any operands that become dead as a result.
4653   SmallPtrSet<SDNode*, 16> DeadNodeSet;
4654   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
4655     SDUse &Use = *I++;
4656     SDNode *Used = Use.getNode();
4657     Use.set(SDValue());
4658     if (Used->use_empty())
4659       DeadNodeSet.insert(Used);
4660   }
4661
4662   if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
4663     // Initialize the memory references information.
4664     MN->setMemRefs(0, 0);
4665     // If NumOps is larger than the # of operands we can have in a
4666     // MachineSDNode, reallocate the operand list.
4667     if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
4668       if (MN->OperandsNeedDelete)
4669         delete[] MN->OperandList;
4670       if (NumOps > array_lengthof(MN->LocalOperands))
4671         // We're creating a final node that will live unmorphed for the
4672         // remainder of the current SelectionDAG iteration, so we can allocate
4673         // the operands directly out of a pool with no recycling metadata.
4674         MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
4675                         Ops, NumOps);
4676       else
4677         MN->InitOperands(MN->LocalOperands, Ops, NumOps);
4678       MN->OperandsNeedDelete = false;
4679     } else
4680       MN->InitOperands(MN->OperandList, Ops, NumOps);
4681   } else {
4682     // If NumOps is larger than the # of operands we currently have, reallocate
4683     // the operand list.
4684     if (NumOps > N->NumOperands) {
4685       if (N->OperandsNeedDelete)
4686         delete[] N->OperandList;
4687       N->InitOperands(new SDUse[NumOps], Ops, NumOps);
4688       N->OperandsNeedDelete = true;
4689     } else
4690       N->InitOperands(N->OperandList, Ops, NumOps);
4691   }
4692
4693   // Delete any nodes that are still dead after adding the uses for the
4694   // new operands.
4695   SmallVector<SDNode *, 16> DeadNodes;
4696   for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4697        E = DeadNodeSet.end(); I != E; ++I)
4698     if ((*I)->use_empty())
4699       DeadNodes.push_back(*I);
4700   RemoveDeadNodes(DeadNodes);
4701
4702   if (IP)
4703     CSEMap.InsertNode(N, IP);   // Memoize the new node.
4704   return N;
4705 }
4706
4707
4708 /// getMachineNode - These are used for target selectors to create a new node
4709 /// with specified return type(s), MachineInstr opcode, and operands.
4710 ///
4711 /// Note that getMachineNode returns the resultant node.  If there is already a
4712 /// node of the specified opcode and operands, it returns that node instead of
4713 /// the current one.
4714 MachineSDNode *
4715 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT) {
4716   SDVTList VTs = getVTList(VT);
4717   return getMachineNode(Opcode, dl, VTs, 0, 0);
4718 }
4719
4720 MachineSDNode *
4721 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT, SDValue Op1) {
4722   SDVTList VTs = getVTList(VT);
4723   SDValue Ops[] = { Op1 };
4724   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4725 }
4726
4727 MachineSDNode *
4728 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
4729                              SDValue Op1, SDValue Op2) {
4730   SDVTList VTs = getVTList(VT);
4731   SDValue Ops[] = { Op1, Op2 };
4732   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4733 }
4734
4735 MachineSDNode *
4736 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
4737                              SDValue Op1, SDValue Op2, SDValue Op3) {
4738   SDVTList VTs = getVTList(VT);
4739   SDValue Ops[] = { Op1, Op2, Op3 };
4740   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4741 }
4742
4743 MachineSDNode *
4744 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT,
4745                              const SDValue *Ops, unsigned NumOps) {
4746   SDVTList VTs = getVTList(VT);
4747   return getMachineNode(Opcode, dl, VTs, Ops, NumOps);
4748 }
4749
4750 MachineSDNode *
4751 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1, EVT VT2) {
4752   SDVTList VTs = getVTList(VT1, VT2);
4753   return getMachineNode(Opcode, dl, VTs, 0, 0);
4754 }
4755
4756 MachineSDNode *
4757 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4758                              EVT VT1, EVT VT2, SDValue Op1) {
4759   SDVTList VTs = getVTList(VT1, VT2);
4760   SDValue Ops[] = { Op1 };
4761   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4762 }
4763
4764 MachineSDNode *
4765 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4766                              EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) {
4767   SDVTList VTs = getVTList(VT1, VT2);
4768   SDValue Ops[] = { Op1, Op2 };
4769   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4770 }
4771
4772 MachineSDNode *
4773 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4774                              EVT VT1, EVT VT2, SDValue Op1,
4775                              SDValue Op2, SDValue Op3) {
4776   SDVTList VTs = getVTList(VT1, VT2);
4777   SDValue Ops[] = { Op1, Op2, Op3 };
4778   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4779 }
4780
4781 MachineSDNode *
4782 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4783                              EVT VT1, EVT VT2,
4784                              const SDValue *Ops, unsigned NumOps) {
4785   SDVTList VTs = getVTList(VT1, VT2);
4786   return getMachineNode(Opcode, dl, VTs, Ops, NumOps);
4787 }
4788
4789 MachineSDNode *
4790 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4791                              EVT VT1, EVT VT2, EVT VT3,
4792                              SDValue Op1, SDValue Op2) {
4793   SDVTList VTs = getVTList(VT1, VT2, VT3);
4794   SDValue Ops[] = { Op1, Op2 };
4795   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4796 }
4797
4798 MachineSDNode *
4799 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4800                              EVT VT1, EVT VT2, EVT VT3,
4801                              SDValue Op1, SDValue Op2, SDValue Op3) {
4802   SDVTList VTs = getVTList(VT1, VT2, VT3);
4803   SDValue Ops[] = { Op1, Op2, Op3 };
4804   return getMachineNode(Opcode, dl, VTs, Ops, array_lengthof(Ops));
4805 }
4806
4807 MachineSDNode *
4808 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4809                              EVT VT1, EVT VT2, EVT VT3,
4810                              const SDValue *Ops, unsigned NumOps) {
4811   SDVTList VTs = getVTList(VT1, VT2, VT3);
4812   return getMachineNode(Opcode, dl, VTs, Ops, NumOps);
4813 }
4814
4815 MachineSDNode *
4816 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl, EVT VT1,
4817                              EVT VT2, EVT VT3, EVT VT4,
4818                              const SDValue *Ops, unsigned NumOps) {
4819   SDVTList VTs = getVTList(VT1, VT2, VT3, VT4);
4820   return getMachineNode(Opcode, dl, VTs, Ops, NumOps);
4821 }
4822
4823 MachineSDNode *
4824 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc dl,
4825                              const std::vector<EVT> &ResultTys,
4826                              const SDValue *Ops, unsigned NumOps) {
4827   SDVTList VTs = getVTList(&ResultTys[0], ResultTys.size());
4828   return getMachineNode(Opcode, dl, VTs, Ops, NumOps);
4829 }
4830
4831 MachineSDNode *
4832 SelectionDAG::getMachineNode(unsigned Opcode, DebugLoc DL, SDVTList VTs,
4833                              const SDValue *Ops, unsigned NumOps) {
4834   bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Flag;
4835   MachineSDNode *N;
4836   void *IP;
4837
4838   if (DoCSE) {
4839     FoldingSetNodeID ID;
4840     AddNodeIDNode(ID, ~Opcode, VTs, Ops, NumOps);
4841     IP = 0;
4842     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4843       return cast<MachineSDNode>(E);
4844   }
4845
4846   // Allocate a new MachineSDNode.
4847   N = NodeAllocator.Allocate<MachineSDNode>();
4848   new (N) MachineSDNode(~Opcode, DL, VTs);
4849
4850   // Initialize the operands list.
4851   if (NumOps > array_lengthof(N->LocalOperands))
4852     // We're creating a final node that will live unmorphed for the
4853     // remainder of the current SelectionDAG iteration, so we can allocate
4854     // the operands directly out of a pool with no recycling metadata.
4855     N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
4856                     Ops, NumOps);
4857   else
4858     N->InitOperands(N->LocalOperands, Ops, NumOps);
4859   N->OperandsNeedDelete = false;
4860
4861   if (DoCSE)
4862     CSEMap.InsertNode(N, IP);
4863
4864   AllNodes.push_back(N);
4865 #ifndef NDEBUG
4866   VerifyNode(N);
4867 #endif
4868   return N;
4869 }
4870
4871 /// getTargetExtractSubreg - A convenience function for creating
4872 /// TargetInstrInfo::EXTRACT_SUBREG nodes.
4873 SDValue
4874 SelectionDAG::getTargetExtractSubreg(int SRIdx, DebugLoc DL, EVT VT,
4875                                      SDValue Operand) {
4876   SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
4877   SDNode *Subreg = getMachineNode(TargetInstrInfo::EXTRACT_SUBREG, DL,
4878                                   VT, Operand, SRIdxVal);
4879   return SDValue(Subreg, 0);
4880 }
4881
4882 /// getTargetInsertSubreg - A convenience function for creating
4883 /// TargetInstrInfo::INSERT_SUBREG nodes.
4884 SDValue
4885 SelectionDAG::getTargetInsertSubreg(int SRIdx, DebugLoc DL, EVT VT,
4886                                     SDValue Operand, SDValue Subreg) {
4887   SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32);
4888   SDNode *Result = getMachineNode(TargetInstrInfo::INSERT_SUBREG, DL,
4889                                   VT, Operand, Subreg, SRIdxVal);
4890   return SDValue(Result, 0);
4891 }
4892
4893 /// getNodeIfExists - Get the specified node if it's already available, or
4894 /// else return NULL.
4895 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
4896                                       const SDValue *Ops, unsigned NumOps) {
4897   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4898     FoldingSetNodeID ID;
4899     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4900     void *IP = 0;
4901     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4902       return E;
4903   }
4904   return NULL;
4905 }
4906
4907 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4908 /// This can cause recursive merging of nodes in the DAG.
4909 ///
4910 /// This version assumes From has a single result value.
4911 ///
4912 void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
4913                                       DAGUpdateListener *UpdateListener) {
4914   SDNode *From = FromN.getNode();
4915   assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
4916          "Cannot replace with this method!");
4917   assert(From != To.getNode() && "Cannot replace uses of with self");
4918
4919   // Iterate over all the existing uses of From. New uses will be added
4920   // to the beginning of the use list, which we avoid visiting.
4921   // This specifically avoids visiting uses of From that arise while the
4922   // replacement is happening, because any such uses would be the result
4923   // of CSE: If an existing node looks like From after one of its operands
4924   // is replaced by To, we don't want to replace of all its users with To
4925   // too. See PR3018 for more info.
4926   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
4927   while (UI != UE) {
4928     SDNode *User = *UI;
4929
4930     // This node is about to morph, remove its old self from the CSE maps.
4931     RemoveNodeFromCSEMaps(User);
4932
4933     // A user can appear in a use list multiple times, and when this
4934     // happens the uses are usually next to each other in the list.
4935     // To help reduce the number of CSE recomputations, process all
4936     // the uses of this user that we can find this way.
4937     do {
4938       SDUse &Use = UI.getUse();
4939       ++UI;
4940       Use.set(To);
4941     } while (UI != UE && *UI == User);
4942
4943     // Now that we have modified User, add it back to the CSE maps.  If it
4944     // already exists there, recursively merge the results together.
4945     AddModifiedNodeToCSEMaps(User, UpdateListener);
4946   }
4947 }
4948
4949 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4950 /// This can cause recursive merging of nodes in the DAG.
4951 ///
4952 /// This version assumes that for each value of From, there is a
4953 /// corresponding value in To in the same position with the same type.
4954 ///
4955 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
4956                                       DAGUpdateListener *UpdateListener) {
4957 #ifndef NDEBUG
4958   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
4959     assert((!From->hasAnyUseOfValue(i) ||
4960             From->getValueType(i) == To->getValueType(i)) &&
4961            "Cannot use this version of ReplaceAllUsesWith!");
4962 #endif
4963
4964   // Handle the trivial case.
4965   if (From == To)
4966     return;
4967
4968   // Iterate over just the existing users of From. See the comments in
4969   // the ReplaceAllUsesWith above.
4970   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
4971   while (UI != UE) {
4972     SDNode *User = *UI;
4973
4974     // This node is about to morph, remove its old self from the CSE maps.
4975     RemoveNodeFromCSEMaps(User);
4976
4977     // A user can appear in a use list multiple times, and when this
4978     // happens the uses are usually next to each other in the list.
4979     // To help reduce the number of CSE recomputations, process all
4980     // the uses of this user that we can find this way.
4981     do {
4982       SDUse &Use = UI.getUse();
4983       ++UI;
4984       Use.setNode(To);
4985     } while (UI != UE && *UI == User);
4986
4987     // Now that we have modified User, add it back to the CSE maps.  If it
4988     // already exists there, recursively merge the results together.
4989     AddModifiedNodeToCSEMaps(User, UpdateListener);
4990   }
4991 }
4992
4993 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4994 /// This can cause recursive merging of nodes in the DAG.
4995 ///
4996 /// This version can replace From with any result values.  To must match the
4997 /// number and types of values returned by From.
4998 void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
4999                                       const SDValue *To,
5000                                       DAGUpdateListener *UpdateListener) {
5001   if (From->getNumValues() == 1)  // Handle the simple case efficiently.
5002     return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
5003
5004   // Iterate over just the existing users of From. See the comments in
5005   // the ReplaceAllUsesWith above.
5006   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
5007   while (UI != UE) {
5008     SDNode *User = *UI;
5009
5010     // This node is about to morph, remove its old self from the CSE maps.
5011     RemoveNodeFromCSEMaps(User);
5012
5013     // A user can appear in a use list multiple times, and when this
5014     // happens the uses are usually next to each other in the list.
5015     // To help reduce the number of CSE recomputations, process all
5016     // the uses of this user that we can find this way.
5017     do {
5018       SDUse &Use = UI.getUse();
5019       const SDValue &ToOp = To[Use.getResNo()];
5020       ++UI;
5021       Use.set(ToOp);
5022     } while (UI != UE && *UI == User);
5023
5024     // Now that we have modified User, add it back to the CSE maps.  If it
5025     // already exists there, recursively merge the results together.
5026     AddModifiedNodeToCSEMaps(User, UpdateListener);
5027   }
5028 }
5029
5030 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
5031 /// uses of other values produced by From.getNode() alone.  The Deleted
5032 /// vector is handled the same way as for ReplaceAllUsesWith.
5033 void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
5034                                              DAGUpdateListener *UpdateListener){
5035   // Handle the really simple, really trivial case efficiently.
5036   if (From == To) return;
5037
5038   // Handle the simple, trivial, case efficiently.
5039   if (From.getNode()->getNumValues() == 1) {
5040     ReplaceAllUsesWith(From, To, UpdateListener);
5041     return;
5042   }
5043
5044   // Iterate over just the existing users of From. See the comments in
5045   // the ReplaceAllUsesWith above.
5046   SDNode::use_iterator UI = From.getNode()->use_begin(),
5047                        UE = From.getNode()->use_end();
5048   while (UI != UE) {
5049     SDNode *User = *UI;
5050     bool UserRemovedFromCSEMaps = false;
5051
5052     // A user can appear in a use list multiple times, and when this
5053     // happens the uses are usually next to each other in the list.
5054     // To help reduce the number of CSE recomputations, process all
5055     // the uses of this user that we can find this way.
5056     do {
5057       SDUse &Use = UI.getUse();
5058
5059       // Skip uses of different values from the same node.
5060       if (Use.getResNo() != From.getResNo()) {
5061         ++UI;
5062         continue;
5063       }
5064
5065       // If this node hasn't been modified yet, it's still in the CSE maps,
5066       // so remove its old self from the CSE maps.
5067       if (!UserRemovedFromCSEMaps) {
5068         RemoveNodeFromCSEMaps(User);
5069         UserRemovedFromCSEMaps = true;
5070       }
5071
5072       ++UI;
5073       Use.set(To);
5074     } while (UI != UE && *UI == User);
5075
5076     // We are iterating over all uses of the From node, so if a use
5077     // doesn't use the specific value, no changes are made.
5078     if (!UserRemovedFromCSEMaps)
5079       continue;
5080
5081     // Now that we have modified User, add it back to the CSE maps.  If it
5082     // already exists there, recursively merge the results together.
5083     AddModifiedNodeToCSEMaps(User, UpdateListener);
5084   }
5085 }
5086
5087 namespace {
5088   /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
5089   /// to record information about a use.
5090   struct UseMemo {
5091     SDNode *User;
5092     unsigned Index;
5093     SDUse *Use;
5094   };
5095
5096   /// operator< - Sort Memos by User.
5097   bool operator<(const UseMemo &L, const UseMemo &R) {
5098     return (intptr_t)L.User < (intptr_t)R.User;
5099   }
5100 }
5101
5102 /// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
5103 /// uses of other values produced by From.getNode() alone.  The same value
5104 /// may appear in both the From and To list.  The Deleted vector is
5105 /// handled the same way as for ReplaceAllUsesWith.
5106 void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
5107                                               const SDValue *To,
5108                                               unsigned Num,
5109                                               DAGUpdateListener *UpdateListener){
5110   // Handle the simple, trivial case efficiently.
5111   if (Num == 1)
5112     return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
5113
5114   // Read up all the uses and make records of them. This helps
5115   // processing new uses that are introduced during the
5116   // replacement process.
5117   SmallVector<UseMemo, 4> Uses;
5118   for (unsigned i = 0; i != Num; ++i) {
5119     unsigned FromResNo = From[i].getResNo();
5120     SDNode *FromNode = From[i].getNode();
5121     for (SDNode::use_iterator UI = FromNode->use_begin(),
5122          E = FromNode->use_end(); UI != E; ++UI) {
5123       SDUse &Use = UI.getUse();
5124       if (Use.getResNo() == FromResNo) {
5125         UseMemo Memo = { *UI, i, &Use };
5126         Uses.push_back(Memo);
5127       }
5128     }
5129   }
5130
5131   // Sort the uses, so that all the uses from a given User are together.
5132   std::sort(Uses.begin(), Uses.end());
5133
5134   for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
5135        UseIndex != UseIndexEnd; ) {
5136     // We know that this user uses some value of From.  If it is the right
5137     // value, update it.
5138     SDNode *User = Uses[UseIndex].User;
5139
5140     // This node is about to morph, remove its old self from the CSE maps.
5141     RemoveNodeFromCSEMaps(User);
5142
5143     // The Uses array is sorted, so all the uses for a given User
5144     // are next to each other in the list.
5145     // To help reduce the number of CSE recomputations, process all
5146     // the uses of this user that we can find this way.
5147     do {
5148       unsigned i = Uses[UseIndex].Index;
5149       SDUse &Use = *Uses[UseIndex].Use;
5150       ++UseIndex;
5151
5152       Use.set(To[i]);
5153     } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
5154
5155     // Now that we have modified User, add it back to the CSE maps.  If it
5156     // already exists there, recursively merge the results together.
5157     AddModifiedNodeToCSEMaps(User, UpdateListener);
5158   }
5159 }
5160
5161 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
5162 /// based on their topological order. It returns the maximum id and a vector
5163 /// of the SDNodes* in assigned order by reference.
5164 unsigned SelectionDAG::AssignTopologicalOrder() {
5165
5166   unsigned DAGSize = 0;
5167
5168   // SortedPos tracks the progress of the algorithm. Nodes before it are
5169   // sorted, nodes after it are unsorted. When the algorithm completes
5170   // it is at the end of the list.
5171   allnodes_iterator SortedPos = allnodes_begin();
5172
5173   // Visit all the nodes. Move nodes with no operands to the front of
5174   // the list immediately. Annotate nodes that do have operands with their
5175   // operand count. Before we do this, the Node Id fields of the nodes
5176   // may contain arbitrary values. After, the Node Id fields for nodes
5177   // before SortedPos will contain the topological sort index, and the
5178   // Node Id fields for nodes At SortedPos and after will contain the
5179   // count of outstanding operands.
5180   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
5181     SDNode *N = I++;
5182     checkForCycles(N);
5183     unsigned Degree = N->getNumOperands();
5184     if (Degree == 0) {
5185       // A node with no uses, add it to the result array immediately.
5186       N->setNodeId(DAGSize++);
5187       allnodes_iterator Q = N;
5188       if (Q != SortedPos)
5189         SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
5190       assert(SortedPos != AllNodes.end() && "Overran node list");
5191       ++SortedPos;
5192     } else {
5193       // Temporarily use the Node Id as scratch space for the degree count.
5194       N->setNodeId(Degree);
5195     }
5196   }
5197
5198   // Visit all the nodes. As we iterate, moves nodes into sorted order,
5199   // such that by the time the end is reached all nodes will be sorted.
5200   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
5201     SDNode *N = I;
5202     checkForCycles(N);
5203     // N is in sorted position, so all its uses have one less operand
5204     // that needs to be sorted.
5205     for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
5206          UI != UE; ++UI) {
5207       SDNode *P = *UI;
5208       unsigned Degree = P->getNodeId();
5209       assert(Degree != 0 && "Invalid node degree");
5210       --Degree;
5211       if (Degree == 0) {
5212         // All of P's operands are sorted, so P may sorted now.
5213         P->setNodeId(DAGSize++);
5214         if (P != SortedPos)
5215           SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
5216         assert(SortedPos != AllNodes.end() && "Overran node list");
5217         ++SortedPos;
5218       } else {
5219         // Update P's outstanding operand count.
5220         P->setNodeId(Degree);
5221       }
5222     }
5223     if (I == SortedPos) {
5224       allnodes_iterator J = I;
5225       SDNode *S = ++J;
5226       dbgs() << "Offending node:\n";
5227       S->dumprFull();
5228       assert(0 && "Overran sorted position");
5229     }
5230   }
5231
5232   assert(SortedPos == AllNodes.end() &&
5233          "Topological sort incomplete!");
5234   assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
5235          "First node in topological sort is not the entry token!");
5236   assert(AllNodes.front().getNodeId() == 0 &&
5237          "First node in topological sort has non-zero id!");
5238   assert(AllNodes.front().getNumOperands() == 0 &&
5239          "First node in topological sort has operands!");
5240   assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
5241          "Last node in topologic sort has unexpected id!");
5242   assert(AllNodes.back().use_empty() &&
5243          "Last node in topologic sort has users!");
5244   assert(DAGSize == allnodes_size() && "Node count mismatch!");
5245   return DAGSize;
5246 }
5247
5248 /// AssignOrdering - Assign an order to the SDNode.
5249 void SelectionDAG::AssignOrdering(const SDNode *SD, unsigned Order) {
5250   assert(SD && "Trying to assign an order to a null node!");
5251   Ordering->add(SD, Order);
5252 }
5253
5254 /// GetOrdering - Get the order for the SDNode.
5255 unsigned SelectionDAG::GetOrdering(const SDNode *SD) const {
5256   assert(SD && "Trying to get the order of a null node!");
5257   return Ordering->getOrder(SD);
5258 }
5259
5260
5261 //===----------------------------------------------------------------------===//
5262 //                              SDNode Class
5263 //===----------------------------------------------------------------------===//
5264
5265 HandleSDNode::~HandleSDNode() {
5266   DropOperands();
5267 }
5268
5269 GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, const GlobalValue *GA,
5270                                          EVT VT, int64_t o, unsigned char TF)
5271   : SDNode(Opc, DebugLoc::getUnknownLoc(), getSDVTList(VT)),
5272     Offset(o), TargetFlags(TF) {
5273   TheGlobal = const_cast<GlobalValue*>(GA);
5274 }
5275
5276 MemSDNode::MemSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, EVT memvt,
5277                      MachineMemOperand *mmo)
5278  : SDNode(Opc, dl, VTs), MemoryVT(memvt), MMO(mmo) {
5279   SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile());
5280   assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
5281   assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
5282 }
5283
5284 MemSDNode::MemSDNode(unsigned Opc, DebugLoc dl, SDVTList VTs,
5285                      const SDValue *Ops, unsigned NumOps, EVT memvt, 
5286                      MachineMemOperand *mmo)
5287    : SDNode(Opc, dl, VTs, Ops, NumOps),
5288      MemoryVT(memvt), MMO(mmo) {
5289   SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile());
5290   assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!");
5291   assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!");
5292 }
5293
5294 /// Profile - Gather unique data for the node.
5295 ///
5296 void SDNode::Profile(FoldingSetNodeID &ID) const {
5297   AddNodeIDNode(ID, this);
5298 }
5299
5300 namespace {
5301   struct EVTArray {
5302     std::vector<EVT> VTs;
5303     
5304     EVTArray() {
5305       VTs.reserve(MVT::LAST_VALUETYPE);
5306       for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
5307         VTs.push_back(MVT((MVT::SimpleValueType)i));
5308     }
5309   };
5310 }
5311
5312 static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs;
5313 static ManagedStatic<EVTArray> SimpleVTArray;
5314 static ManagedStatic<sys::SmartMutex<true> > VTMutex;
5315
5316 /// getValueTypeList - Return a pointer to the specified value type.
5317 ///
5318 const EVT *SDNode::getValueTypeList(EVT VT) {
5319   if (VT.isExtended()) {
5320     sys::SmartScopedLock<true> Lock(*VTMutex);
5321     return &(*EVTs->insert(VT).first);
5322   } else {
5323     return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
5324   }
5325 }
5326
5327 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
5328 /// indicated value.  This method ignores uses of other values defined by this
5329 /// operation.
5330 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
5331   assert(Value < getNumValues() && "Bad value!");
5332
5333   // TODO: Only iterate over uses of a given value of the node
5334   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
5335     if (UI.getUse().getResNo() == Value) {
5336       if (NUses == 0)
5337         return false;
5338       --NUses;
5339     }
5340   }
5341
5342   // Found exactly the right number of uses?
5343   return NUses == 0;
5344 }
5345
5346
5347 /// hasAnyUseOfValue - Return true if there are any use of the indicated
5348 /// value. This method ignores uses of other values defined by this operation.
5349 bool SDNode::hasAnyUseOfValue(unsigned Value) const {
5350   assert(Value < getNumValues() && "Bad value!");
5351
5352   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
5353     if (UI.getUse().getResNo() == Value)
5354       return true;
5355
5356   return false;
5357 }
5358
5359
5360 /// isOnlyUserOf - Return true if this node is the only use of N.
5361 ///
5362 bool SDNode::isOnlyUserOf(SDNode *N) const {
5363   bool Seen = false;
5364   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
5365     SDNode *User = *I;
5366     if (User == this)
5367       Seen = true;
5368     else
5369       return false;
5370   }
5371
5372   return Seen;
5373 }
5374
5375 /// isOperand - Return true if this node is an operand of N.
5376 ///
5377 bool SDValue::isOperandOf(SDNode *N) const {
5378   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5379     if (*this == N->getOperand(i))
5380       return true;
5381   return false;
5382 }
5383
5384 bool SDNode::isOperandOf(SDNode *N) const {
5385   for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
5386     if (this == N->OperandList[i].getNode())
5387       return true;
5388   return false;
5389 }
5390
5391 /// reachesChainWithoutSideEffects - Return true if this operand (which must
5392 /// be a chain) reaches the specified operand without crossing any
5393 /// side-effecting instructions.  In practice, this looks through token
5394 /// factors and non-volatile loads.  In order to remain efficient, this only
5395 /// looks a couple of nodes in, it does not do an exhaustive search.
5396 bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
5397                                                unsigned Depth) const {
5398   if (*this == Dest) return true;
5399
5400   // Don't search too deeply, we just want to be able to see through
5401   // TokenFactor's etc.
5402   if (Depth == 0) return false;
5403
5404   // If this is a token factor, all inputs to the TF happen in parallel.  If any
5405   // of the operands of the TF reach dest, then we can do the xform.
5406   if (getOpcode() == ISD::TokenFactor) {
5407     for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
5408       if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
5409         return true;
5410     return false;
5411   }
5412
5413   // Loads don't have side effects, look through them.
5414   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
5415     if (!Ld->isVolatile())
5416       return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
5417   }
5418   return false;
5419 }
5420
5421 /// isPredecessorOf - Return true if this node is a predecessor of N. This node
5422 /// is either an operand of N or it can be reached by traversing up the operands.
5423 /// NOTE: this is an expensive method. Use it carefully.
5424 bool SDNode::isPredecessorOf(SDNode *N) const {
5425   SmallPtrSet<SDNode *, 32> Visited;
5426   SmallVector<SDNode *, 16> Worklist;
5427   Worklist.push_back(N);
5428
5429   do {
5430     N = Worklist.pop_back_val();
5431     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5432       SDNode *Op = N->getOperand(i).getNode();
5433       if (Op == this)
5434         return true;
5435       if (Visited.insert(Op))
5436         Worklist.push_back(Op);
5437     }
5438   } while (!Worklist.empty());
5439
5440   return false;
5441 }
5442
5443 uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
5444   assert(Num < NumOperands && "Invalid child # of SDNode!");
5445   return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
5446 }
5447
5448 std::string SDNode::getOperationName(const SelectionDAG *G) const {
5449   switch (getOpcode()) {
5450   default:
5451     if (getOpcode() < ISD::BUILTIN_OP_END)
5452       return "<<Unknown DAG Node>>";
5453     if (isMachineOpcode()) {
5454       if (G)
5455         if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
5456           if (getMachineOpcode() < TII->getNumOpcodes())
5457             return TII->get(getMachineOpcode()).getName();
5458       return "<<Unknown Machine Node>>";
5459     }
5460     if (G) {
5461       const TargetLowering &TLI = G->getTargetLoweringInfo();
5462       const char *Name = TLI.getTargetNodeName(getOpcode());
5463       if (Name) return Name;
5464       return "<<Unknown Target Node>>";
5465     }
5466     return "<<Unknown Node>>";
5467
5468 #ifndef NDEBUG
5469   case ISD::DELETED_NODE:
5470     return "<<Deleted Node!>>";
5471 #endif
5472   case ISD::PREFETCH:      return "Prefetch";
5473   case ISD::MEMBARRIER:    return "MemBarrier";
5474   case ISD::ATOMIC_CMP_SWAP:    return "AtomicCmpSwap";
5475   case ISD::ATOMIC_SWAP:        return "AtomicSwap";
5476   case ISD::ATOMIC_LOAD_ADD:    return "AtomicLoadAdd";
5477   case ISD::ATOMIC_LOAD_SUB:    return "AtomicLoadSub";
5478   case ISD::ATOMIC_LOAD_AND:    return "AtomicLoadAnd";
5479   case ISD::ATOMIC_LOAD_OR:     return "AtomicLoadOr";
5480   case ISD::ATOMIC_LOAD_XOR:    return "AtomicLoadXor";
5481   case ISD::ATOMIC_LOAD_NAND:   return "AtomicLoadNand";
5482   case ISD::ATOMIC_LOAD_MIN:    return "AtomicLoadMin";
5483   case ISD::ATOMIC_LOAD_MAX:    return "AtomicLoadMax";
5484   case ISD::ATOMIC_LOAD_UMIN:   return "AtomicLoadUMin";
5485   case ISD::ATOMIC_LOAD_UMAX:   return "AtomicLoadUMax";
5486   case ISD::PCMARKER:      return "PCMarker";
5487   case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
5488   case ISD::SRCVALUE:      return "SrcValue";
5489   case ISD::EntryToken:    return "EntryToken";
5490   case ISD::TokenFactor:   return "TokenFactor";
5491   case ISD::AssertSext:    return "AssertSext";
5492   case ISD::AssertZext:    return "AssertZext";
5493
5494   case ISD::BasicBlock:    return "BasicBlock";
5495   case ISD::VALUETYPE:     return "ValueType";
5496   case ISD::Register:      return "Register";
5497
5498   case ISD::Constant:      return "Constant";
5499   case ISD::ConstantFP:    return "ConstantFP";
5500   case ISD::GlobalAddress: return "GlobalAddress";
5501   case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
5502   case ISD::FrameIndex:    return "FrameIndex";
5503   case ISD::JumpTable:     return "JumpTable";
5504   case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
5505   case ISD::RETURNADDR: return "RETURNADDR";
5506   case ISD::FRAMEADDR: return "FRAMEADDR";
5507   case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
5508   case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
5509   case ISD::LSDAADDR: return "LSDAADDR";
5510   case ISD::EHSELECTION: return "EHSELECTION";
5511   case ISD::EH_RETURN: return "EH_RETURN";
5512   case ISD::ConstantPool:  return "ConstantPool";
5513   case ISD::ExternalSymbol: return "ExternalSymbol";
5514   case ISD::BlockAddress:  return "BlockAddress";
5515   case ISD::INTRINSIC_WO_CHAIN:
5516   case ISD::INTRINSIC_VOID:
5517   case ISD::INTRINSIC_W_CHAIN: {
5518     unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
5519     unsigned IID = cast<ConstantSDNode>(getOperand(OpNo))->getZExtValue();
5520     if (IID < Intrinsic::num_intrinsics)
5521       return Intrinsic::getName((Intrinsic::ID)IID);
5522     else if (const TargetIntrinsicInfo *TII = G->getTarget().getIntrinsicInfo())
5523       return TII->getName(IID);
5524     llvm_unreachable("Invalid intrinsic ID");
5525   }
5526
5527   case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
5528   case ISD::TargetConstant: return "TargetConstant";
5529   case ISD::TargetConstantFP:return "TargetConstantFP";
5530   case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
5531   case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
5532   case ISD::TargetFrameIndex: return "TargetFrameIndex";
5533   case ISD::TargetJumpTable:  return "TargetJumpTable";
5534   case ISD::TargetConstantPool:  return "TargetConstantPool";
5535   case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
5536   case ISD::TargetBlockAddress: return "TargetBlockAddress";
5537
5538   case ISD::CopyToReg:     return "CopyToReg";
5539   case ISD::CopyFromReg:   return "CopyFromReg";
5540   case ISD::UNDEF:         return "undef";
5541   case ISD::MERGE_VALUES:  return "merge_values";
5542   case ISD::INLINEASM:     return "inlineasm";
5543   case ISD::EH_LABEL:      return "eh_label";
5544   case ISD::HANDLENODE:    return "handlenode";
5545
5546   // Unary operators
5547   case ISD::FABS:   return "fabs";
5548   case ISD::FNEG:   return "fneg";
5549   case ISD::FSQRT:  return "fsqrt";
5550   case ISD::FSIN:   return "fsin";
5551   case ISD::FCOS:   return "fcos";
5552   case ISD::FPOWI:  return "fpowi";
5553   case ISD::FPOW:   return "fpow";
5554   case ISD::FTRUNC: return "ftrunc";
5555   case ISD::FFLOOR: return "ffloor";
5556   case ISD::FCEIL:  return "fceil";
5557   case ISD::FRINT:  return "frint";
5558   case ISD::FNEARBYINT: return "fnearbyint";
5559
5560   // Binary operators
5561   case ISD::ADD:    return "add";
5562   case ISD::SUB:    return "sub";
5563   case ISD::MUL:    return "mul";
5564   case ISD::MULHU:  return "mulhu";
5565   case ISD::MULHS:  return "mulhs";
5566   case ISD::SDIV:   return "sdiv";
5567   case ISD::UDIV:   return "udiv";
5568   case ISD::SREM:   return "srem";
5569   case ISD::UREM:   return "urem";
5570   case ISD::SMUL_LOHI:  return "smul_lohi";
5571   case ISD::UMUL_LOHI:  return "umul_lohi";
5572   case ISD::SDIVREM:    return "sdivrem";
5573   case ISD::UDIVREM:    return "udivrem";
5574   case ISD::AND:    return "and";
5575   case ISD::OR:     return "or";
5576   case ISD::XOR:    return "xor";
5577   case ISD::SHL:    return "shl";
5578   case ISD::SRA:    return "sra";
5579   case ISD::SRL:    return "srl";
5580   case ISD::ROTL:   return "rotl";
5581   case ISD::ROTR:   return "rotr";
5582   case ISD::FADD:   return "fadd";
5583   case ISD::FSUB:   return "fsub";
5584   case ISD::FMUL:   return "fmul";
5585   case ISD::FDIV:   return "fdiv";
5586   case ISD::FREM:   return "frem";
5587   case ISD::FCOPYSIGN: return "fcopysign";
5588   case ISD::FGETSIGN:  return "fgetsign";
5589
5590   case ISD::SETCC:       return "setcc";
5591   case ISD::VSETCC:      return "vsetcc";
5592   case ISD::SELECT:      return "select";
5593   case ISD::SELECT_CC:   return "select_cc";
5594   case ISD::INSERT_VECTOR_ELT:   return "insert_vector_elt";
5595   case ISD::EXTRACT_VECTOR_ELT:  return "extract_vector_elt";
5596   case ISD::CONCAT_VECTORS:      return "concat_vectors";
5597   case ISD::EXTRACT_SUBVECTOR:   return "extract_subvector";
5598   case ISD::SCALAR_TO_VECTOR:    return "scalar_to_vector";
5599   case ISD::VECTOR_SHUFFLE:      return "vector_shuffle";
5600   case ISD::CARRY_FALSE:         return "carry_false";
5601   case ISD::ADDC:        return "addc";
5602   case ISD::ADDE:        return "adde";
5603   case ISD::SADDO:       return "saddo";
5604   case ISD::UADDO:       return "uaddo";
5605   case ISD::SSUBO:       return "ssubo";
5606   case ISD::USUBO:       return "usubo";
5607   case ISD::SMULO:       return "smulo";
5608   case ISD::UMULO:       return "umulo";
5609   case ISD::SUBC:        return "subc";
5610   case ISD::SUBE:        return "sube";
5611   case ISD::SHL_PARTS:   return "shl_parts";
5612   case ISD::SRA_PARTS:   return "sra_parts";
5613   case ISD::SRL_PARTS:   return "srl_parts";
5614
5615   // Conversion operators.
5616   case ISD::SIGN_EXTEND: return "sign_extend";
5617   case ISD::ZERO_EXTEND: return "zero_extend";
5618   case ISD::ANY_EXTEND:  return "any_extend";
5619   case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
5620   case ISD::TRUNCATE:    return "truncate";
5621   case ISD::FP_ROUND:    return "fp_round";
5622   case ISD::FLT_ROUNDS_: return "flt_rounds";
5623   case ISD::FP_ROUND_INREG: return "fp_round_inreg";
5624   case ISD::FP_EXTEND:   return "fp_extend";
5625
5626   case ISD::SINT_TO_FP:  return "sint_to_fp";
5627   case ISD::UINT_TO_FP:  return "uint_to_fp";
5628   case ISD::FP_TO_SINT:  return "fp_to_sint";
5629   case ISD::FP_TO_UINT:  return "fp_to_uint";
5630   case ISD::BIT_CONVERT: return "bit_convert";
5631
5632   case ISD::CONVERT_RNDSAT: {
5633     switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
5634     default: llvm_unreachable("Unknown cvt code!");
5635     case ISD::CVT_FF:  return "cvt_ff";
5636     case ISD::CVT_FS:  return "cvt_fs";
5637     case ISD::CVT_FU:  return "cvt_fu";
5638     case ISD::CVT_SF:  return "cvt_sf";
5639     case ISD::CVT_UF:  return "cvt_uf";
5640     case ISD::CVT_SS:  return "cvt_ss";
5641     case ISD::CVT_SU:  return "cvt_su";
5642     case ISD::CVT_US:  return "cvt_us";
5643     case ISD::CVT_UU:  return "cvt_uu";
5644     }
5645   }
5646
5647     // Control flow instructions
5648   case ISD::BR:      return "br";
5649   case ISD::BRIND:   return "brind";
5650   case ISD::BR_JT:   return "br_jt";
5651   case ISD::BRCOND:  return "brcond";
5652   case ISD::BR_CC:   return "br_cc";
5653   case ISD::CALLSEQ_START:  return "callseq_start";
5654   case ISD::CALLSEQ_END:    return "callseq_end";
5655
5656     // Other operators
5657   case ISD::LOAD:               return "load";
5658   case ISD::STORE:              return "store";
5659   case ISD::VAARG:              return "vaarg";
5660   case ISD::VACOPY:             return "vacopy";
5661   case ISD::VAEND:              return "vaend";
5662   case ISD::VASTART:            return "vastart";
5663   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
5664   case ISD::EXTRACT_ELEMENT:    return "extract_element";
5665   case ISD::BUILD_PAIR:         return "build_pair";
5666   case ISD::STACKSAVE:          return "stacksave";
5667   case ISD::STACKRESTORE:       return "stackrestore";
5668   case ISD::TRAP:               return "trap";
5669
5670   // Bit manipulation
5671   case ISD::BSWAP:   return "bswap";
5672   case ISD::CTPOP:   return "ctpop";
5673   case ISD::CTTZ:    return "cttz";
5674   case ISD::CTLZ:    return "ctlz";
5675
5676   // Trampolines
5677   case ISD::TRAMPOLINE: return "trampoline";
5678
5679   case ISD::CONDCODE:
5680     switch (cast<CondCodeSDNode>(this)->get()) {
5681     default: llvm_unreachable("Unknown setcc condition!");
5682     case ISD::SETOEQ:  return "setoeq";
5683     case ISD::SETOGT:  return "setogt";
5684     case ISD::SETOGE:  return "setoge";
5685     case ISD::SETOLT:  return "setolt";
5686     case ISD::SETOLE:  return "setole";
5687     case ISD::SETONE:  return "setone";
5688
5689     case ISD::SETO:    return "seto";
5690     case ISD::SETUO:   return "setuo";
5691     case ISD::SETUEQ:  return "setue";
5692     case ISD::SETUGT:  return "setugt";
5693     case ISD::SETUGE:  return "setuge";
5694     case ISD::SETULT:  return "setult";
5695     case ISD::SETULE:  return "setule";
5696     case ISD::SETUNE:  return "setune";
5697
5698     case ISD::SETEQ:   return "seteq";
5699     case ISD::SETGT:   return "setgt";
5700     case ISD::SETGE:   return "setge";
5701     case ISD::SETLT:   return "setlt";
5702     case ISD::SETLE:   return "setle";
5703     case ISD::SETNE:   return "setne";
5704     }
5705   }
5706 }
5707
5708 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
5709   switch (AM) {
5710   default:
5711     return "";
5712   case ISD::PRE_INC:
5713     return "<pre-inc>";
5714   case ISD::PRE_DEC:
5715     return "<pre-dec>";
5716   case ISD::POST_INC:
5717     return "<post-inc>";
5718   case ISD::POST_DEC:
5719     return "<post-dec>";
5720   }
5721 }
5722
5723 std::string ISD::ArgFlagsTy::getArgFlagsString() {
5724   std::string S = "< ";
5725
5726   if (isZExt())
5727     S += "zext ";
5728   if (isSExt())
5729     S += "sext ";
5730   if (isInReg())
5731     S += "inreg ";
5732   if (isSRet())
5733     S += "sret ";
5734   if (isByVal())
5735     S += "byval ";
5736   if (isNest())
5737     S += "nest ";
5738   if (getByValAlign())
5739     S += "byval-align:" + utostr(getByValAlign()) + " ";
5740   if (getOrigAlign())
5741     S += "orig-align:" + utostr(getOrigAlign()) + " ";
5742   if (getByValSize())
5743     S += "byval-size:" + utostr(getByValSize()) + " ";
5744   return S + ">";
5745 }
5746
5747 void SDNode::dump() const { dump(0); }
5748 void SDNode::dump(const SelectionDAG *G) const {
5749   print(dbgs(), G);
5750 }
5751
5752 void SDNode::print_types(raw_ostream &OS, const SelectionDAG *G) const {
5753   OS << (void*)this << ": ";
5754
5755   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
5756     if (i) OS << ",";
5757     if (getValueType(i) == MVT::Other)
5758       OS << "ch";
5759     else
5760       OS << getValueType(i).getEVTString();
5761   }
5762   OS << " = " << getOperationName(G);
5763 }
5764
5765 void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
5766   if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
5767     if (!MN->memoperands_empty()) {
5768       OS << "<";
5769       OS << "Mem:";
5770       for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
5771            e = MN->memoperands_end(); i != e; ++i) {
5772         OS << **i;
5773         if (next(i) != e)
5774           OS << " ";
5775       }
5776       OS << ">";
5777     }
5778   } else if (const ShuffleVectorSDNode *SVN =
5779                dyn_cast<ShuffleVectorSDNode>(this)) {
5780     OS << "<";
5781     for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
5782       int Idx = SVN->getMaskElt(i);
5783       if (i) OS << ",";
5784       if (Idx < 0)
5785         OS << "u";
5786       else
5787         OS << Idx;
5788     }
5789     OS << ">";
5790   } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
5791     OS << '<' << CSDN->getAPIntValue() << '>';
5792   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
5793     if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
5794       OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
5795     else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
5796       OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
5797     else {
5798       OS << "<APFloat(";
5799       CSDN->getValueAPF().bitcastToAPInt().dump();
5800       OS << ")>";
5801     }
5802   } else if (const GlobalAddressSDNode *GADN =
5803              dyn_cast<GlobalAddressSDNode>(this)) {
5804     int64_t offset = GADN->getOffset();
5805     OS << '<';
5806     WriteAsOperand(OS, GADN->getGlobal());
5807     OS << '>';
5808     if (offset > 0)
5809       OS << " + " << offset;
5810     else
5811       OS << " " << offset;
5812     if (unsigned int TF = GADN->getTargetFlags())
5813       OS << " [TF=" << TF << ']';
5814   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
5815     OS << "<" << FIDN->getIndex() << ">";
5816   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
5817     OS << "<" << JTDN->getIndex() << ">";
5818     if (unsigned int TF = JTDN->getTargetFlags())
5819       OS << " [TF=" << TF << ']';
5820   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
5821     int offset = CP->getOffset();
5822     if (CP->isMachineConstantPoolEntry())
5823       OS << "<" << *CP->getMachineCPVal() << ">";
5824     else
5825       OS << "<" << *CP->getConstVal() << ">";
5826     if (offset > 0)
5827       OS << " + " << offset;
5828     else
5829       OS << " " << offset;
5830     if (unsigned int TF = CP->getTargetFlags())
5831       OS << " [TF=" << TF << ']';
5832   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
5833     OS << "<";
5834     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5835     if (LBB)
5836       OS << LBB->getName() << " ";
5837     OS << (const void*)BBDN->getBasicBlock() << ">";
5838   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
5839     if (G && R->getReg() &&
5840         TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
5841       OS << " %" << G->getTarget().getRegisterInfo()->getName(R->getReg());
5842     } else {
5843       OS << " %reg" << R->getReg();
5844     }
5845   } else if (const ExternalSymbolSDNode *ES =
5846              dyn_cast<ExternalSymbolSDNode>(this)) {
5847     OS << "'" << ES->getSymbol() << "'";
5848     if (unsigned int TF = ES->getTargetFlags())
5849       OS << " [TF=" << TF << ']';
5850   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5851     if (M->getValue())
5852       OS << "<" << M->getValue() << ">";
5853     else
5854       OS << "<null>";
5855   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
5856     OS << ":" << N->getVT().getEVTString();
5857   }
5858   else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
5859     OS << "<" << *LD->getMemOperand();
5860
5861     bool doExt = true;
5862     switch (LD->getExtensionType()) {
5863     default: doExt = false; break;
5864     case ISD::EXTLOAD: OS << ", anyext"; break;
5865     case ISD::SEXTLOAD: OS << ", sext"; break;
5866     case ISD::ZEXTLOAD: OS << ", zext"; break;
5867     }
5868     if (doExt)
5869       OS << " from " << LD->getMemoryVT().getEVTString();
5870
5871     const char *AM = getIndexedModeName(LD->getAddressingMode());
5872     if (*AM)
5873       OS << ", " << AM;
5874
5875     OS << ">";
5876   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
5877     OS << "<" << *ST->getMemOperand();
5878
5879     if (ST->isTruncatingStore())
5880       OS << ", trunc to " << ST->getMemoryVT().getEVTString();
5881
5882     const char *AM = getIndexedModeName(ST->getAddressingMode());
5883     if (*AM)
5884       OS << ", " << AM;
5885     
5886     OS << ">";
5887   } else if (const MemSDNode* M = dyn_cast<MemSDNode>(this)) {
5888     OS << "<" << *M->getMemOperand() << ">";
5889   } else if (const BlockAddressSDNode *BA =
5890                dyn_cast<BlockAddressSDNode>(this)) {
5891     OS << "<";
5892     WriteAsOperand(OS, BA->getBlockAddress()->getFunction(), false);
5893     OS << ", ";
5894     WriteAsOperand(OS, BA->getBlockAddress()->getBasicBlock(), false);
5895     OS << ">";
5896     if (unsigned int TF = BA->getTargetFlags())
5897       OS << " [TF=" << TF << ']';
5898   }
5899
5900   if (G)
5901     if (unsigned Order = G->GetOrdering(this))
5902       OS << " [ORD=" << Order << ']';
5903 }
5904
5905 void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5906   print_types(OS, G);
5907   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
5908     if (i) OS << ", "; else OS << " ";
5909     OS << (void*)getOperand(i).getNode();
5910     if (unsigned RN = getOperand(i).getResNo())
5911       OS << ":" << RN;
5912   }
5913   print_details(OS, G);
5914 }
5915
5916 static void printrWithDepthHelper(raw_ostream &OS, const SDNode *N,
5917                                   const SelectionDAG *G, unsigned depth,
5918                                   unsigned indent) 
5919 {
5920   if (depth == 0)
5921     return;
5922
5923   OS.indent(indent);
5924
5925   N->print(OS, G);
5926
5927   if (depth < 1)
5928     return;
5929
5930   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5931     OS << '\n';
5932     printrWithDepthHelper(OS, N->getOperand(i).getNode(), G, depth-1, indent+2);
5933   }
5934 }
5935
5936 void SDNode::printrWithDepth(raw_ostream &OS, const SelectionDAG *G,
5937                             unsigned depth) const {
5938   printrWithDepthHelper(OS, this, G, depth, 0);
5939
5940
5941 void SDNode::printrFull(raw_ostream &OS, const SelectionDAG *G) const {
5942   // Don't print impossibly deep things.
5943   printrWithDepth(OS, G, 100);
5944 }
5945
5946 void SDNode::dumprWithDepth(const SelectionDAG *G, unsigned depth) const {
5947   printrWithDepth(dbgs(), G, depth);
5948 }
5949
5950 void SDNode::dumprFull(const SelectionDAG *G) const {
5951   // Don't print impossibly deep things.
5952   dumprWithDepth(G, 100);
5953
5954
5955 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
5956   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5957     if (N->getOperand(i).getNode()->hasOneUse())
5958       DumpNodes(N->getOperand(i).getNode(), indent+2, G);
5959     else
5960       dbgs() << "\n" << std::string(indent+2, ' ')
5961            << (void*)N->getOperand(i).getNode() << ": <multiple use>";
5962
5963
5964   dbgs() << "\n";
5965   dbgs().indent(indent);
5966   N->dump(G);
5967 }
5968
5969 SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
5970   assert(N->getNumValues() == 1 &&
5971          "Can't unroll a vector with multiple results!");
5972
5973   EVT VT = N->getValueType(0);
5974   unsigned NE = VT.getVectorNumElements();
5975   EVT EltVT = VT.getVectorElementType();
5976   DebugLoc dl = N->getDebugLoc();
5977
5978   SmallVector<SDValue, 8> Scalars;
5979   SmallVector<SDValue, 4> Operands(N->getNumOperands());
5980
5981   // If ResNE is 0, fully unroll the vector op.
5982   if (ResNE == 0)
5983     ResNE = NE;
5984   else if (NE > ResNE)
5985     NE = ResNE;
5986
5987   unsigned i;
5988   for (i= 0; i != NE; ++i) {
5989     for (unsigned j = 0; j != N->getNumOperands(); ++j) {
5990       SDValue Operand = N->getOperand(j);
5991       EVT OperandVT = Operand.getValueType();
5992       if (OperandVT.isVector()) {
5993         // A vector operand; extract a single element.
5994         EVT OperandEltVT = OperandVT.getVectorElementType();
5995         Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl,
5996                               OperandEltVT,
5997                               Operand,
5998                               getConstant(i, MVT::i32));
5999       } else {
6000         // A scalar operand; just use it as is.
6001         Operands[j] = Operand;
6002       }
6003     }
6004
6005     switch (N->getOpcode()) {
6006     default:
6007       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6008                                 &Operands[0], Operands.size()));
6009       break;
6010     case ISD::SHL:
6011     case ISD::SRA:
6012     case ISD::SRL:
6013     case ISD::ROTL:
6014     case ISD::ROTR:
6015       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
6016                                 getShiftAmountOperand(Operands[1])));
6017       break;
6018     case ISD::SIGN_EXTEND_INREG:
6019     case ISD::FP_ROUND_INREG: {
6020       EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
6021       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
6022                                 Operands[0],
6023                                 getValueType(ExtVT)));
6024     }
6025     }
6026   }
6027
6028   for (; i < ResNE; ++i)
6029     Scalars.push_back(getUNDEF(EltVT));
6030
6031   return getNode(ISD::BUILD_VECTOR, dl,
6032                  EVT::getVectorVT(*getContext(), EltVT, ResNE),
6033                  &Scalars[0], Scalars.size());
6034 }
6035
6036
6037 /// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a 
6038 /// location that is 'Dist' units away from the location that the 'Base' load 
6039 /// is loading from.
6040 bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base, 
6041                                      unsigned Bytes, int Dist) const {
6042   if (LD->getChain() != Base->getChain())
6043     return false;
6044   EVT VT = LD->getValueType(0);
6045   if (VT.getSizeInBits() / 8 != Bytes)
6046     return false;
6047
6048   SDValue Loc = LD->getOperand(1);
6049   SDValue BaseLoc = Base->getOperand(1);
6050   if (Loc.getOpcode() == ISD::FrameIndex) {
6051     if (BaseLoc.getOpcode() != ISD::FrameIndex)
6052       return false;
6053     const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo();
6054     int FI  = cast<FrameIndexSDNode>(Loc)->getIndex();
6055     int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6056     int FS  = MFI->getObjectSize(FI);
6057     int BFS = MFI->getObjectSize(BFI);
6058     if (FS != BFS || FS != (int)Bytes) return false;
6059     return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6060   }
6061   if (Loc.getOpcode() == ISD::ADD && Loc.getOperand(0) == BaseLoc) {
6062     ConstantSDNode *V = dyn_cast<ConstantSDNode>(Loc.getOperand(1));
6063     if (V && (V->getSExtValue() == Dist*Bytes))
6064       return true;
6065   }
6066
6067   GlobalValue *GV1 = NULL;
6068   GlobalValue *GV2 = NULL;
6069   int64_t Offset1 = 0;
6070   int64_t Offset2 = 0;
6071   bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6072   bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
6073   if (isGA1 && isGA2 && GV1 == GV2)
6074     return Offset1 == (Offset2 + Dist*Bytes);
6075   return false;
6076 }
6077
6078
6079 /// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
6080 /// it cannot be inferred.
6081 unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
6082   // If this is a GlobalAddress + cst, return the alignment.
6083   GlobalValue *GV;
6084   int64_t GVOffset = 0;
6085   if (TLI.isGAPlusOffset(Ptr.getNode(), GV, GVOffset))
6086     return MinAlign(GV->getAlignment(), GVOffset);
6087
6088   // If this is a direct reference to a stack slot, use information about the
6089   // stack slot's alignment.
6090   int FrameIdx = 1 << 31;
6091   int64_t FrameOffset = 0;
6092   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
6093     FrameIdx = FI->getIndex();
6094   } else if (Ptr.getOpcode() == ISD::ADD &&
6095              isa<ConstantSDNode>(Ptr.getOperand(1)) &&
6096              isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
6097     FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6098     FrameOffset = Ptr.getConstantOperandVal(1);
6099   }
6100
6101   if (FrameIdx != (1 << 31)) {
6102     // FIXME: Handle FI+CST.
6103     const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo();
6104     unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
6105                                     FrameOffset);
6106     if (MFI.isFixedObjectIndex(FrameIdx)) {
6107       int64_t ObjectOffset = MFI.getObjectOffset(FrameIdx) + FrameOffset;
6108
6109       // The alignment of the frame index can be determined from its offset from
6110       // the incoming frame position.  If the frame object is at offset 32 and
6111       // the stack is guaranteed to be 16-byte aligned, then we know that the
6112       // object is 16-byte aligned.
6113       unsigned StackAlign = getTarget().getFrameInfo()->getStackAlignment();
6114       unsigned Align = MinAlign(ObjectOffset, StackAlign);
6115
6116       // Finally, the frame object itself may have a known alignment.  Factor
6117       // the alignment + offset into a new alignment.  For example, if we know
6118       // the FI is 8 byte aligned, but the pointer is 4 off, we really have a
6119       // 4-byte alignment of the resultant pointer.  Likewise align 4 + 4-byte
6120       // offset = 4-byte alignment, align 4 + 1-byte offset = align 1, etc.
6121       return std::max(Align, FIInfoAlign);
6122     }
6123     return FIInfoAlign;
6124   }
6125
6126   return 0;
6127 }
6128
6129 void SelectionDAG::dump() const {
6130   dbgs() << "SelectionDAG has " << AllNodes.size() << " nodes:";
6131
6132   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
6133        I != E; ++I) {
6134     const SDNode *N = I;
6135     if (!N->hasOneUse() && N != getRoot().getNode())
6136       DumpNodes(N, 2, this);
6137   }
6138
6139   if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
6140
6141   dbgs() << "\n\n";
6142 }
6143
6144 void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
6145   print_types(OS, G);
6146   print_details(OS, G);
6147 }
6148
6149 typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet;
6150 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
6151                        const SelectionDAG *G, VisitedSDNodeSet &once) {
6152   if (!once.insert(N))          // If we've been here before, return now.
6153     return;
6154
6155   // Dump the current SDNode, but don't end the line yet.
6156   OS << std::string(indent, ' ');
6157   N->printr(OS, G);
6158
6159   // Having printed this SDNode, walk the children:
6160   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
6161     const SDNode *child = N->getOperand(i).getNode();
6162
6163     if (i) OS << ",";
6164     OS << " ";
6165
6166     if (child->getNumOperands() == 0) {
6167       // This child has no grandchildren; print it inline right here.
6168       child->printr(OS, G);
6169       once.insert(child);
6170     } else {         // Just the address. FIXME: also print the child's opcode.
6171       OS << (void*)child;
6172       if (unsigned RN = N->getOperand(i).getResNo())
6173         OS << ":" << RN;
6174     }
6175   }
6176
6177   OS << "\n";
6178
6179   // Dump children that have grandchildren on their own line(s).
6180   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
6181     const SDNode *child = N->getOperand(i).getNode();
6182     DumpNodesr(OS, child, indent+2, G, once);
6183   }
6184 }
6185
6186 void SDNode::dumpr() const {
6187   VisitedSDNodeSet once;
6188   DumpNodesr(dbgs(), this, 0, 0, once);
6189 }
6190
6191 void SDNode::dumpr(const SelectionDAG *G) const {
6192   VisitedSDNodeSet once;
6193   DumpNodesr(dbgs(), this, 0, G, once);
6194 }
6195
6196
6197 // getAddressSpace - Return the address space this GlobalAddress belongs to.
6198 unsigned GlobalAddressSDNode::getAddressSpace() const {
6199   return getGlobal()->getType()->getAddressSpace();
6200 }
6201
6202
6203 const Type *ConstantPoolSDNode::getType() const {
6204   if (isMachineConstantPoolEntry())
6205     return Val.MachineCPVal->getType();
6206   return Val.ConstVal->getType();
6207 }
6208
6209 bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue,
6210                                         APInt &SplatUndef,
6211                                         unsigned &SplatBitSize,
6212                                         bool &HasAnyUndefs,
6213                                         unsigned MinSplatBits,
6214                                         bool isBigEndian) {
6215   EVT VT = getValueType(0);
6216   assert(VT.isVector() && "Expected a vector type");
6217   unsigned sz = VT.getSizeInBits();
6218   if (MinSplatBits > sz)
6219     return false;
6220
6221   SplatValue = APInt(sz, 0);
6222   SplatUndef = APInt(sz, 0);
6223
6224   // Get the bits.  Bits with undefined values (when the corresponding element
6225   // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
6226   // in SplatValue.  If any of the values are not constant, give up and return
6227   // false.
6228   unsigned int nOps = getNumOperands();
6229   assert(nOps > 0 && "isConstantSplat has 0-size build vector");
6230   unsigned EltBitSize = VT.getVectorElementType().getSizeInBits();
6231
6232   for (unsigned j = 0; j < nOps; ++j) {
6233     unsigned i = isBigEndian ? nOps-1-j : j;
6234     SDValue OpVal = getOperand(i);
6235     unsigned BitPos = j * EltBitSize;
6236
6237     if (OpVal.getOpcode() == ISD::UNDEF)
6238       SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6239     else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6240       SplatValue |= (APInt(CN->getAPIntValue()).zextOrTrunc(EltBitSize).
6241                      zextOrTrunc(sz) << BitPos);
6242     else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
6243       SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;
6244      else
6245       return false;
6246   }
6247
6248   // The build_vector is all constants or undefs.  Find the smallest element
6249   // size that splats the vector.
6250
6251   HasAnyUndefs = (SplatUndef != 0);
6252   while (sz > 8) {
6253
6254     unsigned HalfSize = sz / 2;
6255     APInt HighValue = APInt(SplatValue).lshr(HalfSize).trunc(HalfSize);
6256     APInt LowValue = APInt(SplatValue).trunc(HalfSize);
6257     APInt HighUndef = APInt(SplatUndef).lshr(HalfSize).trunc(HalfSize);
6258     APInt LowUndef = APInt(SplatUndef).trunc(HalfSize);
6259
6260     // If the two halves do not match (ignoring undef bits), stop here.
6261     if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
6262         MinSplatBits > HalfSize)
6263       break;
6264
6265     SplatValue = HighValue | LowValue;
6266     SplatUndef = HighUndef & LowUndef;
6267
6268     sz = HalfSize;
6269   }
6270
6271   SplatBitSize = sz;
6272   return true;
6273 }
6274
6275 bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
6276   // Find the first non-undef value in the shuffle mask.
6277   unsigned i, e;
6278   for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
6279     /* search */;
6280
6281   assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
6282
6283   // Make sure all remaining elements are either undef or the same as the first
6284   // non-undef value.
6285   for (int Idx = Mask[i]; i != e; ++i)
6286     if (Mask[i] >= 0 && Mask[i] != Idx)
6287       return false;
6288   return true;
6289 }
6290
6291 static void checkForCyclesHelper(const SDNode *N,
6292                                  std::set<const SDNode *> &visited) {
6293   if (visited.find(N) != visited.end()) {
6294     dbgs() << "Offending node:\n";
6295     N->dumprFull();
6296     assert(0 && "Detected cycle in SelectionDAG");
6297   }
6298
6299   std::set<const SDNode*>::iterator i;
6300   bool inserted;
6301
6302   tie(i, inserted) = visited.insert(N);
6303   assert(inserted && "Missed cycle");
6304
6305   for(unsigned i = 0; i < N->getNumOperands(); ++i) {
6306     checkForCyclesHelper(N->getOperand(i).getNode(), visited);
6307   }
6308   visited.erase(i);
6309 }
6310
6311 void llvm::checkForCycles(const llvm::SDNode *N) {
6312 #ifdef XDEBUG
6313   assert(N && "Checking nonexistant SDNode");
6314   std::set<const SDNode *> visited;
6315   checkForCyclesHelper(N, visited);
6316 #endif
6317 }
6318
6319 void llvm::checkForCycles(const llvm::SelectionDAG *DAG) {
6320   checkForCycles(DAG->getRoot().getNode());
6321 }