7562f669ae6f6ba23437df62eea425db1261489a
[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/GlobalValue.h"
17 #include "llvm/GlobalVariable.h"
18 #include "llvm/Intrinsics.h"
19 #include "llvm/Assembly/Writer.h"
20 #include "llvm/CodeGen/MachineBasicBlock.h"
21 #include "llvm/CodeGen/MachineConstantPool.h"
22 #include "llvm/Support/MathExtras.h"
23 #include "llvm/Target/TargetData.h"
24 #include "llvm/Target/MRegisterInfo.h"
25 #include "llvm/Target/TargetLowering.h"
26 #include "llvm/Target/TargetInstrInfo.h"
27 #include "llvm/Target/TargetMachine.h"
28 #include "llvm/ADT/SetVector.h"
29 #include "llvm/ADT/SmallPtrSet.h"
30 #include "llvm/ADT/SmallVector.h"
31 #include "llvm/ADT/StringExtras.h"
32 #include <algorithm>
33 #include <cmath>
34 using namespace llvm;
35
36 /// makeVTList - Return an instance of the SDVTList struct initialized with the
37 /// specified members.
38 static SDVTList makeVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
39   SDVTList Res = {VTs, NumVTs};
40   return Res;
41 }
42
43 //===----------------------------------------------------------------------===//
44 //                              ConstantFPSDNode Class
45 //===----------------------------------------------------------------------===//
46
47 /// isExactlyValue - We don't rely on operator== working on double values, as
48 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
49 /// As such, this method can be used to do an exact bit-for-bit comparison of
50 /// two floating point values.
51 bool ConstantFPSDNode::isExactlyValue(double V) const {
52   return DoubleToBits(V) == DoubleToBits(Value);
53 }
54
55 //===----------------------------------------------------------------------===//
56 //                              ISD Namespace
57 //===----------------------------------------------------------------------===//
58
59 /// isBuildVectorAllOnes - Return true if the specified node is a
60 /// BUILD_VECTOR where all of the elements are ~0 or undef.
61 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
62   // Look through a bit convert.
63   if (N->getOpcode() == ISD::BIT_CONVERT)
64     N = N->getOperand(0).Val;
65   
66   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
67   
68   unsigned i = 0, e = N->getNumOperands();
69   
70   // Skip over all of the undef values.
71   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
72     ++i;
73   
74   // Do not accept an all-undef vector.
75   if (i == e) return false;
76   
77   // Do not accept build_vectors that aren't all constants or which have non-~0
78   // elements.
79   SDOperand NotZero = N->getOperand(i);
80   if (isa<ConstantSDNode>(NotZero)) {
81     if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
82       return false;
83   } else if (isa<ConstantFPSDNode>(NotZero)) {
84     MVT::ValueType VT = NotZero.getValueType();
85     if (VT== MVT::f64) {
86       if (DoubleToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
87           (uint64_t)-1)
88         return false;
89     } else {
90       if (FloatToBits(cast<ConstantFPSDNode>(NotZero)->getValue()) !=
91           (uint32_t)-1)
92         return false;
93     }
94   } else
95     return false;
96   
97   // Okay, we have at least one ~0 value, check to see if the rest match or are
98   // undefs.
99   for (++i; i != e; ++i)
100     if (N->getOperand(i) != NotZero &&
101         N->getOperand(i).getOpcode() != ISD::UNDEF)
102       return false;
103   return true;
104 }
105
106
107 /// isBuildVectorAllZeros - Return true if the specified node is a
108 /// BUILD_VECTOR where all of the elements are 0 or undef.
109 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
110   // Look through a bit convert.
111   if (N->getOpcode() == ISD::BIT_CONVERT)
112     N = N->getOperand(0).Val;
113   
114   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
115   
116   unsigned i = 0, e = N->getNumOperands();
117   
118   // Skip over all of the undef values.
119   while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
120     ++i;
121   
122   // Do not accept an all-undef vector.
123   if (i == e) return false;
124   
125   // Do not accept build_vectors that aren't all constants or which have non-~0
126   // elements.
127   SDOperand Zero = N->getOperand(i);
128   if (isa<ConstantSDNode>(Zero)) {
129     if (!cast<ConstantSDNode>(Zero)->isNullValue())
130       return false;
131   } else if (isa<ConstantFPSDNode>(Zero)) {
132     if (!cast<ConstantFPSDNode>(Zero)->isExactlyValue(0.0))
133       return false;
134   } else
135     return false;
136   
137   // Okay, we have at least one ~0 value, check to see if the rest match or are
138   // undefs.
139   for (++i; i != e; ++i)
140     if (N->getOperand(i) != Zero &&
141         N->getOperand(i).getOpcode() != ISD::UNDEF)
142       return false;
143   return true;
144 }
145
146 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
147 /// when given the operation for (X op Y).
148 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
149   // To perform this operation, we just need to swap the L and G bits of the
150   // operation.
151   unsigned OldL = (Operation >> 2) & 1;
152   unsigned OldG = (Operation >> 1) & 1;
153   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
154                        (OldL << 1) |       // New G bit
155                        (OldG << 2));        // New L bit.
156 }
157
158 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
159 /// 'op' is a valid SetCC operation.
160 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
161   unsigned Operation = Op;
162   if (isInteger)
163     Operation ^= 7;   // Flip L, G, E bits, but not U.
164   else
165     Operation ^= 15;  // Flip all of the condition bits.
166   if (Operation > ISD::SETTRUE2)
167     Operation &= ~8;     // Don't let N and U bits get set.
168   return ISD::CondCode(Operation);
169 }
170
171
172 /// isSignedOp - For an integer comparison, return 1 if the comparison is a
173 /// signed operation and 2 if the result is an unsigned comparison.  Return zero
174 /// if the operation does not depend on the sign of the input (setne and seteq).
175 static int isSignedOp(ISD::CondCode Opcode) {
176   switch (Opcode) {
177   default: assert(0 && "Illegal integer setcc operation!");
178   case ISD::SETEQ:
179   case ISD::SETNE: return 0;
180   case ISD::SETLT:
181   case ISD::SETLE:
182   case ISD::SETGT:
183   case ISD::SETGE: return 1;
184   case ISD::SETULT:
185   case ISD::SETULE:
186   case ISD::SETUGT:
187   case ISD::SETUGE: return 2;
188   }
189 }
190
191 /// getSetCCOrOperation - Return the result of a logical OR between different
192 /// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
193 /// returns SETCC_INVALID if it is not possible to represent the resultant
194 /// comparison.
195 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
196                                        bool isInteger) {
197   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
198     // Cannot fold a signed integer setcc with an unsigned integer setcc.
199     return ISD::SETCC_INVALID;
200
201   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
202
203   // If the N and U bits get set then the resultant comparison DOES suddenly
204   // care about orderedness, and is true when ordered.
205   if (Op > ISD::SETTRUE2)
206     Op &= ~16;     // Clear the U bit if the N bit is set.
207   
208   // Canonicalize illegal integer setcc's.
209   if (isInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
210     Op = ISD::SETNE;
211   
212   return ISD::CondCode(Op);
213 }
214
215 /// getSetCCAndOperation - Return the result of a logical AND between different
216 /// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
217 /// function returns zero if it is not possible to represent the resultant
218 /// comparison.
219 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
220                                         bool isInteger) {
221   if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
222     // Cannot fold a signed setcc with an unsigned setcc.
223     return ISD::SETCC_INVALID;
224
225   // Combine all of the condition bits.
226   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
227   
228   // Canonicalize illegal integer setcc's.
229   if (isInteger) {
230     switch (Result) {
231     default: break;
232     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
233     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
234     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
235     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
236     }
237   }
238   
239   return Result;
240 }
241
242 const TargetMachine &SelectionDAG::getTarget() const {
243   return TLI.getTargetMachine();
244 }
245
246 //===----------------------------------------------------------------------===//
247 //                           SDNode Profile Support
248 //===----------------------------------------------------------------------===//
249
250 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
251 ///
252 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
253   ID.AddInteger(OpC);
254 }
255
256 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
257 /// solely with their pointer.
258 void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
259   ID.AddPointer(VTList.VTs);  
260 }
261
262 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
263 ///
264 static void AddNodeIDOperands(FoldingSetNodeID &ID,
265                               const SDOperand *Ops, unsigned NumOps) {
266   for (; NumOps; --NumOps, ++Ops) {
267     ID.AddPointer(Ops->Val);
268     ID.AddInteger(Ops->ResNo);
269   }
270 }
271
272 static void AddNodeIDNode(FoldingSetNodeID &ID,
273                           unsigned short OpC, SDVTList VTList, 
274                           const SDOperand *OpList, unsigned N) {
275   AddNodeIDOpcode(ID, OpC);
276   AddNodeIDValueTypes(ID, VTList);
277   AddNodeIDOperands(ID, OpList, N);
278 }
279
280 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
281 /// data.
282 static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
283   AddNodeIDOpcode(ID, N->getOpcode());
284   // Add the return value info.
285   AddNodeIDValueTypes(ID, N->getVTList());
286   // Add the operand info.
287   AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
288
289   // Handle SDNode leafs with special info.
290   switch (N->getOpcode()) {
291   default: break;  // Normal nodes don't need extra info.
292   case ISD::TargetConstant:
293   case ISD::Constant:
294     ID.AddInteger(cast<ConstantSDNode>(N)->getValue());
295     break;
296   case ISD::TargetConstantFP:
297   case ISD::ConstantFP:
298     ID.AddDouble(cast<ConstantFPSDNode>(N)->getValue());
299     break;
300   case ISD::TargetGlobalAddress:
301   case ISD::GlobalAddress:
302   case ISD::TargetGlobalTLSAddress:
303   case ISD::GlobalTLSAddress: {
304     GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
305     ID.AddPointer(GA->getGlobal());
306     ID.AddInteger(GA->getOffset());
307     break;
308   }
309   case ISD::BasicBlock:
310     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
311     break;
312   case ISD::Register:
313     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
314     break;
315   case ISD::SRCVALUE: {
316     SrcValueSDNode *SV = cast<SrcValueSDNode>(N);
317     ID.AddPointer(SV->getValue());
318     ID.AddInteger(SV->getOffset());
319     break;
320   }
321   case ISD::FrameIndex:
322   case ISD::TargetFrameIndex:
323     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
324     break;
325   case ISD::JumpTable:
326   case ISD::TargetJumpTable:
327     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
328     break;
329   case ISD::ConstantPool:
330   case ISD::TargetConstantPool: {
331     ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
332     ID.AddInteger(CP->getAlignment());
333     ID.AddInteger(CP->getOffset());
334     if (CP->isMachineConstantPoolEntry())
335       CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
336     else
337       ID.AddPointer(CP->getConstVal());
338     break;
339   }
340   case ISD::LOAD: {
341     LoadSDNode *LD = cast<LoadSDNode>(N);
342     ID.AddInteger(LD->getAddressingMode());
343     ID.AddInteger(LD->getExtensionType());
344     ID.AddInteger(LD->getLoadedVT());
345     ID.AddPointer(LD->getSrcValue());
346     ID.AddInteger(LD->getSrcValueOffset());
347     ID.AddInteger(LD->getAlignment());
348     ID.AddInteger(LD->isVolatile());
349     break;
350   }
351   case ISD::STORE: {
352     StoreSDNode *ST = cast<StoreSDNode>(N);
353     ID.AddInteger(ST->getAddressingMode());
354     ID.AddInteger(ST->isTruncatingStore());
355     ID.AddInteger(ST->getStoredVT());
356     ID.AddPointer(ST->getSrcValue());
357     ID.AddInteger(ST->getSrcValueOffset());
358     ID.AddInteger(ST->getAlignment());
359     ID.AddInteger(ST->isVolatile());
360     break;
361   }
362   }
363 }
364
365 //===----------------------------------------------------------------------===//
366 //                              SelectionDAG Class
367 //===----------------------------------------------------------------------===//
368
369 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
370 /// SelectionDAG.
371 void SelectionDAG::RemoveDeadNodes() {
372   // Create a dummy node (which is not added to allnodes), that adds a reference
373   // to the root node, preventing it from being deleted.
374   HandleSDNode Dummy(getRoot());
375
376   SmallVector<SDNode*, 128> DeadNodes;
377   
378   // Add all obviously-dead nodes to the DeadNodes worklist.
379   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
380     if (I->use_empty())
381       DeadNodes.push_back(I);
382
383   // Process the worklist, deleting the nodes and adding their uses to the
384   // worklist.
385   while (!DeadNodes.empty()) {
386     SDNode *N = DeadNodes.back();
387     DeadNodes.pop_back();
388     
389     // Take the node out of the appropriate CSE map.
390     RemoveNodeFromCSEMaps(N);
391
392     // Next, brutally remove the operand list.  This is safe to do, as there are
393     // no cycles in the graph.
394     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
395       SDNode *Operand = I->Val;
396       Operand->removeUser(N);
397       
398       // Now that we removed this operand, see if there are no uses of it left.
399       if (Operand->use_empty())
400         DeadNodes.push_back(Operand);
401     }
402     if (N->OperandsNeedDelete)
403       delete[] N->OperandList;
404     N->OperandList = 0;
405     N->NumOperands = 0;
406     
407     // Finally, remove N itself.
408     AllNodes.erase(N);
409   }
410   
411   // If the root changed (e.g. it was a dead load, update the root).
412   setRoot(Dummy.getValue());
413 }
414
415 void SelectionDAG::RemoveDeadNode(SDNode *N, std::vector<SDNode*> &Deleted) {
416   SmallVector<SDNode*, 16> DeadNodes;
417   DeadNodes.push_back(N);
418
419   // Process the worklist, deleting the nodes and adding their uses to the
420   // worklist.
421   while (!DeadNodes.empty()) {
422     SDNode *N = DeadNodes.back();
423     DeadNodes.pop_back();
424     
425     // Take the node out of the appropriate CSE map.
426     RemoveNodeFromCSEMaps(N);
427
428     // Next, brutally remove the operand list.  This is safe to do, as there are
429     // no cycles in the graph.
430     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
431       SDNode *Operand = I->Val;
432       Operand->removeUser(N);
433       
434       // Now that we removed this operand, see if there are no uses of it left.
435       if (Operand->use_empty())
436         DeadNodes.push_back(Operand);
437     }
438     if (N->OperandsNeedDelete)
439       delete[] N->OperandList;
440     N->OperandList = 0;
441     N->NumOperands = 0;
442     
443     // Finally, remove N itself.
444     Deleted.push_back(N);
445     AllNodes.erase(N);
446   }
447 }
448
449 void SelectionDAG::DeleteNode(SDNode *N) {
450   assert(N->use_empty() && "Cannot delete a node that is not dead!");
451
452   // First take this out of the appropriate CSE map.
453   RemoveNodeFromCSEMaps(N);
454
455   // Finally, remove uses due to operands of this node, remove from the 
456   // AllNodes list, and delete the node.
457   DeleteNodeNotInCSEMaps(N);
458 }
459
460 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
461
462   // Remove it from the AllNodes list.
463   AllNodes.remove(N);
464     
465   // Drop all of the operands and decrement used nodes use counts.
466   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
467     I->Val->removeUser(N);
468   if (N->OperandsNeedDelete)
469     delete[] N->OperandList;
470   N->OperandList = 0;
471   N->NumOperands = 0;
472   
473   delete N;
474 }
475
476 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
477 /// correspond to it.  This is useful when we're about to delete or repurpose
478 /// the node.  We don't want future request for structurally identical nodes
479 /// to return N anymore.
480 void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
481   bool Erased = false;
482   switch (N->getOpcode()) {
483   case ISD::HANDLENODE: return;  // noop.
484   case ISD::STRING:
485     Erased = StringNodes.erase(cast<StringSDNode>(N)->getValue());
486     break;
487   case ISD::CONDCODE:
488     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
489            "Cond code doesn't exist!");
490     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
491     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
492     break;
493   case ISD::ExternalSymbol:
494     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
495     break;
496   case ISD::TargetExternalSymbol:
497     Erased =
498       TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
499     break;
500   case ISD::VALUETYPE:
501     Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
502     ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
503     break;
504   default:
505     // Remove it from the CSE Map.
506     Erased = CSEMap.RemoveNode(N);
507     break;
508   }
509 #ifndef NDEBUG
510   // Verify that the node was actually in one of the CSE maps, unless it has a 
511   // flag result (which cannot be CSE'd) or is one of the special cases that are
512   // not subject to CSE.
513   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
514       !N->isTargetOpcode()) {
515     N->dump();
516     cerr << "\n";
517     assert(0 && "Node is not in map!");
518   }
519 #endif
520 }
521
522 /// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps.  It
523 /// has been taken out and modified in some way.  If the specified node already
524 /// exists in the CSE maps, do not modify the maps, but return the existing node
525 /// instead.  If it doesn't exist, add it and return null.
526 ///
527 SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
528   assert(N->getNumOperands() && "This is a leaf node!");
529   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
530     return 0;    // Never add these nodes.
531   
532   // Check that remaining values produced are not flags.
533   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
534     if (N->getValueType(i) == MVT::Flag)
535       return 0;   // Never CSE anything that produces a flag.
536   
537   SDNode *New = CSEMap.GetOrInsertNode(N);
538   if (New != N) return New;  // Node already existed.
539   return 0;
540 }
541
542 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
543 /// were replaced with those specified.  If this node is never memoized, 
544 /// return null, otherwise return a pointer to the slot it would take.  If a
545 /// node already exists with these operands, the slot will be non-null.
546 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDOperand Op,
547                                            void *&InsertPos) {
548   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
549     return 0;    // Never add these nodes.
550   
551   // Check that remaining values produced are not flags.
552   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
553     if (N->getValueType(i) == MVT::Flag)
554       return 0;   // Never CSE anything that produces a flag.
555   
556   SDOperand Ops[] = { Op };
557   FoldingSetNodeID ID;
558   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
559   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
560 }
561
562 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
563 /// were replaced with those specified.  If this node is never memoized, 
564 /// return null, otherwise return a pointer to the slot it would take.  If a
565 /// node already exists with these operands, the slot will be non-null.
566 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
567                                            SDOperand Op1, SDOperand Op2,
568                                            void *&InsertPos) {
569   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
570     return 0;    // Never add these nodes.
571   
572   // Check that remaining values produced are not flags.
573   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
574     if (N->getValueType(i) == MVT::Flag)
575       return 0;   // Never CSE anything that produces a flag.
576                                               
577   SDOperand Ops[] = { Op1, Op2 };
578   FoldingSetNodeID ID;
579   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
580   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
581 }
582
583
584 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
585 /// were replaced with those specified.  If this node is never memoized, 
586 /// return null, otherwise return a pointer to the slot it would take.  If a
587 /// node already exists with these operands, the slot will be non-null.
588 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, 
589                                            const SDOperand *Ops,unsigned NumOps,
590                                            void *&InsertPos) {
591   if (N->getOpcode() == ISD::HANDLENODE || N->getValueType(0) == MVT::Flag)
592     return 0;    // Never add these nodes.
593   
594   // Check that remaining values produced are not flags.
595   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
596     if (N->getValueType(i) == MVT::Flag)
597       return 0;   // Never CSE anything that produces a flag.
598   
599   FoldingSetNodeID ID;
600   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), 0, 0);
601   
602   if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
603     ID.AddInteger(LD->getAddressingMode());
604     ID.AddInteger(LD->getExtensionType());
605     ID.AddInteger(LD->getLoadedVT());
606     ID.AddPointer(LD->getSrcValue());
607     ID.AddInteger(LD->getSrcValueOffset());
608     ID.AddInteger(LD->getAlignment());
609     ID.AddInteger(LD->isVolatile());
610   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
611     ID.AddInteger(ST->getAddressingMode());
612     ID.AddInteger(ST->isTruncatingStore());
613     ID.AddInteger(ST->getStoredVT());
614     ID.AddPointer(ST->getSrcValue());
615     ID.AddInteger(ST->getSrcValueOffset());
616     ID.AddInteger(ST->getAlignment());
617     ID.AddInteger(ST->isVolatile());
618   }
619   
620   AddNodeIDOperands(ID, Ops, NumOps);
621   return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
622 }
623
624
625 SelectionDAG::~SelectionDAG() {
626   while (!AllNodes.empty()) {
627     SDNode *N = AllNodes.begin();
628     N->SetNextInBucket(0);
629     if (N->OperandsNeedDelete)
630       delete [] N->OperandList;
631     N->OperandList = 0;
632     N->NumOperands = 0;
633     AllNodes.pop_front();
634   }
635 }
636
637 SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
638   if (Op.getValueType() == VT) return Op;
639   int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
640   return getNode(ISD::AND, Op.getValueType(), Op,
641                  getConstant(Imm, Op.getValueType()));
642 }
643
644 SDOperand SelectionDAG::getString(const std::string &Val) {
645   StringSDNode *&N = StringNodes[Val];
646   if (!N) {
647     N = new StringSDNode(Val);
648     AllNodes.push_back(N);
649   }
650   return SDOperand(N, 0);
651 }
652
653 SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT, bool isT) {
654   assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
655   assert(!MVT::isVector(VT) && "Cannot create Vector ConstantSDNodes!");
656   
657   // Mask out any bits that are not valid for this constant.
658   Val &= MVT::getIntVTBitMask(VT);
659
660   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
661   FoldingSetNodeID ID;
662   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
663   ID.AddInteger(Val);
664   void *IP = 0;
665   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
666     return SDOperand(E, 0);
667   SDNode *N = new ConstantSDNode(isT, Val, VT);
668   CSEMap.InsertNode(N, IP);
669   AllNodes.push_back(N);
670   return SDOperand(N, 0);
671 }
672
673
674 SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT,
675                                       bool isTarget) {
676   assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
677   if (VT == MVT::f32)
678     Val = (float)Val;  // Mask out extra precision.
679
680   // Do the map lookup using the actual bit pattern for the floating point
681   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
682   // we don't have issues with SNANs.
683   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
684   FoldingSetNodeID ID;
685   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
686   ID.AddDouble(Val);
687   void *IP = 0;
688   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
689     return SDOperand(E, 0);
690   SDNode *N = new ConstantFPSDNode(isTarget, Val, VT);
691   CSEMap.InsertNode(N, IP);
692   AllNodes.push_back(N);
693   return SDOperand(N, 0);
694 }
695
696 SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
697                                          MVT::ValueType VT, int Offset,
698                                          bool isTargetGA) {
699   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
700   unsigned Opc;
701   if (GVar && GVar->isThreadLocal())
702     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
703   else
704     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
705   FoldingSetNodeID ID;
706   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
707   ID.AddPointer(GV);
708   ID.AddInteger(Offset);
709   void *IP = 0;
710   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
711    return SDOperand(E, 0);
712   SDNode *N = new GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
713   CSEMap.InsertNode(N, IP);
714   AllNodes.push_back(N);
715   return SDOperand(N, 0);
716 }
717
718 SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT,
719                                       bool isTarget) {
720   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
721   FoldingSetNodeID ID;
722   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
723   ID.AddInteger(FI);
724   void *IP = 0;
725   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
726     return SDOperand(E, 0);
727   SDNode *N = new FrameIndexSDNode(FI, VT, isTarget);
728   CSEMap.InsertNode(N, IP);
729   AllNodes.push_back(N);
730   return SDOperand(N, 0);
731 }
732
733 SDOperand SelectionDAG::getJumpTable(int JTI, MVT::ValueType VT, bool isTarget){
734   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
735   FoldingSetNodeID ID;
736   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
737   ID.AddInteger(JTI);
738   void *IP = 0;
739   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
740     return SDOperand(E, 0);
741   SDNode *N = new JumpTableSDNode(JTI, VT, isTarget);
742   CSEMap.InsertNode(N, IP);
743   AllNodes.push_back(N);
744   return SDOperand(N, 0);
745 }
746
747 SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT,
748                                         unsigned Alignment, int Offset,
749                                         bool isTarget) {
750   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
751   FoldingSetNodeID ID;
752   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
753   ID.AddInteger(Alignment);
754   ID.AddInteger(Offset);
755   ID.AddPointer(C);
756   void *IP = 0;
757   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
758     return SDOperand(E, 0);
759   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
760   CSEMap.InsertNode(N, IP);
761   AllNodes.push_back(N);
762   return SDOperand(N, 0);
763 }
764
765
766 SDOperand SelectionDAG::getConstantPool(MachineConstantPoolValue *C,
767                                         MVT::ValueType VT,
768                                         unsigned Alignment, int Offset,
769                                         bool isTarget) {
770   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
771   FoldingSetNodeID ID;
772   AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
773   ID.AddInteger(Alignment);
774   ID.AddInteger(Offset);
775   C->AddSelectionDAGCSEId(ID);
776   void *IP = 0;
777   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
778     return SDOperand(E, 0);
779   SDNode *N = new ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
780   CSEMap.InsertNode(N, IP);
781   AllNodes.push_back(N);
782   return SDOperand(N, 0);
783 }
784
785
786 SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
787   FoldingSetNodeID ID;
788   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
789   ID.AddPointer(MBB);
790   void *IP = 0;
791   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
792     return SDOperand(E, 0);
793   SDNode *N = new BasicBlockSDNode(MBB);
794   CSEMap.InsertNode(N, IP);
795   AllNodes.push_back(N);
796   return SDOperand(N, 0);
797 }
798
799 SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
800   if ((unsigned)VT >= ValueTypeNodes.size())
801     ValueTypeNodes.resize(VT+1);
802   if (ValueTypeNodes[VT] == 0) {
803     ValueTypeNodes[VT] = new VTSDNode(VT);
804     AllNodes.push_back(ValueTypeNodes[VT]);
805   }
806
807   return SDOperand(ValueTypeNodes[VT], 0);
808 }
809
810 SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
811   SDNode *&N = ExternalSymbols[Sym];
812   if (N) return SDOperand(N, 0);
813   N = new ExternalSymbolSDNode(false, Sym, VT);
814   AllNodes.push_back(N);
815   return SDOperand(N, 0);
816 }
817
818 SDOperand SelectionDAG::getTargetExternalSymbol(const char *Sym,
819                                                 MVT::ValueType VT) {
820   SDNode *&N = TargetExternalSymbols[Sym];
821   if (N) return SDOperand(N, 0);
822   N = new ExternalSymbolSDNode(true, Sym, VT);
823   AllNodes.push_back(N);
824   return SDOperand(N, 0);
825 }
826
827 SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
828   if ((unsigned)Cond >= CondCodeNodes.size())
829     CondCodeNodes.resize(Cond+1);
830   
831   if (CondCodeNodes[Cond] == 0) {
832     CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
833     AllNodes.push_back(CondCodeNodes[Cond]);
834   }
835   return SDOperand(CondCodeNodes[Cond], 0);
836 }
837
838 SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
839   FoldingSetNodeID ID;
840   AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
841   ID.AddInteger(RegNo);
842   void *IP = 0;
843   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
844     return SDOperand(E, 0);
845   SDNode *N = new RegisterSDNode(RegNo, VT);
846   CSEMap.InsertNode(N, IP);
847   AllNodes.push_back(N);
848   return SDOperand(N, 0);
849 }
850
851 SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
852   assert((!V || isa<PointerType>(V->getType())) &&
853          "SrcValue is not a pointer?");
854
855   FoldingSetNodeID ID;
856   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
857   ID.AddPointer(V);
858   ID.AddInteger(Offset);
859   void *IP = 0;
860   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
861     return SDOperand(E, 0);
862   SDNode *N = new SrcValueSDNode(V, Offset);
863   CSEMap.InsertNode(N, IP);
864   AllNodes.push_back(N);
865   return SDOperand(N, 0);
866 }
867
868 SDOperand SelectionDAG::FoldSetCC(MVT::ValueType VT, SDOperand N1,
869                                   SDOperand N2, ISD::CondCode Cond) {
870   // These setcc operations always fold.
871   switch (Cond) {
872   default: break;
873   case ISD::SETFALSE:
874   case ISD::SETFALSE2: return getConstant(0, VT);
875   case ISD::SETTRUE:
876   case ISD::SETTRUE2:  return getConstant(1, VT);
877     
878   case ISD::SETOEQ:
879   case ISD::SETOGT:
880   case ISD::SETOGE:
881   case ISD::SETOLT:
882   case ISD::SETOLE:
883   case ISD::SETONE:
884   case ISD::SETO:
885   case ISD::SETUO:
886   case ISD::SETUEQ:
887   case ISD::SETUNE:
888     assert(!MVT::isInteger(N1.getValueType()) && "Illegal setcc for integer!");
889     break;
890   }
891   
892   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
893     uint64_t C2 = N2C->getValue();
894     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
895       uint64_t C1 = N1C->getValue();
896       
897       // Sign extend the operands if required
898       if (ISD::isSignedIntSetCC(Cond)) {
899         C1 = N1C->getSignExtended();
900         C2 = N2C->getSignExtended();
901       }
902       
903       switch (Cond) {
904       default: assert(0 && "Unknown integer setcc!");
905       case ISD::SETEQ:  return getConstant(C1 == C2, VT);
906       case ISD::SETNE:  return getConstant(C1 != C2, VT);
907       case ISD::SETULT: return getConstant(C1 <  C2, VT);
908       case ISD::SETUGT: return getConstant(C1 >  C2, VT);
909       case ISD::SETULE: return getConstant(C1 <= C2, VT);
910       case ISD::SETUGE: return getConstant(C1 >= C2, VT);
911       case ISD::SETLT:  return getConstant((int64_t)C1 <  (int64_t)C2, VT);
912       case ISD::SETGT:  return getConstant((int64_t)C1 >  (int64_t)C2, VT);
913       case ISD::SETLE:  return getConstant((int64_t)C1 <= (int64_t)C2, VT);
914       case ISD::SETGE:  return getConstant((int64_t)C1 >= (int64_t)C2, VT);
915       }
916     }
917   }
918   if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
919     if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
920       double C1 = N1C->getValue(), C2 = N2C->getValue();
921       
922       switch (Cond) {
923       default: break; // FIXME: Implement the rest of these!
924       case ISD::SETEQ:  return getConstant(C1 == C2, VT);
925       case ISD::SETNE:  return getConstant(C1 != C2, VT);
926       case ISD::SETLT:  return getConstant(C1 < C2, VT);
927       case ISD::SETGT:  return getConstant(C1 > C2, VT);
928       case ISD::SETLE:  return getConstant(C1 <= C2, VT);
929       case ISD::SETGE:  return getConstant(C1 >= C2, VT);
930       }
931     } else {
932       // Ensure that the constant occurs on the RHS.
933       return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
934     }
935       
936   // Could not fold it.
937   return SDOperand();
938 }
939
940
941 /// getNode - Gets or creates the specified node.
942 ///
943 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
944   FoldingSetNodeID ID;
945   AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
946   void *IP = 0;
947   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
948     return SDOperand(E, 0);
949   SDNode *N = new SDNode(Opcode, SDNode::getSDVTList(VT));
950   CSEMap.InsertNode(N, IP);
951   
952   AllNodes.push_back(N);
953   return SDOperand(N, 0);
954 }
955
956 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
957                                 SDOperand Operand) {
958   unsigned Tmp1;
959   // Constant fold unary operations with an integer constant operand.
960   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
961     uint64_t Val = C->getValue();
962     switch (Opcode) {
963     default: break;
964     case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
965     case ISD::ANY_EXTEND:
966     case ISD::ZERO_EXTEND: return getConstant(Val, VT);
967     case ISD::TRUNCATE:    return getConstant(Val, VT);
968     case ISD::SINT_TO_FP:  return getConstantFP(C->getSignExtended(), VT);
969     case ISD::UINT_TO_FP:  return getConstantFP(C->getValue(), VT);
970     case ISD::BIT_CONVERT:
971       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
972         return getConstantFP(BitsToFloat(Val), VT);
973       else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
974         return getConstantFP(BitsToDouble(Val), VT);
975       break;
976     case ISD::BSWAP:
977       switch(VT) {
978       default: assert(0 && "Invalid bswap!"); break;
979       case MVT::i16: return getConstant(ByteSwap_16((unsigned short)Val), VT);
980       case MVT::i32: return getConstant(ByteSwap_32((unsigned)Val), VT);
981       case MVT::i64: return getConstant(ByteSwap_64(Val), VT);
982       }
983       break;
984     case ISD::CTPOP:
985       switch(VT) {
986       default: assert(0 && "Invalid ctpop!"); break;
987       case MVT::i1: return getConstant(Val != 0, VT);
988       case MVT::i8: 
989         Tmp1 = (unsigned)Val & 0xFF;
990         return getConstant(CountPopulation_32(Tmp1), VT);
991       case MVT::i16:
992         Tmp1 = (unsigned)Val & 0xFFFF;
993         return getConstant(CountPopulation_32(Tmp1), VT);
994       case MVT::i32:
995         return getConstant(CountPopulation_32((unsigned)Val), VT);
996       case MVT::i64:
997         return getConstant(CountPopulation_64(Val), VT);
998       }
999     case ISD::CTLZ:
1000       switch(VT) {
1001       default: assert(0 && "Invalid ctlz!"); break;
1002       case MVT::i1: return getConstant(Val == 0, VT);
1003       case MVT::i8: 
1004         Tmp1 = (unsigned)Val & 0xFF;
1005         return getConstant(CountLeadingZeros_32(Tmp1)-24, VT);
1006       case MVT::i16:
1007         Tmp1 = (unsigned)Val & 0xFFFF;
1008         return getConstant(CountLeadingZeros_32(Tmp1)-16, VT);
1009       case MVT::i32:
1010         return getConstant(CountLeadingZeros_32((unsigned)Val), VT);
1011       case MVT::i64:
1012         return getConstant(CountLeadingZeros_64(Val), VT);
1013       }
1014     case ISD::CTTZ:
1015       switch(VT) {
1016       default: assert(0 && "Invalid cttz!"); break;
1017       case MVT::i1: return getConstant(Val == 0, VT);
1018       case MVT::i8: 
1019         Tmp1 = (unsigned)Val | 0x100;
1020         return getConstant(CountTrailingZeros_32(Tmp1), VT);
1021       case MVT::i16:
1022         Tmp1 = (unsigned)Val | 0x10000;
1023         return getConstant(CountTrailingZeros_32(Tmp1), VT);
1024       case MVT::i32:
1025         return getConstant(CountTrailingZeros_32((unsigned)Val), VT);
1026       case MVT::i64:
1027         return getConstant(CountTrailingZeros_64(Val), VT);
1028       }
1029     }
1030   }
1031
1032   // Constant fold unary operations with an floating point constant operand.
1033   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1034     switch (Opcode) {
1035     case ISD::FNEG:
1036       return getConstantFP(-C->getValue(), VT);
1037     case ISD::FABS:
1038       return getConstantFP(fabs(C->getValue()), VT);
1039     case ISD::FP_ROUND:
1040     case ISD::FP_EXTEND:
1041       return getConstantFP(C->getValue(), VT);
1042     case ISD::FP_TO_SINT:
1043       return getConstant((int64_t)C->getValue(), VT);
1044     case ISD::FP_TO_UINT:
1045       return getConstant((uint64_t)C->getValue(), VT);
1046     case ISD::BIT_CONVERT:
1047       if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
1048         return getConstant(FloatToBits(C->getValue()), VT);
1049       else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
1050         return getConstant(DoubleToBits(C->getValue()), VT);
1051       break;
1052     }
1053
1054   unsigned OpOpcode = Operand.Val->getOpcode();
1055   switch (Opcode) {
1056   case ISD::TokenFactor:
1057     return Operand;         // Factor of one node?  No factor.
1058   case ISD::FP_ROUND:
1059   case ISD::FP_EXTEND:
1060     assert(MVT::isFloatingPoint(VT) &&
1061            MVT::isFloatingPoint(Operand.getValueType()) && "Invalid FP cast!");
1062     break;
1063   case ISD::SIGN_EXTEND:
1064     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1065            "Invalid SIGN_EXTEND!");
1066     if (Operand.getValueType() == VT) return Operand;   // noop extension
1067     assert(Operand.getValueType() < VT && "Invalid sext node, dst < src!");
1068     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1069       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1070     break;
1071   case ISD::ZERO_EXTEND:
1072     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1073            "Invalid ZERO_EXTEND!");
1074     if (Operand.getValueType() == VT) return Operand;   // noop extension
1075     assert(Operand.getValueType() < VT && "Invalid zext node, dst < src!");
1076     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
1077       return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
1078     break;
1079   case ISD::ANY_EXTEND:
1080     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1081            "Invalid ANY_EXTEND!");
1082     if (Operand.getValueType() == VT) return Operand;   // noop extension
1083     assert(Operand.getValueType() < VT && "Invalid anyext node, dst < src!");
1084     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1085       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
1086       return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1087     break;
1088   case ISD::TRUNCATE:
1089     assert(MVT::isInteger(VT) && MVT::isInteger(Operand.getValueType()) &&
1090            "Invalid TRUNCATE!");
1091     if (Operand.getValueType() == VT) return Operand;   // noop truncate
1092     assert(Operand.getValueType() > VT && "Invalid truncate node, src < dst!");
1093     if (OpOpcode == ISD::TRUNCATE)
1094       return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1095     else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1096              OpOpcode == ISD::ANY_EXTEND) {
1097       // If the source is smaller than the dest, we still need an extend.
1098       if (Operand.Val->getOperand(0).getValueType() < VT)
1099         return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1100       else if (Operand.Val->getOperand(0).getValueType() > VT)
1101         return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1102       else
1103         return Operand.Val->getOperand(0);
1104     }
1105     break;
1106   case ISD::BIT_CONVERT:
1107     // Basic sanity checking.
1108     assert(MVT::getSizeInBits(VT) == MVT::getSizeInBits(Operand.getValueType())
1109            && "Cannot BIT_CONVERT between types of different sizes!");
1110     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
1111     if (OpOpcode == ISD::BIT_CONVERT)  // bitconv(bitconv(x)) -> bitconv(x)
1112       return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
1113     if (OpOpcode == ISD::UNDEF)
1114       return getNode(ISD::UNDEF, VT);
1115     break;
1116   case ISD::SCALAR_TO_VECTOR:
1117     assert(MVT::isVector(VT) && !MVT::isVector(Operand.getValueType()) &&
1118            MVT::getVectorBaseType(VT) == Operand.getValueType() &&
1119            "Illegal SCALAR_TO_VECTOR node!");
1120     break;
1121   case ISD::FNEG:
1122     if (OpOpcode == ISD::FSUB)   // -(X-Y) -> (Y-X)
1123       return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
1124                      Operand.Val->getOperand(0));
1125     if (OpOpcode == ISD::FNEG)  // --X -> X
1126       return Operand.Val->getOperand(0);
1127     break;
1128   case ISD::FABS:
1129     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
1130       return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1131     break;
1132   }
1133
1134   SDNode *N;
1135   SDVTList VTs = getVTList(VT);
1136   if (VT != MVT::Flag) { // Don't CSE flag producing nodes
1137     FoldingSetNodeID ID;
1138     SDOperand Ops[1] = { Operand };
1139     AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
1140     void *IP = 0;
1141     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1142       return SDOperand(E, 0);
1143     N = new UnarySDNode(Opcode, VTs, Operand);
1144     CSEMap.InsertNode(N, IP);
1145   } else {
1146     N = new UnarySDNode(Opcode, VTs, Operand);
1147   }
1148   AllNodes.push_back(N);
1149   return SDOperand(N, 0);
1150 }
1151
1152
1153
1154 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1155                                 SDOperand N1, SDOperand N2) {
1156 #ifndef NDEBUG
1157   switch (Opcode) {
1158   case ISD::TokenFactor:
1159     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1160            N2.getValueType() == MVT::Other && "Invalid token factor!");
1161     break;
1162   case ISD::AND:
1163   case ISD::OR:
1164   case ISD::XOR:
1165   case ISD::UDIV:
1166   case ISD::UREM:
1167   case ISD::MULHU:
1168   case ISD::MULHS:
1169     assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1170     // fall through
1171   case ISD::ADD:
1172   case ISD::SUB:
1173   case ISD::MUL:
1174   case ISD::SDIV:
1175   case ISD::SREM:
1176     assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1177     // fall through.
1178   case ISD::FADD:
1179   case ISD::FSUB:
1180   case ISD::FMUL:
1181   case ISD::FDIV:
1182   case ISD::FREM:
1183     assert(N1.getValueType() == N2.getValueType() &&
1184            N1.getValueType() == VT && "Binary operator types must match!");
1185     break;
1186   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
1187     assert(N1.getValueType() == VT &&
1188            MVT::isFloatingPoint(N1.getValueType()) && 
1189            MVT::isFloatingPoint(N2.getValueType()) &&
1190            "Invalid FCOPYSIGN!");
1191     break;
1192   case ISD::SHL:
1193   case ISD::SRA:
1194   case ISD::SRL:
1195   case ISD::ROTL:
1196   case ISD::ROTR:
1197     assert(VT == N1.getValueType() &&
1198            "Shift operators return type must be the same as their first arg");
1199     assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
1200            VT != MVT::i1 && "Shifts only work on integers");
1201     break;
1202   case ISD::FP_ROUND_INREG: {
1203     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1204     assert(VT == N1.getValueType() && "Not an inreg round!");
1205     assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1206            "Cannot FP_ROUND_INREG integer types");
1207     assert(EVT <= VT && "Not rounding down!");
1208     break;
1209   }
1210   case ISD::AssertSext:
1211   case ISD::AssertZext:
1212   case ISD::SIGN_EXTEND_INREG: {
1213     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1214     assert(VT == N1.getValueType() && "Not an inreg extend!");
1215     assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1216            "Cannot *_EXTEND_INREG FP types");
1217     assert(EVT <= VT && "Not extending!");
1218   }
1219
1220   default: break;
1221   }
1222 #endif
1223
1224   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1225   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1226   if (N1C) {
1227     if (Opcode == ISD::SIGN_EXTEND_INREG) {
1228       int64_t Val = N1C->getValue();
1229       unsigned FromBits = MVT::getSizeInBits(cast<VTSDNode>(N2)->getVT());
1230       Val <<= 64-FromBits;
1231       Val >>= 64-FromBits;
1232       return getConstant(Val, VT);
1233     }
1234     
1235     if (N2C) {
1236       uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1237       switch (Opcode) {
1238       case ISD::ADD: return getConstant(C1 + C2, VT);
1239       case ISD::SUB: return getConstant(C1 - C2, VT);
1240       case ISD::MUL: return getConstant(C1 * C2, VT);
1241       case ISD::UDIV:
1242         if (C2) return getConstant(C1 / C2, VT);
1243         break;
1244       case ISD::UREM :
1245         if (C2) return getConstant(C1 % C2, VT);
1246         break;
1247       case ISD::SDIV :
1248         if (C2) return getConstant(N1C->getSignExtended() /
1249                                    N2C->getSignExtended(), VT);
1250         break;
1251       case ISD::SREM :
1252         if (C2) return getConstant(N1C->getSignExtended() %
1253                                    N2C->getSignExtended(), VT);
1254         break;
1255       case ISD::AND  : return getConstant(C1 & C2, VT);
1256       case ISD::OR   : return getConstant(C1 | C2, VT);
1257       case ISD::XOR  : return getConstant(C1 ^ C2, VT);
1258       case ISD::SHL  : return getConstant(C1 << C2, VT);
1259       case ISD::SRL  : return getConstant(C1 >> C2, VT);
1260       case ISD::SRA  : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
1261       case ISD::ROTL : 
1262         return getConstant((C1 << C2) | (C1 >> (MVT::getSizeInBits(VT) - C2)),
1263                            VT);
1264       case ISD::ROTR : 
1265         return getConstant((C1 >> C2) | (C1 << (MVT::getSizeInBits(VT) - C2)), 
1266                            VT);
1267       default: break;
1268       }
1269     } else {      // Cannonicalize constant to RHS if commutative
1270       if (isCommutativeBinOp(Opcode)) {
1271         std::swap(N1C, N2C);
1272         std::swap(N1, N2);
1273       }
1274     }
1275   }
1276
1277   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1278   ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
1279   if (N1CFP) {
1280     if (N2CFP) {
1281       double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1282       switch (Opcode) {
1283       case ISD::FADD: return getConstantFP(C1 + C2, VT);
1284       case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1285       case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1286       case ISD::FDIV:
1287         if (C2) return getConstantFP(C1 / C2, VT);
1288         break;
1289       case ISD::FREM :
1290         if (C2) return getConstantFP(fmod(C1, C2), VT);
1291         break;
1292       case ISD::FCOPYSIGN: {
1293         union {
1294           double   F;
1295           uint64_t I;
1296         } u1;
1297         union {
1298           double  F;
1299           int64_t I;
1300         } u2;
1301         u1.F = C1;
1302         u2.F = C2;
1303         if (u2.I < 0)  // Sign bit of RHS set?
1304           u1.I |= 1ULL << 63;      // Set the sign bit of the LHS.
1305         else 
1306           u1.I &= (1ULL << 63)-1;  // Clear the sign bit of the LHS.
1307         return getConstantFP(u1.F, VT);
1308       }
1309       default: break;
1310       }
1311     } else {      // Cannonicalize constant to RHS if commutative
1312       if (isCommutativeBinOp(Opcode)) {
1313         std::swap(N1CFP, N2CFP);
1314         std::swap(N1, N2);
1315       }
1316     }
1317   }
1318   
1319   // Canonicalize an UNDEF to the RHS, even over a constant.
1320   if (N1.getOpcode() == ISD::UNDEF) {
1321     if (isCommutativeBinOp(Opcode)) {
1322       std::swap(N1, N2);
1323     } else {
1324       switch (Opcode) {
1325       case ISD::FP_ROUND_INREG:
1326       case ISD::SIGN_EXTEND_INREG:
1327       case ISD::SUB:
1328       case ISD::FSUB:
1329       case ISD::FDIV:
1330       case ISD::FREM:
1331       case ISD::SRA:
1332         return N1;     // fold op(undef, arg2) -> undef
1333       case ISD::UDIV:
1334       case ISD::SDIV:
1335       case ISD::UREM:
1336       case ISD::SREM:
1337       case ISD::SRL:
1338       case ISD::SHL:
1339         return getConstant(0, VT);    // fold op(undef, arg2) -> 0
1340       }
1341     }
1342   }
1343   
1344   // Fold a bunch of operators when the RHS is undef. 
1345   if (N2.getOpcode() == ISD::UNDEF) {
1346     switch (Opcode) {
1347     case ISD::ADD:
1348     case ISD::ADDC:
1349     case ISD::ADDE:
1350     case ISD::SUB:
1351     case ISD::FADD:
1352     case ISD::FSUB:
1353     case ISD::FMUL:
1354     case ISD::FDIV:
1355     case ISD::FREM:
1356     case ISD::UDIV:
1357     case ISD::SDIV:
1358     case ISD::UREM:
1359     case ISD::SREM:
1360     case ISD::XOR:
1361       return N2;       // fold op(arg1, undef) -> undef
1362     case ISD::MUL: 
1363     case ISD::AND:
1364     case ISD::SRL:
1365     case ISD::SHL:
1366       return getConstant(0, VT);  // fold op(arg1, undef) -> 0
1367     case ISD::OR:
1368       return getConstant(MVT::getIntVTBitMask(VT), VT);
1369     case ISD::SRA:
1370       return N1;
1371     }
1372   }
1373
1374   // Fold operations.
1375   switch (Opcode) {
1376   case ISD::TokenFactor:
1377     // Fold trivial token factors.
1378     if (N1.getOpcode() == ISD::EntryToken) return N2;
1379     if (N2.getOpcode() == ISD::EntryToken) return N1;
1380     break;
1381       
1382   case ISD::AND:
1383     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
1384     // worth handling here.
1385     if (N2C && N2C->getValue() == 0)
1386       return N2;
1387     break;
1388   case ISD::OR:
1389   case ISD::XOR:
1390     // (X ^| 0) -> X.  This commonly occurs when legalizing i64 values, so it's
1391     // worth handling here.
1392     if (N2C && N2C->getValue() == 0)
1393       return N1;
1394     break;
1395   case ISD::FP_ROUND_INREG:
1396     if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
1397     break;
1398   case ISD::SIGN_EXTEND_INREG: {
1399     MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1400     if (EVT == VT) return N1;  // Not actually extending
1401     break;
1402   }
1403   case ISD::EXTRACT_ELEMENT:
1404     assert(N2C && (unsigned)N2C->getValue() < 2 && "Bad EXTRACT_ELEMENT!");
1405     
1406     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
1407     // 64-bit integers into 32-bit parts.  Instead of building the extract of
1408     // the BUILD_PAIR, only to have legalize rip it apart, just do it now. 
1409     if (N1.getOpcode() == ISD::BUILD_PAIR)
1410       return N1.getOperand(N2C->getValue());
1411     
1412     // EXTRACT_ELEMENT of a constant int is also very common.
1413     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
1414       unsigned Shift = MVT::getSizeInBits(VT) * N2C->getValue();
1415       return getConstant(C->getValue() >> Shift, VT);
1416     }
1417     break;
1418
1419   // FIXME: figure out how to safely handle things like
1420   // int foo(int x) { return 1 << (x & 255); }
1421   // int bar() { return foo(256); }
1422 #if 0
1423   case ISD::SHL:
1424   case ISD::SRL:
1425   case ISD::SRA:
1426     if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1427         cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
1428       return getNode(Opcode, VT, N1, N2.getOperand(0));
1429     else if (N2.getOpcode() == ISD::AND)
1430       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1431         // If the and is only masking out bits that cannot effect the shift,
1432         // eliminate the and.
1433         unsigned NumBits = MVT::getSizeInBits(VT);
1434         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1435           return getNode(Opcode, VT, N1, N2.getOperand(0));
1436       }
1437     break;
1438 #endif
1439   }
1440
1441   // Memoize this node if possible.
1442   SDNode *N;
1443   SDVTList VTs = getVTList(VT);
1444   if (VT != MVT::Flag) {
1445     SDOperand Ops[] = { N1, N2 };
1446     FoldingSetNodeID ID;
1447     AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
1448     void *IP = 0;
1449     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1450       return SDOperand(E, 0);
1451     N = new BinarySDNode(Opcode, VTs, N1, N2);
1452     CSEMap.InsertNode(N, IP);
1453   } else {
1454     N = new BinarySDNode(Opcode, VTs, N1, N2);
1455   }
1456
1457   AllNodes.push_back(N);
1458   return SDOperand(N, 0);
1459 }
1460
1461 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1462                                 SDOperand N1, SDOperand N2, SDOperand N3) {
1463   // Perform various simplifications.
1464   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1465   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1466   switch (Opcode) {
1467   case ISD::SETCC: {
1468     // Use FoldSetCC to simplify SETCC's.
1469     SDOperand Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
1470     if (Simp.Val) return Simp;
1471     break;
1472   }
1473   case ISD::SELECT:
1474     if (N1C)
1475       if (N1C->getValue())
1476         return N2;             // select true, X, Y -> X
1477       else
1478         return N3;             // select false, X, Y -> Y
1479
1480     if (N2 == N3) return N2;   // select C, X, X -> X
1481     break;
1482   case ISD::BRCOND:
1483     if (N2C)
1484       if (N2C->getValue()) // Unconditional branch
1485         return getNode(ISD::BR, MVT::Other, N1, N3);
1486       else
1487         return N1;         // Never-taken branch
1488     break;
1489   case ISD::VECTOR_SHUFFLE:
1490     assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1491            MVT::isVector(VT) && MVT::isVector(N3.getValueType()) &&
1492            N3.getOpcode() == ISD::BUILD_VECTOR &&
1493            MVT::getVectorNumElements(VT) == N3.getNumOperands() &&
1494            "Illegal VECTOR_SHUFFLE node!");
1495     break;
1496   case ISD::VBIT_CONVERT:
1497     // Fold vbit_convert nodes from a type to themselves.
1498     if (N1.getValueType() == MVT::Vector) {
1499       assert(isa<ConstantSDNode>(*(N1.Val->op_end()-2)) &&
1500              isa<VTSDNode>(*(N1.Val->op_end()-1)) && "Malformed vector input!");
1501       if (*(N1.Val->op_end()-2) == N2 && *(N1.Val->op_end()-1) == N3)
1502         return N1;
1503     }
1504     break;
1505   }
1506
1507   // Memoize node if it doesn't produce a flag.
1508   SDNode *N;
1509   SDVTList VTs = getVTList(VT);
1510   if (VT != MVT::Flag) {
1511     SDOperand Ops[] = { N1, N2, N3 };
1512     FoldingSetNodeID ID;
1513     AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
1514     void *IP = 0;
1515     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1516       return SDOperand(E, 0);
1517     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
1518     CSEMap.InsertNode(N, IP);
1519   } else {
1520     N = new TernarySDNode(Opcode, VTs, N1, N2, N3);
1521   }
1522   AllNodes.push_back(N);
1523   return SDOperand(N, 0);
1524 }
1525
1526 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1527                                 SDOperand N1, SDOperand N2, SDOperand N3,
1528                                 SDOperand N4) {
1529   SDOperand Ops[] = { N1, N2, N3, N4 };
1530   return getNode(Opcode, VT, Ops, 4);
1531 }
1532
1533 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1534                                 SDOperand N1, SDOperand N2, SDOperand N3,
1535                                 SDOperand N4, SDOperand N5) {
1536   SDOperand Ops[] = { N1, N2, N3, N4, N5 };
1537   return getNode(Opcode, VT, Ops, 5);
1538 }
1539
1540 SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1541                                 SDOperand Chain, SDOperand Ptr,
1542                                 const Value *SV, int SVOffset,
1543                                 bool isVolatile, unsigned Alignment) {
1544   SDVTList VTs = getVTList(VT, MVT::Other);
1545   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1546   SDOperand Ops[] = { Chain, Ptr, Undef };
1547   FoldingSetNodeID ID;
1548   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
1549   ID.AddInteger(ISD::UNINDEXED);
1550   ID.AddInteger(ISD::NON_EXTLOAD);
1551   ID.AddInteger(VT);
1552   ID.AddPointer(SV);
1553   ID.AddInteger(SVOffset);
1554   ID.AddInteger(Alignment);
1555   ID.AddInteger(isVolatile);
1556   void *IP = 0;
1557   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1558     return SDOperand(E, 0);
1559   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1560     const Type *Ty = MVT::getTypeForValueType(VT);
1561     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1562   }
1563   SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED,
1564                              ISD::NON_EXTLOAD, VT, SV, SVOffset, Alignment,
1565                              isVolatile);
1566   CSEMap.InsertNode(N, IP);
1567   AllNodes.push_back(N);
1568   return SDOperand(N, 0);
1569 }
1570
1571 SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT,
1572                                    SDOperand Chain, SDOperand Ptr,
1573                                    const Value *SV,
1574                                    int SVOffset, MVT::ValueType EVT,
1575                                    bool isVolatile, unsigned Alignment) {
1576   // If they are asking for an extending load from/to the same thing, return a
1577   // normal load.
1578   if (VT == EVT)
1579     ExtType = ISD::NON_EXTLOAD;
1580
1581   if (MVT::isVector(VT))
1582     assert(EVT == MVT::getVectorBaseType(VT) && "Invalid vector extload!");
1583   else
1584     assert(EVT < VT && "Should only be an extending load, not truncating!");
1585   assert((ExtType == ISD::EXTLOAD || MVT::isInteger(VT)) &&
1586          "Cannot sign/zero extend a FP/Vector load!");
1587   assert(MVT::isInteger(VT) == MVT::isInteger(EVT) &&
1588          "Cannot convert from FP to Int or Int -> FP!");
1589
1590   SDVTList VTs = getVTList(VT, MVT::Other);
1591   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1592   SDOperand Ops[] = { Chain, Ptr, Undef };
1593   FoldingSetNodeID ID;
1594   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
1595   ID.AddInteger(ISD::UNINDEXED);
1596   ID.AddInteger(ExtType);
1597   ID.AddInteger(EVT);
1598   ID.AddPointer(SV);
1599   ID.AddInteger(SVOffset);
1600   ID.AddInteger(Alignment);
1601   ID.AddInteger(isVolatile);
1602   void *IP = 0;
1603   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1604     return SDOperand(E, 0);
1605   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1606     const Type *Ty = MVT::getTypeForValueType(VT);
1607     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1608   }
1609   SDNode *N = new LoadSDNode(Ops, VTs, ISD::UNINDEXED, ExtType, EVT,
1610                              SV, SVOffset, Alignment, isVolatile);
1611   CSEMap.InsertNode(N, IP);
1612   AllNodes.push_back(N);
1613   return SDOperand(N, 0);
1614 }
1615
1616 SDOperand
1617 SelectionDAG::getIndexedLoad(SDOperand OrigLoad, SDOperand Base,
1618                              SDOperand Offset, ISD::MemIndexedMode AM) {
1619   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
1620   assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
1621          "Load is already a indexed load!");
1622   MVT::ValueType VT = OrigLoad.getValueType();
1623   SDVTList VTs = getVTList(VT, Base.getValueType(), MVT::Other);
1624   SDOperand Ops[] = { LD->getChain(), Base, Offset };
1625   FoldingSetNodeID ID;
1626   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
1627   ID.AddInteger(AM);
1628   ID.AddInteger(LD->getExtensionType());
1629   ID.AddInteger(LD->getLoadedVT());
1630   ID.AddPointer(LD->getSrcValue());
1631   ID.AddInteger(LD->getSrcValueOffset());
1632   ID.AddInteger(LD->getAlignment());
1633   ID.AddInteger(LD->isVolatile());
1634   void *IP = 0;
1635   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1636     return SDOperand(E, 0);
1637   SDNode *N = new LoadSDNode(Ops, VTs, AM,
1638                              LD->getExtensionType(), LD->getLoadedVT(),
1639                              LD->getSrcValue(), LD->getSrcValueOffset(),
1640                              LD->getAlignment(), LD->isVolatile());
1641   CSEMap.InsertNode(N, IP);
1642   AllNodes.push_back(N);
1643   return SDOperand(N, 0);
1644 }
1645
1646 SDOperand SelectionDAG::getVecLoad(unsigned Count, MVT::ValueType EVT,
1647                                    SDOperand Chain, SDOperand Ptr,
1648                                    SDOperand SV) {
1649   SDOperand Ops[] = { Chain, Ptr, SV, getConstant(Count, MVT::i32), 
1650                       getValueType(EVT) };
1651   return getNode(ISD::VLOAD, getVTList(MVT::Vector, MVT::Other), Ops, 5);
1652 }
1653
1654 SDOperand SelectionDAG::getStore(SDOperand Chain, SDOperand Val,
1655                                  SDOperand Ptr, const Value *SV, int SVOffset,
1656                                  bool isVolatile, unsigned Alignment) {
1657   MVT::ValueType VT = Val.getValueType();
1658
1659   SDVTList VTs = getVTList(MVT::Other);
1660   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1661   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
1662   FoldingSetNodeID ID;
1663   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1664   ID.AddInteger(ISD::UNINDEXED);
1665   ID.AddInteger(false);
1666   ID.AddInteger(VT);
1667   ID.AddPointer(SV);
1668   ID.AddInteger(SVOffset);
1669   ID.AddInteger(Alignment);
1670   ID.AddInteger(isVolatile);
1671   void *IP = 0;
1672   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1673     return SDOperand(E, 0);
1674   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1675     const Type *Ty = MVT::getTypeForValueType(VT);
1676     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1677   }
1678   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
1679                               VT, SV, SVOffset, Alignment, isVolatile);
1680   CSEMap.InsertNode(N, IP);
1681   AllNodes.push_back(N);
1682   return SDOperand(N, 0);
1683 }
1684
1685 SDOperand SelectionDAG::getTruncStore(SDOperand Chain, SDOperand Val,
1686                                       SDOperand Ptr, const Value *SV,
1687                                       int SVOffset, MVT::ValueType SVT,
1688                                       bool isVolatile, unsigned Alignment) {
1689   MVT::ValueType VT = Val.getValueType();
1690   bool isTrunc = VT != SVT;
1691
1692   assert(VT > SVT && "Not a truncation?");
1693   assert(MVT::isInteger(VT) == MVT::isInteger(SVT) &&
1694          "Can't do FP-INT conversion!");
1695
1696   SDVTList VTs = getVTList(MVT::Other);
1697   SDOperand Undef = getNode(ISD::UNDEF, Ptr.getValueType());
1698   SDOperand Ops[] = { Chain, Val, Ptr, Undef };
1699   FoldingSetNodeID ID;
1700   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1701   ID.AddInteger(ISD::UNINDEXED);
1702   ID.AddInteger(isTrunc);
1703   ID.AddInteger(SVT);
1704   ID.AddPointer(SV);
1705   ID.AddInteger(SVOffset);
1706   ID.AddInteger(Alignment);
1707   ID.AddInteger(isVolatile);
1708   void *IP = 0;
1709   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1710     return SDOperand(E, 0);
1711   if (Alignment == 0) { // Ensure that codegen never sees alignment 0
1712     const Type *Ty = MVT::getTypeForValueType(VT);
1713     Alignment = TLI.getTargetData()->getABITypeAlignment(Ty);
1714   }
1715   SDNode *N = new StoreSDNode(Ops, VTs, ISD::UNINDEXED, isTrunc,
1716                               SVT, SV, SVOffset, Alignment, isVolatile);
1717   CSEMap.InsertNode(N, IP);
1718   AllNodes.push_back(N);
1719   return SDOperand(N, 0);
1720 }
1721
1722 SDOperand
1723 SelectionDAG::getIndexedStore(SDOperand OrigStore, SDOperand Base,
1724                               SDOperand Offset, ISD::MemIndexedMode AM) {
1725   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
1726   assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
1727          "Store is already a indexed store!");
1728   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
1729   SDOperand Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
1730   FoldingSetNodeID ID;
1731   AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
1732   ID.AddInteger(AM);
1733   ID.AddInteger(ST->isTruncatingStore());
1734   ID.AddInteger(ST->getStoredVT());
1735   ID.AddPointer(ST->getSrcValue());
1736   ID.AddInteger(ST->getSrcValueOffset());
1737   ID.AddInteger(ST->getAlignment());
1738   ID.AddInteger(ST->isVolatile());
1739   void *IP = 0;
1740   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1741     return SDOperand(E, 0);
1742   SDNode *N = new StoreSDNode(Ops, VTs, AM,
1743                               ST->isTruncatingStore(), ST->getStoredVT(),
1744                               ST->getSrcValue(), ST->getSrcValueOffset(),
1745                               ST->getAlignment(), ST->isVolatile());
1746   CSEMap.InsertNode(N, IP);
1747   AllNodes.push_back(N);
1748   return SDOperand(N, 0);
1749 }
1750
1751 SDOperand SelectionDAG::getVAArg(MVT::ValueType VT,
1752                                  SDOperand Chain, SDOperand Ptr,
1753                                  SDOperand SV) {
1754   SDOperand Ops[] = { Chain, Ptr, SV };
1755   return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
1756 }
1757
1758 SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1759                                 const SDOperand *Ops, unsigned NumOps) {
1760   switch (NumOps) {
1761   case 0: return getNode(Opcode, VT);
1762   case 1: return getNode(Opcode, VT, Ops[0]);
1763   case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1764   case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
1765   default: break;
1766   }
1767   
1768   switch (Opcode) {
1769   default: break;
1770   case ISD::SELECT_CC: {
1771     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
1772     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1773            "LHS and RHS of condition must have same type!");
1774     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1775            "True and False arms of SelectCC must have same type!");
1776     assert(Ops[2].getValueType() == VT &&
1777            "select_cc node must be of same type as true and false value!");
1778     break;
1779   }
1780   case ISD::BR_CC: {
1781     assert(NumOps == 5 && "BR_CC takes 5 operands!");
1782     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1783            "LHS/RHS of comparison should match types!");
1784     break;
1785   }
1786   }
1787
1788   // Memoize nodes.
1789   SDNode *N;
1790   SDVTList VTs = getVTList(VT);
1791   if (VT != MVT::Flag) {
1792     FoldingSetNodeID ID;
1793     AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
1794     void *IP = 0;
1795     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1796       return SDOperand(E, 0);
1797     N = new SDNode(Opcode, VTs, Ops, NumOps);
1798     CSEMap.InsertNode(N, IP);
1799   } else {
1800     N = new SDNode(Opcode, VTs, Ops, NumOps);
1801   }
1802   AllNodes.push_back(N);
1803   return SDOperand(N, 0);
1804 }
1805
1806 SDOperand SelectionDAG::getNode(unsigned Opcode,
1807                                 std::vector<MVT::ValueType> &ResultTys,
1808                                 const SDOperand *Ops, unsigned NumOps) {
1809   return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
1810                  Ops, NumOps);
1811 }
1812
1813 SDOperand SelectionDAG::getNode(unsigned Opcode,
1814                                 const MVT::ValueType *VTs, unsigned NumVTs,
1815                                 const SDOperand *Ops, unsigned NumOps) {
1816   if (NumVTs == 1)
1817     return getNode(Opcode, VTs[0], Ops, NumOps);
1818   return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
1819 }  
1820   
1821 SDOperand SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
1822                                 const SDOperand *Ops, unsigned NumOps) {
1823   if (VTList.NumVTs == 1)
1824     return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
1825
1826   switch (Opcode) {
1827   // FIXME: figure out how to safely handle things like
1828   // int foo(int x) { return 1 << (x & 255); }
1829   // int bar() { return foo(256); }
1830 #if 0
1831   case ISD::SRA_PARTS:
1832   case ISD::SRL_PARTS:
1833   case ISD::SHL_PARTS:
1834     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1835         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
1836       return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1837     else if (N3.getOpcode() == ISD::AND)
1838       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
1839         // If the and is only masking out bits that cannot effect the shift,
1840         // eliminate the and.
1841         unsigned NumBits = MVT::getSizeInBits(VT)*2;
1842         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1843           return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
1844       }
1845     break;
1846 #endif
1847   }
1848
1849   // Memoize the node unless it returns a flag.
1850   SDNode *N;
1851   if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
1852     FoldingSetNodeID ID;
1853     AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
1854     void *IP = 0;
1855     if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1856       return SDOperand(E, 0);
1857     if (NumOps == 1)
1858       N = new UnarySDNode(Opcode, VTList, Ops[0]);
1859     else if (NumOps == 2)
1860       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1861     else if (NumOps == 3)
1862       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1863     else
1864       N = new SDNode(Opcode, VTList, Ops, NumOps);
1865     CSEMap.InsertNode(N, IP);
1866   } else {
1867     if (NumOps == 1)
1868       N = new UnarySDNode(Opcode, VTList, Ops[0]);
1869     else if (NumOps == 2)
1870       N = new BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
1871     else if (NumOps == 3)
1872       N = new TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
1873     else
1874       N = new SDNode(Opcode, VTList, Ops, NumOps);
1875   }
1876   AllNodes.push_back(N);
1877   return SDOperand(N, 0);
1878 }
1879
1880 SDVTList SelectionDAG::getVTList(MVT::ValueType VT) {
1881   return makeVTList(SDNode::getValueTypeList(VT), 1);
1882 }
1883
1884 SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2) {
1885   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1886        E = VTList.end(); I != E; ++I) {
1887     if (I->size() == 2 && (*I)[0] == VT1 && (*I)[1] == VT2)
1888       return makeVTList(&(*I)[0], 2);
1889   }
1890   std::vector<MVT::ValueType> V;
1891   V.push_back(VT1);
1892   V.push_back(VT2);
1893   VTList.push_front(V);
1894   return makeVTList(&(*VTList.begin())[0], 2);
1895 }
1896 SDVTList SelectionDAG::getVTList(MVT::ValueType VT1, MVT::ValueType VT2,
1897                                  MVT::ValueType VT3) {
1898   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1899        E = VTList.end(); I != E; ++I) {
1900     if (I->size() == 3 && (*I)[0] == VT1 && (*I)[1] == VT2 &&
1901         (*I)[2] == VT3)
1902       return makeVTList(&(*I)[0], 3);
1903   }
1904   std::vector<MVT::ValueType> V;
1905   V.push_back(VT1);
1906   V.push_back(VT2);
1907   V.push_back(VT3);
1908   VTList.push_front(V);
1909   return makeVTList(&(*VTList.begin())[0], 3);
1910 }
1911
1912 SDVTList SelectionDAG::getVTList(const MVT::ValueType *VTs, unsigned NumVTs) {
1913   switch (NumVTs) {
1914     case 0: assert(0 && "Cannot have nodes without results!");
1915     case 1: return makeVTList(SDNode::getValueTypeList(VTs[0]), 1);
1916     case 2: return getVTList(VTs[0], VTs[1]);
1917     case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
1918     default: break;
1919   }
1920
1921   for (std::list<std::vector<MVT::ValueType> >::iterator I = VTList.begin(),
1922        E = VTList.end(); I != E; ++I) {
1923     if (I->size() != NumVTs || VTs[0] != (*I)[0] || VTs[1] != (*I)[1]) continue;
1924    
1925     bool NoMatch = false;
1926     for (unsigned i = 2; i != NumVTs; ++i)
1927       if (VTs[i] != (*I)[i]) {
1928         NoMatch = true;
1929         break;
1930       }
1931     if (!NoMatch)
1932       return makeVTList(&*I->begin(), NumVTs);
1933   }
1934   
1935   VTList.push_front(std::vector<MVT::ValueType>(VTs, VTs+NumVTs));
1936   return makeVTList(&*VTList.begin()->begin(), NumVTs);
1937 }
1938
1939
1940 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
1941 /// specified operands.  If the resultant node already exists in the DAG,
1942 /// this does not modify the specified node, instead it returns the node that
1943 /// already exists.  If the resultant node does not exist in the DAG, the
1944 /// input node is returned.  As a degenerate case, if you specify the same
1945 /// input operands as the node already has, the input node is returned.
1946 SDOperand SelectionDAG::
1947 UpdateNodeOperands(SDOperand InN, SDOperand Op) {
1948   SDNode *N = InN.Val;
1949   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
1950   
1951   // Check to see if there is no change.
1952   if (Op == N->getOperand(0)) return InN;
1953   
1954   // See if the modified node already exists.
1955   void *InsertPos = 0;
1956   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
1957     return SDOperand(Existing, InN.ResNo);
1958   
1959   // Nope it doesn't.  Remove the node from it's current place in the maps.
1960   if (InsertPos)
1961     RemoveNodeFromCSEMaps(N);
1962   
1963   // Now we update the operands.
1964   N->OperandList[0].Val->removeUser(N);
1965   Op.Val->addUser(N);
1966   N->OperandList[0] = Op;
1967   
1968   // If this gets put into a CSE map, add it.
1969   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
1970   return InN;
1971 }
1972
1973 SDOperand SelectionDAG::
1974 UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) {
1975   SDNode *N = InN.Val;
1976   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
1977   
1978   // Check to see if there is no change.
1979   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
1980     return InN;   // No operands changed, just return the input node.
1981   
1982   // See if the modified node already exists.
1983   void *InsertPos = 0;
1984   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
1985     return SDOperand(Existing, InN.ResNo);
1986   
1987   // Nope it doesn't.  Remove the node from it's current place in the maps.
1988   if (InsertPos)
1989     RemoveNodeFromCSEMaps(N);
1990   
1991   // Now we update the operands.
1992   if (N->OperandList[0] != Op1) {
1993     N->OperandList[0].Val->removeUser(N);
1994     Op1.Val->addUser(N);
1995     N->OperandList[0] = Op1;
1996   }
1997   if (N->OperandList[1] != Op2) {
1998     N->OperandList[1].Val->removeUser(N);
1999     Op2.Val->addUser(N);
2000     N->OperandList[1] = Op2;
2001   }
2002   
2003   // If this gets put into a CSE map, add it.
2004   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2005   return InN;
2006 }
2007
2008 SDOperand SelectionDAG::
2009 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2010   SDOperand Ops[] = { Op1, Op2, Op3 };
2011   return UpdateNodeOperands(N, Ops, 3);
2012 }
2013
2014 SDOperand SelectionDAG::
2015 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2, 
2016                    SDOperand Op3, SDOperand Op4) {
2017   SDOperand Ops[] = { Op1, Op2, Op3, Op4 };
2018   return UpdateNodeOperands(N, Ops, 4);
2019 }
2020
2021 SDOperand SelectionDAG::
2022 UpdateNodeOperands(SDOperand N, SDOperand Op1, SDOperand Op2,
2023                    SDOperand Op3, SDOperand Op4, SDOperand Op5) {
2024   SDOperand Ops[] = { Op1, Op2, Op3, Op4, Op5 };
2025   return UpdateNodeOperands(N, Ops, 5);
2026 }
2027
2028
2029 SDOperand SelectionDAG::
2030 UpdateNodeOperands(SDOperand InN, SDOperand *Ops, unsigned NumOps) {
2031   SDNode *N = InN.Val;
2032   assert(N->getNumOperands() == NumOps &&
2033          "Update with wrong number of operands");
2034   
2035   // Check to see if there is no change.
2036   bool AnyChange = false;
2037   for (unsigned i = 0; i != NumOps; ++i) {
2038     if (Ops[i] != N->getOperand(i)) {
2039       AnyChange = true;
2040       break;
2041     }
2042   }
2043   
2044   // No operands changed, just return the input node.
2045   if (!AnyChange) return InN;
2046   
2047   // See if the modified node already exists.
2048   void *InsertPos = 0;
2049   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
2050     return SDOperand(Existing, InN.ResNo);
2051   
2052   // Nope it doesn't.  Remove the node from it's current place in the maps.
2053   if (InsertPos)
2054     RemoveNodeFromCSEMaps(N);
2055   
2056   // Now we update the operands.
2057   for (unsigned i = 0; i != NumOps; ++i) {
2058     if (N->OperandList[i] != Ops[i]) {
2059       N->OperandList[i].Val->removeUser(N);
2060       Ops[i].Val->addUser(N);
2061       N->OperandList[i] = Ops[i];
2062     }
2063   }
2064
2065   // If this gets put into a CSE map, add it.
2066   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
2067   return InN;
2068 }
2069
2070
2071 /// MorphNodeTo - This frees the operands of the current node, resets the
2072 /// opcode, types, and operands to the specified value.  This should only be
2073 /// used by the SelectionDAG class.
2074 void SDNode::MorphNodeTo(unsigned Opc, SDVTList L,
2075                          const SDOperand *Ops, unsigned NumOps) {
2076   NodeType = Opc;
2077   ValueList = L.VTs;
2078   NumValues = L.NumVTs;
2079   
2080   // Clear the operands list, updating used nodes to remove this from their
2081   // use list.
2082   for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2083     I->Val->removeUser(this);
2084   
2085   // If NumOps is larger than the # of operands we currently have, reallocate
2086   // the operand list.
2087   if (NumOps > NumOperands) {
2088     if (OperandsNeedDelete)
2089       delete [] OperandList;
2090     OperandList = new SDOperand[NumOps];
2091     OperandsNeedDelete = true;
2092   }
2093   
2094   // Assign the new operands.
2095   NumOperands = NumOps;
2096   
2097   for (unsigned i = 0, e = NumOps; i != e; ++i) {
2098     OperandList[i] = Ops[i];
2099     SDNode *N = OperandList[i].Val;
2100     N->Uses.push_back(this);
2101   }
2102 }
2103
2104 /// SelectNodeTo - These are used for target selectors to *mutate* the
2105 /// specified node to have the specified return type, Target opcode, and
2106 /// operands.  Note that target opcodes are stored as
2107 /// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
2108 ///
2109 /// Note that SelectNodeTo returns the resultant node.  If there is already a
2110 /// node of the specified opcode and operands, it returns that node instead of
2111 /// the current one.
2112 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2113                                    MVT::ValueType VT) {
2114   SDVTList VTs = getVTList(VT);
2115   FoldingSetNodeID ID;
2116   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
2117   void *IP = 0;
2118   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2119     return ON;
2120    
2121   RemoveNodeFromCSEMaps(N);
2122   
2123   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, 0, 0);
2124
2125   CSEMap.InsertNode(N, IP);
2126   return N;
2127 }
2128
2129 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2130                                    MVT::ValueType VT, SDOperand Op1) {
2131   // If an identical node already exists, use it.
2132   SDVTList VTs = getVTList(VT);
2133   SDOperand Ops[] = { Op1 };
2134   
2135   FoldingSetNodeID ID;
2136   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
2137   void *IP = 0;
2138   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2139     return ON;
2140                                        
2141   RemoveNodeFromCSEMaps(N);
2142   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 1);
2143   CSEMap.InsertNode(N, IP);
2144   return N;
2145 }
2146
2147 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2148                                    MVT::ValueType VT, SDOperand Op1,
2149                                    SDOperand Op2) {
2150   // If an identical node already exists, use it.
2151   SDVTList VTs = getVTList(VT);
2152   SDOperand Ops[] = { Op1, Op2 };
2153   
2154   FoldingSetNodeID ID;
2155   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2156   void *IP = 0;
2157   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2158     return ON;
2159                                        
2160   RemoveNodeFromCSEMaps(N);
2161   
2162   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2163   
2164   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2165   return N;
2166 }
2167
2168 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2169                                    MVT::ValueType VT, SDOperand Op1,
2170                                    SDOperand Op2, SDOperand Op3) {
2171   // If an identical node already exists, use it.
2172   SDVTList VTs = getVTList(VT);
2173   SDOperand Ops[] = { Op1, Op2, Op3 };
2174   FoldingSetNodeID ID;
2175   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2176   void *IP = 0;
2177   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2178     return ON;
2179                                        
2180   RemoveNodeFromCSEMaps(N);
2181   
2182   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2183
2184   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2185   return N;
2186 }
2187
2188 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2189                                    MVT::ValueType VT, const SDOperand *Ops,
2190                                    unsigned NumOps) {
2191   // If an identical node already exists, use it.
2192   SDVTList VTs = getVTList(VT);
2193   FoldingSetNodeID ID;
2194   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
2195   void *IP = 0;
2196   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2197     return ON;
2198                                        
2199   RemoveNodeFromCSEMaps(N);
2200   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, NumOps);
2201   
2202   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2203   return N;
2204 }
2205
2206 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc, 
2207                                    MVT::ValueType VT1, MVT::ValueType VT2,
2208                                    SDOperand Op1, SDOperand Op2) {
2209   SDVTList VTs = getVTList(VT1, VT2);
2210   FoldingSetNodeID ID;
2211   SDOperand Ops[] = { Op1, Op2 };
2212   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2213   void *IP = 0;
2214   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2215     return ON;
2216
2217   RemoveNodeFromCSEMaps(N);
2218   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 2);
2219   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2220   return N;
2221 }
2222
2223 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2224                                    MVT::ValueType VT1, MVT::ValueType VT2,
2225                                    SDOperand Op1, SDOperand Op2, 
2226                                    SDOperand Op3) {
2227   // If an identical node already exists, use it.
2228   SDVTList VTs = getVTList(VT1, VT2);
2229   SDOperand Ops[] = { Op1, Op2, Op3 };
2230   FoldingSetNodeID ID;
2231   AddNodeIDNode(ID, ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2232   void *IP = 0;
2233   if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
2234     return ON;
2235
2236   RemoveNodeFromCSEMaps(N);
2237
2238   N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc, VTs, Ops, 3);
2239   CSEMap.InsertNode(N, IP);   // Memoize the new node.
2240   return N;
2241 }
2242
2243
2244 /// getTargetNode - These are used for target selectors to create a new node
2245 /// with specified return type(s), target opcode, and operands.
2246 ///
2247 /// Note that getTargetNode returns the resultant node.  If there is already a
2248 /// node of the specified opcode and operands, it returns that node instead of
2249 /// the current one.
2250 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT) {
2251   return getNode(ISD::BUILTIN_OP_END+Opcode, VT).Val;
2252 }
2253 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2254                                     SDOperand Op1) {
2255   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1).Val;
2256 }
2257 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2258                                     SDOperand Op1, SDOperand Op2) {
2259   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val;
2260 }
2261 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2262                                     SDOperand Op1, SDOperand Op2,
2263                                     SDOperand Op3) {
2264   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val;
2265 }
2266 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT,
2267                                     const SDOperand *Ops, unsigned NumOps) {
2268   return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Ops, NumOps).Val;
2269 }
2270 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2271                                     MVT::ValueType VT2, SDOperand Op1) {
2272   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
2273   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, &Op1, 1).Val;
2274 }
2275 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2276                                     MVT::ValueType VT2, SDOperand Op1,
2277                                     SDOperand Op2) {
2278   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
2279   SDOperand Ops[] = { Op1, Op2 };
2280   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 2).Val;
2281 }
2282 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2283                                     MVT::ValueType VT2, SDOperand Op1,
2284                                     SDOperand Op2, SDOperand Op3) {
2285   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
2286   SDOperand Ops[] = { Op1, Op2, Op3 };
2287   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, 3).Val;
2288 }
2289 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
2290                                     MVT::ValueType VT2,
2291                                     const SDOperand *Ops, unsigned NumOps) {
2292   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2);
2293   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 2, Ops, NumOps).Val;
2294 }
2295 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2296                                     MVT::ValueType VT2, MVT::ValueType VT3,
2297                                     SDOperand Op1, SDOperand Op2) {
2298   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2299   SDOperand Ops[] = { Op1, Op2 };
2300   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 2).Val;
2301 }
2302 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1,
2303                                     MVT::ValueType VT2, MVT::ValueType VT3,
2304                                     SDOperand Op1, SDOperand Op2,
2305                                     SDOperand Op3) {
2306   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2307   SDOperand Ops[] = { Op1, Op2, Op3 };
2308   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, 3).Val;
2309 }
2310 SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT1, 
2311                                     MVT::ValueType VT2, MVT::ValueType VT3,
2312                                     const SDOperand *Ops, unsigned NumOps) {
2313   const MVT::ValueType *VTs = getNodeValueTypes(VT1, VT2, VT3);
2314   return getNode(ISD::BUILTIN_OP_END+Opcode, VTs, 3, Ops, NumOps).Val;
2315 }
2316
2317 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2318 /// This can cause recursive merging of nodes in the DAG.
2319 ///
2320 /// This version assumes From/To have a single result value.
2321 ///
2322 void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2323                                       std::vector<SDNode*> *Deleted) {
2324   SDNode *From = FromN.Val, *To = ToN.Val;
2325   assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2326          "Cannot replace with this method!");
2327   assert(From != To && "Cannot replace uses of with self");
2328   
2329   while (!From->use_empty()) {
2330     // Process users until they are all gone.
2331     SDNode *U = *From->use_begin();
2332     
2333     // This node is about to morph, remove its old self from the CSE maps.
2334     RemoveNodeFromCSEMaps(U);
2335     
2336     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2337          I != E; ++I)
2338       if (I->Val == From) {
2339         From->removeUser(U);
2340         I->Val = To;
2341         To->addUser(U);
2342       }
2343
2344     // Now that we have modified U, add it back to the CSE maps.  If it already
2345     // exists there, recursively merge the results together.
2346     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2347       ReplaceAllUsesWith(U, Existing, Deleted);
2348       // U is now dead.
2349       if (Deleted) Deleted->push_back(U);
2350       DeleteNodeNotInCSEMaps(U);
2351     }
2352   }
2353 }
2354
2355 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2356 /// This can cause recursive merging of nodes in the DAG.
2357 ///
2358 /// This version assumes From/To have matching types and numbers of result
2359 /// values.
2360 ///
2361 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2362                                       std::vector<SDNode*> *Deleted) {
2363   assert(From != To && "Cannot replace uses of with self");
2364   assert(From->getNumValues() == To->getNumValues() &&
2365          "Cannot use this version of ReplaceAllUsesWith!");
2366   if (From->getNumValues() == 1) {  // If possible, use the faster version.
2367     ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
2368     return;
2369   }
2370   
2371   while (!From->use_empty()) {
2372     // Process users until they are all gone.
2373     SDNode *U = *From->use_begin();
2374     
2375     // This node is about to morph, remove its old self from the CSE maps.
2376     RemoveNodeFromCSEMaps(U);
2377     
2378     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2379          I != E; ++I)
2380       if (I->Val == From) {
2381         From->removeUser(U);
2382         I->Val = To;
2383         To->addUser(U);
2384       }
2385         
2386     // Now that we have modified U, add it back to the CSE maps.  If it already
2387     // exists there, recursively merge the results together.
2388     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2389       ReplaceAllUsesWith(U, Existing, Deleted);
2390       // U is now dead.
2391       if (Deleted) Deleted->push_back(U);
2392       DeleteNodeNotInCSEMaps(U);
2393     }
2394   }
2395 }
2396
2397 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2398 /// This can cause recursive merging of nodes in the DAG.
2399 ///
2400 /// This version can replace From with any result values.  To must match the
2401 /// number and types of values returned by From.
2402 void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
2403                                       const SDOperand *To,
2404                                       std::vector<SDNode*> *Deleted) {
2405   if (From->getNumValues() == 1 && To[0].Val->getNumValues() == 1) {
2406     // Degenerate case handled above.
2407     ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
2408     return;
2409   }
2410
2411   while (!From->use_empty()) {
2412     // Process users until they are all gone.
2413     SDNode *U = *From->use_begin();
2414     
2415     // This node is about to morph, remove its old self from the CSE maps.
2416     RemoveNodeFromCSEMaps(U);
2417     
2418     for (SDOperand *I = U->OperandList, *E = U->OperandList+U->NumOperands;
2419          I != E; ++I)
2420       if (I->Val == From) {
2421         const SDOperand &ToOp = To[I->ResNo];
2422         From->removeUser(U);
2423         *I = ToOp;
2424         ToOp.Val->addUser(U);
2425       }
2426         
2427     // Now that we have modified U, add it back to the CSE maps.  If it already
2428     // exists there, recursively merge the results together.
2429     if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2430       ReplaceAllUsesWith(U, Existing, Deleted);
2431       // U is now dead.
2432       if (Deleted) Deleted->push_back(U);
2433       DeleteNodeNotInCSEMaps(U);
2434     }
2435   }
2436 }
2437
2438 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
2439 /// uses of other values produced by From.Val alone.  The Deleted vector is
2440 /// handled the same was as for ReplaceAllUsesWith.
2441 void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
2442                                              std::vector<SDNode*> &Deleted) {
2443   assert(From != To && "Cannot replace a value with itself");
2444   // Handle the simple, trivial, case efficiently.
2445   if (From.Val->getNumValues() == 1 && To.Val->getNumValues() == 1) {
2446     ReplaceAllUsesWith(From, To, &Deleted);
2447     return;
2448   }
2449   
2450   // Get all of the users of From.Val.  We want these in a nice,
2451   // deterministically ordered and uniqued set, so we use a SmallSetVector.
2452   SmallSetVector<SDNode*, 16> Users(From.Val->use_begin(), From.Val->use_end());
2453
2454   while (!Users.empty()) {
2455     // We know that this user uses some value of From.  If it is the right
2456     // value, update it.
2457     SDNode *User = Users.back();
2458     Users.pop_back();
2459     
2460     for (SDOperand *Op = User->OperandList,
2461          *E = User->OperandList+User->NumOperands; Op != E; ++Op) {
2462       if (*Op == From) {
2463         // Okay, we know this user needs to be updated.  Remove its old self
2464         // from the CSE maps.
2465         RemoveNodeFromCSEMaps(User);
2466         
2467         // Update all operands that match "From".
2468         for (; Op != E; ++Op) {
2469           if (*Op == From) {
2470             From.Val->removeUser(User);
2471             *Op = To;
2472             To.Val->addUser(User);
2473           }
2474         }
2475                    
2476         // Now that we have modified User, add it back to the CSE maps.  If it
2477         // already exists there, recursively merge the results together.
2478         if (SDNode *Existing = AddNonLeafNodeToCSEMaps(User)) {
2479           unsigned NumDeleted = Deleted.size();
2480           ReplaceAllUsesWith(User, Existing, &Deleted);
2481           
2482           // User is now dead.
2483           Deleted.push_back(User);
2484           DeleteNodeNotInCSEMaps(User);
2485           
2486           // We have to be careful here, because ReplaceAllUsesWith could have
2487           // deleted a user of From, which means there may be dangling pointers
2488           // in the "Users" setvector.  Scan over the deleted node pointers and
2489           // remove them from the setvector.
2490           for (unsigned i = NumDeleted, e = Deleted.size(); i != e; ++i)
2491             Users.remove(Deleted[i]);
2492         }
2493         break;   // Exit the operand scanning loop.
2494       }
2495     }
2496   }
2497 }
2498
2499
2500 /// AssignNodeIds - Assign a unique node id for each node in the DAG based on
2501 /// their allnodes order. It returns the maximum id.
2502 unsigned SelectionDAG::AssignNodeIds() {
2503   unsigned Id = 0;
2504   for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
2505     SDNode *N = I;
2506     N->setNodeId(Id++);
2507   }
2508   return Id;
2509 }
2510
2511 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
2512 /// based on their topological order. It returns the maximum id and a vector
2513 /// of the SDNodes* in assigned order by reference.
2514 unsigned SelectionDAG::AssignTopologicalOrder(std::vector<SDNode*> &TopOrder) {
2515   unsigned DAGSize = AllNodes.size();
2516   std::vector<unsigned> InDegree(DAGSize);
2517   std::vector<SDNode*> Sources;
2518
2519   // Use a two pass approach to avoid using a std::map which is slow.
2520   unsigned Id = 0;
2521   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I){
2522     SDNode *N = I;
2523     N->setNodeId(Id++);
2524     unsigned Degree = N->use_size();
2525     InDegree[N->getNodeId()] = Degree;
2526     if (Degree == 0)
2527       Sources.push_back(N);
2528   }
2529
2530   TopOrder.clear();
2531   while (!Sources.empty()) {
2532     SDNode *N = Sources.back();
2533     Sources.pop_back();
2534     TopOrder.push_back(N);
2535     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
2536       SDNode *P = I->Val;
2537       unsigned Degree = --InDegree[P->getNodeId()];
2538       if (Degree == 0)
2539         Sources.push_back(P);
2540     }
2541   }
2542
2543   // Second pass, assign the actual topological order as node ids.
2544   Id = 0;
2545   for (std::vector<SDNode*>::iterator TI = TopOrder.begin(),TE = TopOrder.end();
2546        TI != TE; ++TI)
2547     (*TI)->setNodeId(Id++);
2548
2549   return Id;
2550 }
2551
2552
2553
2554 //===----------------------------------------------------------------------===//
2555 //                              SDNode Class
2556 //===----------------------------------------------------------------------===//
2557
2558 // Out-of-line virtual method to give class a home.
2559 void SDNode::ANCHOR() {}
2560 void UnarySDNode::ANCHOR() {}
2561 void BinarySDNode::ANCHOR() {}
2562 void TernarySDNode::ANCHOR() {}
2563 void HandleSDNode::ANCHOR() {}
2564 void StringSDNode::ANCHOR() {}
2565 void ConstantSDNode::ANCHOR() {}
2566 void ConstantFPSDNode::ANCHOR() {}
2567 void GlobalAddressSDNode::ANCHOR() {}
2568 void FrameIndexSDNode::ANCHOR() {}
2569 void JumpTableSDNode::ANCHOR() {}
2570 void ConstantPoolSDNode::ANCHOR() {}
2571 void BasicBlockSDNode::ANCHOR() {}
2572 void SrcValueSDNode::ANCHOR() {}
2573 void RegisterSDNode::ANCHOR() {}
2574 void ExternalSymbolSDNode::ANCHOR() {}
2575 void CondCodeSDNode::ANCHOR() {}
2576 void VTSDNode::ANCHOR() {}
2577 void LoadSDNode::ANCHOR() {}
2578 void StoreSDNode::ANCHOR() {}
2579
2580 HandleSDNode::~HandleSDNode() {
2581   SDVTList VTs = { 0, 0 };
2582   MorphNodeTo(ISD::HANDLENODE, VTs, 0, 0);  // Drops operand uses.
2583 }
2584
2585
2586 /// Profile - Gather unique data for the node.
2587 ///
2588 void SDNode::Profile(FoldingSetNodeID &ID) {
2589   AddNodeIDNode(ID, this);
2590 }
2591
2592 /// getValueTypeList - Return a pointer to the specified value type.
2593 ///
2594 MVT::ValueType *SDNode::getValueTypeList(MVT::ValueType VT) {
2595   static MVT::ValueType VTs[MVT::LAST_VALUETYPE];
2596   VTs[VT] = VT;
2597   return &VTs[VT];
2598 }
2599   
2600 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2601 /// indicated value.  This method ignores uses of other values defined by this
2602 /// operation.
2603 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
2604   assert(Value < getNumValues() && "Bad value!");
2605
2606   // If there is only one value, this is easy.
2607   if (getNumValues() == 1)
2608     return use_size() == NUses;
2609   if (Uses.size() < NUses) return false;
2610
2611   SDOperand TheValue(const_cast<SDNode *>(this), Value);
2612
2613   SmallPtrSet<SDNode*, 32> UsersHandled;
2614
2615   for (SDNode::use_iterator UI = Uses.begin(), E = Uses.end(); UI != E; ++UI) {
2616     SDNode *User = *UI;
2617     if (User->getNumOperands() == 1 ||
2618         UsersHandled.insert(User))     // First time we've seen this?
2619       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2620         if (User->getOperand(i) == TheValue) {
2621           if (NUses == 0)
2622             return false;   // too many uses
2623           --NUses;
2624         }
2625   }
2626
2627   // Found exactly the right number of uses?
2628   return NUses == 0;
2629 }
2630
2631
2632 /// isOnlyUse - Return true if this node is the only use of N.
2633 ///
2634 bool SDNode::isOnlyUse(SDNode *N) const {
2635   bool Seen = false;
2636   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
2637     SDNode *User = *I;
2638     if (User == this)
2639       Seen = true;
2640     else
2641       return false;
2642   }
2643
2644   return Seen;
2645 }
2646
2647 /// isOperand - Return true if this node is an operand of N.
2648 ///
2649 bool SDOperand::isOperand(SDNode *N) const {
2650   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2651     if (*this == N->getOperand(i))
2652       return true;
2653   return false;
2654 }
2655
2656 bool SDNode::isOperand(SDNode *N) const {
2657   for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
2658     if (this == N->OperandList[i].Val)
2659       return true;
2660   return false;
2661 }
2662
2663 static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
2664                             SmallPtrSet<SDNode *, 32> &Visited) {
2665   if (found || !Visited.insert(N))
2666     return;
2667
2668   for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
2669     SDNode *Op = N->getOperand(i).Val;
2670     if (Op == P) {
2671       found = true;
2672       return;
2673     }
2674     findPredecessor(Op, P, found, Visited);
2675   }
2676 }
2677
2678 /// isPredecessor - Return true if this node is a predecessor of N. This node
2679 /// is either an operand of N or it can be reached by recursively traversing
2680 /// up the operands.
2681 /// NOTE: this is an expensive method. Use it carefully.
2682 bool SDNode::isPredecessor(SDNode *N) const {
2683   SmallPtrSet<SDNode *, 32> Visited;
2684   bool found = false;
2685   findPredecessor(N, this, found, Visited);
2686   return found;
2687 }
2688
2689 uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
2690   assert(Num < NumOperands && "Invalid child # of SDNode!");
2691   return cast<ConstantSDNode>(OperandList[Num])->getValue();
2692 }
2693
2694 std::string SDNode::getOperationName(const SelectionDAG *G) const {
2695   switch (getOpcode()) {
2696   default:
2697     if (getOpcode() < ISD::BUILTIN_OP_END)
2698       return "<<Unknown DAG Node>>";
2699     else {
2700       if (G) {
2701         if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
2702           if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2703             return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
2704
2705         TargetLowering &TLI = G->getTargetLoweringInfo();
2706         const char *Name =
2707           TLI.getTargetNodeName(getOpcode());
2708         if (Name) return Name;
2709       }
2710
2711       return "<<Unknown Target Node>>";
2712     }
2713    
2714   case ISD::PCMARKER:      return "PCMarker";
2715   case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
2716   case ISD::SRCVALUE:      return "SrcValue";
2717   case ISD::EntryToken:    return "EntryToken";
2718   case ISD::TokenFactor:   return "TokenFactor";
2719   case ISD::AssertSext:    return "AssertSext";
2720   case ISD::AssertZext:    return "AssertZext";
2721
2722   case ISD::STRING:        return "String";
2723   case ISD::BasicBlock:    return "BasicBlock";
2724   case ISD::VALUETYPE:     return "ValueType";
2725   case ISD::Register:      return "Register";
2726
2727   case ISD::Constant:      return "Constant";
2728   case ISD::ConstantFP:    return "ConstantFP";
2729   case ISD::GlobalAddress: return "GlobalAddress";
2730   case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
2731   case ISD::FrameIndex:    return "FrameIndex";
2732   case ISD::JumpTable:     return "JumpTable";
2733   case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
2734   case ISD::RETURNADDR: return "RETURNADDR";
2735   case ISD::FRAMEADDR: return "FRAMEADDR";
2736   case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
2737   case ISD::EHSELECTION: return "EHSELECTION";
2738   case ISD::ConstantPool:  return "ConstantPool";
2739   case ISD::ExternalSymbol: return "ExternalSymbol";
2740   case ISD::INTRINSIC_WO_CHAIN: {
2741     unsigned IID = cast<ConstantSDNode>(getOperand(0))->getValue();
2742     return Intrinsic::getName((Intrinsic::ID)IID);
2743   }
2744   case ISD::INTRINSIC_VOID:
2745   case ISD::INTRINSIC_W_CHAIN: {
2746     unsigned IID = cast<ConstantSDNode>(getOperand(1))->getValue();
2747     return Intrinsic::getName((Intrinsic::ID)IID);
2748   }
2749
2750   case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
2751   case ISD::TargetConstant: return "TargetConstant";
2752   case ISD::TargetConstantFP:return "TargetConstantFP";
2753   case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2754   case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
2755   case ISD::TargetFrameIndex: return "TargetFrameIndex";
2756   case ISD::TargetJumpTable:  return "TargetJumpTable";
2757   case ISD::TargetConstantPool:  return "TargetConstantPool";
2758   case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
2759
2760   case ISD::CopyToReg:     return "CopyToReg";
2761   case ISD::CopyFromReg:   return "CopyFromReg";
2762   case ISD::UNDEF:         return "undef";
2763   case ISD::MERGE_VALUES:  return "mergevalues";
2764   case ISD::INLINEASM:     return "inlineasm";
2765   case ISD::LABEL:         return "label";
2766   case ISD::HANDLENODE:    return "handlenode";
2767   case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
2768   case ISD::CALL:          return "call";
2769     
2770   // Unary operators
2771   case ISD::FABS:   return "fabs";
2772   case ISD::FNEG:   return "fneg";
2773   case ISD::FSQRT:  return "fsqrt";
2774   case ISD::FSIN:   return "fsin";
2775   case ISD::FCOS:   return "fcos";
2776   case ISD::FPOWI:  return "fpowi";
2777
2778   // Binary operators
2779   case ISD::ADD:    return "add";
2780   case ISD::SUB:    return "sub";
2781   case ISD::MUL:    return "mul";
2782   case ISD::MULHU:  return "mulhu";
2783   case ISD::MULHS:  return "mulhs";
2784   case ISD::SDIV:   return "sdiv";
2785   case ISD::UDIV:   return "udiv";
2786   case ISD::SREM:   return "srem";
2787   case ISD::UREM:   return "urem";
2788   case ISD::AND:    return "and";
2789   case ISD::OR:     return "or";
2790   case ISD::XOR:    return "xor";
2791   case ISD::SHL:    return "shl";
2792   case ISD::SRA:    return "sra";
2793   case ISD::SRL:    return "srl";
2794   case ISD::ROTL:   return "rotl";
2795   case ISD::ROTR:   return "rotr";
2796   case ISD::FADD:   return "fadd";
2797   case ISD::FSUB:   return "fsub";
2798   case ISD::FMUL:   return "fmul";
2799   case ISD::FDIV:   return "fdiv";
2800   case ISD::FREM:   return "frem";
2801   case ISD::FCOPYSIGN: return "fcopysign";
2802   case ISD::VADD:   return "vadd";
2803   case ISD::VSUB:   return "vsub";
2804   case ISD::VMUL:   return "vmul";
2805   case ISD::VSDIV:  return "vsdiv";
2806   case ISD::VUDIV:  return "vudiv";
2807   case ISD::VAND:   return "vand";
2808   case ISD::VOR:    return "vor";
2809   case ISD::VXOR:   return "vxor";
2810
2811   case ISD::SETCC:       return "setcc";
2812   case ISD::SELECT:      return "select";
2813   case ISD::SELECT_CC:   return "select_cc";
2814   case ISD::VSELECT:     return "vselect";
2815   case ISD::INSERT_VECTOR_ELT:   return "insert_vector_elt";
2816   case ISD::VINSERT_VECTOR_ELT:  return "vinsert_vector_elt";
2817   case ISD::EXTRACT_VECTOR_ELT:  return "extract_vector_elt";
2818   case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt";
2819   case ISD::SCALAR_TO_VECTOR:    return "scalar_to_vector";
2820   case ISD::VBUILD_VECTOR:       return "vbuild_vector";
2821   case ISD::VECTOR_SHUFFLE:      return "vector_shuffle";
2822   case ISD::VVECTOR_SHUFFLE:     return "vvector_shuffle";
2823   case ISD::VBIT_CONVERT:        return "vbit_convert";
2824   case ISD::CARRY_FALSE:         return "carry_false";
2825   case ISD::ADDC:        return "addc";
2826   case ISD::ADDE:        return "adde";
2827   case ISD::SUBC:        return "subc";
2828   case ISD::SUBE:        return "sube";
2829   case ISD::SHL_PARTS:   return "shl_parts";
2830   case ISD::SRA_PARTS:   return "sra_parts";
2831   case ISD::SRL_PARTS:   return "srl_parts";
2832
2833   // Conversion operators.
2834   case ISD::SIGN_EXTEND: return "sign_extend";
2835   case ISD::ZERO_EXTEND: return "zero_extend";
2836   case ISD::ANY_EXTEND:  return "any_extend";
2837   case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
2838   case ISD::TRUNCATE:    return "truncate";
2839   case ISD::FP_ROUND:    return "fp_round";
2840   case ISD::FP_ROUND_INREG: return "fp_round_inreg";
2841   case ISD::FP_EXTEND:   return "fp_extend";
2842
2843   case ISD::SINT_TO_FP:  return "sint_to_fp";
2844   case ISD::UINT_TO_FP:  return "uint_to_fp";
2845   case ISD::FP_TO_SINT:  return "fp_to_sint";
2846   case ISD::FP_TO_UINT:  return "fp_to_uint";
2847   case ISD::BIT_CONVERT: return "bit_convert";
2848
2849     // Control flow instructions
2850   case ISD::BR:      return "br";
2851   case ISD::BRIND:   return "brind";
2852   case ISD::BR_JT:   return "br_jt";
2853   case ISD::BRCOND:  return "brcond";
2854   case ISD::BR_CC:   return "br_cc";
2855   case ISD::RET:     return "ret";
2856   case ISD::CALLSEQ_START:  return "callseq_start";
2857   case ISD::CALLSEQ_END:    return "callseq_end";
2858
2859     // Other operators
2860   case ISD::LOAD:               return "load";
2861   case ISD::STORE:              return "store";
2862   case ISD::VLOAD:              return "vload";
2863   case ISD::VAARG:              return "vaarg";
2864   case ISD::VACOPY:             return "vacopy";
2865   case ISD::VAEND:              return "vaend";
2866   case ISD::VASTART:            return "vastart";
2867   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
2868   case ISD::EXTRACT_ELEMENT:    return "extract_element";
2869   case ISD::BUILD_PAIR:         return "build_pair";
2870   case ISD::STACKSAVE:          return "stacksave";
2871   case ISD::STACKRESTORE:       return "stackrestore";
2872     
2873   // Block memory operations.
2874   case ISD::MEMSET:  return "memset";
2875   case ISD::MEMCPY:  return "memcpy";
2876   case ISD::MEMMOVE: return "memmove";
2877
2878   // Bit manipulation
2879   case ISD::BSWAP:   return "bswap";
2880   case ISD::CTPOP:   return "ctpop";
2881   case ISD::CTTZ:    return "cttz";
2882   case ISD::CTLZ:    return "ctlz";
2883
2884   // Debug info
2885   case ISD::LOCATION: return "location";
2886   case ISD::DEBUG_LOC: return "debug_loc";
2887
2888   case ISD::CONDCODE:
2889     switch (cast<CondCodeSDNode>(this)->get()) {
2890     default: assert(0 && "Unknown setcc condition!");
2891     case ISD::SETOEQ:  return "setoeq";
2892     case ISD::SETOGT:  return "setogt";
2893     case ISD::SETOGE:  return "setoge";
2894     case ISD::SETOLT:  return "setolt";
2895     case ISD::SETOLE:  return "setole";
2896     case ISD::SETONE:  return "setone";
2897
2898     case ISD::SETO:    return "seto";
2899     case ISD::SETUO:   return "setuo";
2900     case ISD::SETUEQ:  return "setue";
2901     case ISD::SETUGT:  return "setugt";
2902     case ISD::SETUGE:  return "setuge";
2903     case ISD::SETULT:  return "setult";
2904     case ISD::SETULE:  return "setule";
2905     case ISD::SETUNE:  return "setune";
2906
2907     case ISD::SETEQ:   return "seteq";
2908     case ISD::SETGT:   return "setgt";
2909     case ISD::SETGE:   return "setge";
2910     case ISD::SETLT:   return "setlt";
2911     case ISD::SETLE:   return "setle";
2912     case ISD::SETNE:   return "setne";
2913     }
2914   }
2915 }
2916
2917 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
2918   switch (AM) {
2919   default:
2920     return "";
2921   case ISD::PRE_INC:
2922     return "<pre-inc>";
2923   case ISD::PRE_DEC:
2924     return "<pre-dec>";
2925   case ISD::POST_INC:
2926     return "<post-inc>";
2927   case ISD::POST_DEC:
2928     return "<post-dec>";
2929   }
2930 }
2931
2932 void SDNode::dump() const { dump(0); }
2933 void SDNode::dump(const SelectionDAG *G) const {
2934   cerr << (void*)this << ": ";
2935
2936   for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
2937     if (i) cerr << ",";
2938     if (getValueType(i) == MVT::Other)
2939       cerr << "ch";
2940     else
2941       cerr << MVT::getValueTypeString(getValueType(i));
2942   }
2943   cerr << " = " << getOperationName(G);
2944
2945   cerr << " ";
2946   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2947     if (i) cerr << ", ";
2948     cerr << (void*)getOperand(i).Val;
2949     if (unsigned RN = getOperand(i).ResNo)
2950       cerr << ":" << RN;
2951   }
2952
2953   if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
2954     cerr << "<" << CSDN->getValue() << ">";
2955   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
2956     cerr << "<" << CSDN->getValue() << ">";
2957   } else if (const GlobalAddressSDNode *GADN =
2958              dyn_cast<GlobalAddressSDNode>(this)) {
2959     int offset = GADN->getOffset();
2960     cerr << "<";
2961     WriteAsOperand(*cerr.stream(), GADN->getGlobal()) << ">";
2962     if (offset > 0)
2963       cerr << " + " << offset;
2964     else
2965       cerr << " " << offset;
2966   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
2967     cerr << "<" << FIDN->getIndex() << ">";
2968   } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
2969     cerr << "<" << JTDN->getIndex() << ">";
2970   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
2971     int offset = CP->getOffset();
2972     if (CP->isMachineConstantPoolEntry())
2973       cerr << "<" << *CP->getMachineCPVal() << ">";
2974     else
2975       cerr << "<" << *CP->getConstVal() << ">";
2976     if (offset > 0)
2977       cerr << " + " << offset;
2978     else
2979       cerr << " " << offset;
2980   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
2981     cerr << "<";
2982     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2983     if (LBB)
2984       cerr << LBB->getName() << " ";
2985     cerr << (const void*)BBDN->getBasicBlock() << ">";
2986   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
2987     if (G && R->getReg() && MRegisterInfo::isPhysicalRegister(R->getReg())) {
2988       cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
2989     } else {
2990       cerr << " #" << R->getReg();
2991     }
2992   } else if (const ExternalSymbolSDNode *ES =
2993              dyn_cast<ExternalSymbolSDNode>(this)) {
2994     cerr << "'" << ES->getSymbol() << "'";
2995   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2996     if (M->getValue())
2997       cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
2998     else
2999       cerr << "<null:" << M->getOffset() << ">";
3000   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
3001     cerr << ":" << getValueTypeString(N->getVT());
3002   } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
3003     bool doExt = true;
3004     switch (LD->getExtensionType()) {
3005     default: doExt = false; break;
3006     case ISD::EXTLOAD:
3007       cerr << " <anyext ";
3008       break;
3009     case ISD::SEXTLOAD:
3010       cerr << " <sext ";
3011       break;
3012     case ISD::ZEXTLOAD:
3013       cerr << " <zext ";
3014       break;
3015     }
3016     if (doExt)
3017       cerr << MVT::getValueTypeString(LD->getLoadedVT()) << ">";
3018
3019     const char *AM = getIndexedModeName(LD->getAddressingMode());
3020     if (AM != "")
3021       cerr << " " << AM;
3022   } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
3023     if (ST->isTruncatingStore())
3024       cerr << " <trunc "
3025            << MVT::getValueTypeString(ST->getStoredVT()) << ">";
3026
3027     const char *AM = getIndexedModeName(ST->getAddressingMode());
3028     if (AM != "")
3029       cerr << " " << AM;
3030   }
3031 }
3032
3033 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
3034   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
3035     if (N->getOperand(i).Val->hasOneUse())
3036       DumpNodes(N->getOperand(i).Val, indent+2, G);
3037     else
3038       cerr << "\n" << std::string(indent+2, ' ')
3039            << (void*)N->getOperand(i).Val << ": <multiple use>";
3040
3041
3042   cerr << "\n" << std::string(indent, ' ');
3043   N->dump(G);
3044 }
3045
3046 void SelectionDAG::dump() const {
3047   cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
3048   std::vector<const SDNode*> Nodes;
3049   for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
3050        I != E; ++I)
3051     Nodes.push_back(I);
3052   
3053   std::sort(Nodes.begin(), Nodes.end());
3054
3055   for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
3056     if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
3057       DumpNodes(Nodes[i], 2, this);
3058   }
3059
3060   if (getRoot().Val) DumpNodes(getRoot().Val, 2, this);
3061
3062   cerr << "\n\n";
3063 }
3064
3065 const Type *ConstantPoolSDNode::getType() const {
3066   if (isMachineConstantPoolEntry())
3067     return Val.MachineCPVal->getType();
3068   return Val.ConstVal->getType();
3069 }