Fix PR1872: SrcValue and SrcValueOffset should not be used to compute load / store...
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This implements the SelectionDAG class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "llvm/Constants.h"
16 #include "llvm/GlobalVariable.h"
17 #include "llvm/Intrinsics.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/Assembly/Writer.h"
20 #include "llvm/CodeGen/MachineBasicBlock.h"
21 #include "llvm/CodeGen/MachineConstantPool.h"
22 #include "llvm/CodeGen/MachineFrameInfo.h"
23 #include "llvm/Support/MathExtras.h"
24 #include "llvm/Target/MRegisterInfo.h"
25 #include "llvm/Target/TargetData.h"
26 #include "llvm/Target/TargetLowering.h"
27 #include "llvm/Target/TargetInstrInfo.h"
28 #include "llvm/Target/TargetMachine.h"
29 #include "llvm/ADT/SetVector.h"
30 #include "llvm/ADT/SmallPtrSet.h"
31 #include "llvm/ADT/SmallSet.h"
32 #include "llvm/ADT/SmallVector.h"
33 #include "llvm/ADT/StringExtras.h"
34 #include <algorithm>
35 #include <cmath>
36 using namespace llvm;
37
38 /// makeVTList - Return an instance of the SDVTList struct initialized with the
39 /// specified members.
40 static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
41   SDVTList Res = {VTs, NumVTs};
42   return Res;
43 }
44
45 //===----------------------------------------------------------------------===//
46 //                              ConstantFPSDNode Class
47 //===----------------------------------------------------------------------===//
48
49 /// isExactlyValue - We don't rely on operator== working on double values, as
50 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
51 /// As such, this method can be used to do an exact bit-for-bit comparison of
52 /// two floating point values.
53 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
54   return Value.bitwiseIsEqual(V);
55 }
56
57 bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT, 
58                                            const APFloat& Val) {
59   // convert modifies in place, so make a copy.
60   APFloat Val2 = APFloat(Val);
61   switch (VT) {
62   default:
63     return false;         // These can't be represented as floating point!
64
65   // FIXME rounding mode needs to be more flexible
66   case MVT::f32:
67     return &Val2.getSemantics() == &APFloat::IEEEsingle ||
68            Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven) == 
69               APFloat::opOK;
70   case MVT::f64:
71     return &Val2.getSemantics() == &APFloat::IEEEsingle || 
72            &Val2.getSemantics() == &APFloat::IEEEdouble ||
73            Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven) == 
74              APFloat::opOK;
75   // TODO: Figure out how to test if we can use a shorter type instead!
76   case MVT::f80:
77   case MVT::f128:
78   case MVT::ppcf128:
79     return true;
80   }
81 }
82
83 //===----------------------------------------------------------------------===//
84 //                              ISD Namespace
85 //===----------------------------------------------------------------------===//
86
87 /// isBuildVectorAllOnes - Return true if the specified node is a
88 /// BUILD_VECTOR where all of the elements are ~0 or undef.
89 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
90   // Look through a bit convert.
91   if (N->getOpcode() == ISD::BIT_CONVERT)
92     N = N->getOperand(0).Val;
93   
94   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
95   
96   unsigned i = 0, e = N->getNumOperands();
97   
98   // Skip over all of the undef values.
99   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
100     ++i;
101   
102   // Do not accept an all-undef vector.
103   if (i == e) return false;
104   
105   // Do not accept build_vectors that aren't all constants or which have non-~0
106   // elements.
107   SDOperand NotZero = N->getOperand(i);
108   if (isa<ConstantSDNode>(NotZero)) {
109     if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
110       return false;
111   } else if (isa<ConstantFPSDNode>(NotZero)) {
112     MVT::ValueType VT = NotZero.getValueType();
113     if (VT== MVT::f64) {
114       if (((cast<ConstantFPSDNode>(NotZero)->getValueAPF().
115                   convertToAPInt().getZExtValue())) != (uint64_t)-1)
116         return false;
117     } else {
118       if ((uint32_t)cast<ConstantFPSDNode>(NotZero)->
119                       getValueAPF().convertToAPInt().getZExtValue() != 
120           (uint32_t)-1)
121         return false;
122     }
123   } else
124     return false;
125   
126   // Okay, we have at least one ~0 value, check to see if the rest match or are
127   // undefs.
128   for (++i; i != e; ++i)
129     if (N->getOperand(i) != NotZero &&
130         N->getOperand(i).getOpcode() != ISD::UNDEF)
131       return false;
132   return true;
133 }
134
135
136 /// isBuildVectorAllZeros - Return true if the specified node is a
137 /// BUILD_VECTOR where all of the elements are 0 or undef.
138 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
139   // Look through a bit convert.
140   if (N->getOpcode() == ISD::BIT_CONVERT)
141     N = N->getOperand(0).Val;
142   
143   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
144   
145   unsigned i = 0, e = N->getNumOperands();
146   
147   // Skip over all of the undef values.
148   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
149     ++i;
150   
151   // Do not accept an all-undef vector.
152   if (i == e) return false;
153   
154   // Do not accept build_vectors that aren't all constants or which have non-~0
155   // elements.
156   SDOperand Zero = N->getOperand(i);
157   if (isa<ConstantSDNode>(Zero)) {
158     if (!cast<ConstantSDNode>(Zero)->isNullValue())
159       return false;
160   } else if (isa<ConstantFPSDNode>(Zero)) {
161     if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
162       return false;
163   } else
164     return false;
165   
166   // Okay, we have at least one ~0 value, check to see if the rest match or are
167   // undefs.
168   for (++i; i != e; ++i)
169     if (N->getOperand(i) != Zero &&
170         N->getOperand(i).getOpcode() != ISD::UNDEF)
171       return false;
172   return true;
173 }
174
175 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
176 /// when given the operation for (X op Y).
177 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
178   // To perform this operation, we just need to swap the L and G bits of the
179   // operation.
180   unsigned OldL = (Operation >> 2) & 1;
181   unsigned OldG = (Operation >> 1) & 1;
182   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
183                        (OldL << 1) |       // New G bit
184                        (OldG << 2));        // New L bit.
185 }
186
187 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
188 /// 'op' is a valid SetCC operation.
189 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
190   unsigned Operation = Op;
191   if (isInteger)
192     Operation ^= 7;   // Flip L, G, E bits, but not U.
193   else
194     Operation ^= 15;  // Flip all of the condition bits.
195   if (Operation > ISD::SETTRUE2)
196     Operation &= ~8;     // Don't let N and U bits get set.
197   return ISD::CondCode(Operation);
198 }
199
200
201 /// isSignedOp - For an integer comparison, return 1 if the comparison is a
202 /// signed operation and 2 if the result is an unsigned comparison.  Return zero
203 /// if the operation does not depend on the sign of the input (setne and seteq).
204 static int isSignedOp(ISD::CondCode Opcode) {
205   switch (Opcode) {
206   default: assert(0 && "Illegal integer setcc operation!");
207   case ISD::SETEQ:
208   case ISD::SETNE: return 0;
209   case ISD::SETLT:
210   case ISD::SETLE:
211   case ISD::SETGT:
212   case ISD::SETGE: return 1;
213   case ISD::SETULT:
214   case ISD::SETULE:
215   case ISD::SETUGT:
216   case ISD::SETUGE: return 2;
217   }
218 }
219
220 /// getSetCCOrOperation - Return the result of a logical OR between different
221 /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
222 /// returns SETCC_INVALID if it is not possible to represent the resultant
223 /// comparison.
224 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
225                                        bool isInteger) {
226   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
227     // Cannot fold a signed integer setcc with an unsigned integer setcc.
228     return ISD::SETCC_INVALID;
229
230   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
231
232   // If the N and U bits get set then the resultant comparison DOES suddenly
233   // care about orderedness, and is true when ordered.
234   if (Op > ISD::SETTRUE2)
235     Op &= ~16;     // Clear the U bit if the N bit is set.
236   
237   // Canonicalize illegal integer setcc's.
238   if (isInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
239     Op = ISD::SETNE;
240   
241   return ISD::CondCode(Op);
242 }
243
244 /// getSetCCAndOperation - Return the result of a logical AND between different
245 /// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
246 /// function returns zero if it is not possible to represent the resultant
247 /// comparison.
248 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
249                                         bool isInteger) {
250   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
251     // Cannot fold a signed setcc with an unsigned setcc.
252     return ISD::SETCC_INVALID;
253
254   // Combine all of the condition bits.
255   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
256   
257   // Canonicalize illegal integer setcc's.
258   if (isInteger) {
259     switch (Result) {
260     default: break;
261     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
262     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
263     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
264     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
265     }
266   }
267   
268   return Result;
269 }
270
271 const TargetMachine &SelectionDAG::getTarget() const {
272   return TLI.getTargetMachine();
273 }
274
275 //===----------------------------------------------------------------------===//
276 //                           SDNode Profile Support
277 //===----------------------------------------------------------------------===//
278
279 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
280 ///
281 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
282   ID.AddInteger(OpC);
283 }
284
285 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
286 /// solely with their pointer.
287 void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
288   ID.AddPointer(VTList.VTs);  
289 }
290
291 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
292 ///
293 static void AddNodeIDOperands(FoldingSetNodeID &ID,
294                               const SDOperand *Ops, unsigned NumOps) {
295   for (; NumOps; --NumOps, ++Ops) {
296     ID.AddPointer(Ops->Val);
297     ID.AddInteger(Ops->ResNo);
298   }
299 }
300
301 static void AddNodeIDNode(FoldingSetNodeID &ID,
302                           unsigned short OpC, SDVTList VTList, 
303                           const SDOperand *OpList, unsigned N) {
304   AddNodeIDOpcode(ID, OpC);
305   AddNodeIDValueTypes(ID, VTList);
306   AddNodeIDOperands(ID, OpList, N);
307 }
308
309 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
310 /// data.
311 static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
312   AddNodeIDOpcode(ID, N->getOpcode());
313   // Add the return value info.
314   AddNodeIDValueTypes(ID, N->getVTList());
315   // Add the operand info.
316   AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
317
318   // Handle SDNode leafs with special info.
319   switch (N->getOpcode()) {
320   default: break;  // Normal nodes don't need extra info.
321   case ISD::TargetConstant:
322   case ISD::Constant:
323     ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
324     break;
325   case ISD::TargetConstantFP:
326   case ISD::ConstantFP: {
327     ID.AddAPFloat(cast<ConstantFPSDNode>(N)->getValueAPF());
328     break;
329   }
330   case ISD::TargetGlobalAddress:
331   case ISD::GlobalAddress:
332   case ISD::TargetGlobalTLSAddress:
333   case ISD::GlobalTLSAddress: {
334     GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
335     ID.AddPointer(GA->getGlobal());
336     ID.AddInteger(GA->getOffset());
337     break;
338   }
339   case ISD::BasicBlock:
340     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
341     break;
342   case ISD::Register:
343     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
344     break;
345   case ISD::SRCVALUE: {
346     SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
347     ID.AddPointer(SV->getValue());
348     ID.AddInteger(SV->getOffset());
349     break;
350   }
351   case ISD::FrameIndex:
352   case ISD::TargetFrameIndex:
353     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
354     break;
355   case ISD::JumpTable:
356   case ISD::TargetJumpTable:
357     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
358     break;
359   case ISD::ConstantPool:
360   case ISD::TargetConstantPool: {
361     ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
362     ID.AddInteger(CP->getAlignment());
363     ID.AddInteger(CP->getOffset());
364     if (CP->isMachineConstantPoolEntry())
365       CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
366     else
367       ID.AddPointer(CP->getConstVal());
368     break;
369   }
370   case ISD::LOAD: {
371     LoadSDNode *LD = cast<LoadSDNode>(N);
372     ID.AddInteger(LD->getAddressingMode());
373     ID.AddInteger(LD->getExtensionType());
374     ID.AddInteger((unsigned int)(LD->getLoadedVT()));
375     ID.AddInteger(LD->getAlignment());
376     ID.AddInteger(LD->isVolatile());
377     break;
378   }
379   case ISD::STORE: {
380     StoreSDNode *ST = cast<StoreSDNode>(N);
381     ID.AddInteger(ST->getAddressingMode());
382     ID.AddInteger(ST->isTruncatingStore());
383     ID.AddInteger((unsigned int)(ST->getStoredVT()));
384     ID.AddInteger(ST->getAlignment());
385     ID.AddInteger(ST->isVolatile());
386     break;
387   }
388   }
389 }
390
391 //===----------------------------------------------------------------------===//
392 //                              SelectionDAG Class
393 //===----------------------------------------------------------------------===//
394
395 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
396 /// SelectionDAG.
397 void SelectionDAG::RemoveDeadNodes() {
398   // Create a dummy node (which is not added to allnodes), that adds a reference
399   // to the root node, preventing it from being deleted.
400   HandleSDNode Dummy(getRoot());
401
402   SmallVector<SDNode*, 128> DeadNodes;
403   
404   // Add all obviously-dead nodes to the DeadNodes worklist.
405   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
406     if (I->use_empty())
407       DeadNodes.push_back(I);
408
409   // Process the worklist, deleting the nodes and adding their uses to the
410   // worklist.
411   while (!DeadNodes.empty()) {
412     SDNode *N = DeadNodes.back();
413     DeadNodes.pop_back();
414     
415     // Take the node out of the appropriate CSE map.
416     RemoveNodeFromCSEMaps(N);
417
418     // Next, brutally remove the operand list.  This is safe to do, as there are
419     // no cycles in the graph.
420     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
421       SDNode *Operand = I->Val;
422       Operand->removeUser(N);
423       
424       // Now that we removed this operand, see if there are no uses of it left.
425       if (Operand->use_empty())
426         DeadNodes.push_back(Operand);
427     }
428     if (N->OperandsNeedDelete)
429       delete[] N->OperandList;
430     N->OperandList = 0;
431     N->NumOperands = 0;
432     
433     // Finally, remove N itself.
434     AllNodes.erase(N);
435   }
436   
437   // If the root changed (e.g. it was a dead load, update the root).
438   setRoot(Dummy.getValue());
439 }
440
441 void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
442   SmallVector<SDNode*, 16> DeadNodes;
443   DeadNodes.push_back(N);
444
445   // Process the worklist, deleting the nodes and adding their uses to the
446   // worklist.
447   while (!DeadNodes.empty()) {
448     SDNode *N = DeadNodes.back();
449     DeadNodes.pop_back();
450     
451     // Take the node out of the appropriate CSE map.
452     RemoveNodeFromCSEMaps(N);
453
454     // Next, brutally remove the operand list.  This is safe to do, as there are
455     // no cycles in the graph.
456     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
457       SDNode *Operand = I->Val;
458       Operand->removeUser(N);
459       
460       // Now that we removed this operand, see if there are no uses of it left.
461       if (Operand->use_empty())
462         DeadNodes.push_back(Operand);
463     }
464     if (N->OperandsNeedDelete)
465       delete[] N->OperandList;
466     N->OperandList = 0;
467     N->NumOperands = 0;
468     
469     // Finally, remove N itself.
470     Deleted.push_back(N);
471     AllNodes.erase(N);
472   }
473 }
474
475 void SelectionDAG::DeleteNode(SDNode *N) {
476   assert(N->use_empty() && "Cannot delete a node that is not dead!");
477
478   // First take this out of the appropriate CSE map.
479   RemoveNodeFromCSEMaps(N);
480
481   // Finally, remove uses due to operands of this node, remove from the 
482   // AllNodes list, and delete the node.
483   DeleteNodeNotInCSEMaps(N);
484 }
485
486 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
487
488   // Remove it from the AllNodes list.
489   AllNodes.remove(N);
490     
491   // Drop all of the operands and decrement used nodes use counts.
492   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
493     I->Val->removeUser(N);
494   if (N->OperandsNeedDelete)
495     delete[] N->OperandList;
496   N->OperandList = 0;
497   N->NumOperands = 0;
498   
499   delete N;
500 }
501
502 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
503 /// correspond to it.  This is useful when we're about to delete or repurpose
504 /// the node.  We don't want future request for structurally identical nodes
505 /// to return N anymore.
506 void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
507   bool Erased = false;
508   switch (N->getOpcode()) {
509   case ISD::HANDLENODE: return;  // noop.
510   case ISD::STRING:
511     Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
512     break;
513   case ISD::CONDCODE:
514     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
515            "Cond code doesn't exist!");
516     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
517     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
518     break;
519   case ISD::ExternalSymbol:
520     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
521     break;
522   case ISD::TargetExternalSymbol:
523     Erased =
524       TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
525     break;
526   case ISD::VALUETYPE: {
527     MVT::ValueType VT = cast<VTSDNode>(N)->getVT();
528     if (MVT::isExtendedVT(VT)) {
529       Erased = ExtendedValueTypeNodes.erase(VT);
530     } else {
531       Erased = ValueTypeNodes[VT] != 0;
532       ValueTypeNodes[VT] = 0;
533     }
534     break;
535   }
536   default:
537     // Remove it from the CSE Map.
538     Erased = CSEMap.RemoveNode(N);
539     break;
540   }
541 #ifndef NDEBUG
542   // Verify that the node was actually in one of the CSE maps, unless it has a 
543   // flag result (which cannot be CSE'd) or is one of the special cases that are
544   // not subject to CSE.
545   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
546       !N->isTargetOpcode()) {
547     N->dump(this);
548     cerr << "\n";
549     assert(0 && "Node is not in map!");
550   }
551 #endif
552 }
553
554 /// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps.  It
555 /// has been taken out and modified in some way.  If the specified node already
556 /// exists in the CSE maps, do not modify the maps, but return the existing node
557 /// instead.  If it doesn't exist, add it and return null.
558 ///
559 SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
560   assert(N->getNumOperands() && "This is a leaf node!");
561   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
562     return 0;    // Never add these nodes.
563   
564   // Check that remaining values produced are not flags.
565   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
566     if (N->getValueType(i) == MVT::Flag)
567       return 0;   // Never CSE anything that produces a flag.
568   
569   SDNode *New = CSEMap.GetOrInsertNode(N);
570   if (New != N) return New;  // Node already existed.
571   return 0;
572 }
573
574 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
575 /// were replaced with those specified.  If this node is never memoized, 
576 /// return null, otherwise return a pointer to the slot it would take.  If a
577 /// node already exists with these operands, the slot will be non-null.
578 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
579                                            void *&InsertPos) {
580   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
581     return 0;    // Never add these nodes.
582   
583   // Check that remaining values produced are not flags.
584   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
585     if (N->getValueType(i) == MVT::Flag)
586       return 0;   // Never CSE anything that produces a flag.
587   
588   SDOperand Ops[] = { Op };
589   FoldingSetNodeID ID;
590   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
591   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
592 }
593
594 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
595 /// were replaced with those specified.  If this node is never memoized, 
596 /// return null, otherwise return a pointer to the slot it would take.  If a
597 /// node already exists with these operands, the slot will be non-null.
598 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
599                                            SDOperand Op1, SDOperand Op2,
600                                            void *&InsertPos) {
601   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
602     return 0;    // Never add these nodes.
603   
604   // Check that remaining values produced are not flags.
605   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
606     if (N->getValueType(i) == MVT::Flag)
607       return 0;   // Never CSE anything that produces a flag.
608                                               
609   SDOperand Ops[] = { Op1, Op2 };
610   FoldingSetNodeID ID;
611   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
612   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
613 }
614
615
616 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
617 /// were replaced with those specified.  If this node is never memoized, 
618 /// return null, otherwise return a pointer to the slot it would take.  If a
619 /// node already exists with these operands, the slot will be non-null.
620 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
621                                            const SDOperand *Ops,unsigned NumOps,
622                                            void *&InsertPos) {
623   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
624     return 0;    // Never add these nodes.
625   
626   // Check that remaining values produced are not flags.
627   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
628     if (N->getValueType(i) == MVT::Flag)
629       return 0;   // Never CSE anything that produces a flag.
630   
631   FoldingSetNodeID ID;
632   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
633   
634   if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
635     ID.AddInteger(LD->getAddressingMode());
636     ID.AddInteger(LD->getExtensionType());
637     ID.AddInteger((unsigned int)(LD->getLoadedVT()));
638     ID.AddInteger(LD->getAlignment());
639     ID.AddInteger(LD->isVolatile());
640   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
641     ID.AddInteger(ST->getAddressingMode());
642     ID.AddInteger(ST->isTruncatingStore());
643     ID.AddInteger((unsigned int)(ST->getStoredVT()));
644     ID.AddInteger(ST->getAlignment());
645     ID.AddInteger(ST->isVolatile());
646   }
647   
648   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
649 }
650
651
652 SelectionDAG::~SelectionDAG() {
653   while (!AllNodes.empty()) {
654     SDNode *N = AllNodes.begin();
655     N->SetNextInBucket(0);
656     if (N->OperandsNeedDelete)
657       delete [] N->OperandList;
658     N->OperandList = 0;
659     N->NumOperands = 0;
660     AllNodes.pop_front();
661   }
662 }
663
664 SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
665   if (Op.getValueType() == VT) return Op;
666   int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
667   return getNode(ISD::AND, Op.getValueType(), Op,
668                  getConstant(Imm, Op.getValueType()));
669 }
670
671 SDOperand SelectionDAG::getString(const std::string &Val) {
672   StringSDNode *&N = StringNodes[Val];
673   if (!N) {
674     N = new StringSDNode(Val);
675     AllNodes.push_back(N);
676   }
677   return SDOperand(N, 0);
678 }
679
680 SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
681   assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
682
683   MVT::ValueType EltVT =
684     MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
685   
686   // Mask out any bits that are not valid for this constant.
687   Val &= MVT::getIntVTBitMask(EltVT);
688
689   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
690   FoldingSetNodeID ID;
691   AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
692   ID.AddInteger(Val);
693   void *IP = 0;
694   SDNode *N = NULL;
695   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
696     if (!MVT::isVector(VT))
697       return SDOperand(N, 0);
698   if (!N) {
699     N = new ConstantSDNode(isT, Val, EltVT);
700     CSEMap.InsertNode(N, IP);
701     AllNodes.push_back(N);
702   }
703
704   SDOperand Result(N, 0);
705   if (MVT::isVector(VT)) {
706     SmallVector<SDOperand, 8> Ops;
707     Ops.assign(MVT::getVectorNumElements(VT), Result);
708     Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
709   }
710   return Result;
711 }
712
713 SDOperand SelectionDAG::getConstantFP(const APFloat& V, MVT::ValueType VT,
714                                       bool isTarget) {
715   assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
716                                 
717   MVT::ValueType EltVT =
718     MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
719
720   // Do the map lookup using the actual bit pattern for the floating point
721   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
722   // we don't have issues with SNANs.
723   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
724   FoldingSetNodeID ID;
725   AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
726   ID.AddAPFloat(V);
727   void *IP = 0;
728   SDNode *N = NULL;
729   if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
730     if (!MVT::isVector(VT))
731       return SDOperand(N, 0);
732   if (!N) {
733     N = new ConstantFPSDNode(isTarget, V, EltVT);
734     CSEMap.InsertNode(N, IP);
735     AllNodes.push_back(N);
736   }
737
738   SDOperand Result(N, 0);
739   if (MVT::isVector(VT)) {
740     SmallVector<SDOperand, 8> Ops;
741     Ops.assign(MVT::getVectorNumElements(VT), Result);
742     Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
743   }
744   return Result;
745 }
746
747 SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
748                                       bool isTarget) {
749   MVT::ValueType EltVT =
750     MVT::isVector(VT) ? MVT::getVectorElementType(VT) : VT;
751   if (EltVT==MVT::f32)
752     return getConstantFP(APFloat((float)Val), VT, isTarget);
753   else
754     return getConstantFP(APFloat(Val), VT, isTarget);
755 }
756
757 SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
758                                          MVT::ValueType VT, int Offset,
759                                          bool isTargetGA) {
760   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
761   unsigned Opc;
762   if (GVar && GVar->isThreadLocal())
763     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
764   else
765     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
766   FoldingSetNodeID ID;
767   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
768   ID.AddPointer(GV);
769   ID.AddInteger(Offset);
770   void *IP = 0;
771   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
772    return SDOperand(E, 0);
773   SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
774   CSEMap.InsertNode(N, IP);
775   AllNodes.push_back(N);
776   return SDOperand(N, 0);
777 }
778
779 SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
780                                       bool isTarget) {
781   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
782   FoldingSetNodeID ID;
783   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
784   ID.AddInteger(FI);
785   void *IP = 0;
786   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
787     return SDOperand(E, 0);
788   SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
789   CSEMap.InsertNode(N, IP);
790   AllNodes.push_back(N);
791   return SDOperand(N, 0);
792 }
793
794 SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
795   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
796   FoldingSetNodeID ID;
797   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
798   ID.AddInteger(JTI);
799   void *IP = 0;
800   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
801     return SDOperand(E, 0);
802   SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
803   CSEMap.InsertNode(N, IP);
804   AllNodes.push_back(N);
805   return SDOperand(N, 0);
806 }
807
808 SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
809                                         unsigned Alignment, int Offset,
810                                         bool isTarget) {
811   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
812   FoldingSetNodeID ID;
813   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
814   ID.AddInteger(Alignment);
815   ID.AddInteger(Offset);
816   ID.AddPointer(C);
817   void *IP = 0;
818   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
819     return SDOperand(E, 0);
820   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
821   CSEMap.InsertNode(N, IP);
822   AllNodes.push_back(N);
823   return SDOperand(N, 0);
824 }
825
826
827 SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
828                                         MVT::ValueType VT,
829                                         unsigned Alignment, int Offset,
830                                         bool isTarget) {
831   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
832   FoldingSetNodeID ID;
833   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
834   ID.AddInteger(Alignment);
835   ID.AddInteger(Offset);
836   C->AddSelectionDAGCSEId(ID);
837   void *IP = 0;
838   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
839     return SDOperand(E, 0);
840   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
841   CSEMap.InsertNode(N, IP);
842   AllNodes.push_back(N);
843   return SDOperand(N, 0);
844 }
845
846
847 SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
848   FoldingSetNodeID ID;
849   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
850   ID.AddPointer(MBB);
851   void *IP = 0;
852   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
853     return SDOperand(E, 0);
854   SDNode *N = new BasicBlockSDNode(MBB);
855   CSEMap.InsertNode(N, IP);
856   AllNodes.push_back(N);
857   return SDOperand(N, 0);
858 }
859
860 SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
861   if (!MVT::isExtendedVT(VT) && (unsigned)VT >= ValueTypeNodes.size())
862     ValueTypeNodes.resize(VT+1);
863
864   SDNode *&N = MVT::isExtendedVT(VT) ?
865     ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT];
866
867   if (N) return SDOperand(N, 0);
868   N = new VTSDNode(VT);
869   AllNodes.push_back(N);
870   return SDOperand(N, 0);
871 }
872
873 SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
874   SDNode *&N = ExternalSymbols[Sym];
875   if (N) return SDOperand(N, 0);
876   N = new ExternalSymbolSDNode(false, Sym, VT);
877   AllNodes.push_back(N);
878   return SDOperand(N, 0);
879 }
880
881 SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
882                                                 MVT::ValueType VT) {
883   SDNode *&N = TargetExternalSymbols[Sym];
884   if (N) return SDOperand(N, 0);
885   N = new ExternalSymbolSDNode(true, Sym, VT);
886   AllNodes.push_back(N);
887   return SDOperand(N, 0);
888 }
889
890 SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
891   if ((unsigned)Cond >= CondCodeNodes.size())
892     CondCodeNodes.resize(Cond+1);
893   
894   if (CondCodeNodes[Cond] == 0) {
895     CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
896     AllNodes.push_back(CondCodeNodes[Cond]);
897   }
898   return SDOperand(CondCodeNodes[Cond], 0);
899 }
900
901 SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
902   FoldingSetNodeID ID;
903   AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
904   ID.AddInteger(RegNo);
905   void *IP = 0;
906   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
907     return SDOperand(E, 0);
908   SDNode *N = new RegisterSDNode(RegNo, VT);
909   CSEMap.InsertNode(N, IP);
910   AllNodes.push_back(N);
911   return SDOperand(N, 0);
912 }
913
914 SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
915   assert((!V || isa<PointerType>(V->getType())) &&
916          "SrcValue is not a pointer?");
917
918   FoldingSetNodeID ID;
919   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
920   ID.AddPointer(V);
921   ID.AddInteger(Offset);
922   void *IP = 0;
923   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
924     return SDOperand(E, 0);
925   SDNode *N = new SrcValueSDNode(V, Offset);
926   CSEMap.InsertNode(N, IP);
927   AllNodes.push_back(N);
928   return SDOperand(N, 0);
929 }
930
931 /// CreateStackTemporary - Create a stack temporary, suitable for holding the
932 /// specified value type.
933 SDOperand SelectionDAG::CreateStackTemporary(MVT::ValueType VT) {
934   MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
935   unsigned ByteSize = MVT::getSizeInBits(VT)/8;
936   const Type *Ty = MVT::getTypeForValueType(VT);
937   unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
938   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
939   return getFrameIndex(FrameIdx, TLI.getPointerTy());
940 }
941
942
943 SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
944                                   SDOperand N2, ISD::CondCode Cond) {
945   // These setcc operations always fold.
946   switch (Cond) {
947   default: break;
948   case ISD::SETFALSE:
949   case ISD::SETFALSE2: return getConstant(0, VT);
950   case ISD::SETTRUE:
951   case ISD::SETTRUE2:  return getConstant(1, VT);
952     
953   case ISD::SETOEQ:
954   case ISD::SETOGT:
955   case ISD::SETOGE:
956   case ISD::SETOLT:
957   case ISD::SETOLE:
958   case ISD::SETONE:
959   case ISD::SETO:
960   case ISD::SETUO:
961   case ISD::SETUEQ:
962   case ISD::SETUNE:
963     assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
964     break;
965   }
966   
967   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
968     uint64_t C2 = N2C->getValue();
969     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
970       uint64_t C1 = N1C->getValue();
971       
972       // Sign extend the operands if required
973       if (ISD::isSignedIntSetCC(Cond)) {
974         C1 = N1C->getSignExtended();
975         C2 = N2C->getSignExtended();
976       }
977       
978       switch (Cond) {
979       default: assert(0 && "Unknown integer setcc!");
980       case ISD::SETEQ:  return getConstant(C1 == C2, VT);
981       case ISD::SETNE:  return getConstant(C1 != C2, VT);
982       case ISD::SETULT: return getConstant(C1 <  C2, VT);
983       case ISD::SETUGT: return getConstant(C1 >  C2, VT);
984       case ISD::SETULE: return getConstant(C1 <= C2, VT);
985       case ISD::SETUGE: return getConstant(C1 >= C2, VT);
986       case ISD::SETLT:  return getConstant((int64_t)C1 <  (int64_t)C2, VT);
987       case ISD::SETGT:  return getConstant((int64_t)C1 >  (int64_t)C2, VT);
988       case ISD::SETLE:  return getConstant((int64_t)C1 <= (int64_t)C2, VT);
989       case ISD::SETGE:  return getConstant((int64_t)C1 >= (int64_t)C2, VT);
990       }
991     }
992   }
993   if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
994     if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
995       // No compile time operations on this type yet.
996       if (N1C->getValueType(0) == MVT::ppcf128)
997         return SDOperand();
998
999       APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
1000       switch (Cond) {
1001       default: break;
1002       case ISD::SETEQ:  if (R==APFloat::cmpUnordered) 
1003                           return getNode(ISD::UNDEF, VT);
1004                         // fall through
1005       case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1006       case ISD::SETNE:  if (R==APFloat::cmpUnordered) 
1007                           return getNode(ISD::UNDEF, VT);
1008                         // fall through
1009       case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
1010                                            R==APFloat::cmpLessThan, VT);
1011       case ISD::SETLT:  if (R==APFloat::cmpUnordered) 
1012                           return getNode(ISD::UNDEF, VT);
1013                         // fall through
1014       case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1015       case ISD::SETGT:  if (R==APFloat::cmpUnordered) 
1016                           return getNode(ISD::UNDEF, VT);
1017                         // fall through
1018       case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1019       case ISD::SETLE:  if (R==APFloat::cmpUnordered) 
1020                           return getNode(ISD::UNDEF, VT);
1021                         // fall through
1022       case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
1023                                            R==APFloat::cmpEqual, VT);
1024       case ISD::SETGE:  if (R==APFloat::cmpUnordered) 
1025                           return getNode(ISD::UNDEF, VT);
1026                         // fall through
1027       case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
1028                                            R==APFloat::cmpEqual, VT);
1029       case ISD::SETO:   return getConstant(R!=APFloat::cmpUnordered, VT);
1030       case ISD::SETUO:  return getConstant(R==APFloat::cmpUnordered, VT);
1031       case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1032                                            R==APFloat::cmpEqual, VT);
1033       case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1034       case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1035                                            R==APFloat::cmpLessThan, VT);
1036       case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1037                                            R==APFloat::cmpUnordered, VT);
1038       case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1039       case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
1040       }
1041     } else {
1042       // Ensure that the constant occurs on the RHS.
1043       return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
1044     }
1045       
1046   // Could not fold it.
1047   return SDOperand();
1048 }
1049
1050 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
1051 /// this predicate to simplify operations downstream.  Mask is known to be zero
1052 /// for bits that V cannot have.
1053 bool SelectionDAG::MaskedValueIsZero(SDOperand Op, uint64_t Mask, 
1054                                      unsigned Depth) const {
1055   // The masks are not wide enough to represent this type!  Should use APInt.
1056   if (Op.getValueType() == MVT::i128)
1057     return false;
1058   
1059   uint64_t KnownZero, KnownOne;
1060   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1061   assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1062   return (KnownZero & Mask) == Mask;
1063 }
1064
1065 /// ComputeMaskedBits - Determine which of the bits specified in Mask are
1066 /// known to be either zero or one and return them in the KnownZero/KnownOne
1067 /// bitsets.  This code only analyzes bits in Mask, in order to short-circuit
1068 /// processing.
1069 void SelectionDAG::ComputeMaskedBits(SDOperand Op, uint64_t Mask, 
1070                                      uint64_t &KnownZero, uint64_t &KnownOne,
1071                                      unsigned Depth) const {
1072   KnownZero = KnownOne = 0;   // Don't know anything.
1073   if (Depth == 6 || Mask == 0)
1074     return;  // Limit search depth.
1075   
1076   // The masks are not wide enough to represent this type!  Should use APInt.
1077   if (Op.getValueType() == MVT::i128)
1078     return;
1079   
1080   uint64_t KnownZero2, KnownOne2;
1081
1082   switch (Op.getOpcode()) {
1083   case ISD::Constant:
1084     // We know all of the bits for a constant!
1085     KnownOne = cast<ConstantSDNode>(Op)->getValue() & Mask;
1086     KnownZero = ~KnownOne & Mask;
1087     return;
1088   case ISD::AND:
1089     // If either the LHS or the RHS are Zero, the result is zero.
1090     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1091     Mask &= ~KnownZero;
1092     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1093     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1094     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1095
1096     // Output known-1 bits are only known if set in both the LHS & RHS.
1097     KnownOne &= KnownOne2;
1098     // Output known-0 are known to be clear if zero in either the LHS | RHS.
1099     KnownZero |= KnownZero2;
1100     return;
1101   case ISD::OR:
1102     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1103     Mask &= ~KnownOne;
1104     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1105     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1106     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1107     
1108     // Output known-0 bits are only known if clear in both the LHS & RHS.
1109     KnownZero &= KnownZero2;
1110     // Output known-1 are known to be set if set in either the LHS | RHS.
1111     KnownOne |= KnownOne2;
1112     return;
1113   case ISD::XOR: {
1114     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1115     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1116     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1117     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1118     
1119     // Output known-0 bits are known if clear or set in both the LHS & RHS.
1120     uint64_t KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1121     // Output known-1 are known to be set if set in only one of the LHS, RHS.
1122     KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1123     KnownZero = KnownZeroOut;
1124     return;
1125   }
1126   case ISD::SELECT:
1127     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1128     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1129     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1130     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1131     
1132     // Only known if known in both the LHS and RHS.
1133     KnownOne &= KnownOne2;
1134     KnownZero &= KnownZero2;
1135     return;
1136   case ISD::SELECT_CC:
1137     ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1138     ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1139     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1140     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1141     
1142     // Only known if known in both the LHS and RHS.
1143     KnownOne &= KnownOne2;
1144     KnownZero &= KnownZero2;
1145     return;
1146   case ISD::SETCC:
1147     // If we know the result of a setcc has the top bits zero, use this info.
1148     if (TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult)
1149       KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
1150     return;
1151   case ISD::SHL:
1152     // (shl X, C1) & C2 == 0   iff   (X & C2 >>u C1) == 0
1153     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1154       ComputeMaskedBits(Op.getOperand(0), Mask >> SA->getValue(),
1155                         KnownZero, KnownOne, Depth+1);
1156       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1157       KnownZero <<= SA->getValue();
1158       KnownOne  <<= SA->getValue();
1159       KnownZero |= (1ULL << SA->getValue())-1;  // low bits known zero.
1160     }
1161     return;
1162   case ISD::SRL:
1163     // (ushr X, C1) & C2 == 0   iff  (-1 >> C1) & C2 == 0
1164     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1165       MVT::ValueType VT = Op.getValueType();
1166       unsigned ShAmt = SA->getValue();
1167
1168       uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1169       ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt) & TypeMask,
1170                         KnownZero, KnownOne, Depth+1);
1171       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1172       KnownZero &= TypeMask;
1173       KnownOne  &= TypeMask;
1174       KnownZero >>= ShAmt;
1175       KnownOne  >>= ShAmt;
1176
1177       uint64_t HighBits = (1ULL << ShAmt)-1;
1178       HighBits <<= MVT::getSizeInBits(VT)-ShAmt;
1179       KnownZero |= HighBits;  // High bits known zero.
1180     }
1181     return;
1182   case ISD::SRA:
1183     if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1184       MVT::ValueType VT = Op.getValueType();
1185       unsigned ShAmt = SA->getValue();
1186
1187       // Compute the new bits that are at the top now.
1188       uint64_t TypeMask = MVT::getIntVTBitMask(VT);
1189
1190       uint64_t InDemandedMask = (Mask << ShAmt) & TypeMask;
1191       // If any of the demanded bits are produced by the sign extension, we also
1192       // demand the input sign bit.
1193       uint64_t HighBits = (1ULL << ShAmt)-1;
1194       HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
1195       if (HighBits & Mask)
1196         InDemandedMask |= MVT::getIntVTSignBit(VT);
1197       
1198       ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1199                         Depth+1);
1200       assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1201       KnownZero &= TypeMask;
1202       KnownOne  &= TypeMask;
1203       KnownZero >>= ShAmt;
1204       KnownOne  >>= ShAmt;
1205       
1206       // Handle the sign bits.
1207       uint64_t SignBit = MVT::getIntVTSignBit(VT);
1208       SignBit >>= ShAmt;  // Adjust to where it is now in the mask.
1209       
1210       if (KnownZero & SignBit) {       
1211         KnownZero |= HighBits;  // New bits are known zero.
1212       } else if (KnownOne & SignBit) {
1213         KnownOne  |= HighBits;  // New bits are known one.
1214       }
1215     }
1216     return;
1217   case ISD::SIGN_EXTEND_INREG: {
1218     MVT::ValueType EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1219     
1220     // Sign extension.  Compute the demanded bits in the result that are not 
1221     // present in the input.
1222     uint64_t NewBits = ~MVT::getIntVTBitMask(EVT) & Mask;
1223
1224     uint64_t InSignBit = MVT::getIntVTSignBit(EVT);
1225     int64_t InputDemandedBits = Mask & MVT::getIntVTBitMask(EVT);
1226     
1227     // If the sign extended bits are demanded, we know that the sign
1228     // bit is demanded.
1229     if (NewBits)
1230       InputDemandedBits |= InSignBit;
1231     
1232     ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1233                       KnownZero, KnownOne, Depth+1);
1234     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1235     
1236     // If the sign bit of the input is known set or clear, then we know the
1237     // top bits of the result.
1238     if (KnownZero & InSignBit) {          // Input sign bit known clear
1239       KnownZero |= NewBits;
1240       KnownOne  &= ~NewBits;
1241     } else if (KnownOne & InSignBit) {    // Input sign bit known set
1242       KnownOne  |= NewBits;
1243       KnownZero &= ~NewBits;
1244     } else {                              // Input sign bit unknown
1245       KnownZero &= ~NewBits;
1246       KnownOne  &= ~NewBits;
1247     }
1248     return;
1249   }
1250   case ISD::CTTZ:
1251   case ISD::CTLZ:
1252   case ISD::CTPOP: {
1253     MVT::ValueType VT = Op.getValueType();
1254     unsigned LowBits = Log2_32(MVT::getSizeInBits(VT))+1;
1255     KnownZero = ~((1ULL << LowBits)-1) & MVT::getIntVTBitMask(VT);
1256     KnownOne  = 0;
1257     return;
1258   }
1259   case ISD::LOAD: {
1260     if (ISD::isZEXTLoad(Op.Val)) {
1261       LoadSDNode *LD = cast<LoadSDNode>(Op);
1262       MVT::ValueType VT = LD->getLoadedVT();
1263       KnownZero |= ~MVT::getIntVTBitMask(VT) & Mask;
1264     }
1265     return;
1266   }
1267   case ISD::ZERO_EXTEND: {
1268     uint64_t InMask  = MVT::getIntVTBitMask(Op.getOperand(0).getValueType());
1269     uint64_t NewBits = (~InMask) & Mask;
1270     ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero, 
1271                       KnownOne, Depth+1);
1272     KnownZero |= NewBits & Mask;
1273     KnownOne  &= ~NewBits;
1274     return;
1275   }
1276   case ISD::SIGN_EXTEND: {
1277     MVT::ValueType InVT = Op.getOperand(0).getValueType();
1278     unsigned InBits    = MVT::getSizeInBits(InVT);
1279     uint64_t InMask    = MVT::getIntVTBitMask(InVT);
1280     uint64_t InSignBit = 1ULL << (InBits-1);
1281     uint64_t NewBits   = (~InMask) & Mask;
1282     uint64_t InDemandedBits = Mask & InMask;
1283
1284     // If any of the sign extended bits are demanded, we know that the sign
1285     // bit is demanded.
1286     if (NewBits & Mask)
1287       InDemandedBits |= InSignBit;
1288     
1289     ComputeMaskedBits(Op.getOperand(0), InDemandedBits, KnownZero, 
1290                       KnownOne, Depth+1);
1291     // If the sign bit is known zero or one, the  top bits match.
1292     if (KnownZero & InSignBit) {
1293       KnownZero |= NewBits;
1294       KnownOne  &= ~NewBits;
1295     } else if (KnownOne & InSignBit) {
1296       KnownOne  |= NewBits;
1297       KnownZero &= ~NewBits;
1298     } else {   // Otherwise, top bits aren't known.
1299       KnownOne  &= ~NewBits;
1300       KnownZero &= ~NewBits;
1301     }
1302     return;
1303   }
1304   case ISD::ANY_EXTEND: {
1305     MVT::ValueType VT = Op.getOperand(0).getValueType();
1306     ComputeMaskedBits(Op.getOperand(0), Mask & MVT::getIntVTBitMask(VT),
1307                       KnownZero, KnownOne, Depth+1);
1308     return;
1309   }
1310   case ISD::TRUNCATE: {
1311     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1312     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1313     uint64_t OutMask = MVT::getIntVTBitMask(Op.getValueType());
1314     KnownZero &= OutMask;
1315     KnownOne &= OutMask;
1316     break;
1317   }
1318   case ISD::AssertZext: {
1319     MVT::ValueType VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1320     uint64_t InMask = MVT::getIntVTBitMask(VT);
1321     ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero, 
1322                       KnownOne, Depth+1);
1323     KnownZero |= (~InMask) & Mask;
1324     return;
1325   }
1326   case ISD::ADD: {
1327     // If either the LHS or the RHS are Zero, the result is zero.
1328     ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1329     ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1330     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 
1331     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); 
1332     
1333     // Output known-0 bits are known if clear or set in both the low clear bits
1334     // common to both LHS & RHS.  For example, 8+(X<<3) is known to have the
1335     // low 3 bits clear.
1336     uint64_t KnownZeroOut = std::min(CountTrailingZeros_64(~KnownZero), 
1337                                      CountTrailingZeros_64(~KnownZero2));
1338     
1339     KnownZero = (1ULL << KnownZeroOut) - 1;
1340     KnownOne = 0;
1341     return;
1342   }
1343   case ISD::SUB: {
1344     ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1345     if (!CLHS) return;
1346
1347     // We know that the top bits of C-X are clear if X contains less bits
1348     // than C (i.e. no wrap-around can happen).  For example, 20-X is
1349     // positive if we can prove that X is >= 0 and < 16.
1350     MVT::ValueType VT = CLHS->getValueType(0);
1351     if ((CLHS->getValue() & MVT::getIntVTSignBit(VT)) == 0) {  // sign bit clear
1352       unsigned NLZ = CountLeadingZeros_64(CLHS->getValue()+1);
1353       uint64_t MaskV = (1ULL << (63-NLZ))-1; // NLZ can't be 64 with no sign bit
1354       MaskV = ~MaskV & MVT::getIntVTBitMask(VT);
1355       ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero, KnownOne, Depth+1);
1356
1357       // If all of the MaskV bits are known to be zero, then we know the output
1358       // top bits are zero, because we now know that the output is from [0-C].
1359       if ((KnownZero & MaskV) == MaskV) {
1360         unsigned NLZ2 = CountLeadingZeros_64(CLHS->getValue());
1361         KnownZero = ~((1ULL << (64-NLZ2))-1) & Mask;  // Top bits known zero.
1362         KnownOne = 0;   // No one bits known.
1363       } else {
1364         KnownZero = KnownOne = 0;  // Otherwise, nothing known.
1365       }
1366     }
1367     return;
1368   }
1369   default:
1370     // Allow the target to implement this method for its nodes.
1371     if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1372   case ISD::INTRINSIC_WO_CHAIN:
1373   case ISD::INTRINSIC_W_CHAIN:
1374   case ISD::INTRINSIC_VOID:
1375       TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1376     }
1377     return;
1378   }
1379 }
1380
1381 /// ComputeNumSignBits - Return the number of times the sign bit of the
1382 /// register is replicated into the other bits.  We know that at least 1 bit
1383 /// is always equal to the sign bit (itself), but other cases can give us
1384 /// information.  For example, immediately after an "SRA X, 2", we know that
1385 /// the top 3 bits are all equal to each other, so we return 3.
1386 unsigned SelectionDAG::ComputeNumSignBits(SDOperand Op, unsigned Depth) const{
1387   MVT::ValueType VT = Op.getValueType();
1388   assert(MVT::isInteger(VT) && "Invalid VT!");
1389   unsigned VTBits = MVT::getSizeInBits(VT);
1390   unsigned Tmp, Tmp2;
1391   
1392   if (Depth == 6)
1393     return 1;  // Limit search depth.
1394
1395   switch (Op.getOpcode()) {
1396   default: break;
1397   case ISD::AssertSext:
1398     Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1399     return VTBits-Tmp+1;
1400   case ISD::AssertZext:
1401     Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1402     return VTBits-Tmp;
1403     
1404   case ISD::Constant: {
1405     uint64_t Val = cast<ConstantSDNode>(Op)->getValue();
1406     // If negative, invert the bits, then look at it.
1407     if (Val & MVT::getIntVTSignBit(VT))
1408       Val = ~Val;
1409     
1410     // Shift the bits so they are the leading bits in the int64_t.
1411     Val <<= 64-VTBits;
1412     
1413     // Return # leading zeros.  We use 'min' here in case Val was zero before
1414     // shifting.  We don't want to return '64' as for an i32 "0".
1415     return std::min(VTBits, CountLeadingZeros_64(Val));
1416   }
1417     
1418   case ISD::SIGN_EXTEND:
1419     Tmp = VTBits-MVT::getSizeInBits(Op.getOperand(0).getValueType());
1420     return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1421     
1422   case ISD::SIGN_EXTEND_INREG:
1423     // Max of the input and what this extends.
1424     Tmp = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
1425     Tmp = VTBits-Tmp+1;
1426     
1427     Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1428     return std::max(Tmp, Tmp2);
1429
1430   case ISD::SRA:
1431     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1432     // SRA X, C   -> adds C sign bits.
1433     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1434       Tmp += C->getValue();
1435       if (Tmp > VTBits) Tmp = VTBits;
1436     }
1437     return Tmp;
1438   case ISD::SHL:
1439     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1440       // shl destroys sign bits.
1441       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1442       if (C->getValue() >= VTBits ||      // Bad shift.
1443           C->getValue() >= Tmp) break;    // Shifted all sign bits out.
1444       return Tmp - C->getValue();
1445     }
1446     break;
1447   case ISD::AND:
1448   case ISD::OR:
1449   case ISD::XOR:    // NOT is handled here.
1450     // Logical binary ops preserve the number of sign bits.
1451     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1452     if (Tmp == 1) return 1;  // Early out.
1453     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1454     return std::min(Tmp, Tmp2);
1455
1456   case ISD::SELECT:
1457     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1458     if (Tmp == 1) return 1;  // Early out.
1459     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1460     return std::min(Tmp, Tmp2);
1461     
1462   case ISD::SETCC:
1463     // If setcc returns 0/-1, all bits are sign bits.
1464     if (TLI.getSetCCResultContents() ==
1465         TargetLowering::ZeroOrNegativeOneSetCCResult)
1466       return VTBits;
1467     break;
1468   case ISD::ROTL:
1469   case ISD::ROTR:
1470     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1471       unsigned RotAmt = C->getValue() & (VTBits-1);
1472       
1473       // Handle rotate right by N like a rotate left by 32-N.
1474       if (Op.getOpcode() == ISD::ROTR)
1475         RotAmt = (VTBits-RotAmt) & (VTBits-1);
1476
1477       // If we aren't rotating out all of the known-in sign bits, return the
1478       // number that are left.  This handles rotl(sext(x), 1) for example.
1479       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1480       if (Tmp > RotAmt+1) return Tmp-RotAmt;
1481     }
1482     break;
1483   case ISD::ADD:
1484     // Add can have at most one carry bit.  Thus we know that the output
1485     // is, at worst, one more bit than the inputs.
1486     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1487     if (Tmp == 1) return 1;  // Early out.
1488       
1489     // Special case decrementing a value (ADD X, -1):
1490     if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1491       if (CRHS->isAllOnesValue()) {
1492         uint64_t KnownZero, KnownOne;
1493         uint64_t Mask = MVT::getIntVTBitMask(VT);
1494         ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1495         
1496         // If the input is known to be 0 or 1, the output is 0/-1, which is all
1497         // sign bits set.
1498         if ((KnownZero|1) == Mask)
1499           return VTBits;
1500         
1501         // If we are subtracting one from a positive number, there is no carry
1502         // out of the result.
1503         if (KnownZero & MVT::getIntVTSignBit(VT))
1504           return Tmp;
1505       }
1506       
1507     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1508     if (Tmp2 == 1) return 1;
1509       return std::min(Tmp, Tmp2)-1;
1510     break;
1511     
1512   case ISD::SUB:
1513     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1514     if (Tmp2 == 1) return 1;
1515       
1516     // Handle NEG.
1517     if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1518       if (CLHS->getValue() == 0) {
1519         uint64_t KnownZero, KnownOne;
1520         uint64_t Mask = MVT::getIntVTBitMask(VT);
1521         ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1522         // If the input is known to be 0 or 1, the output is 0/-1, which is all
1523         // sign bits set.
1524         if ((KnownZero|1) == Mask)
1525           return VTBits;
1526         
1527         // If the input is known to be positive (the sign bit is known clear),
1528         // the output of the NEG has the same number of sign bits as the input.
1529         if (KnownZero & MVT::getIntVTSignBit(VT))
1530           return Tmp2;
1531         
1532         // Otherwise, we treat this like a SUB.
1533       }
1534     
1535     // Sub can have at most one carry bit.  Thus we know that the output
1536     // is, at worst, one more bit than the inputs.
1537     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1538     if (Tmp == 1) return 1;  // Early out.
1539       return std::min(Tmp, Tmp2)-1;
1540     break;
1541   case ISD::TRUNCATE:
1542     // FIXME: it's tricky to do anything useful for this, but it is an important
1543     // case for targets like X86.
1544     break;
1545   }
1546   
1547   // Handle LOADX separately here. EXTLOAD case will fallthrough.
1548   if (Op.getOpcode() == ISD::LOAD) {
1549     LoadSDNode *LD = cast<LoadSDNode>(Op);
1550     unsigned ExtType = LD->getExtensionType();
1551     switch (ExtType) {
1552     default: break;
1553     case ISD::SEXTLOAD:    // '17' bits known
1554       Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1555       return VTBits-Tmp+1;
1556     case ISD::ZEXTLOAD:    // '16' bits known
1557       Tmp = MVT::getSizeInBits(LD->getLoadedVT());
1558       return VTBits-Tmp;
1559     }
1560   }
1561
1562   // Allow the target to implement this method for its nodes.
1563   if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1564       Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || 
1565       Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1566       Op.getOpcode() == ISD::INTRINSIC_VOID) {
1567     unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
1568     if (NumBits > 1) return NumBits;
1569   }
1570   
1571   // Finally, if we can prove that the top bits of the result are 0's or 1's,
1572   // use this information.
1573   uint64_t KnownZero, KnownOne;
1574   uint64_t Mask = MVT::getIntVTBitMask(VT);
1575   ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1576   
1577   uint64_t SignBit = MVT::getIntVTSignBit(VT);
1578   if (KnownZero & SignBit) {        // SignBit is 0
1579     Mask = KnownZero;
1580   } else if (KnownOne & SignBit) {  // SignBit is 1;
1581     Mask = KnownOne;
1582   } else {
1583     // Nothing known.
1584     return 1;
1585   }
1586   
1587   // Okay, we know that the sign bit in Mask is set.  Use CLZ to determine
1588   // the number of identical bits in the top of the input value.
1589   Mask ^= ~0ULL;
1590   Mask <<= 64-VTBits;
1591   // Return # leading zeros.  We use 'min' here in case Val was zero before
1592   // shifting.  We don't want to return '64' as for an i32 "0".
1593   return std::min(VTBits, CountLeadingZeros_64(Mask));
1594 }
1595
1596
1597 /// getNode - Gets or creates the specified node.
1598 ///
1599 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
1600   FoldingSetNodeID ID;
1601   AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
1602   void *IP = 0;
1603   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1604     return SDOperand(E, 0);
1605   SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
1606   CSEMap.InsertNode(N, IP);
1607   
1608   AllNodes.push_back(N);
1609   return SDOperand(N, 0);
1610 }
1611
1612 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1613                                 SDOperand Operand) {
1614   unsigned Tmp1;
1615   // Constant fold unary operations with an integer constant operand.
1616   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1617     uint64_t Val = C->getValue();
1618     switch (Opcode) {
1619     default: break;
1620     case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
1621     case ISD::ANY_EXTEND:
1622     case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1623     case ISD::TRUNCATE:    return getConstant(Val, VT);
1624     case ISD::UINT_TO_FP:
1625     case ISD::SINT_TO_FP: {
1626       const uint64_t zero[] = {0, 0};
1627       // No compile time operations on this type.
1628       if (VT==MVT::ppcf128)
1629         break;
1630       APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
1631       (void)apf.convertFromZeroExtendedInteger(&Val, 
1632                                MVT::getSizeInBits(Operand.getValueType()), 
1633                                Opcode==ISD::SINT_TO_FP,
1634                                APFloat::rmNearestTiesToEven);
1635       return getConstantFP(apf, VT);
1636     }
1637     case ISD::BIT_CONVERT:
1638       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
1639         return getConstantFP(BitsToFloat(Val), VT);
1640       else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
1641         return getConstantFP(BitsToDouble(Val), VT);
1642       break;
1643     case ISD::BSWAP:
1644       switch(VT) {
1645       default: assert(0 && "Invalid bswap!"); break;
1646       case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
1647       case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
1648       case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
1649       }
1650       break;
1651     case ISD::CTPOP:
1652       switch(VT) {
1653       default: assert(0 && "Invalid ctpop!"); break;
1654       case MVT::i1: return getConstant(Val != 0, VT);
1655       case MVT::i8: 
1656         Tmp1 = (unsigned)Val & 0xFF;
1657         return getConstant(CountPopulation_32(Tmp1), VT);
1658       case MVT::i16:
1659         Tmp1 = (unsigned)Val & 0xFFFF;
1660         return getConstant(CountPopulation_32(Tmp1), VT);
1661       case MVT::i32:
1662         return getConstant(CountPopulation_32((unsigned)Val), VT);
1663       case MVT::i64:
1664         return getConstant(CountPopulation_64(Val), VT);
1665       }
1666     case ISD::CTLZ:
1667       switch(VT) {
1668       default: assert(0 && "Invalid ctlz!"); break;
1669       case MVT::i1: return getConstant(Val == 0, VT);
1670       case MVT::i8: 
1671         Tmp1 = (unsigned)Val & 0xFF;
1672         return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1673       case MVT::i16:
1674         Tmp1 = (unsigned)Val & 0xFFFF;
1675         return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1676       case MVT::i32:
1677         return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1678       case MVT::i64:
1679         return getConstant(CountLeadingZeros_64(Val), VT);
1680       }
1681     case ISD::CTTZ:
1682       switch(VT) {
1683       default: assert(0 && "Invalid cttz!"); break;
1684       case MVT::i1: return getConstant(Val == 0, VT);
1685       case MVT::i8: 
1686         Tmp1 = (unsigned)Val | 0x100;
1687         return getConstant(CountTrailingZeros_32(Tmp1), VT);
1688       case MVT::i16:
1689         Tmp1 = (unsigned)Val | 0x10000;
1690         return getConstant(CountTrailingZeros_32(Tmp1), VT);
1691       case MVT::i32:
1692         return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1693       case MVT::i64:
1694         return getConstant(CountTrailingZeros_64(Val), VT);
1695       }
1696     }
1697   }
1698
1699   // Constant fold unary operations with a floating point constant operand.
1700   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val)) {
1701     APFloat V = C->getValueAPF();    // make copy
1702     if (VT!=MVT::ppcf128 && Operand.getValueType()!=MVT::ppcf128) {
1703       switch (Opcode) {
1704       case ISD::FNEG:
1705         V.changeSign();
1706         return getConstantFP(V, VT);
1707       case ISD::FABS:
1708         V.clearSign();
1709         return getConstantFP(V, VT);
1710       case ISD::FP_ROUND:
1711       case ISD::FP_EXTEND:
1712         // This can return overflow, underflow, or inexact; we don't care.
1713         // FIXME need to be more flexible about rounding mode.
1714         (void) V.convert(VT==MVT::f32 ? APFloat::IEEEsingle : 
1715                          VT==MVT::f64 ? APFloat::IEEEdouble :
1716                          VT==MVT::f80 ? APFloat::x87DoubleExtended :
1717                          VT==MVT::f128 ? APFloat::IEEEquad :
1718                          APFloat::Bogus,
1719                          APFloat::rmNearestTiesToEven);
1720         return getConstantFP(V, VT);
1721       case ISD::FP_TO_SINT:
1722       case ISD::FP_TO_UINT: {
1723         integerPart x;
1724         assert(integerPartWidth >= 64);
1725         // FIXME need to be more flexible about rounding mode.
1726         APFloat::opStatus s = V.convertToInteger(&x, 64U,
1727                               Opcode==ISD::FP_TO_SINT,
1728                               APFloat::rmTowardZero);
1729         if (s==APFloat::opInvalidOp)     // inexact is OK, in fact usual
1730           break;
1731         return getConstant(x, VT);
1732       }
1733       case ISD::BIT_CONVERT:
1734         if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1735           return getConstant((uint32_t)V.convertToAPInt().getZExtValue(), VT);
1736         else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1737           return getConstant(V.convertToAPInt().getZExtValue(), VT);
1738         break;
1739       }
1740     }
1741   }
1742
1743   unsigned OpOpcode = Operand.Val->getOpcode();
1744   switch (Opcode) {
1745   case ISD::TokenFactor:
1746     return Operand;         // Factor of one node?  No factor.
1747   case ISD::FP_ROUND:
1748   case ISD::FP_EXTEND:
1749     assert(MVT::isFloatingPoint(VT) &&
1750            MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1751     break;
1752   case ISD::SIGN_EXTEND:
1753     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1754            "Invalid SIGN_EXTEND!");
1755     if (Operand.getValueType() == VT) return Operand;   // noop extension
1756     assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1757            && "Invalid sext node, dst < src!");
1758     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1759       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1760     break;
1761   case ISD::ZERO_EXTEND:
1762     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1763            "Invalid ZERO_EXTEND!");
1764     if (Operand.getValueType() == VT) return Operand;   // noop extension
1765     assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1766            && "Invalid zext node, dst < src!");
1767     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
1768       return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
1769     break;
1770   case ISD::ANY_EXTEND:
1771     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1772            "Invalid ANY_EXTEND!");
1773     if (Operand.getValueType() == VT) return Operand;   // noop extension
1774     assert(MVT::getSizeInBits(Operand.getValueType()) < MVT::getSizeInBits(VT)
1775            && "Invalid anyext node, dst < src!");
1776     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1777       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
1778       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1779     break;
1780   case ISD::TRUNCATE:
1781     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1782            "Invalid TRUNCATE!");
1783     if (Operand.getValueType() == VT) return Operand;   // noop truncate
1784     assert(MVT::getSizeInBits(Operand.getValueType()) > MVT::getSizeInBits(VT)
1785            && "Invalid truncate node, src < dst!");
1786     if (OpOpcode == ISD::TRUNCATE)
1787       return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1788     else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1789              OpOpcode == ISD::ANY_EXTEND) {
1790       // If the source is smaller than the dest, we still need an extend.
1791       if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1792           < MVT::getSizeInBits(VT))
1793         return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1794       else if (MVT::getSizeInBits(Operand.Val->getOperand(0).getValueType())
1795                > MVT::getSizeInBits(VT))
1796         return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1797       else
1798         return Operand.Val->getOperand(0);
1799     }
1800     break;
1801   case ISD::BIT_CONVERT:
1802     // Basic sanity checking.
1803     assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
1804            && "Cannot BIT_CONVERT between types of different sizes!");
1805     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
1806     if (OpOpcode == ISD::BIT_CONVERT)  // bitconv(bitconv(x)) -> bitconv(x)
1807       return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
1808     if (OpOpcode == ISD::UNDEF)
1809       return getNode(ISD::UNDEF, VT);
1810     break;
1811   case ISD::SCALAR_TO_VECTOR:
1812     assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1813            MVT::getVectorElementType(VT) == Operand.getValueType() &&
1814            "Illegal SCALAR_TO_VECTOR node!");
1815     break;
1816   case ISD::FNEG:
1817     if (OpOpcode == ISD::FSUB)   // -(X-Y) -> (Y-X)
1818       return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
1819                      Operand.Val->getOperand(0));
1820     if (OpOpcode == ISD::FNEG)  // --X -> X
1821       return Operand.Val->getOperand(0);
1822     break;
1823   case ISD::FABS:
1824     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
1825       return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1826     break;
1827   }
1828
1829   SDNode *N;
1830   SDVTList VTs = getVTList(VT);
1831   if (VT != MVT::Flag) { // Don't CSE flag producing nodes
1832     FoldingSetNodeID ID;
1833     SDOperand Ops[1] = { Operand };
1834     AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
1835     void *IP = 0;
1836     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1837       return SDOperand(E, 0);
1838     N = new UnarySDNode(Opcode, VTs, Operand);
1839     CSEMap.InsertNode(N, IP);
1840   } else {
1841     N = new UnarySDNode(Opcode, VTs, Operand);
1842   }
1843   AllNodes.push_back(N);
1844   return SDOperand(N, 0);
1845 }
1846
1847
1848
1849 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1850                                 SDOperand N1, SDOperand N2) {
1851 #ifndef NDEBUG
1852   switch (Opcode) {
1853   case ISD::TokenFactor:
1854     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1855            N2.getValueType() == MVT::Other && "Invalid token factor!");
1856     break;
1857   case ISD::AND:
1858   case ISD::OR:
1859   case ISD::XOR:
1860   case ISD::UDIV:
1861   case ISD::UREM:
1862   case ISD::MULHU:
1863   case ISD::MULHS:
1864     assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1865     // fall through
1866   case ISD::ADD:
1867   case ISD::SUB:
1868   case ISD::MUL:
1869   case ISD::SDIV:
1870   case ISD::SREM:
1871     assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1872     // fall through.
1873   case ISD::FADD:
1874   case ISD::FSUB:
1875   case ISD::FMUL:
1876   case ISD::FDIV:
1877   case ISD::FREM:
1878     assert(N1.getValueType() == N2.getValueType() &&
1879            N1.getValueType() == VT && "Binary operator types must match!");
1880     break;
1881   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
1882     assert(N1.getValueType() == VT &&
1883            MVT::isFloatingPoint(N1.getValueType()) && 
1884            MVT::isFloatingPoint(N2.getValueType()) &&
1885            "Invalid FCOPYSIGN!");
1886     break;
1887   case ISD::SHL:
1888   case ISD::SRA:
1889   case ISD::SRL:
1890   case ISD::ROTL:
1891   case ISD::ROTR:
1892     assert(VT == N1.getValueType() &&
1893            "Shift operators return type must be the same as their first arg");
1894     assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
1895            VT != MVT::i1 && "Shifts only work on integers");
1896     break;
1897   case ISD::FP_ROUND_INREG: {
1898     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1899     assert(VT == N1.getValueType() && "Not an inreg round!");
1900     assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1901            "Cannot FP_ROUND_INREG integer types");
1902     assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1903            "Not rounding down!");
1904     break;
1905   }
1906   case ISD::AssertSext:
1907   case ISD::AssertZext:
1908   case ISD::SIGN_EXTEND_INREG: {
1909     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1910     assert(VT == N1.getValueType() && "Not an inreg extend!");
1911     assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1912            "Cannot *_EXTEND_INREG FP types");
1913     assert(MVT::getSizeInBits(EVT) <= MVT::getSizeInBits(VT) &&
1914            "Not extending!");
1915   }
1916
1917   default: break;
1918   }
1919 #endif
1920
1921   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1922   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1923   if (N1C) {
1924     if (Opcode == ISD::SIGN_EXTEND_INREG) {
1925       int64_t Val = N1C->getValue();
1926       unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1927       Val <<= 64-FromBits;
1928       Val >>= 64-FromBits;
1929       return getConstant(Val, VT);
1930     }
1931     
1932     if (N2C) {
1933       uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1934       switch (Opcode) {
1935       case ISD::ADD: return getConstant(C1 + C2, VT);
1936       case ISD::SUB: return getConstant(C1 - C2, VT);
1937       case ISD::MUL: return getConstant(C1 * C2, VT);
1938       case ISD::UDIV:
1939         if (C2) return getConstant(C1 / C2, VT);
1940         break;
1941       case ISD::UREM :
1942         if (C2) return getConstant(C1 % C2, VT);
1943         break;
1944       case ISD::SDIV :
1945         if (C2) return getConstant(N1C->getSignExtended() /
1946                                    N2C->getSignExtended(), VT);
1947         break;
1948       case ISD::SREM :
1949         if (C2) return getConstant(N1C->getSignExtended() %
1950                                    N2C->getSignExtended(), VT);
1951         break;
1952       case ISD::AND  : return getConstant(C1 & C2, VT);
1953       case ISD::OR   : return getConstant(C1 | C2, VT);
1954       case ISD::XOR  : return getConstant(C1 ^ C2, VT);
1955       case ISD::SHL  : return getConstant(C1 << C2, VT);
1956       case ISD::SRL  : return getConstant(C1 >> C2, VT);
1957       case ISD::SRA  : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
1958       case ISD::ROTL : 
1959         return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1960                            VT);
1961       case ISD::ROTR : 
1962         return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)), 
1963                            VT);
1964       default: break;
1965       }
1966     } else {      // Cannonicalize constant to RHS if commutative
1967       if (isCommutativeBinOp(Opcode)) {
1968         std::swap(N1C, N2C);
1969         std::swap(N1, N2);
1970       }
1971     }
1972   }
1973
1974   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1975   ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
1976   if (N1CFP) {
1977     if (N2CFP && VT!=MVT::ppcf128) {
1978       APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
1979       APFloat::opStatus s;
1980       switch (Opcode) {
1981       case ISD::FADD: 
1982         s = V1.add(V2, APFloat::rmNearestTiesToEven);
1983         if (s!=APFloat::opInvalidOp)
1984           return getConstantFP(V1, VT);
1985         break;
1986       case ISD::FSUB: 
1987         s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
1988         if (s!=APFloat::opInvalidOp)
1989           return getConstantFP(V1, VT);
1990         break;
1991       case ISD::FMUL:
1992         s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
1993         if (s!=APFloat::opInvalidOp)
1994           return getConstantFP(V1, VT);
1995         break;
1996       case ISD::FDIV:
1997         s = V1.divide(V2, APFloat::rmNearestTiesToEven);
1998         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
1999           return getConstantFP(V1, VT);
2000         break;
2001       case ISD::FREM :
2002         s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2003         if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2004           return getConstantFP(V1, VT);
2005         break;
2006       case ISD::FCOPYSIGN:
2007         V1.copySign(V2);
2008         return getConstantFP(V1, VT);
2009       default: break;
2010       }
2011     } else {      // Cannonicalize constant to RHS if commutative
2012       if (isCommutativeBinOp(Opcode)) {
2013         std::swap(N1CFP, N2CFP);
2014         std::swap(N1, N2);
2015       }
2016     }
2017   }
2018   
2019   // Canonicalize an UNDEF to the RHS, even over a constant.
2020   if (N1.getOpcode() == ISD::UNDEF) {
2021     if (isCommutativeBinOp(Opcode)) {
2022       std::swap(N1, N2);
2023     } else {
2024       switch (Opcode) {
2025       case ISD::FP_ROUND_INREG:
2026       case ISD::SIGN_EXTEND_INREG:
2027       case ISD::SUB:
2028       case ISD::FSUB:
2029       case ISD::FDIV:
2030       case ISD::FREM:
2031       case ISD::SRA:
2032         return N1;     // fold op(undef, arg2) -> undef
2033       case ISD::UDIV:
2034       case ISD::SDIV:
2035       case ISD::UREM:
2036       case ISD::SREM:
2037       case ISD::SRL:
2038       case ISD::SHL:
2039         if (!MVT::isVector(VT)) 
2040           return getConstant(0, VT);    // fold op(undef, arg2) -> 0
2041         // For vectors, we can't easily build an all zero vector, just return
2042         // the LHS.
2043         return N2;
2044       }
2045     }
2046   }
2047   
2048   // Fold a bunch of operators when the RHS is undef. 
2049   if (N2.getOpcode() == ISD::UNDEF) {
2050     switch (Opcode) {
2051     case ISD::ADD:
2052     case ISD::ADDC:
2053     case ISD::ADDE:
2054     case ISD::SUB:
2055     case ISD::FADD:
2056     case ISD::FSUB:
2057     case ISD::FMUL:
2058     case ISD::FDIV:
2059     case ISD::FREM:
2060     case ISD::UDIV:
2061     case ISD::SDIV:
2062     case ISD::UREM:
2063     case ISD::SREM:
2064     case ISD::XOR:
2065       return N2;       // fold op(arg1, undef) -> undef
2066     case ISD::MUL: 
2067     case ISD::AND:
2068     case ISD::SRL:
2069     case ISD::SHL:
2070       if (!MVT::isVector(VT)) 
2071         return getConstant(0, VT);  // fold op(arg1, undef) -> 0
2072       // For vectors, we can't easily build an all zero vector, just return
2073       // the LHS.
2074       return N1;
2075     case ISD::OR:
2076       if (!MVT::isVector(VT)) 
2077         return getConstant(MVT::getIntVTBitMask(VT), VT);
2078       // For vectors, we can't easily build an all one vector, just return
2079       // the LHS.
2080       return N1;
2081     case ISD::SRA:
2082       return N1;
2083     }
2084   }
2085
2086   // Fold operations.
2087   switch (Opcode) {
2088   case ISD::TokenFactor:
2089     // Fold trivial token factors.
2090     if (N1.getOpcode() == ISD::EntryToken) return N2;
2091     if (N2.getOpcode() == ISD::EntryToken) return N1;
2092     break;
2093       
2094   case ISD::AND:
2095     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
2096     // worth handling here.
2097     if (N2C && N2C->getValue() == 0)
2098       return N2;
2099     break;
2100   case ISD::OR:
2101   case ISD::XOR:
2102     // (X ^| 0) -> X.  This commonly occurs when legalizing i64 values, so it's
2103     // worth handling here.
2104     if (N2C && N2C->getValue() == 0)
2105       return N1;
2106     break;
2107   case ISD::FP_ROUND_INREG:
2108     if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
2109     break;
2110   case ISD::SIGN_EXTEND_INREG: {
2111     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
2112     if (EVT == VT) return N1;  // Not actually extending
2113     break;
2114   }
2115   case ISD::EXTRACT_VECTOR_ELT:
2116     assert(N2C && "Bad EXTRACT_VECTOR_ELT!");
2117
2118     // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2119     // expanding copies of large vectors from registers.
2120     if (N1.getOpcode() == ISD::CONCAT_VECTORS &&
2121         N1.getNumOperands() > 0) {
2122       unsigned Factor =
2123         MVT::getVectorNumElements(N1.getOperand(0).getValueType());
2124       return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2125                      N1.getOperand(N2C->getValue() / Factor),
2126                      getConstant(N2C->getValue() % Factor, N2.getValueType()));
2127     }
2128
2129     // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2130     // expanding large vector constants.
2131     if (N1.getOpcode() == ISD::BUILD_VECTOR)
2132       return N1.getOperand(N2C->getValue());
2133
2134     // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2135     // operations are lowered to scalars.
2136     if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT)
2137       if (ConstantSDNode *IEC = dyn_cast<ConstantSDNode>(N1.getOperand(2))) {
2138         if (IEC == N2C)
2139           return N1.getOperand(1);
2140         else
2141           return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2142       }
2143     break;
2144   case ISD::EXTRACT_ELEMENT:
2145     assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
2146     
2147     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2148     // 64-bit integers into 32-bit parts.  Instead of building the extract of
2149     // the BUILD_PAIR, only to have legalize rip it apart, just do it now. 
2150     if (N1.getOpcode() == ISD::BUILD_PAIR)
2151       return N1.getOperand(N2C->getValue());
2152     
2153     // EXTRACT_ELEMENT of a constant int is also very common.
2154     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2155       unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
2156       return getConstant(C->getValue() >> Shift, VT);
2157     }
2158     break;
2159
2160   // FIXME: figure out how to safely handle things like
2161   // int foo(int x) { return 1 << (x & 255); }
2162   // int bar() { return foo(256); }
2163 #if 0
2164   case ISD::SHL:
2165   case ISD::SRL:
2166   case ISD::SRA:
2167     if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2168         cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
2169       return getNode(Opcode, VT, N1, N2.getOperand(0));
2170     else if (N2.getOpcode() == ISD::AND)
2171       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
2172         // If the and is only masking out bits that cannot effect the shift,
2173         // eliminate the and.
2174         unsigned NumBits = MVT::getSizeInBits(VT);
2175         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2176           return getNode(Opcode, VT, N1, N2.getOperand(0));
2177       }
2178     break;
2179 #endif
2180   }
2181
2182   // Memoize this node if possible.
2183   SDNode *N;
2184   SDVTList VTs = getVTList(VT);
2185   if (VT != MVT::Flag) {
2186     SDOperand Ops[] = { N1, N2 };
2187     FoldingSetNodeID ID;
2188     AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
2189     void *IP = 0;
2190     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2191       return SDOperand(E, 0);
2192     N = new BinarySDNode(Opcode, VTs, N1, N2);
2193     CSEMap.InsertNode(N, IP);
2194   } else {
2195     N = new BinarySDNode(Opcode, VTs, N1, N2);
2196   }
2197
2198   AllNodes.push_back(N);
2199   return SDOperand(N, 0);
2200 }
2201
2202 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2203                                 SDOperand N1, SDOperand N2, SDOperand N3) {
2204   // Perform various simplifications.
2205   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
2206   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
2207   switch (Opcode) {
2208   case ISD::SETCC: {
2209     // Use FoldSetCC to simplify SETCC's.
2210     SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
2211     if (Simp.Val) return Simp;
2212     break;
2213   }
2214   case ISD::SELECT:
2215     if (N1C)
2216       if (N1C->getValue())
2217         return N2;             // select true, X, Y -> X
2218       else
2219         return N3;             // select false, X, Y -> Y
2220
2221     if (N2 == N3) return N2;   // select C, X, X -> X
2222     break;
2223   case ISD::BRCOND:
2224     if (N2C)
2225       if (N2C->getValue()) // Unconditional branch
2226         return getNode(ISD::BR, MVT::Other, N1, N3);
2227       else
2228         return N1;         // Never-taken branch
2229     break;
2230   case ISD::VECTOR_SHUFFLE:
2231     assert(VT == N1.getValueType() && VT == N2.getValueType() &&
2232            MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
2233            N3.getOpcode() == ISD::BUILD_VECTOR &&
2234            MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
2235            "Illegal VECTOR_SHUFFLE node!");
2236     break;
2237   case ISD::BIT_CONVERT:
2238     // Fold bit_convert nodes from a type to themselves.
2239     if (N1.getValueType() == VT)
2240       return N1;
2241     break;
2242   }
2243
2244   // Memoize node if it doesn't produce a flag.
2245   SDNode *N;
2246   SDVTList VTs = getVTList(VT);
2247   if (VT != MVT::Flag) {
2248     SDOperand Ops[] = { N1, N2, N3 };
2249     FoldingSetNodeID ID;
2250     AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2251     void *IP = 0;
2252     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2253       return SDOperand(E, 0);
2254     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2255     CSEMap.InsertNode(N, IP);
2256   } else {
2257     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
2258   }
2259   AllNodes.push_back(N);
2260   return SDOperand(N, 0);
2261 }
2262
2263 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2264                                 SDOperand N1, SDOperand N2, SDOperand N3,
2265                                 SDOperand N4) {
2266   SDOperand Ops[] = { N1, N2, N3, N4 };
2267   return getNode(Opcode, VT, Ops, 4);
2268 }
2269
2270 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2271                                 SDOperand N1, SDOperand N2, SDOperand N3,
2272                                 SDOperand N4, SDOperand N5) {
2273   SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2274   return getNode(Opcode, VT, Ops, 5);
2275 }
2276
2277 SDOperand SelectionDAG::getMemcpy(SDOperand Chain, SDOperand Dest,
2278                                   SDOperand Src, SDOperand Size,
2279                                   SDOperand Align,
2280                                   SDOperand AlwaysInline) {
2281   SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2282   return getNode(ISD::MEMCPY, MVT::Other, Ops, 6);
2283 }
2284
2285 SDOperand SelectionDAG::getMemmove(SDOperand Chain, SDOperand Dest,
2286                                   SDOperand Src, SDOperand Size,
2287                                   SDOperand Align,
2288                                   SDOperand AlwaysInline) {
2289   SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2290   return getNode(ISD::MEMMOVE, MVT::Other, Ops, 6);
2291 }
2292
2293 SDOperand SelectionDAG::getMemset(SDOperand Chain, SDOperand Dest,
2294                                   SDOperand Src, SDOperand Size,
2295                                   SDOperand Align,
2296                                   SDOperand AlwaysInline) {
2297   SDOperand Ops[] = { Chain, Dest, Src, Size, Align, AlwaysInline };
2298   return getNode(ISD::MEMSET, MVT::Other, Ops, 6);
2299 }
2300
2301 SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
2302                                 SDOperand Chain, SDOperand Ptr,
2303                                 const Value *SV, int SVOffset,
2304                                 bool isVolatile, unsigned Alignment) {
2305   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2306     const Type *Ty = 0;
2307     if (VT != MVT::iPTR) {
2308       Ty = MVT::getTypeForValueType(VT);
2309     } else if (SV) {
2310       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2311       assert(PT && "Value for load must be a pointer");
2312       Ty = PT->getElementType();
2313     }  
2314     assert(Ty && "Could not get type information for load");
2315     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2316   }
2317   SDVTList VTs = getVTList(VT, MVT::Other);
2318   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2319   SDOperand Ops[] = { Chain, Ptr, Undef };
2320   FoldingSetNodeID ID;
2321   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2322   ID.AddInteger(ISD::UNINDEXED);
2323   ID.AddInteger(ISD::NON_EXTLOAD);
2324   ID.AddInteger((unsigned int)VT);
2325   ID.AddInteger(Alignment);
2326   ID.AddInteger(isVolatile);
2327   void *IP = 0;
2328   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2329     return SDOperand(E, 0);
2330   SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
2331                              ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
2332                              isVolatile);
2333   CSEMap.InsertNode(N, IP);
2334   AllNodes.push_back(N);
2335   return SDOperand(N, 0);
2336 }
2337
2338 SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
2339                                    SDOperand Chain, SDOperand Ptr,
2340                                    const Value *SV,
2341                                    int SVOffset, MVT::ValueType EVT,
2342                                    bool isVolatile, unsigned Alignment) {
2343   // If they are asking for an extending load from/to the same thing, return a
2344   // normal load.
2345   if (VT == EVT)
2346     return getLoad(VT, Chain, Ptr, SV, SVOffset, isVolatile, Alignment);
2347
2348   if (MVT::isVector(VT))
2349     assert(EVT == MVT::getVectorElementType(VT) && "Invalid vector extload!");
2350   else
2351     assert(MVT::getSizeInBits(EVT) < MVT::getSizeInBits(VT) &&
2352            "Should only be an extending load, not truncating!");
2353   assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
2354          "Cannot sign/zero extend a FP/Vector load!");
2355   assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
2356          "Cannot convert from FP to Int or Int -> FP!");
2357
2358   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2359     const Type *Ty = 0;
2360     if (VT != MVT::iPTR) {
2361       Ty = MVT::getTypeForValueType(VT);
2362     } else if (SV) {
2363       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2364       assert(PT && "Value for load must be a pointer");
2365       Ty = PT->getElementType();
2366     }  
2367     assert(Ty && "Could not get type information for load");
2368     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2369   }
2370   SDVTList VTs = getVTList(VT, MVT::Other);
2371   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2372   SDOperand Ops[] = { Chain, Ptr, Undef };
2373   FoldingSetNodeID ID;
2374   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2375   ID.AddInteger(ISD::UNINDEXED);
2376   ID.AddInteger(ExtType);
2377   ID.AddInteger((unsigned int)EVT);
2378   ID.AddInteger(Alignment);
2379   ID.AddInteger(isVolatile);
2380   void *IP = 0;
2381   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2382     return SDOperand(E, 0);
2383   SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
2384                              SV, SVOffset, Alignment, isVolatile);
2385   CSEMap.InsertNode(N, IP);
2386   AllNodes.push_back(N);
2387   return SDOperand(N, 0);
2388 }
2389
2390 SDOperand
2391 SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
2392                              SDOperand Offset, ISD::MemIndexedMode AM) {
2393   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
2394   assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
2395          "Load is already a indexed load!");
2396   MVT::ValueType VT = OrigLoad.getValueType();
2397   SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
2398   SDOperand Ops[] = { LD->getChain(), Base, Offset };
2399   FoldingSetNodeID ID;
2400   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
2401   ID.AddInteger(AM);
2402   ID.AddInteger(LD->getExtensionType());
2403   ID.AddInteger((unsigned int)(LD->getLoadedVT()));
2404   ID.AddInteger(LD->getAlignment());
2405   ID.AddInteger(LD->isVolatile());
2406   void *IP = 0;
2407   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2408     return SDOperand(E, 0);
2409   SDNode *N = new LoadSDNode(Ops, VTs, AM,
2410                              LD->getExtensionType(), LD->getLoadedVT(),
2411                              LD->getSrcValue(), LD->getSrcValueOffset(),
2412                              LD->getAlignment(), LD->isVolatile());
2413   CSEMap.InsertNode(N, IP);
2414   AllNodes.push_back(N);
2415   return SDOperand(N, 0);
2416 }
2417
2418 SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
2419                                  SDOperand Ptr, const Value *SV, int SVOffset,
2420                                  bool isVolatile, unsigned Alignment) {
2421   MVT::ValueType VT = Val.getValueType();
2422
2423   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2424     const Type *Ty = 0;
2425     if (VT != MVT::iPTR) {
2426       Ty = MVT::getTypeForValueType(VT);
2427     } else if (SV) {
2428       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2429       assert(PT && "Value for store must be a pointer");
2430       Ty = PT->getElementType();
2431     }
2432     assert(Ty && "Could not get type information for store");
2433     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2434   }
2435   SDVTList VTs = getVTList(MVT::Other);
2436   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2437   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
2438   FoldingSetNodeID ID;
2439   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2440   ID.AddInteger(ISD::UNINDEXED);
2441   ID.AddInteger(false);
2442   ID.AddInteger((unsigned int)VT);
2443   ID.AddInteger(Alignment);
2444   ID.AddInteger(isVolatile);
2445   void *IP = 0;
2446   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2447     return SDOperand(E, 0);
2448   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
2449                               VT, SV, SVOffset, Alignment, isVolatile);
2450   CSEMap.InsertNode(N, IP);
2451   AllNodes.push_back(N);
2452   return SDOperand(N, 0);
2453 }
2454
2455 SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
2456                                       SDOperand Ptr, const Value *SV,
2457                                       int SVOffset, MVT::ValueType SVT,
2458                                       bool isVolatile, unsigned Alignment) {
2459   MVT::ValueType VT = Val.getValueType();
2460
2461   if (VT == SVT)
2462     return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
2463
2464   assert(MVT::getSizeInBits(VT) > MVT::getSizeInBits(SVT) &&
2465          "Not a truncation?");
2466   assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
2467          "Can't do FP-INT conversion!");
2468
2469   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
2470     const Type *Ty = 0;
2471     if (VT != MVT::iPTR) {
2472       Ty = MVT::getTypeForValueType(VT);
2473     } else if (SV) {
2474       const PointerType *PT = dyn_cast<PointerType>(SV->getType());
2475       assert(PT && "Value for store must be a pointer");
2476       Ty = PT->getElementType();
2477     }
2478     assert(Ty && "Could not get type information for store");
2479     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
2480   }
2481   SDVTList VTs = getVTList(MVT::Other);
2482   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
2483   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
2484   FoldingSetNodeID ID;
2485   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2486   ID.AddInteger(ISD::UNINDEXED);
2487   ID.AddInteger(1);
2488   ID.AddInteger((unsigned int)SVT);
2489   ID.AddInteger(Alignment);
2490   ID.AddInteger(isVolatile);
2491   void *IP = 0;
2492   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2493     return SDOperand(E, 0);
2494   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
2495                               SVT, SV, SVOffset, Alignment, isVolatile);
2496   CSEMap.InsertNode(N, IP);
2497   AllNodes.push_back(N);
2498   return SDOperand(N, 0);
2499 }
2500
2501 SDOperand
2502 SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
2503                               SDOperand Offset, ISD::MemIndexedMode AM) {
2504   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
2505   assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
2506          "Store is already a indexed store!");
2507   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
2508   SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
2509   FoldingSetNodeID ID;
2510   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
2511   ID.AddInteger(AM);
2512   ID.AddInteger(ST->isTruncatingStore());
2513   ID.AddInteger((unsigned int)(ST->getStoredVT()));
2514   ID.AddInteger(ST->getAlignment());
2515   ID.AddInteger(ST->isVolatile());
2516   void *IP = 0;
2517   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2518     return SDOperand(E, 0);
2519   SDNode *N = new StoreSDNode(Ops, VTs, AM,
2520                               ST->isTruncatingStore(), ST->getStoredVT(),
2521                               ST->getSrcValue(), ST->getSrcValueOffset(),
2522                               ST->getAlignment(), ST->isVolatile());
2523   CSEMap.InsertNode(N, IP);
2524   AllNodes.push_back(N);
2525   return SDOperand(N, 0);
2526 }
2527
2528 SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
2529                                  SDOperand Chain, SDOperand Ptr,
2530                                  SDOperand SV) {
2531   SDOperand Ops[] = { Chain, Ptr, SV };
2532   return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
2533 }
2534
2535 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
2536                                 const SDOperand *Ops, unsigned NumOps) {
2537   switch (NumOps) {
2538   case 0: return getNode(Opcode, VT);
2539   case 1: return getNode(Opcode, VT, Ops[0]);
2540   case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
2541   case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
2542   default: break;
2543   }
2544   
2545   switch (Opcode) {
2546   default: break;
2547   case ISD::SELECT_CC: {
2548     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
2549     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
2550            "LHS and RHS of condition must have same type!");
2551     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2552            "True and False arms of SelectCC must have same type!");
2553     assert(Ops[2].getValueType() == VT &&
2554            "select_cc node must be of same type as true and false value!");
2555     break;
2556   }
2557   case ISD::BR_CC: {
2558     assert(NumOps == 5 && "BR_CC takes 5 operands!");
2559     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
2560            "LHS/RHS of comparison should match types!");
2561     break;
2562   }
2563   }
2564
2565   // Memoize nodes.
2566   SDNode *N;
2567   SDVTList VTs = getVTList(VT);
2568   if (VT != MVT::Flag) {
2569     FoldingSetNodeID ID;
2570     AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
2571     void *IP = 0;
2572     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2573       return SDOperand(E, 0);
2574     N = new SDNode(Opcode, VTs, Ops, NumOps);
2575     CSEMap.InsertNode(N, IP);
2576   } else {
2577     N = new SDNode(Opcode, VTs, Ops, NumOps);
2578   }
2579   AllNodes.push_back(N);
2580   return SDOperand(N, 0);
2581 }
2582
2583 SDOperand SelectionDAG::getNode(unsigned Opcode,
2584                                 std::vector<MVT::ValueType> &ResultTys,
2585                                 const SDOperand *Ops, unsigned NumOps) {
2586   return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
2587                  Ops, NumOps);
2588 }
2589
2590 SDOperand SelectionDAG::getNode(unsigned Opcode,
2591                                 const MVT::ValueType *VTs, unsigned NumVTs,
2592                                 const SDOperand *Ops, unsigned NumOps) {
2593   if (NumVTs == 1)
2594     return getNode(Opcode, VTs[0], Ops, NumOps);
2595   return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
2596 }  
2597   
2598 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2599                                 const SDOperand *Ops, unsigned NumOps) {
2600   if (VTList.NumVTs == 1)
2601     return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
2602
2603   switch (Opcode) {
2604   // FIXME: figure out how to safely handle things like
2605   // int foo(int x) { return 1 << (x & 255); }
2606   // int bar() { return foo(256); }
2607 #if 0
2608   case ISD::SRA_PARTS:
2609   case ISD::SRL_PARTS:
2610   case ISD::SHL_PARTS:
2611     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2612         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
2613       return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2614     else if (N3.getOpcode() == ISD::AND)
2615       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2616         // If the and is only masking out bits that cannot effect the shift,
2617         // eliminate the and.
2618         unsigned NumBits = MVT::getSizeInBits(VT)*2;
2619         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2620           return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2621       }
2622     break;
2623 #endif
2624   }
2625
2626   // Memoize the node unless it returns a flag.
2627   SDNode *N;
2628   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
2629     FoldingSetNodeID ID;
2630     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
2631     void *IP = 0;
2632     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2633       return SDOperand(E, 0);
2634     if (NumOps == 1)
2635       N = new UnarySDNode(Opcode, VTList, Ops[0]);
2636     else if (NumOps == 2)
2637       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2638     else if (NumOps == 3)
2639       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2640     else
2641       N = new SDNode(Opcode, VTList, Ops, NumOps);
2642     CSEMap.InsertNode(N, IP);
2643   } else {
2644     if (NumOps == 1)
2645       N = new UnarySDNode(Opcode, VTList, Ops[0]);
2646     else if (NumOps == 2)
2647       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
2648     else if (NumOps == 3)
2649       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
2650     else
2651       N = new SDNode(Opcode, VTList, Ops, NumOps);
2652   }
2653   AllNodes.push_back(N);
2654   return SDOperand(N, 0);
2655 }
2656
2657 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
2658   return getNode(Opcode, VTList, 0, 0);
2659 }
2660
2661 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2662                                 SDOperand N1) {
2663   SDOperand Ops[] = { N1 };
2664   return getNode(Opcode, VTList, Ops, 1);
2665 }
2666
2667 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2668                                 SDOperand N1, SDOperand N2) {
2669   SDOperand Ops[] = { N1, N2 };
2670   return getNode(Opcode, VTList, Ops, 2);
2671 }
2672
2673 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2674                                 SDOperand N1, SDOperand N2, SDOperand N3) {
2675   SDOperand Ops[] = { N1, N2, N3 };
2676   return getNode(Opcode, VTList, Ops, 3);
2677 }
2678
2679 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2680                                 SDOperand N1, SDOperand N2, SDOperand N3,
2681                                 SDOperand N4) {
2682   SDOperand Ops[] = { N1, N2, N3, N4 };
2683   return getNode(Opcode, VTList, Ops, 4);
2684 }
2685
2686 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
2687                                 SDOperand N1, SDOperand N2, SDOperand N3,
2688                                 SDOperand N4, SDOperand N5) {
2689   SDOperand Ops[] = { N1, N2, N3, N4, N5 };
2690   return getNode(Opcode, VTList, Ops, 5);
2691 }
2692
2693 SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
2694   return makeVTList(SDNode::getValueTypeList(VT), 1);
2695 }
2696
2697 SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
2698   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2699        E = VTList.end(); I != E; ++I) {
2700     if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
2701       return makeVTList(&(*I)[0], 2);
2702   }
2703   std::vector<MVT::ValueType> V;
2704   V.push_back(VT1);
2705   V.push_back(VT2);
2706   VTList.push_front(V);
2707   return makeVTList(&(*VTList.begin())[0], 2);
2708 }
2709 SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
2710                                  MVT::ValueType VT3) {
2711   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2712        E = VTList.end(); I != E; ++I) {
2713     if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
2714         (*I)[2] == VT3)
2715       return makeVTList(&(*I)[0], 3);
2716   }
2717   std::vector<MVT::ValueType> V;
2718   V.push_back(VT1);
2719   V.push_back(VT2);
2720   V.push_back(VT3);
2721   VTList.push_front(V);
2722   return makeVTList(&(*VTList.begin())[0], 3);
2723 }
2724
2725 SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
2726   switch (NumVTs) {
2727     case 0: assert(0 && "Cannot have nodes without results!");
2728     case 1: return getVTList(VTs[0]);
2729     case 2: return getVTList(VTs[0], VTs[1]);
2730     case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
2731     default: break;
2732   }
2733
2734   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
2735        E = VTList.end(); I != E; ++I) {
2736     if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
2737    
2738     bool NoMatch = false;
2739     for (unsigned i = 2; i != NumVTs; ++i)
2740       if (VTs[i] != (*I)[i]) {
2741         NoMatch = true;
2742         break;
2743       }
2744     if (!NoMatch)
2745       return makeVTList(&*I->begin(), NumVTs);
2746   }
2747   
2748   VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
2749   return makeVTList(&*VTList.begin()->begin(), NumVTs);
2750 }
2751
2752
2753 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
2754 /// specified operands.  If the resultant node already exists in the DAG,
2755 /// this does not modify the specified node, instead it returns the node that
2756 /// already exists.  If the resultant node does not exist in the DAG, the
2757 /// input node is returned.  As a degenerate case, if you specify the same
2758 /// input operands as the node already has, the input node is returned.
2759 SDOperand SelectionDAG::
2760 UpdateNodeOperands(SDOperand InN, SDOperand Op) {
2761   SDNode *N = InN.Val;
2762   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
2763   
2764   // Check to see if there is no change.
2765   if (Op == N->getOperand(0)) return InN;
2766   
2767   // See if the modified node already exists.
2768   void *InsertPos = 0;
2769   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
2770     return SDOperand(Existing, InN.ResNo);
2771   
2772   // Nope it doesn't.  Remove the node from it's current place in the maps.
2773   if (InsertPos)
2774     RemoveNodeFromCSEMaps(N);
2775   
2776   // Now we update the operands.
2777   N->OperandList[0].Val->removeUser(N);
2778   Op.Val->addUser(N);
2779   N->OperandList[0] = Op;
2780   
2781   // If this gets put into a CSE map, add it.
2782   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2783   return InN;
2784 }
2785
2786 SDOperand SelectionDAG::
2787 UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
2788   SDNode *N = InN.Val;
2789   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
2790   
2791   // Check to see if there is no change.
2792   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
2793     return InN;   // No operands changed, just return the input node.
2794   
2795   // See if the modified node already exists.
2796   void *InsertPos = 0;
2797   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
2798     return SDOperand(Existing, InN.ResNo);
2799   
2800   // Nope it doesn't.  Remove the node from it's current place in the maps.
2801   if (InsertPos)
2802     RemoveNodeFromCSEMaps(N);
2803   
2804   // Now we update the operands.
2805   if (N->OperandList[0] != Op1) {
2806     N->OperandList[0].Val->removeUser(N);
2807     Op1.Val->addUser(N);
2808     N->OperandList[0] = Op1;
2809   }
2810   if (N->OperandList[1] != Op2) {
2811     N->OperandList[1].Val->removeUser(N);
2812     Op2.Val->addUser(N);
2813     N->OperandList[1] = Op2;
2814   }
2815   
2816   // If this gets put into a CSE map, add it.
2817   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2818   return InN;
2819 }
2820
2821 SDOperand SelectionDAG::
2822 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2823   SDOperand Ops[] = { Op1, Op2, Op3 };
2824   return UpdateNodeOperands(N, Ops, 3);
2825 }
2826
2827 SDOperand SelectionDAG::
2828 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, 
2829                    SDOperand Op3, SDOperand Op4) {
2830   SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2831   return UpdateNodeOperands(N, Ops, 4);
2832 }
2833
2834 SDOperand SelectionDAG::
2835 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2836                    SDOperand Op3, SDOperand Op4, SDOperand Op5) {
2837   SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2838   return UpdateNodeOperands(N, Ops, 5);
2839 }
2840
2841
2842 SDOperand SelectionDAG::
2843 UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
2844   SDNode *N = InN.Val;
2845   assert(N->getNumOperands() == NumOps &&
2846          "Update with wrong number of operands");
2847   
2848   // Check to see if there is no change.
2849   bool AnyChange = false;
2850   for (unsigned i = 0; i != NumOps; ++i) {
2851     if (Ops[i] != N->getOperand(i)) {
2852       AnyChange = true;
2853       break;
2854     }
2855   }
2856   
2857   // No operands changed, just return the input node.
2858   if (!AnyChange) return InN;
2859   
2860   // See if the modified node already exists.
2861   void *InsertPos = 0;
2862   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
2863     return SDOperand(Existing, InN.ResNo);
2864   
2865   // Nope it doesn't.  Remove the node from it's current place in the maps.
2866   if (InsertPos)
2867     RemoveNodeFromCSEMaps(N);
2868   
2869   // Now we update the operands.
2870   for (unsigned i = 0; i != NumOps; ++i) {
2871     if (N->OperandList[i] != Ops[i]) {
2872       N->OperandList[i].Val->removeUser(N);
2873       Ops[i].Val->addUser(N);
2874       N->OperandList[i] = Ops[i];
2875     }
2876   }
2877
2878   // If this gets put into a CSE map, add it.
2879   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2880   return InN;
2881 }
2882
2883
2884 /// MorphNodeTo - This frees the operands of the current node, resets the
2885 /// opcode, types, and operands to the specified value.  This should only be
2886 /// used by the SelectionDAG class.
2887 void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2888                          const SDOperand *Ops, unsigned NumOps) {
2889   NodeType = Opc;
2890   ValueList = L.VTs;
2891   NumValues = L.NumVTs;
2892   
2893   // Clear the operands list, updating used nodes to remove this from their
2894   // use list.
2895   for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2896     I->Val->removeUser(this);
2897   
2898   // If NumOps is larger than the # of operands we currently have, reallocate
2899   // the operand list.
2900   if (NumOps > NumOperands) {
2901     if (OperandsNeedDelete)
2902       delete [] OperandList;
2903     OperandList = new SDOperand[NumOps];
2904     OperandsNeedDelete = true;
2905   }
2906   
2907   // Assign the new operands.
2908   NumOperands = NumOps;
2909   
2910   for (unsigned i = 0, e = NumOps; i != e; ++i) {
2911     OperandList[i] = Ops[i];
2912     SDNode *N = OperandList[i].Val;
2913     N->Uses.push_back(this);
2914   }
2915 }
2916
2917 /// SelectNodeTo - These are used for target selectors to *mutate* the
2918 /// specified node to have the specified return type, Target opcode, and
2919 /// operands.  Note that target opcodes are stored as
2920 /// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
2921 ///
2922 /// Note that SelectNodeTo returns the resultant node.  If there is already a
2923 /// node of the specified opcode and operands, it returns that node instead of
2924 /// the current one.
2925 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2926                                    MVT::ValueType VT) {
2927   SDVTList VTs = getVTList(VT);
2928   FoldingSetNodeID ID;
2929   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
2930   void *IP = 0;
2931   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2932     return ON;
2933    
2934   RemoveNodeFromCSEMaps(N);
2935   
2936   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
2937
2938   CSEMap.InsertNode(N, IP);
2939   return N;
2940 }
2941
2942 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2943                                    MVT::ValueType VT, SDOperand Op1) {
2944   // If an identical node already exists, use it.
2945   SDVTList VTs = getVTList(VT);
2946   SDOperand Ops[] = { Op1 };
2947   
2948   FoldingSetNodeID ID;
2949   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
2950   void *IP = 0;
2951   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2952     return ON;
2953                                        
2954   RemoveNodeFromCSEMaps(N);
2955   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
2956   CSEMap.InsertNode(N, IP);
2957   return N;
2958 }
2959
2960 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2961                                    MVT::ValueType VT, SDOperand Op1,
2962                                    SDOperand Op2) {
2963   // If an identical node already exists, use it.
2964   SDVTList VTs = getVTList(VT);
2965   SDOperand Ops[] = { Op1, Op2 };
2966   
2967   FoldingSetNodeID ID;
2968   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2969   void *IP = 0;
2970   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2971     return ON;
2972                                        
2973   RemoveNodeFromCSEMaps(N);
2974   
2975   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2976   
2977   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2978   return N;
2979 }
2980
2981 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2982                                    MVT::ValueType VT, SDOperand Op1,
2983                                    SDOperand Op2, SDOperand Op3) {
2984   // If an identical node already exists, use it.
2985   SDVTList VTs = getVTList(VT);
2986   SDOperand Ops[] = { Op1, Op2, Op3 };
2987   FoldingSetNodeID ID;
2988   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2989   void *IP = 0;
2990   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2991     return ON;
2992                                        
2993   RemoveNodeFromCSEMaps(N);
2994   
2995   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2996
2997   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2998   return N;
2999 }
3000
3001 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3002                                    MVT::ValueType VT, const SDOperand *Ops,
3003                                    unsigned NumOps) {
3004   // If an identical node already exists, use it.
3005   SDVTList VTs = getVTList(VT);
3006   FoldingSetNodeID ID;
3007   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3008   void *IP = 0;
3009   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3010     return ON;
3011                                        
3012   RemoveNodeFromCSEMaps(N);
3013   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
3014   
3015   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3016   return N;
3017 }
3018
3019 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc, 
3020                                    MVT::ValueType VT1, MVT::ValueType VT2,
3021                                    SDOperand Op1, SDOperand Op2) {
3022   SDVTList VTs = getVTList(VT1, VT2);
3023   FoldingSetNodeID ID;
3024   SDOperand Ops[] = { Op1, Op2 };
3025   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3026   void *IP = 0;
3027   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3028     return ON;
3029
3030   RemoveNodeFromCSEMaps(N);
3031   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
3032   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3033   return N;
3034 }
3035
3036 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
3037                                    MVT::ValueType VT1, MVT::ValueType VT2,
3038                                    SDOperand Op1, SDOperand Op2, 
3039                                    SDOperand Op3) {
3040   // If an identical node already exists, use it.
3041   SDVTList VTs = getVTList(VT1, VT2);
3042   SDOperand Ops[] = { Op1, Op2, Op3 };
3043   FoldingSetNodeID ID;
3044   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3045   void *IP = 0;
3046   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
3047     return ON;
3048
3049   RemoveNodeFromCSEMaps(N);
3050
3051   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
3052   CSEMap.InsertNode(N, IP);   // Memoize the new node.
3053   return N;
3054 }
3055
3056
3057 /// getTargetNode - These are used for target selectors to create a new node
3058 /// with specified return type(s), target opcode, and operands.
3059 ///
3060 /// Note that getTargetNode returns the resultant node.  If there is already a
3061 /// node of the specified opcode and operands, it returns that node instead of
3062 /// the current one.
3063 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
3064   return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
3065 }
3066 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3067                                     SDOperand Op1) {
3068   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
3069 }
3070 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3071                                     SDOperand Op1, SDOperand Op2) {
3072   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
3073 }
3074 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3075                                     SDOperand Op1, SDOperand Op2,
3076                                     SDOperand Op3) {
3077   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
3078 }
3079 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
3080                                     const SDOperand *Ops, unsigned NumOps) {
3081   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
3082 }
3083 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3084                                     MVT::ValueType VT2) {
3085   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3086   SDOperand Op;
3087   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op, 0).Val;
3088 }
3089 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3090                                     MVT::ValueType VT2, SDOperand Op1) {
3091   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3092   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
3093 }
3094 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3095                                     MVT::ValueType VT2, SDOperand Op1,
3096                                     SDOperand Op2) {
3097   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3098   SDOperand Ops[] = { Op1, Op2 };
3099   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
3100 }
3101 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3102                                     MVT::ValueType VT2, SDOperand Op1,
3103                                     SDOperand Op2, SDOperand Op3) {
3104   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3105   SDOperand Ops[] = { Op1, Op2, Op3 };
3106   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
3107 }
3108 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
3109                                     MVT::ValueType VT2,
3110                                     const SDOperand *Ops, unsigned NumOps) {
3111   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
3112   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
3113 }
3114 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3115                                     MVT::ValueType VT2, MVT::ValueType VT3,
3116                                     SDOperand Op1, SDOperand Op2) {
3117   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3118   SDOperand Ops[] = { Op1, Op2 };
3119   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
3120 }
3121 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
3122                                     MVT::ValueType VT2, MVT::ValueType VT3,
3123                                     SDOperand Op1, SDOperand Op2,
3124                                     SDOperand Op3) {
3125   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3126   SDOperand Ops[] = { Op1, Op2, Op3 };
3127   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
3128 }
3129 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
3130                                     MVT::ValueType VT2, MVT::ValueType VT3,
3131                                     const SDOperand *Ops, unsigned NumOps) {
3132   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
3133   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
3134 }
3135 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
3136                                     MVT::ValueType VT2, MVT::ValueType VT3,
3137                                     MVT::ValueType VT4,
3138                                     const SDOperand *Ops, unsigned NumOps) {
3139   std::vector<MVT::ValueType> VTList;
3140   VTList.push_back(VT1);
3141   VTList.push_back(VT2);
3142   VTList.push_back(VT3);
3143   VTList.push_back(VT4);
3144   const MVT::ValueType *VTs = getNodeValueTypes(VTList);
3145   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 4, Ops, NumOps).Val;
3146 }
3147 SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
3148                                     std::vector<MVT::ValueType> &ResultTys,
3149                                     const SDOperand *Ops, unsigned NumOps) {
3150   const MVT::ValueType *VTs = getNodeValueTypes(ResultTys);
3151   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, ResultTys.size(),
3152                  Ops, NumOps).Val;
3153 }
3154
3155 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3156 /// This can cause recursive merging of nodes in the DAG.
3157 ///
3158 /// This version assumes From/To have a single result value.
3159 ///
3160 void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
3161                                       std::vector<SDNode*> *Deleted) {
3162   SDNode *From = FromN.Val, *To = ToN.Val;
3163   assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
3164          "Cannot replace with this method!");
3165   assert(From != To && "Cannot replace uses of with self");
3166   
3167   while (!From->use_empty()) {
3168     // Process users until they are all gone.
3169     SDNode *U = *From->use_begin();
3170     
3171     // This node is about to morph, remove its old self from the CSE maps.
3172     RemoveNodeFromCSEMaps(U);
3173     
3174     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3175          I != E; ++I)
3176       if (I->Val == From) {
3177         From->removeUser(U);
3178         I->Val = To;
3179         To->addUser(U);
3180       }
3181
3182     // Now that we have modified U, add it back to the CSE maps.  If it already
3183     // exists there, recursively merge the results together.
3184     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3185       ReplaceAllUsesWith(U, Existing, Deleted);
3186       // U is now dead.
3187       if (Deleted) Deleted->push_back(U);
3188       DeleteNodeNotInCSEMaps(U);
3189     }
3190   }
3191 }
3192
3193 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3194 /// This can cause recursive merging of nodes in the DAG.
3195 ///
3196 /// This version assumes From/To have matching types and numbers of result
3197 /// values.
3198 ///
3199 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
3200                                       std::vector<SDNode*> *Deleted) {
3201   assert(From != To && "Cannot replace uses of with self");
3202   assert(From->getNumValues() == To->getNumValues() &&
3203          "Cannot use this version of ReplaceAllUsesWith!");
3204   if (From->getNumValues() == 1) {  // If possible, use the faster version.
3205     ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
3206     return;
3207   }
3208   
3209   while (!From->use_empty()) {
3210     // Process users until they are all gone.
3211     SDNode *U = *From->use_begin();
3212     
3213     // This node is about to morph, remove its old self from the CSE maps.
3214     RemoveNodeFromCSEMaps(U);
3215     
3216     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3217          I != E; ++I)
3218       if (I->Val == From) {
3219         From->removeUser(U);
3220         I->Val = To;
3221         To->addUser(U);
3222       }
3223         
3224     // Now that we have modified U, add it back to the CSE maps.  If it already
3225     // exists there, recursively merge the results together.
3226     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3227       ReplaceAllUsesWith(U, Existing, Deleted);
3228       // U is now dead.
3229       if (Deleted) Deleted->push_back(U);
3230       DeleteNodeNotInCSEMaps(U);
3231     }
3232   }
3233 }
3234
3235 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
3236 /// This can cause recursive merging of nodes in the DAG.
3237 ///
3238 /// This version can replace From with any result values.  To must match the
3239 /// number and types of values returned by From.
3240 void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
3241                                       const SDOperand *To,
3242                                       std::vector<SDNode*> *Deleted) {
3243   if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
3244     // Degenerate case handled above.
3245     ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
3246     return;
3247   }
3248
3249   while (!From->use_empty()) {
3250     // Process users until they are all gone.
3251     SDNode *U = *From->use_begin();
3252     
3253     // This node is about to morph, remove its old self from the CSE maps.
3254     RemoveNodeFromCSEMaps(U);
3255     
3256     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
3257          I != E; ++I)
3258       if (I->Val == From) {
3259         const SDOperand &ToOp = To[I->ResNo];
3260         From->removeUser(U);
3261         *I = ToOp;
3262         ToOp.Val->addUser(U);
3263       }
3264         
3265     // Now that we have modified U, add it back to the CSE maps.  If it already
3266     // exists there, recursively merge the results together.
3267     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
3268       ReplaceAllUsesWith(U, Existing, Deleted);
3269       // U is now dead.
3270       if (Deleted) Deleted->push_back(U);
3271       DeleteNodeNotInCSEMaps(U);
3272     }
3273   }
3274 }
3275
3276 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
3277 /// uses of other values produced by From.Val alone.  The Deleted vector is
3278 /// handled the same was as for ReplaceAllUsesWith.
3279 void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
3280                                              std::vector<SDNode*> *Deleted) {
3281   assert(From != To && "Cannot replace a value with itself");
3282   // Handle the simple, trivial, case efficiently.
3283   if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
3284     ReplaceAllUsesWith(From, To, Deleted);
3285     return;
3286   }
3287   
3288   // Get all of the users of From.Val.  We want these in a nice,
3289   // deterministically ordered and uniqued set, so we use a SmallSetVector.
3290   SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
3291
3292   std::vector<SDNode*> LocalDeletionVector;
3293   
3294   // Pick a deletion vector to use.  If the user specified one, use theirs,
3295   // otherwise use a local one.
3296   std::vector<SDNode*> *DeleteVector = Deleted ? Deleted : &LocalDeletionVector;
3297   while (!Users.empty()) {
3298     // We know that this user uses some value of From.  If it is the right
3299     // value, update it.
3300     SDNode *User = Users.back();
3301     Users.pop_back();
3302     
3303     // Scan for an operand that matches From.
3304     SDOperand *Op = User->OperandList, *E = User->OperandList+User->NumOperands;
3305     for (; Op != E; ++Op)
3306       if (*Op == From) break;
3307     
3308     // If there are no matches, the user must use some other result of From.
3309     if (Op == E) continue;
3310       
3311     // Okay, we know this user needs to be updated.  Remove its old self
3312     // from the CSE maps.
3313     RemoveNodeFromCSEMaps(User);
3314     
3315     // Update all operands that match "From".
3316     for (; Op != E; ++Op) {
3317       if (*Op == From) {
3318         From.Val->removeUser(User);
3319         *Op = To;
3320         To.Val->addUser(User);
3321       }
3322     }
3323                
3324     // Now that we have modified User, add it back to the CSE maps.  If it
3325     // already exists there, recursively merge the results together.
3326     SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
3327     if (!Existing) continue;  // Continue on to next user.
3328     
3329     // If there was already an existing matching node, use ReplaceAllUsesWith
3330     // to replace the dead one with the existing one.  However, this can cause
3331     // recursive merging of other unrelated nodes down the line.  The merging
3332     // can cause deletion of nodes that used the old value.  In this case,
3333     // we have to be certain to remove them from the Users set.
3334     unsigned NumDeleted = DeleteVector->size();
3335     ReplaceAllUsesWith(User, Existing, DeleteVector);
3336     
3337     // User is now dead.
3338     DeleteVector->push_back(User);
3339     DeleteNodeNotInCSEMaps(User);
3340     
3341     // We have to be careful here, because ReplaceAllUsesWith could have
3342     // deleted a user of From, which means there may be dangling pointers
3343     // in the "Users" setvector.  Scan over the deleted node pointers and
3344     // remove them from the setvector.
3345     for (unsigned i = NumDeleted, e = DeleteVector->size(); i != e; ++i)
3346       Users.remove((*DeleteVector)[i]);
3347
3348     // If the user doesn't need the set of deleted elements, don't retain them
3349     // to the next loop iteration.
3350     if (Deleted == 0)
3351       LocalDeletionVector.clear();
3352   }
3353 }
3354
3355
3356 /// AssignNodeIds - Assign a unique node id for each node in the DAG based on
3357 /// their allnodes order. It returns the maximum id.
3358 unsigned SelectionDAG::AssignNodeIds() {
3359   unsigned Id = 0;
3360   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
3361     SDNode *N = I;
3362     N->setNodeId(Id++);
3363   }
3364   return Id;
3365 }
3366
3367 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
3368 /// based on their topological order. It returns the maximum id and a vector
3369 /// of the SDNodes* in assigned order by reference.
3370 unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
3371   unsigned DAGSize = AllNodes.size();
3372   std::vector<unsigned> InDegree(DAGSize);
3373   std::vector<SDNode*> Sources;
3374
3375   // Use a two pass approach to avoid using a std::map which is slow.
3376   unsigned Id = 0;
3377   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
3378     SDNode *N = I;
3379     N->setNodeId(Id++);
3380     unsigned Degree = N->use_size();
3381     InDegree[N->getNodeId()] = Degree;
3382     if (Degree == 0)
3383       Sources.push_back(N);
3384   }
3385
3386   TopOrder.clear();
3387   while (!Sources.empty()) {
3388     SDNode *N = Sources.back();
3389     Sources.pop_back();
3390     TopOrder.push_back(N);
3391     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
3392       SDNode *P = I->Val;
3393       unsigned Degree = --InDegree[P->getNodeId()];
3394       if (Degree == 0)
3395         Sources.push_back(P);
3396     }
3397   }
3398
3399   // Second pass, assign the actual topological order as node ids.
3400   Id = 0;
3401   for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
3402        TI != TE; ++TI)
3403     (*TI)->setNodeId(Id++);
3404
3405   return Id;
3406 }
3407
3408
3409
3410 //===----------------------------------------------------------------------===//
3411 //                              SDNode Class
3412 //===----------------------------------------------------------------------===//
3413
3414 // Out-of-line virtual method to give class a home.
3415 void SDNode::ANCHOR() {}
3416 void UnarySDNode::ANCHOR() {}
3417 void BinarySDNode::ANCHOR() {}
3418 void TernarySDNode::ANCHOR() {}
3419 void HandleSDNode::ANCHOR() {}
3420 void StringSDNode::ANCHOR() {}
3421 void ConstantSDNode::ANCHOR() {}
3422 void ConstantFPSDNode::ANCHOR() {}
3423 void GlobalAddressSDNode::ANCHOR() {}
3424 void FrameIndexSDNode::ANCHOR() {}
3425 void JumpTableSDNode::ANCHOR() {}
3426 void ConstantPoolSDNode::ANCHOR() {}
3427 void BasicBlockSDNode::ANCHOR() {}
3428 void SrcValueSDNode::ANCHOR() {}
3429 void RegisterSDNode::ANCHOR() {}
3430 void ExternalSymbolSDNode::ANCHOR() {}
3431 void CondCodeSDNode::ANCHOR() {}
3432 void VTSDNode::ANCHOR() {}
3433 void LoadSDNode::ANCHOR() {}
3434 void StoreSDNode::ANCHOR() {}
3435
3436 HandleSDNode::~HandleSDNode() {
3437   SDVTList VTs = { 0, 0 };
3438   MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0);  // Drops operand uses.
3439 }
3440
3441 GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
3442                                          MVT::ValueType VT, int o)
3443   : SDNode(isa<GlobalVariable>(GA) &&
3444            cast<GlobalVariable>(GA)->isThreadLocal() ?
3445            // Thread Local
3446            (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
3447            // Non Thread Local
3448            (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
3449            getSDVTList(VT)), Offset(o) {
3450   TheGlobal = const_cast<GlobalValue*>(GA);
3451 }
3452
3453 /// Profile - Gather unique data for the node.
3454 ///
3455 void SDNode::Profile(FoldingSetNodeID &ID) {
3456   AddNodeIDNode(ID, this);
3457 }
3458
3459 /// getValueTypeList - Return a pointer to the specified value type.
3460 ///
3461 MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
3462   if (MVT::isExtendedVT(VT)) {
3463     static std::set<MVT::ValueType> EVTs;
3464     return (MVT::ValueType *)&(*EVTs.insert(VT).first);
3465   } else {
3466     static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
3467     VTs[VT] = VT;
3468     return &VTs[VT];
3469   }
3470 }
3471
3472 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
3473 /// indicated value.  This method ignores uses of other values defined by this
3474 /// operation.
3475 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
3476   assert(Value < getNumValues() && "Bad value!");
3477
3478   // If there is only one value, this is easy.
3479   if (getNumValues() == 1)
3480     return use_size() == NUses;
3481   if (use_size() < NUses) return false;
3482
3483   SDOperand TheValue(const_cast<SDNode *>(this), Value);
3484
3485   SmallPtrSet<SDNode*, 32> UsersHandled;
3486
3487   for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3488     SDNode *User = *UI;
3489     if (User->getNumOperands() == 1 ||
3490         UsersHandled.insert(User))     // First time we've seen this?
3491       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3492         if (User->getOperand(i) == TheValue) {
3493           if (NUses == 0)
3494             return false;   // too many uses
3495           --NUses;
3496         }
3497   }
3498
3499   // Found exactly the right number of uses?
3500   return NUses == 0;
3501 }
3502
3503
3504 /// hasAnyUseOfValue - Return true if there are any use of the indicated
3505 /// value. This method ignores uses of other values defined by this operation.
3506 bool SDNode::hasAnyUseOfValue(unsigned Value) const {
3507   assert(Value < getNumValues() && "Bad value!");
3508
3509   if (use_size() == 0) return false;
3510
3511   SDOperand TheValue(const_cast<SDNode *>(this), Value);
3512
3513   SmallPtrSet<SDNode*, 32> UsersHandled;
3514
3515   for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
3516     SDNode *User = *UI;
3517     if (User->getNumOperands() == 1 ||
3518         UsersHandled.insert(User))     // First time we've seen this?
3519       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
3520         if (User->getOperand(i) == TheValue) {
3521           return true;
3522         }
3523   }
3524
3525   return false;
3526 }
3527
3528
3529 /// isOnlyUse - Return true if this node is the only use of N.
3530 ///
3531 bool SDNode::isOnlyUse(SDNode *N) const {
3532   bool Seen = false;
3533   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
3534     SDNode *User = *I;
3535     if (User == this)
3536       Seen = true;
3537     else
3538       return false;
3539   }
3540
3541   return Seen;
3542 }
3543
3544 /// isOperand - Return true if this node is an operand of N.
3545 ///
3546 bool SDOperand::isOperand(SDNode *N) const {
3547   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3548     if (*this == N->getOperand(i))
3549       return true;
3550   return false;
3551 }
3552
3553 bool SDNode::isOperand(SDNode *N) const {
3554   for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
3555     if (this == N->OperandList[i].Val)
3556       return true;
3557   return false;
3558 }
3559
3560 static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
3561                             SmallPtrSet<SDNode *, 32> &Visited) {
3562   if (found || !Visited.insert(N))
3563     return;
3564
3565   for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
3566     SDNode *Op = N->getOperand(i).Val;
3567     if (Op == P) {
3568       found = true;
3569       return;
3570     }
3571     findPredecessor(Op, P, found, Visited);
3572   }
3573 }
3574
3575 /// isPredecessor - Return true if this node is a predecessor of N. This node
3576 /// is either an operand of N or it can be reached by recursively traversing
3577 /// up the operands.
3578 /// NOTE: this is an expensive method. Use it carefully.
3579 bool SDNode::isPredecessor(SDNode *N) const {
3580   SmallPtrSet<SDNode *, 32> Visited;
3581   bool found = false;
3582   findPredecessor(N, this, found, Visited);
3583   return found;
3584 }
3585
3586 uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
3587   assert(Num < NumOperands && "Invalid child # of SDNode!");
3588   return cast<ConstantSDNode>(OperandList[Num])->getValue();
3589 }
3590
3591 std::string SDNode::getOperationName(const SelectionDAG *G) const {
3592   switch (getOpcode()) {
3593   default:
3594     if (getOpcode() < ISD::BUILTIN_OP_END)
3595       return "<<Unknown DAG Node>>";
3596     else {
3597       if (G) {
3598         if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
3599           if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
3600             return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
3601
3602         TargetLowering &TLI = G->getTargetLoweringInfo();
3603         const char *Name =
3604           TLI.getTargetNodeName(getOpcode());
3605         if (Name) return Name;
3606       }
3607
3608       return "<<Unknown Target Node>>";
3609     }
3610    
3611   case ISD::PCMARKER:      return "PCMarker";
3612   case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
3613   case ISD::SRCVALUE:      return "SrcValue";
3614   case ISD::EntryToken:    return "EntryToken";
3615   case ISD::TokenFactor:   return "TokenFactor";
3616   case ISD::AssertSext:    return "AssertSext";
3617   case ISD::AssertZext:    return "AssertZext";
3618
3619   case ISD::STRING:        return "String";
3620   case ISD::BasicBlock:    return "BasicBlock";
3621   case ISD::VALUETYPE:     return "ValueType";
3622   case ISD::Register:      return "Register";
3623
3624   case ISD::Constant:      return "Constant";
3625   case ISD::ConstantFP:    return "ConstantFP";
3626   case ISD::GlobalAddress: return "GlobalAddress";
3627   case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
3628   case ISD::FrameIndex:    return "FrameIndex";
3629   case ISD::JumpTable:     return "JumpTable";
3630   case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
3631   case ISD::RETURNADDR: return "RETURNADDR";
3632   case ISD::FRAMEADDR: return "FRAMEADDR";
3633   case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
3634   case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
3635   case ISD::EHSELECTION: return "EHSELECTION";
3636   case ISD::EH_RETURN: return "EH_RETURN";
3637   case ISD::ConstantPool:  return "ConstantPool";
3638   case ISD::ExternalSymbol: return "ExternalSymbol";
3639   case ISD::INTRINSIC_WO_CHAIN: {
3640     unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
3641     return Intrinsic::getName((Intrinsic::ID)IID);
3642   }
3643   case ISD::INTRINSIC_VOID:
3644   case ISD::INTRINSIC_W_CHAIN: {
3645     unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
3646     return Intrinsic::getName((Intrinsic::ID)IID);
3647   }
3648
3649   case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
3650   case ISD::TargetConstant: return "TargetConstant";
3651   case ISD::TargetConstantFP:return "TargetConstantFP";
3652   case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
3653   case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
3654   case ISD::TargetFrameIndex: return "TargetFrameIndex";
3655   case ISD::TargetJumpTable:  return "TargetJumpTable";
3656   case ISD::TargetConstantPool:  return "TargetConstantPool";
3657   case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
3658
3659   case ISD::CopyToReg:     return "CopyToReg";
3660   case ISD::CopyFromReg:   return "CopyFromReg";
3661   case ISD::UNDEF:         return "undef";
3662   case ISD::MERGE_VALUES:  return "merge_values";
3663   case ISD::INLINEASM:     return "inlineasm";
3664   case ISD::LABEL:         return "label";
3665   case ISD::HANDLENODE:    return "handlenode";
3666   case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
3667   case ISD::CALL:          return "call";
3668     
3669   // Unary operators
3670   case ISD::FABS:   return "fabs";
3671   case ISD::FNEG:   return "fneg";
3672   case ISD::FSQRT:  return "fsqrt";
3673   case ISD::FSIN:   return "fsin";
3674   case ISD::FCOS:   return "fcos";
3675   case ISD::FPOWI:  return "fpowi";
3676   case ISD::FPOW:   return "fpow";
3677
3678   // Binary operators
3679   case ISD::ADD:    return "add";
3680   case ISD::SUB:    return "sub";
3681   case ISD::MUL:    return "mul";
3682   case ISD::MULHU:  return "mulhu";
3683   case ISD::MULHS:  return "mulhs";
3684   case ISD::SDIV:   return "sdiv";
3685   case ISD::UDIV:   return "udiv";
3686   case ISD::SREM:   return "srem";
3687   case ISD::UREM:   return "urem";
3688   case ISD::SMUL_LOHI:  return "smul_lohi";
3689   case ISD::UMUL_LOHI:  return "umul_lohi";
3690   case ISD::SDIVREM:    return "sdivrem";
3691   case ISD::UDIVREM:    return "divrem";
3692   case ISD::AND:    return "and";
3693   case ISD::OR:     return "or";
3694   case ISD::XOR:    return "xor";
3695   case ISD::SHL:    return "shl";
3696   case ISD::SRA:    return "sra";
3697   case ISD::SRL:    return "srl";
3698   case ISD::ROTL:   return "rotl";
3699   case ISD::ROTR:   return "rotr";
3700   case ISD::FADD:   return "fadd";
3701   case ISD::FSUB:   return "fsub";
3702   case ISD::FMUL:   return "fmul";
3703   case ISD::FDIV:   return "fdiv";
3704   case ISD::FREM:   return "frem";
3705   case ISD::FCOPYSIGN: return "fcopysign";
3706
3707   case ISD::SETCC:       return "setcc";
3708   case ISD::SELECT:      return "select";
3709   case ISD::SELECT_CC:   return "select_cc";
3710   case ISD::INSERT_VECTOR_ELT:   return "insert_vector_elt";
3711   case ISD::EXTRACT_VECTOR_ELT:  return "extract_vector_elt";
3712   case ISD::CONCAT_VECTORS:      return "concat_vectors";
3713   case ISD::EXTRACT_SUBVECTOR:   return "extract_subvector";
3714   case ISD::SCALAR_TO_VECTOR:    return "scalar_to_vector";
3715   case ISD::VECTOR_SHUFFLE:      return "vector_shuffle";
3716   case ISD::CARRY_FALSE:         return "carry_false";
3717   case ISD::ADDC:        return "addc";
3718   case ISD::ADDE:        return "adde";
3719   case ISD::SUBC:        return "subc";
3720   case ISD::SUBE:        return "sube";
3721   case ISD::SHL_PARTS:   return "shl_parts";
3722   case ISD::SRA_PARTS:   return "sra_parts";
3723   case ISD::SRL_PARTS:   return "srl_parts";
3724   
3725   case ISD::EXTRACT_SUBREG:     return "extract_subreg";
3726   case ISD::INSERT_SUBREG:      return "insert_subreg";
3727   
3728   // Conversion operators.
3729   case ISD::SIGN_EXTEND: return "sign_extend";
3730   case ISD::ZERO_EXTEND: return "zero_extend";
3731   case ISD::ANY_EXTEND:  return "any_extend";
3732   case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
3733   case ISD::TRUNCATE:    return "truncate";
3734   case ISD::FP_ROUND:    return "fp_round";
3735   case ISD::FLT_ROUNDS:  return "flt_rounds";
3736   case ISD::FP_ROUND_INREG: return "fp_round_inreg";
3737   case ISD::FP_EXTEND:   return "fp_extend";
3738
3739   case ISD::SINT_TO_FP:  return "sint_to_fp";
3740   case ISD::UINT_TO_FP:  return "uint_to_fp";
3741   case ISD::FP_TO_SINT:  return "fp_to_sint";
3742   case ISD::FP_TO_UINT:  return "fp_to_uint";
3743   case ISD::BIT_CONVERT: return "bit_convert";
3744
3745     // Control flow instructions
3746   case ISD::BR:      return "br";
3747   case ISD::BRIND:   return "brind";
3748   case ISD::BR_JT:   return "br_jt";
3749   case ISD::BRCOND:  return "brcond";
3750   case ISD::BR_CC:   return "br_cc";
3751   case ISD::RET:     return "ret";
3752   case ISD::CALLSEQ_START:  return "callseq_start";
3753   case ISD::CALLSEQ_END:    return "callseq_end";
3754
3755     // Other operators
3756   case ISD::LOAD:               return "load";
3757   case ISD::STORE:              return "store";
3758   case ISD::VAARG:              return "vaarg";
3759   case ISD::VACOPY:             return "vacopy";
3760   case ISD::VAEND:              return "vaend";
3761   case ISD::VASTART:            return "vastart";
3762   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
3763   case ISD::EXTRACT_ELEMENT:    return "extract_element";
3764   case ISD::BUILD_PAIR:         return "build_pair";
3765   case ISD::STACKSAVE:          return "stacksave";
3766   case ISD::STACKRESTORE:       return "stackrestore";
3767     
3768   // Block memory operations.
3769   case ISD::MEMSET:  return "memset";
3770   case ISD::MEMCPY:  return "memcpy";
3771   case ISD::MEMMOVE: return "memmove";
3772
3773   // Bit manipulation
3774   case ISD::BSWAP:   return "bswap";
3775   case ISD::CTPOP:   return "ctpop";
3776   case ISD::CTTZ:    return "cttz";
3777   case ISD::CTLZ:    return "ctlz";
3778
3779   // Debug info
3780   case ISD::LOCATION: return "location";
3781   case ISD::DEBUG_LOC: return "debug_loc";
3782
3783   // Trampolines
3784   case ISD::TRAMPOLINE: return "trampoline";
3785
3786   case ISD::CONDCODE:
3787     switch (cast<CondCodeSDNode>(this)->get()) {
3788     default: assert(0 && "Unknown setcc condition!");
3789     case ISD::SETOEQ:  return "setoeq";
3790     case ISD::SETOGT:  return "setogt";
3791     case ISD::SETOGE:  return "setoge";
3792     case ISD::SETOLT:  return "setolt";
3793     case ISD::SETOLE:  return "setole";
3794     case ISD::SETONE:  return "setone";
3795
3796     case ISD::SETO:    return "seto";
3797     case ISD::SETUO:   return "setuo";
3798     case ISD::SETUEQ:  return "setue";
3799     case ISD::SETUGT:  return "setugt";
3800     case ISD::SETUGE:  return "setuge";
3801     case ISD::SETULT:  return "setult";
3802     case ISD::SETULE:  return "setule";
3803     case ISD::SETUNE:  return "setune";
3804
3805     case ISD::SETEQ:   return "seteq";
3806     case ISD::SETGT:   return "setgt";
3807     case ISD::SETGE:   return "setge";
3808     case ISD::SETLT:   return "setlt";
3809     case ISD::SETLE:   return "setle";
3810     case ISD::SETNE:   return "setne";
3811     }
3812   }
3813 }
3814
3815 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
3816   switch (AM) {
3817   default:
3818     return "";
3819   case ISD::PRE_INC:
3820     return "<pre-inc>";
3821   case ISD::PRE_DEC:
3822     return "<pre-dec>";
3823   case ISD::POST_INC:
3824     return "<post-inc>";
3825   case ISD::POST_DEC:
3826     return "<post-dec>";
3827   }
3828 }
3829
3830 void SDNode::dump() const { dump(0); }
3831 void SDNode::dump(const SelectionDAG *G) const {
3832   cerr << (void*)this << ": ";
3833
3834   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
3835     if (i) cerr << ",";
3836     if (getValueType(i) == MVT::Other)
3837       cerr << "ch";
3838     else
3839       cerr << MVT::getValueTypeString(getValueType(i));
3840   }
3841   cerr << " = " << getOperationName(G);
3842
3843   cerr << " ";
3844   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3845     if (i) cerr << ", ";
3846     cerr << (void*)getOperand(i).Val;
3847     if (unsigned RN = getOperand(i).ResNo)
3848       cerr << ":" << RN;
3849   }
3850
3851   if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
3852     SDNode *Mask = getOperand(2).Val;
3853     cerr << "<";
3854     for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
3855       if (i) cerr << ",";
3856       if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
3857         cerr << "u";
3858       else
3859         cerr << cast<ConstantSDNode>(Mask->getOperand(i))->getValue();
3860     }
3861     cerr << ">";
3862   }
3863
3864   if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
3865     cerr << "<" << CSDN->getValue() << ">";
3866   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
3867     if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
3868       cerr << "<" << CSDN->getValueAPF().convertToFloat() << ">";
3869     else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
3870       cerr << "<" << CSDN->getValueAPF().convertToDouble() << ">";
3871     else {
3872       cerr << "<APFloat(";
3873       CSDN->getValueAPF().convertToAPInt().dump();
3874       cerr << ")>";
3875     }
3876   } else if (const GlobalAddressSDNode *GADN =
3877              dyn_cast<GlobalAddressSDNode>(this)) {
3878     int offset = GADN->getOffset();
3879     cerr << "<";
3880     WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
3881     if (offset > 0)
3882       cerr << " + " << offset;
3883     else
3884       cerr << " " << offset;
3885   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
3886     cerr << "<" << FIDN->getIndex() << ">";
3887   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
3888     cerr << "<" << JTDN->getIndex() << ">";
3889   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
3890     int offset = CP->getOffset();
3891     if (CP->isMachineConstantPoolEntry())
3892       cerr << "<" << *CP->getMachineCPVal() << ">";
3893     else
3894       cerr << "<" << *CP->getConstVal() << ">";
3895     if (offset > 0)
3896       cerr << " + " << offset;
3897     else
3898       cerr << " " << offset;
3899   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
3900     cerr << "<";
3901     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
3902     if (LBB)
3903       cerr << LBB->getName() << " ";
3904     cerr << (const void*)BBDN->getBasicBlock() << ">";
3905   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
3906     if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
3907       cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
3908     } else {
3909       cerr << " #" << R->getReg();
3910     }
3911   } else if (const ExternalSymbolSDNode *ES =
3912              dyn_cast<ExternalSymbolSDNode>(this)) {
3913     cerr << "'" << ES->getSymbol() << "'";
3914   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
3915     if (M->getValue())
3916       cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
3917     else
3918       cerr << "<null:" << M->getOffset() << ">";
3919   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
3920     cerr << ":" << MVT::getValueTypeString(N->getVT());
3921   } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3922     const Value *SrcValue = LD->getSrcValue();
3923     int SrcOffset = LD->getSrcValueOffset();
3924     cerr << " <";
3925     if (SrcValue)
3926       cerr << SrcValue;
3927     else
3928       cerr << "null";
3929     cerr << ":" << SrcOffset << ">";
3930
3931     bool doExt = true;
3932     switch (LD->getExtensionType()) {
3933     default: doExt = false; break;
3934     case ISD::EXTLOAD:
3935       cerr << " <anyext ";
3936       break;
3937     case ISD::SEXTLOAD:
3938       cerr << " <sext ";
3939       break;
3940     case ISD::ZEXTLOAD:
3941       cerr << " <zext ";
3942       break;
3943     }
3944     if (doExt)
3945       cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
3946
3947     const char *AM = getIndexedModeName(LD->getAddressingMode());
3948     if (*AM)
3949       cerr << " " << AM;
3950     if (LD->isVolatile())
3951       cerr << " <volatile>";
3952     cerr << " alignment=" << LD->getAlignment();
3953   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3954     const Value *SrcValue = ST->getSrcValue();
3955     int SrcOffset = ST->getSrcValueOffset();
3956     cerr << " <";
3957     if (SrcValue)
3958       cerr << SrcValue;
3959     else
3960       cerr << "null";
3961     cerr << ":" << SrcOffset << ">";
3962
3963     if (ST->isTruncatingStore())
3964       cerr << " <trunc "
3965            << MVT::getValueTypeString(ST->getStoredVT()) << ">";
3966
3967     const char *AM = getIndexedModeName(ST->getAddressingMode());
3968     if (*AM)
3969       cerr << " " << AM;
3970     if (ST->isVolatile())
3971       cerr << " <volatile>";
3972     cerr << " alignment=" << ST->getAlignment();
3973   }
3974 }
3975
3976 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
3977   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3978     if (N->getOperand(i).Val->hasOneUse())
3979       DumpNodes(N->getOperand(i).Val, indent+2, G);
3980     else
3981       cerr << "\n" << std::string(indent+2, ' ')
3982            << (void*)N->getOperand(i).Val << ": <multiple use>";
3983
3984
3985   cerr << "\n" << std::string(indent, ' ');
3986   N->dump(G);
3987 }
3988
3989 void SelectionDAG::dump() const {
3990   cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
3991   std::vector<const SDNode*> Nodes;
3992   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3993        I != E; ++I)
3994     Nodes.push_back(I);
3995   
3996   std::sort(Nodes.begin(), Nodes.end());
3997
3998   for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
3999     if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
4000       DumpNodes(Nodes[i], 2, this);
4001   }
4002
4003   if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
4004
4005   cerr << "\n\n";
4006 }
4007
4008 const Type *ConstantPoolSDNode::getType() const {
4009   if (isMachineConstantPoolEntry())
4010     return Val.MachineCPVal->getType();
4011   return Val.ConstVal->getType();
4012 }