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