remove "Slot", it is dead
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeDAG.cpp
1 //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
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 file implements the SelectionDAG::Legalize method.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "llvm/CodeGen/MachineFunction.h"
16 #include "llvm/CodeGen/MachineFrameInfo.h"
17 #include "llvm/Support/MathExtras.h"
18 #include "llvm/Target/TargetLowering.h"
19 #include "llvm/Target/TargetData.h"
20 #include "llvm/Target/TargetOptions.h"
21 #include "llvm/CallingConv.h"
22 #include "llvm/Constants.h"
23 #include <iostream>
24 #include <set>
25 using namespace llvm;
26
27 //===----------------------------------------------------------------------===//
28 /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
29 /// hacks on it until the target machine can handle it.  This involves
30 /// eliminating value sizes the machine cannot handle (promoting small sizes to
31 /// large sizes or splitting up large values into small values) as well as
32 /// eliminating operations the machine cannot handle.
33 ///
34 /// This code also does a small amount of optimization and recognition of idioms
35 /// as part of its processing.  For example, if a target does not support a
36 /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
37 /// will attempt merge setcc and brc instructions into brcc's.
38 ///
39 namespace {
40 class SelectionDAGLegalize {
41   TargetLowering &TLI;
42   SelectionDAG &DAG;
43
44   // Libcall insertion helpers.
45   
46   /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
47   /// legalized.  We use this to ensure that calls are properly serialized
48   /// against each other, including inserted libcalls.
49   SDOperand LastCALLSEQ_END;
50   
51   /// IsLegalizingCall - This member is used *only* for purposes of providing
52   /// helpful assertions that a libcall isn't created while another call is 
53   /// being legalized (which could lead to non-serialized call sequences).
54   bool IsLegalizingCall;
55   
56   enum LegalizeAction {
57     Legal,      // The target natively supports this operation.
58     Promote,    // This operation should be executed in a larger type.
59     Expand,     // Try to expand this to other ops, otherwise use a libcall.
60   };
61   
62   /// ValueTypeActions - This is a bitvector that contains two bits for each
63   /// value type, where the two bits correspond to the LegalizeAction enum.
64   /// This can be queried with "getTypeAction(VT)".
65   TargetLowering::ValueTypeActionImpl ValueTypeActions;
66
67   /// LegalizedNodes - For nodes that are of legal width, and that have more
68   /// than one use, this map indicates what regularized operand to use.  This
69   /// allows us to avoid legalizing the same thing more than once.
70   std::map<SDOperand, SDOperand> LegalizedNodes;
71
72   /// PromotedNodes - For nodes that are below legal width, and that have more
73   /// than one use, this map indicates what promoted value to use.  This allows
74   /// us to avoid promoting the same thing more than once.
75   std::map<SDOperand, SDOperand> PromotedNodes;
76
77   /// ExpandedNodes - For nodes that need to be expanded, and which have more
78   /// than one use, this map indicates which which operands are the expanded
79   /// version of the input.  This allows us to avoid expanding the same node
80   /// more than once.
81   std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
82
83   void AddLegalizedOperand(SDOperand From, SDOperand To) {
84     LegalizedNodes.insert(std::make_pair(From, To));
85     // If someone requests legalization of the new node, return itself.
86     if (From != To)
87       LegalizedNodes.insert(std::make_pair(To, To));
88   }
89   void AddPromotedOperand(SDOperand From, SDOperand To) {
90     bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
91     assert(isNew && "Got into the map somehow?");
92     // If someone requests legalization of the new node, return itself.
93     LegalizedNodes.insert(std::make_pair(To, To));
94   }
95
96 public:
97
98   SelectionDAGLegalize(SelectionDAG &DAG);
99
100   /// getTypeAction - Return how we should legalize values of this type, either
101   /// it is already legal or we need to expand it into multiple registers of
102   /// smaller integer type, or we need to promote it to a larger type.
103   LegalizeAction getTypeAction(MVT::ValueType VT) const {
104     return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
105   }
106
107   /// isTypeLegal - Return true if this type is legal on this target.
108   ///
109   bool isTypeLegal(MVT::ValueType VT) const {
110     return getTypeAction(VT) == Legal;
111   }
112
113   void LegalizeDAG();
114
115 private:
116
117   SDOperand LegalizeOp(SDOperand O);
118   void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
119   SDOperand PromoteOp(SDOperand O);
120
121   bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest);
122
123   void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
124     
125   SDOperand ExpandLibCall(const char *Name, SDNode *Node,
126                           SDOperand &Hi);
127   SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
128                           SDOperand Source);
129
130   SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
131   SDOperand ExpandLegalINT_TO_FP(bool isSigned,
132                                  SDOperand LegalOp,
133                                  MVT::ValueType DestVT);
134   SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
135                                   bool isSigned);
136   SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
137                                   bool isSigned);
138
139   SDOperand ExpandBSWAP(SDOperand Op);
140   SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
141   bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
142                    SDOperand &Lo, SDOperand &Hi);
143   void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
144                         SDOperand &Lo, SDOperand &Hi);
145
146   SDOperand getIntPtrConstant(uint64_t Val) {
147     return DAG.getConstant(Val, TLI.getPointerTy());
148   }
149 };
150 }
151
152 static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
153   switch (VecOp) {
154   default: assert(0 && "Don't know how to scalarize this opcode!");
155   case ISD::VADD:  return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
156   case ISD::VSUB:  return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
157   case ISD::VMUL:  return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
158   case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
159   case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
160   case ISD::VAND:  return MVT::isInteger(VT) ? ISD::AND : 0;
161   case ISD::VOR:   return MVT::isInteger(VT) ? ISD::OR  : 0;
162   case ISD::VXOR:  return MVT::isInteger(VT) ? ISD::XOR : 0;
163   }
164 }
165
166 SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
167   : TLI(dag.getTargetLoweringInfo()), DAG(dag),
168     ValueTypeActions(TLI.getValueTypeActions()) {
169   assert(MVT::LAST_VALUETYPE <= 32 &&
170          "Too many value types for ValueTypeActions to hold!");
171 }
172
173 /// ComputeTopDownOrdering - Add the specified node to the Order list if it has
174 /// not been visited yet and if all of its operands have already been visited.
175 static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
176                                    std::map<SDNode*, unsigned> &Visited) {
177   if (++Visited[N] != N->getNumOperands())
178     return;  // Haven't visited all operands yet
179   
180   Order.push_back(N);
181   
182   if (N->hasOneUse()) { // Tail recurse in common case.
183     ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
184     return;
185   }
186   
187   // Now that we have N in, add anything that uses it if all of their operands
188   // are now done.
189   for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
190     ComputeTopDownOrdering(*UI, Order, Visited);
191 }
192
193
194 void SelectionDAGLegalize::LegalizeDAG() {
195   LastCALLSEQ_END = DAG.getEntryNode();
196   IsLegalizingCall = false;
197   
198   // The legalize process is inherently a bottom-up recursive process (users
199   // legalize their uses before themselves).  Given infinite stack space, we
200   // could just start legalizing on the root and traverse the whole graph.  In
201   // practice however, this causes us to run out of stack space on large basic
202   // blocks.  To avoid this problem, compute an ordering of the nodes where each
203   // node is only legalized after all of its operands are legalized.
204   std::map<SDNode*, unsigned> Visited;
205   std::vector<SDNode*> Order;
206   
207   // Compute ordering from all of the leaves in the graphs, those (like the
208   // entry node) that have no operands.
209   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
210        E = DAG.allnodes_end(); I != E; ++I) {
211     if (I->getNumOperands() == 0) {
212       Visited[I] = 0 - 1U;
213       ComputeTopDownOrdering(I, Order, Visited);
214     }
215   }
216   
217   assert(Order.size() == Visited.size() &&
218          Order.size() == 
219             (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
220          "Error: DAG is cyclic!");
221   Visited.clear();
222   
223   for (unsigned i = 0, e = Order.size(); i != e; ++i) {
224     SDNode *N = Order[i];
225     switch (getTypeAction(N->getValueType(0))) {
226     default: assert(0 && "Bad type action!");
227     case Legal:
228       LegalizeOp(SDOperand(N, 0));
229       break;
230     case Promote:
231       PromoteOp(SDOperand(N, 0));
232       break;
233     case Expand: {
234       SDOperand X, Y;
235       ExpandOp(SDOperand(N, 0), X, Y);
236       break;
237     }
238     }
239   }
240
241   // Finally, it's possible the root changed.  Get the new root.
242   SDOperand OldRoot = DAG.getRoot();
243   assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
244   DAG.setRoot(LegalizedNodes[OldRoot]);
245
246   ExpandedNodes.clear();
247   LegalizedNodes.clear();
248   PromotedNodes.clear();
249
250   // Remove dead nodes now.
251   DAG.RemoveDeadNodes(OldRoot.Val);
252 }
253
254
255 /// FindCallEndFromCallStart - Given a chained node that is part of a call
256 /// sequence, find the CALLSEQ_END node that terminates the call sequence.
257 static SDNode *FindCallEndFromCallStart(SDNode *Node) {
258   if (Node->getOpcode() == ISD::CALLSEQ_END)
259     return Node;
260   if (Node->use_empty())
261     return 0;   // No CallSeqEnd
262   
263   // The chain is usually at the end.
264   SDOperand TheChain(Node, Node->getNumValues()-1);
265   if (TheChain.getValueType() != MVT::Other) {
266     // Sometimes it's at the beginning.
267     TheChain = SDOperand(Node, 0);
268     if (TheChain.getValueType() != MVT::Other) {
269       // Otherwise, hunt for it.
270       for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
271         if (Node->getValueType(i) == MVT::Other) {
272           TheChain = SDOperand(Node, i);
273           break;
274         }
275           
276       // Otherwise, we walked into a node without a chain.  
277       if (TheChain.getValueType() != MVT::Other)
278         return 0;
279     }
280   }
281   
282   for (SDNode::use_iterator UI = Node->use_begin(),
283        E = Node->use_end(); UI != E; ++UI) {
284     
285     // Make sure to only follow users of our token chain.
286     SDNode *User = *UI;
287     for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
288       if (User->getOperand(i) == TheChain)
289         if (SDNode *Result = FindCallEndFromCallStart(User))
290           return Result;
291   }
292   return 0;
293 }
294
295 /// FindCallStartFromCallEnd - Given a chained node that is part of a call 
296 /// sequence, find the CALLSEQ_START node that initiates the call sequence.
297 static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
298   assert(Node && "Didn't find callseq_start for a call??");
299   if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
300   
301   assert(Node->getOperand(0).getValueType() == MVT::Other &&
302          "Node doesn't have a token chain argument!");
303   return FindCallStartFromCallEnd(Node->getOperand(0).Val);
304 }
305
306 /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
307 /// see if any uses can reach Dest.  If no dest operands can get to dest, 
308 /// legalize them, legalize ourself, and return false, otherwise, return true.
309 bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, 
310                                                         SDNode *Dest) {
311   if (N == Dest) return true;  // N certainly leads to Dest :)
312   
313   // If the first result of this node has been already legalized, then it cannot
314   // reach N.
315   switch (getTypeAction(N->getValueType(0))) {
316   case Legal: 
317     if (LegalizedNodes.count(SDOperand(N, 0))) return false;
318     break;
319   case Promote:
320     if (PromotedNodes.count(SDOperand(N, 0))) return false;
321     break;
322   case Expand:
323     if (ExpandedNodes.count(SDOperand(N, 0))) return false;
324     break;
325   }
326   
327   // Okay, this node has not already been legalized.  Check and legalize all
328   // operands.  If none lead to Dest, then we can legalize this node.
329   bool OperandsLeadToDest = false;
330   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
331     OperandsLeadToDest |=     // If an operand leads to Dest, so do we.
332       LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest);
333
334   if (OperandsLeadToDest) return true;
335
336   // Okay, this node looks safe, legalize it and return false.
337   switch (getTypeAction(N->getValueType(0))) {
338   case Legal:
339     LegalizeOp(SDOperand(N, 0));
340     break;
341   case Promote:
342     PromoteOp(SDOperand(N, 0));
343     break;
344   case Expand: {
345     SDOperand X, Y;
346     ExpandOp(SDOperand(N, 0), X, Y);
347     break;
348   }
349   }
350   return false;
351 }
352
353
354
355 SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
356   assert(isTypeLegal(Op.getValueType()) &&
357          "Caller should expand or promote operands that are not legal!");
358   SDNode *Node = Op.Val;
359
360   // If this operation defines any values that cannot be represented in a
361   // register on this target, make sure to expand or promote them.
362   if (Node->getNumValues() > 1) {
363     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
364       switch (getTypeAction(Node->getValueType(i))) {
365       case Legal: break;  // Nothing to do.
366       case Expand: {
367         SDOperand T1, T2;
368         ExpandOp(Op.getValue(i), T1, T2);
369         assert(LegalizedNodes.count(Op) &&
370                "Expansion didn't add legal operands!");
371         return LegalizedNodes[Op];
372       }
373       case Promote:
374         PromoteOp(Op.getValue(i));
375         assert(LegalizedNodes.count(Op) &&
376                "Promotion didn't add legal operands!");
377         return LegalizedNodes[Op];
378       }
379   }
380
381   // Note that LegalizeOp may be reentered even from single-use nodes, which
382   // means that we always must cache transformed nodes.
383   std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
384   if (I != LegalizedNodes.end()) return I->second;
385
386   SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
387   SDOperand Result = Op;
388   bool isCustom = false;
389   
390   switch (Node->getOpcode()) {
391   case ISD::FrameIndex:
392   case ISD::EntryToken:
393   case ISD::Register:
394   case ISD::BasicBlock:
395   case ISD::TargetFrameIndex:
396   case ISD::TargetConstant:
397   case ISD::TargetConstantFP:
398   case ISD::TargetConstantVec:
399   case ISD::TargetConstantPool:
400   case ISD::TargetGlobalAddress:
401   case ISD::TargetExternalSymbol:
402   case ISD::VALUETYPE:
403   case ISD::SRCVALUE:
404   case ISD::STRING:
405   case ISD::CONDCODE:
406     // Primitives must all be legal.
407     assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
408            "This must be legal!");
409     break;
410   default:
411     if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
412       // If this is a target node, legalize it by legalizing the operands then
413       // passing it through.
414       std::vector<SDOperand> Ops;
415       bool Changed = false;
416       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
417         Ops.push_back(LegalizeOp(Node->getOperand(i)));
418         Changed = Changed || Node->getOperand(i) != Ops.back();
419       }
420       if (Changed)
421         if (Node->getNumValues() == 1)
422           Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Ops);
423         else {
424           std::vector<MVT::ValueType> VTs(Node->value_begin(),
425                                           Node->value_end());
426           Result = DAG.getNode(Node->getOpcode(), VTs, Ops);
427         }
428
429       for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
430         AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
431       return Result.getValue(Op.ResNo);
432     }
433     // Otherwise this is an unhandled builtin node.  splat.
434     std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
435     assert(0 && "Do not know how to legalize this operator!");
436     abort();
437   case ISD::GlobalAddress:
438   case ISD::ExternalSymbol:
439   case ISD::ConstantPool:           // Nothing to do.
440     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
441     default: assert(0 && "This action is not supported yet!");
442     case TargetLowering::Custom:
443       Tmp1 = TLI.LowerOperation(Op, DAG);
444       if (Tmp1.Val) Result = Tmp1;
445       // FALLTHROUGH if the target doesn't want to lower this op after all.
446     case TargetLowering::Legal:
447       break;
448     }
449     break;
450   case ISD::AssertSext:
451   case ISD::AssertZext:
452     Tmp1 = LegalizeOp(Node->getOperand(0));
453     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
454     break;
455   case ISD::MERGE_VALUES:
456     // Legalize eliminates MERGE_VALUES nodes.
457     Result = Node->getOperand(Op.ResNo);
458     break;
459   case ISD::CopyFromReg:
460     Tmp1 = LegalizeOp(Node->getOperand(0));
461     Result = Op.getValue(0);
462     if (Node->getNumValues() == 2) {
463       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
464     } else {
465       assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
466       if (Node->getNumOperands() == 3) {
467         Tmp2 = LegalizeOp(Node->getOperand(2));
468         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
469       } else {
470         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
471       }
472       AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
473     }
474     // Since CopyFromReg produces two values, make sure to remember that we
475     // legalized both of them.
476     AddLegalizedOperand(Op.getValue(0), Result);
477     AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
478     return Result.getValue(Op.ResNo);
479   case ISD::UNDEF: {
480     MVT::ValueType VT = Op.getValueType();
481     switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
482     default: assert(0 && "This action is not supported yet!");
483     case TargetLowering::Expand:
484       if (MVT::isInteger(VT))
485         Result = DAG.getConstant(0, VT);
486       else if (MVT::isFloatingPoint(VT))
487         Result = DAG.getConstantFP(0, VT);
488       else
489         assert(0 && "Unknown value type!");
490       break;
491     case TargetLowering::Legal:
492       break;
493     }
494     break;
495   }
496
497   case ISD::LOCATION:
498     assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
499     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the input chain.
500     
501     switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
502     case TargetLowering::Promote:
503     default: assert(0 && "This action is not supported yet!");
504     case TargetLowering::Expand: {
505       MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
506       bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
507       bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
508       
509       if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
510         const std::string &FName =
511           cast<StringSDNode>(Node->getOperand(3))->getValue();
512         const std::string &DirName = 
513           cast<StringSDNode>(Node->getOperand(4))->getValue();
514         unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
515
516         std::vector<SDOperand> Ops;
517         Ops.push_back(Tmp1);  // chain
518         SDOperand LineOp = Node->getOperand(1);
519         SDOperand ColOp = Node->getOperand(2);
520         
521         if (useDEBUG_LOC) {
522           Ops.push_back(LineOp);  // line #
523           Ops.push_back(ColOp);  // col #
524           Ops.push_back(DAG.getConstant(SrcFile, MVT::i32));  // source file id
525           Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops);
526         } else {
527           unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
528           unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
529           unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
530           Ops.push_back(DAG.getConstant(ID, MVT::i32));
531           Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops);
532         }
533       } else {
534         Result = Tmp1;  // chain
535       }
536       break;
537     }
538     case TargetLowering::Legal:
539       if (Tmp1 != Node->getOperand(0) ||
540           getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
541         std::vector<SDOperand> Ops;
542         Ops.push_back(Tmp1);
543         if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
544           Ops.push_back(Node->getOperand(1));  // line # must be legal.
545           Ops.push_back(Node->getOperand(2));  // col # must be legal.
546         } else {
547           // Otherwise promote them.
548           Ops.push_back(PromoteOp(Node->getOperand(1)));
549           Ops.push_back(PromoteOp(Node->getOperand(2)));
550         }
551         Ops.push_back(Node->getOperand(3));  // filename must be legal.
552         Ops.push_back(Node->getOperand(4));  // working dir # must be legal.
553         Result = DAG.UpdateNodeOperands(Result, Ops);
554       }
555       break;
556     }
557     break;
558     
559   case ISD::DEBUG_LOC:
560     assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
561     switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
562     default: assert(0 && "This action is not supported yet!");
563     case TargetLowering::Legal:
564       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
565       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the line #.
566       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the col #.
567       Tmp4 = LegalizeOp(Node->getOperand(3));  // Legalize the source file id.
568       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
569       break;
570     }
571     break;    
572
573   case ISD::DEBUG_LABEL:
574     assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
575     switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
576     default: assert(0 && "This action is not supported yet!");
577     case TargetLowering::Legal:
578       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
579       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the label id.
580       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
581       break;
582     }
583     break;
584
585   case ISD::Constant:
586     // We know we don't need to expand constants here, constants only have one
587     // value and we check that it is fine above.
588
589     // FIXME: Maybe we should handle things like targets that don't support full
590     // 32-bit immediates?
591     break;
592   case ISD::ConstantFP: {
593     // Spill FP immediates to the constant pool if the target cannot directly
594     // codegen them.  Targets often have some immediate values that can be
595     // efficiently generated into an FP register without a load.  We explicitly
596     // leave these constants as ConstantFP nodes for the target to deal with.
597     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
598
599     // Check to see if this FP immediate is already legal.
600     bool isLegal = false;
601     for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
602            E = TLI.legal_fpimm_end(); I != E; ++I)
603       if (CFP->isExactlyValue(*I)) {
604         isLegal = true;
605         break;
606       }
607
608     // If this is a legal constant, turn it into a TargetConstantFP node.
609     if (isLegal) {
610       Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
611       break;
612     }
613
614     switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
615     default: assert(0 && "This action is not supported yet!");
616     case TargetLowering::Custom:
617       Tmp3 = TLI.LowerOperation(Result, DAG);
618       if (Tmp3.Val) {
619         Result = Tmp3;
620         break;
621       }
622       // FALLTHROUGH
623     case TargetLowering::Expand:
624       // Otherwise we need to spill the constant to memory.
625       bool Extend = false;
626
627       // If a FP immediate is precise when represented as a float and if the
628       // target can do an extending load from float to double, we put it into
629       // the constant pool as a float, even if it's is statically typed as a
630       // double.
631       MVT::ValueType VT = CFP->getValueType(0);
632       bool isDouble = VT == MVT::f64;
633       ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
634                                              Type::FloatTy, CFP->getValue());
635       if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
636           // Only do this if the target has a native EXTLOAD instruction from
637           // f32.
638           TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
639         LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
640         VT = MVT::f32;
641         Extend = true;
642       }
643
644       SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
645       if (Extend) {
646         Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
647                                 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
648       } else {
649         Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
650                              DAG.getSrcValue(NULL));
651       }
652     }
653     break;
654   }
655   case ISD::ConstantVec:
656     switch (TLI.getOperationAction(ISD::ConstantVec, Node->getValueType(0))) {
657     default: assert(0 && "This action is not supported yet!");
658     case TargetLowering::Custom:
659       Tmp3 = TLI.LowerOperation(Result, DAG);
660       if (Tmp3.Val) {
661         Result = Tmp3;
662         break;
663       }
664       // FALLTHROUGH
665     case TargetLowering::Expand:
666       // We assume that vector constants are not legal, and will be immediately
667       // spilled to the constant pool.
668       //
669       // Create a ConstantPacked, and put it in the constant pool.
670       MVT::ValueType VT = Node->getValueType(0);
671       const Type *OpNTy = 
672         MVT::getTypeForValueType(Node->getOperand(0).getValueType());
673       std::vector<Constant*> CV;
674       if (MVT::isFloatingPoint(VT)) {
675         for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
676           double V = cast<ConstantFPSDNode>(Node->getOperand(i))->getValue();
677           CV.push_back(ConstantFP::get(OpNTy, V));
678         }
679       } else {
680         for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
681           uint64_t V = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
682           CV.push_back(ConstantUInt::get(OpNTy, V));
683         }
684       }
685       Constant *CP = ConstantPacked::get(CV);
686       SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
687       Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
688                            DAG.getSrcValue(NULL));
689       break;
690     }
691     break;
692   case ISD::TokenFactor:
693     if (Node->getNumOperands() == 2) {
694       Tmp1 = LegalizeOp(Node->getOperand(0));
695       Tmp2 = LegalizeOp(Node->getOperand(1));
696       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
697     } else if (Node->getNumOperands() == 3) {
698       Tmp1 = LegalizeOp(Node->getOperand(0));
699       Tmp2 = LegalizeOp(Node->getOperand(1));
700       Tmp3 = LegalizeOp(Node->getOperand(2));
701       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
702     } else {
703       std::vector<SDOperand> Ops;
704       // Legalize the operands.
705       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
706         Ops.push_back(LegalizeOp(Node->getOperand(i)));
707       Result = DAG.UpdateNodeOperands(Result, Ops);
708     }
709     break;
710
711   case ISD::CALLSEQ_START: {
712     SDNode *CallEnd = FindCallEndFromCallStart(Node);
713     
714     // Recursively Legalize all of the inputs of the call end that do not lead
715     // to this call start.  This ensures that any libcalls that need be inserted
716     // are inserted *before* the CALLSEQ_START.
717     for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
718       LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node);
719
720     // Now that we legalized all of the inputs (which may have inserted
721     // libcalls) create the new CALLSEQ_START node.
722     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
723
724     // Merge in the last call, to ensure that this call start after the last
725     // call ended.
726     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
727     Tmp1 = LegalizeOp(Tmp1);
728       
729     // Do not try to legalize the target-specific arguments (#1+).
730     if (Tmp1 != Node->getOperand(0)) {
731       std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
732       Ops[0] = Tmp1;
733       Result = DAG.UpdateNodeOperands(Result, Ops);
734     }
735     
736     // Remember that the CALLSEQ_START is legalized.
737     AddLegalizedOperand(Op.getValue(0), Result);
738     if (Node->getNumValues() == 2)    // If this has a flag result, remember it.
739       AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
740     
741     // Now that the callseq_start and all of the non-call nodes above this call
742     // sequence have been legalized, legalize the call itself.  During this 
743     // process, no libcalls can/will be inserted, guaranteeing that no calls
744     // can overlap.
745     assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
746     SDOperand InCallSEQ = LastCALLSEQ_END;
747     // Note that we are selecting this call!
748     LastCALLSEQ_END = SDOperand(CallEnd, 0);
749     IsLegalizingCall = true;
750     
751     // Legalize the call, starting from the CALLSEQ_END.
752     LegalizeOp(LastCALLSEQ_END);
753     assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
754     return Result;
755   }
756   case ISD::CALLSEQ_END:
757     // If the CALLSEQ_START node hasn't been legalized first, legalize it.  This
758     // will cause this node to be legalized as well as handling libcalls right.
759     if (LastCALLSEQ_END.Val != Node) {
760       LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
761       std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
762       assert(I != LegalizedNodes.end() &&
763              "Legalizing the call start should have legalized this node!");
764       return I->second;
765     }
766     
767     // Otherwise, the call start has been legalized and everything is going 
768     // according to plan.  Just legalize ourselves normally here.
769     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
770     // Do not try to legalize the target-specific arguments (#1+), except for
771     // an optional flag input.
772     if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
773       if (Tmp1 != Node->getOperand(0)) {
774         std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
775         Ops[0] = Tmp1;
776         Result = DAG.UpdateNodeOperands(Result, Ops);
777       }
778     } else {
779       Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
780       if (Tmp1 != Node->getOperand(0) ||
781           Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
782         std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
783         Ops[0] = Tmp1;
784         Ops.back() = Tmp2;
785         Result = DAG.UpdateNodeOperands(Result, Ops);
786       }
787     }
788     assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
789     // This finishes up call legalization.
790     IsLegalizingCall = false;
791     
792     // If the CALLSEQ_END node has a flag, remember that we legalized it.
793     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
794     if (Node->getNumValues() == 2)
795       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
796     return Result.getValue(Op.ResNo);
797   case ISD::DYNAMIC_STACKALLOC: {
798     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
799     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the size.
800     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the alignment.
801     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
802
803     Tmp1 = Result.getValue(0);
804     Tmp2 = Result.getValue(1);
805     switch (TLI.getOperationAction(Node->getOpcode(),
806                                    Node->getValueType(0))) {
807     default: assert(0 && "This action is not supported yet!");
808     case TargetLowering::Expand: {
809       unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
810       assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
811              " not tell us which reg is the stack pointer!");
812       SDOperand Chain = Tmp1.getOperand(0);
813       SDOperand Size  = Tmp2.getOperand(1);
814       SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
815       Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size);    // Value
816       Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1);      // Output chain
817       Tmp1 = LegalizeOp(Tmp1);
818       Tmp2 = LegalizeOp(Tmp2);
819       break;
820     }
821     case TargetLowering::Custom:
822       Tmp3 = TLI.LowerOperation(Tmp1, DAG);
823       if (Tmp3.Val) {
824         Tmp1 = LegalizeOp(Tmp3);
825         Tmp2 = LegalizeOp(Tmp3.getValue(1));
826       }
827       break;
828     case TargetLowering::Legal:
829       break;
830     }
831     // Since this op produce two values, make sure to remember that we
832     // legalized both of them.
833     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
834     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
835     return Op.ResNo ? Tmp2 : Tmp1;
836   }
837   case ISD::INLINEASM:
838     Tmp1 = LegalizeOp(Node->getOperand(0));   // Legalize Chain.
839     Tmp2 = Node->getOperand(Node->getNumOperands()-1);
840     if (Tmp2.getValueType() == MVT::Flag)     // Legalize Flag if it exists.
841       Tmp2 = Tmp3 = SDOperand(0, 0);
842     else
843       Tmp3 = LegalizeOp(Tmp2);
844     
845     if (Tmp1 != Node->getOperand(0) || Tmp2 != Tmp3) {
846       std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end());
847       Ops[0] = Tmp1;
848       if (Tmp3.Val) Ops.back() = Tmp3;
849       Result = DAG.UpdateNodeOperands(Result, Ops);
850     }
851       
852     // INLINE asm returns a chain and flag, make sure to add both to the map.
853     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
854     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
855     return Result.getValue(Op.ResNo);
856   case ISD::BR:
857     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
858     // Ensure that libcalls are emitted before a branch.
859     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
860     Tmp1 = LegalizeOp(Tmp1);
861     LastCALLSEQ_END = DAG.getEntryNode();
862     
863     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
864     break;
865
866   case ISD::BRCOND:
867     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
868     // Ensure that libcalls are emitted before a return.
869     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
870     Tmp1 = LegalizeOp(Tmp1);
871     LastCALLSEQ_END = DAG.getEntryNode();
872
873     switch (getTypeAction(Node->getOperand(1).getValueType())) {
874     case Expand: assert(0 && "It's impossible to expand bools");
875     case Legal:
876       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
877       break;
878     case Promote:
879       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the condition.
880       break;
881     }
882
883     // Basic block destination (Op#2) is always legal.
884     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
885       
886     switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {  
887     default: assert(0 && "This action is not supported yet!");
888     case TargetLowering::Legal: break;
889     case TargetLowering::Custom:
890       Tmp1 = TLI.LowerOperation(Result, DAG);
891       if (Tmp1.Val) Result = Tmp1;
892       break;
893     case TargetLowering::Expand:
894       // Expand brcond's setcc into its constituent parts and create a BR_CC
895       // Node.
896       if (Tmp2.getOpcode() == ISD::SETCC) {
897         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
898                              Tmp2.getOperand(0), Tmp2.getOperand(1),
899                              Node->getOperand(2));
900       } else {
901         // Make sure the condition is either zero or one.  It may have been
902         // promoted from something else.
903         unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
904         if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
905           Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
906         
907         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, 
908                              DAG.getCondCode(ISD::SETNE), Tmp2,
909                              DAG.getConstant(0, Tmp2.getValueType()),
910                              Node->getOperand(2));
911       }
912       break;
913     }
914     break;
915   case ISD::BR_CC:
916     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
917     // Ensure that libcalls are emitted before a branch.
918     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
919     Tmp1 = LegalizeOp(Tmp1);
920     LastCALLSEQ_END = DAG.getEntryNode();
921     
922     Tmp2 = Node->getOperand(2);              // LHS 
923     Tmp3 = Node->getOperand(3);              // RHS
924     Tmp4 = Node->getOperand(1);              // CC
925
926     LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
927     
928     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
929     // the LHS is a legal SETCC itself.  In this case, we need to compare
930     // the result against zero to select between true and false values.
931     if (Tmp3.Val == 0) {
932       Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
933       Tmp4 = DAG.getCondCode(ISD::SETNE);
934     }
935     
936     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, 
937                                     Node->getOperand(4));
938       
939     switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
940     default: assert(0 && "Unexpected action for BR_CC!");
941     case TargetLowering::Legal: break;
942     case TargetLowering::Custom:
943       Tmp4 = TLI.LowerOperation(Result, DAG);
944       if (Tmp4.Val) Result = Tmp4;
945       break;
946     }
947     break;
948   case ISD::BRCONDTWOWAY:
949     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
950     switch (getTypeAction(Node->getOperand(1).getValueType())) {
951     case Expand: assert(0 && "It's impossible to expand bools");
952     case Legal:
953       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
954       break;
955     case Promote:
956       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the condition.
957       break;
958     }
959       
960     // If this target does not support BRCONDTWOWAY, lower it to a BRCOND/BR
961     // pair.
962     switch (TLI.getOperationAction(ISD::BRCONDTWOWAY, MVT::Other)) {
963     case TargetLowering::Promote:
964     default: assert(0 && "This action is not supported yet!");
965     case TargetLowering::Legal:
966       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
967                                       Node->getOperand(3));
968       break;
969     case TargetLowering::Expand:
970       // If BRTWOWAY_CC is legal for this target, then simply expand this node
971       // to that.  Otherwise, skip BRTWOWAY_CC and expand directly to a
972       // BRCOND/BR pair.
973       if (TLI.isOperationLegal(ISD::BRTWOWAY_CC, MVT::Other)) {
974         if (Tmp2.getOpcode() == ISD::SETCC) {
975           Tmp3 = Tmp2.getOperand(0);
976           Tmp4 = Tmp2.getOperand(1);
977           Tmp2 = Tmp2.getOperand(2);
978         } else {
979           Tmp3 = Tmp2;
980           Tmp4 = DAG.getConstant(0, Tmp2.getValueType());
981           Tmp2 = DAG.getCondCode(ISD::SETNE);
982         }
983         std::vector<SDOperand> Ops;
984         Ops.push_back(Tmp1);
985         Ops.push_back(Tmp2);
986         Ops.push_back(Tmp3);
987         Ops.push_back(Tmp4);
988         Ops.push_back(Node->getOperand(2));
989         Ops.push_back(Node->getOperand(3));
990         Result = DAG.getNode(ISD::BRTWOWAY_CC, MVT::Other, Ops);
991       } else {
992         Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1, Tmp2,
993                              Node->getOperand(2));
994         Result = DAG.getNode(ISD::BR, MVT::Other, Result, Node->getOperand(3));
995       }
996       break;
997     }
998     break;
999   case ISD::BRTWOWAY_CC: {
1000     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1001     // Ensure that libcalls are emitted before a branch.
1002     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1003     Tmp1 = LegalizeOp(Tmp1);
1004     LastCALLSEQ_END = DAG.getEntryNode();
1005     
1006     Tmp2 = Node->getOperand(2);              // LHS 
1007     Tmp3 = Node->getOperand(3);              // RHS
1008     Tmp4 = Node->getOperand(1);              // CC
1009     
1010     LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1011     
1012     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1013     // the LHS is a legal SETCC itself.  In this case, we need to compare
1014     // the result against zero to select between true and false values.
1015     if (Tmp3.Val == 0) {
1016       Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1017       Tmp4 = DAG.getCondCode(ISD::SETNE);
1018     }
1019     std::vector<SDOperand> Ops;
1020     Ops.push_back(Tmp1);
1021     Ops.push_back(Tmp4);
1022     Ops.push_back(Tmp2);
1023     Ops.push_back(Tmp3);
1024     Ops.push_back(Node->getOperand(4));
1025     Ops.push_back(Node->getOperand(5));
1026     Result = DAG.UpdateNodeOperands(Result, Ops);
1027
1028     // Everything is legal, see if we should expand this op or something.
1029     switch (TLI.getOperationAction(ISD::BRTWOWAY_CC, MVT::Other)) {
1030     default: assert(0 && "This action is not supported yet!");
1031     case TargetLowering::Legal: break;
1032     case TargetLowering::Expand: 
1033       Result = DAG.getNode(ISD::BRCOND, MVT::Other, Tmp1,
1034                            DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp2,
1035                                        Tmp3, Tmp4), 
1036                            Result.getOperand(4));
1037       Result = DAG.getNode(ISD::BR, MVT::Other, Result, Result.getOperand(5));
1038       break;
1039     }
1040     break;
1041   }
1042   case ISD::LOAD: {
1043     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1044     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
1045
1046     MVT::ValueType VT = Node->getValueType(0);
1047     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1048     Tmp2 = Result.getValue(0);
1049     Tmp3 = Result.getValue(1);
1050     
1051     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1052     default: assert(0 && "This action is not supported yet!");
1053     case TargetLowering::Legal: break;
1054     case TargetLowering::Custom:
1055       Tmp1 = TLI.LowerOperation(Tmp2, DAG);
1056       if (Tmp1.Val) {
1057         Tmp2 = LegalizeOp(Tmp1);
1058         Tmp3 = LegalizeOp(Tmp1.getValue(1));
1059       }
1060       break;
1061     }
1062     // Since loads produce two values, make sure to remember that we 
1063     // legalized both of them.
1064     AddLegalizedOperand(SDOperand(Node, 0), Tmp2);
1065     AddLegalizedOperand(SDOperand(Node, 1), Tmp3);
1066     return Op.ResNo ? Tmp3 : Tmp2;
1067   }
1068   case ISD::EXTLOAD:
1069   case ISD::SEXTLOAD:
1070   case ISD::ZEXTLOAD: {
1071     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1072     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
1073
1074     MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
1075     switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
1076     default: assert(0 && "This action is not supported yet!");
1077     case TargetLowering::Promote:
1078       assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
1079       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1080                                       DAG.getValueType(MVT::i8));
1081       Tmp1 = Result.getValue(0);
1082       Tmp2 = Result.getValue(1);
1083       break;
1084     case TargetLowering::Custom:
1085       isCustom = true;
1086       // FALLTHROUGH
1087     case TargetLowering::Legal:
1088       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1089                                       Node->getOperand(3));
1090       Tmp1 = Result.getValue(0);
1091       Tmp2 = Result.getValue(1);
1092       
1093       if (isCustom) {
1094         Tmp3 = TLI.LowerOperation(Tmp3, DAG);
1095         if (Tmp3.Val) {
1096           Tmp1 = LegalizeOp(Tmp3);
1097           Tmp2 = LegalizeOp(Tmp3.getValue(1));
1098         }
1099       }
1100       break;
1101     case TargetLowering::Expand:
1102       // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1103       if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1104         SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
1105         Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1106         Tmp1 = LegalizeOp(Result);  // Relegalize new nodes.
1107         Tmp2 = LegalizeOp(Load.getValue(1));
1108         break;
1109       }
1110       assert(Node->getOpcode() != ISD::EXTLOAD &&
1111              "EXTLOAD should always be supported!");
1112       // Turn the unsupported load into an EXTLOAD followed by an explicit
1113       // zero/sign extend inreg.
1114       Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1115                               Tmp1, Tmp2, Node->getOperand(2), SrcVT);
1116       SDOperand ValRes;
1117       if (Node->getOpcode() == ISD::SEXTLOAD)
1118         ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1119                              Result, DAG.getValueType(SrcVT));
1120       else
1121         ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1122       Tmp1 = LegalizeOp(ValRes);  // Relegalize new nodes.
1123       Tmp2 = LegalizeOp(Result.getValue(1));  // Relegalize new nodes.
1124       break;
1125     }
1126     // Since loads produce two values, make sure to remember that we legalized
1127     // both of them.
1128     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1129     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1130     return Op.ResNo ? Tmp2 : Tmp1;
1131   }
1132   case ISD::EXTRACT_ELEMENT: {
1133     MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1134     switch (getTypeAction(OpTy)) {
1135     default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
1136     case Legal:
1137       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1138         // 1 -> Hi
1139         Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1140                              DAG.getConstant(MVT::getSizeInBits(OpTy)/2, 
1141                                              TLI.getShiftAmountTy()));
1142         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1143       } else {
1144         // 0 -> Lo
1145         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), 
1146                              Node->getOperand(0));
1147       }
1148       break;
1149     case Expand:
1150       // Get both the low and high parts.
1151       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1152       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1153         Result = Tmp2;  // 1 -> Hi
1154       else
1155         Result = Tmp1;  // 0 -> Lo
1156       break;
1157     }
1158     break;
1159   }
1160
1161   case ISD::CopyToReg:
1162     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1163
1164     assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
1165            "Register type must be legal!");
1166     // Legalize the incoming value (must be a legal type).
1167     Tmp2 = LegalizeOp(Node->getOperand(2));
1168     if (Node->getNumValues() == 1) {
1169       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
1170     } else {
1171       assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
1172       if (Node->getNumOperands() == 4) {
1173         Tmp3 = LegalizeOp(Node->getOperand(3));
1174         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1175                                         Tmp3);
1176       } else {
1177         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1178       }
1179       
1180       // Since this produces two values, make sure to remember that we legalized
1181       // both of them.
1182       AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1183       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1184       return Result;
1185     }
1186     break;
1187
1188   case ISD::RET:
1189     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1190
1191     // Ensure that libcalls are emitted before a return.
1192     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1193     Tmp1 = LegalizeOp(Tmp1);
1194     LastCALLSEQ_END = DAG.getEntryNode();
1195     
1196     switch (Node->getNumOperands()) {
1197     case 2:  // ret val
1198       switch (getTypeAction(Node->getOperand(1).getValueType())) {
1199       case Legal:
1200         Tmp2 = LegalizeOp(Node->getOperand(1));
1201         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1202         break;
1203       case Expand: {
1204         SDOperand Lo, Hi;
1205         ExpandOp(Node->getOperand(1), Lo, Hi);
1206         Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Hi);
1207         break;
1208       }
1209       case Promote:
1210         Tmp2 = PromoteOp(Node->getOperand(1));
1211         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1212         Result = LegalizeOp(Result);
1213         break;
1214       }
1215       break;
1216     case 1:  // ret void
1217       Result = DAG.UpdateNodeOperands(Result, Tmp1);
1218       break;
1219     default: { // ret <values>
1220       std::vector<SDOperand> NewValues;
1221       NewValues.push_back(Tmp1);
1222       for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
1223         switch (getTypeAction(Node->getOperand(i).getValueType())) {
1224         case Legal:
1225           NewValues.push_back(LegalizeOp(Node->getOperand(i)));
1226           break;
1227         case Expand: {
1228           SDOperand Lo, Hi;
1229           ExpandOp(Node->getOperand(i), Lo, Hi);
1230           NewValues.push_back(Lo);
1231           NewValues.push_back(Hi);
1232           break;
1233         }
1234         case Promote:
1235           assert(0 && "Can't promote multiple return value yet!");
1236         }
1237           
1238       if (NewValues.size() == Node->getNumOperands())
1239         Result = DAG.UpdateNodeOperands(Result, NewValues);
1240       else
1241         Result = DAG.getNode(ISD::RET, MVT::Other, NewValues);
1242       break;
1243     }
1244     }
1245
1246     if (Result.getOpcode() == ISD::RET) {
1247       switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1248       default: assert(0 && "This action is not supported yet!");
1249       case TargetLowering::Legal: break;
1250       case TargetLowering::Custom:
1251         Tmp1 = TLI.LowerOperation(Result, DAG);
1252         if (Tmp1.Val) Result = Tmp1;
1253         break;
1254       }
1255     }
1256     break;
1257   case ISD::STORE: {
1258     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1259     Tmp2 = LegalizeOp(Node->getOperand(2));  // Legalize the pointer.
1260
1261     // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1262     // FIXME: We shouldn't do this for TargetConstantFP's.
1263     if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
1264       if (CFP->getValueType(0) == MVT::f32) {
1265         Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1266       } else {
1267         assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1268         Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1269       }
1270       Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2, 
1271                            Node->getOperand(3));
1272       break;
1273     }
1274
1275     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1276     case Legal: {
1277       Tmp3 = LegalizeOp(Node->getOperand(1));
1278       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, 
1279                                       Node->getOperand(3));
1280
1281       MVT::ValueType VT = Tmp3.getValueType();
1282       switch (TLI.getOperationAction(ISD::STORE, VT)) {
1283       default: assert(0 && "This action is not supported yet!");
1284       case TargetLowering::Legal:  break;
1285       case TargetLowering::Custom:
1286         Tmp1 = TLI.LowerOperation(Result, DAG);
1287         if (Tmp1.Val) Result = Tmp1;
1288         break;
1289       }
1290       break;
1291     }
1292     case Promote:
1293       // Truncate the value and store the result.
1294       Tmp3 = PromoteOp(Node->getOperand(1));
1295       Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1296                            Node->getOperand(3),
1297                           DAG.getValueType(Node->getOperand(1).getValueType()));
1298       break;
1299
1300     case Expand:
1301       SDOperand Lo, Hi;
1302       ExpandOp(Node->getOperand(1), Lo, Hi);
1303
1304       if (!TLI.isLittleEndian())
1305         std::swap(Lo, Hi);
1306
1307       Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1308                        Node->getOperand(3));
1309       // If this is a vector type, then we have to calculate the increment as
1310       // the product of the element size in bytes, and the number of elements
1311       // in the high half of the vector.
1312       unsigned IncrementSize;
1313       if (MVT::Vector == Hi.getValueType()) {
1314         unsigned NumElems = cast<ConstantSDNode>(Hi.getOperand(0))->getValue();
1315         MVT::ValueType EVT = cast<VTSDNode>(Hi.getOperand(1))->getVT();
1316         IncrementSize = NumElems * MVT::getSizeInBits(EVT)/8;
1317       } else {
1318         IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
1319       }
1320       Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1321                          getIntPtrConstant(IncrementSize));
1322       assert(isTypeLegal(Tmp2.getValueType()) &&
1323              "Pointers must be legal!");
1324       // FIXME: This sets the srcvalue of both halves to be the same, which is
1325       // wrong.
1326       Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1327                        Node->getOperand(3));
1328       Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1329       break;
1330     }
1331     break;
1332   }
1333   case ISD::PCMARKER:
1334     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1335     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1336     break;
1337   case ISD::STACKSAVE:
1338     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1339     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1340     Tmp1 = Result.getValue(0);
1341     Tmp2 = Result.getValue(1);
1342     
1343     switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1344     default: assert(0 && "This action is not supported yet!");
1345     case TargetLowering::Legal: break;
1346     case TargetLowering::Custom:
1347       Tmp3 = TLI.LowerOperation(Result, DAG);
1348       if (Tmp3.Val) {
1349         Tmp1 = LegalizeOp(Tmp3);
1350         Tmp2 = LegalizeOp(Tmp3.getValue(1));
1351       }
1352       break;
1353     case TargetLowering::Expand:
1354       // Expand to CopyFromReg if the target set 
1355       // StackPointerRegisterToSaveRestore.
1356       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1357         Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
1358                                   Node->getValueType(0));
1359         Tmp2 = Tmp1.getValue(1);
1360       } else {
1361         Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1362         Tmp2 = Node->getOperand(0);
1363       }
1364       break;
1365     }
1366
1367     // Since stacksave produce two values, make sure to remember that we
1368     // legalized both of them.
1369     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1370     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1371     return Op.ResNo ? Tmp2 : Tmp1;
1372
1373   case ISD::STACKRESTORE:
1374     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1375     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
1376     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1377       
1378     switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1379     default: assert(0 && "This action is not supported yet!");
1380     case TargetLowering::Legal: break;
1381     case TargetLowering::Custom:
1382       Tmp1 = TLI.LowerOperation(Result, DAG);
1383       if (Tmp1.Val) Result = Tmp1;
1384       break;
1385     case TargetLowering::Expand:
1386       // Expand to CopyToReg if the target set 
1387       // StackPointerRegisterToSaveRestore.
1388       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1389         Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1390       } else {
1391         Result = Tmp1;
1392       }
1393       break;
1394     }
1395     break;
1396
1397   case ISD::READCYCLECOUNTER:
1398     Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
1399     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1400
1401     // Since rdcc produce two values, make sure to remember that we legalized
1402     // both of them.
1403     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1404     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1405     return Result;
1406
1407   case ISD::TRUNCSTORE: {
1408     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1409     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the pointer.
1410
1411     assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1412            "Cannot handle illegal TRUNCSTORE yet!");
1413     Tmp2 = LegalizeOp(Node->getOperand(1));
1414     
1415     // The only promote case we handle is TRUNCSTORE:i1 X into
1416     //   -> TRUNCSTORE:i8 (and X, 1)
1417     if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1418         TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) == 
1419               TargetLowering::Promote) {
1420       // Promote the bool to a mask then store.
1421       Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1422                          DAG.getConstant(1, Tmp2.getValueType()));
1423       Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1424                            Node->getOperand(3), DAG.getValueType(MVT::i8));
1425
1426     } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1427                Tmp3 != Node->getOperand(2)) {
1428       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1429                                       Node->getOperand(3), Node->getOperand(4));
1430     }
1431
1432     MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1433     switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1434     default: assert(0 && "This action is not supported yet!");
1435     case TargetLowering::Legal: break;
1436     case TargetLowering::Custom:
1437       Tmp1 = TLI.LowerOperation(Result, DAG);
1438       if (Tmp1.Val) Result = Tmp1;
1439       break;
1440     }
1441     break;
1442   }
1443   case ISD::SELECT:
1444     switch (getTypeAction(Node->getOperand(0).getValueType())) {
1445     case Expand: assert(0 && "It's impossible to expand bools");
1446     case Legal:
1447       Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1448       break;
1449     case Promote:
1450       Tmp1 = PromoteOp(Node->getOperand(0));  // Promote the condition.
1451       break;
1452     }
1453     Tmp2 = LegalizeOp(Node->getOperand(1));   // TrueVal
1454     Tmp3 = LegalizeOp(Node->getOperand(2));   // FalseVal
1455
1456     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1457       
1458     switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
1459     default: assert(0 && "This action is not supported yet!");
1460     case TargetLowering::Legal: break;
1461     case TargetLowering::Custom: {
1462       Tmp1 = TLI.LowerOperation(Result, DAG);
1463       if (Tmp1.Val) Result = Tmp1;
1464       break;
1465     }
1466     case TargetLowering::Expand:
1467       if (Tmp1.getOpcode() == ISD::SETCC) {
1468         Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), 
1469                               Tmp2, Tmp3,
1470                               cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1471       } else {
1472         // Make sure the condition is either zero or one.  It may have been
1473         // promoted from something else.
1474         unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1475         if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1476           Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
1477         Result = DAG.getSelectCC(Tmp1, 
1478                                  DAG.getConstant(0, Tmp1.getValueType()),
1479                                  Tmp2, Tmp3, ISD::SETNE);
1480       }
1481       break;
1482     case TargetLowering::Promote: {
1483       MVT::ValueType NVT =
1484         TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1485       unsigned ExtOp, TruncOp;
1486       if (MVT::isInteger(Tmp2.getValueType())) {
1487         ExtOp   = ISD::ANY_EXTEND;
1488         TruncOp = ISD::TRUNCATE;
1489       } else {
1490         ExtOp   = ISD::FP_EXTEND;
1491         TruncOp = ISD::FP_ROUND;
1492       }
1493       // Promote each of the values to the new type.
1494       Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1495       Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1496       // Perform the larger operation, then round down.
1497       Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1498       Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1499       break;
1500     }
1501     }
1502     break;
1503   case ISD::SELECT_CC: {
1504     Tmp1 = Node->getOperand(0);               // LHS
1505     Tmp2 = Node->getOperand(1);               // RHS
1506     Tmp3 = LegalizeOp(Node->getOperand(2));   // True
1507     Tmp4 = LegalizeOp(Node->getOperand(3));   // False
1508     SDOperand CC = Node->getOperand(4);
1509     
1510     LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1511     
1512     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1513     // the LHS is a legal SETCC itself.  In this case, we need to compare
1514     // the result against zero to select between true and false values.
1515     if (Tmp2.Val == 0) {
1516       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1517       CC = DAG.getCondCode(ISD::SETNE);
1518     }
1519     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1520
1521     // Everything is legal, see if we should expand this op or something.
1522     switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1523     default: assert(0 && "This action is not supported yet!");
1524     case TargetLowering::Legal: break;
1525     case TargetLowering::Custom:
1526       Tmp1 = TLI.LowerOperation(Result, DAG);
1527       if (Tmp1.Val) Result = Tmp1;
1528       break;
1529     }
1530     break;
1531   }
1532   case ISD::SETCC:
1533     Tmp1 = Node->getOperand(0);
1534     Tmp2 = Node->getOperand(1);
1535     Tmp3 = Node->getOperand(2);
1536     LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1537     
1538     // If we had to Expand the SetCC operands into a SELECT node, then it may 
1539     // not always be possible to return a true LHS & RHS.  In this case, just 
1540     // return the value we legalized, returned in the LHS
1541     if (Tmp2.Val == 0) {
1542       Result = Tmp1;
1543       break;
1544     }
1545
1546     switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
1547     default: assert(0 && "Cannot handle this action for SETCC yet!");
1548     case TargetLowering::Custom:
1549       isCustom = true;
1550       // FALLTHROUGH.
1551     case TargetLowering::Legal:
1552       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1553       if (isCustom) {
1554         Tmp3 = TLI.LowerOperation(Result, DAG);
1555         if (Tmp3.Val) Result = Tmp3;
1556       }
1557       break;
1558     case TargetLowering::Promote: {
1559       // First step, figure out the appropriate operation to use.
1560       // Allow SETCC to not be supported for all legal data types
1561       // Mostly this targets FP
1562       MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1563       MVT::ValueType OldVT = NewInTy;
1564
1565       // Scan for the appropriate larger type to use.
1566       while (1) {
1567         NewInTy = (MVT::ValueType)(NewInTy+1);
1568
1569         assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1570                "Fell off of the edge of the integer world");
1571         assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1572                "Fell off of the edge of the floating point world");
1573           
1574         // If the target supports SETCC of this type, use it.
1575         if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
1576           break;
1577       }
1578       if (MVT::isInteger(NewInTy))
1579         assert(0 && "Cannot promote Legal Integer SETCC yet");
1580       else {
1581         Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1582         Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1583       }
1584       Tmp1 = LegalizeOp(Tmp1);
1585       Tmp2 = LegalizeOp(Tmp2);
1586       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1587       Result = LegalizeOp(Result);
1588       break;
1589     }
1590     case TargetLowering::Expand:
1591       // Expand a setcc node into a select_cc of the same condition, lhs, and
1592       // rhs that selects between const 1 (true) and const 0 (false).
1593       MVT::ValueType VT = Node->getValueType(0);
1594       Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, 
1595                            DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1596                            Node->getOperand(2));
1597       break;
1598     }
1599     break;
1600   case ISD::MEMSET:
1601   case ISD::MEMCPY:
1602   case ISD::MEMMOVE: {
1603     Tmp1 = LegalizeOp(Node->getOperand(0));      // Chain
1604     Tmp2 = LegalizeOp(Node->getOperand(1));      // Pointer
1605
1606     if (Node->getOpcode() == ISD::MEMSET) {      // memset = ubyte
1607       switch (getTypeAction(Node->getOperand(2).getValueType())) {
1608       case Expand: assert(0 && "Cannot expand a byte!");
1609       case Legal:
1610         Tmp3 = LegalizeOp(Node->getOperand(2));
1611         break;
1612       case Promote:
1613         Tmp3 = PromoteOp(Node->getOperand(2));
1614         break;
1615       }
1616     } else {
1617       Tmp3 = LegalizeOp(Node->getOperand(2));    // memcpy/move = pointer,
1618     }
1619
1620     SDOperand Tmp4;
1621     switch (getTypeAction(Node->getOperand(3).getValueType())) {
1622     case Expand: {
1623       // Length is too big, just take the lo-part of the length.
1624       SDOperand HiPart;
1625       ExpandOp(Node->getOperand(3), HiPart, Tmp4);
1626       break;
1627     }
1628     case Legal:
1629       Tmp4 = LegalizeOp(Node->getOperand(3));
1630       break;
1631     case Promote:
1632       Tmp4 = PromoteOp(Node->getOperand(3));
1633       break;
1634     }
1635
1636     SDOperand Tmp5;
1637     switch (getTypeAction(Node->getOperand(4).getValueType())) {  // uint
1638     case Expand: assert(0 && "Cannot expand this yet!");
1639     case Legal:
1640       Tmp5 = LegalizeOp(Node->getOperand(4));
1641       break;
1642     case Promote:
1643       Tmp5 = PromoteOp(Node->getOperand(4));
1644       break;
1645     }
1646
1647     switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1648     default: assert(0 && "This action not implemented for this operation!");
1649     case TargetLowering::Custom:
1650       isCustom = true;
1651       // FALLTHROUGH
1652     case TargetLowering::Legal:
1653       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
1654       if (isCustom) {
1655         Tmp1 = TLI.LowerOperation(Result, DAG);
1656         if (Tmp1.Val) Result = Tmp1;
1657       }
1658       break;
1659     case TargetLowering::Expand: {
1660       // Otherwise, the target does not support this operation.  Lower the
1661       // operation to an explicit libcall as appropriate.
1662       MVT::ValueType IntPtr = TLI.getPointerTy();
1663       const Type *IntPtrTy = TLI.getTargetData().getIntPtrType();
1664       std::vector<std::pair<SDOperand, const Type*> > Args;
1665
1666       const char *FnName = 0;
1667       if (Node->getOpcode() == ISD::MEMSET) {
1668         Args.push_back(std::make_pair(Tmp2, IntPtrTy));
1669         // Extend the (previously legalized) ubyte argument to be an int value
1670         // for the call.
1671         if (Tmp3.getValueType() > MVT::i32)
1672           Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
1673         else
1674           Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
1675         Args.push_back(std::make_pair(Tmp3, Type::IntTy));
1676         Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1677
1678         FnName = "memset";
1679       } else if (Node->getOpcode() == ISD::MEMCPY ||
1680                  Node->getOpcode() == ISD::MEMMOVE) {
1681         Args.push_back(std::make_pair(Tmp2, IntPtrTy));
1682         Args.push_back(std::make_pair(Tmp3, IntPtrTy));
1683         Args.push_back(std::make_pair(Tmp4, IntPtrTy));
1684         FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
1685       } else {
1686         assert(0 && "Unknown op!");
1687       }
1688
1689       std::pair<SDOperand,SDOperand> CallResult =
1690         TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
1691                         DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
1692       Result = CallResult.second;
1693       break;
1694     }
1695     }
1696     break;
1697   }
1698
1699   case ISD::SHL_PARTS:
1700   case ISD::SRA_PARTS:
1701   case ISD::SRL_PARTS: {
1702     std::vector<SDOperand> Ops;
1703     bool Changed = false;
1704     for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1705       Ops.push_back(LegalizeOp(Node->getOperand(i)));
1706       Changed |= Ops.back() != Node->getOperand(i);
1707     }
1708     if (Changed)
1709       Result = DAG.UpdateNodeOperands(Result, Ops);
1710
1711     switch (TLI.getOperationAction(Node->getOpcode(),
1712                                    Node->getValueType(0))) {
1713     default: assert(0 && "This action is not supported yet!");
1714     case TargetLowering::Legal: break;
1715     case TargetLowering::Custom:
1716       Tmp1 = TLI.LowerOperation(Result, DAG);
1717       if (Tmp1.Val) {
1718         SDOperand Tmp2, RetVal(0, 0);
1719         for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1720           Tmp2 = LegalizeOp(Tmp1.getValue(i));
1721           AddLegalizedOperand(SDOperand(Node, i), Tmp2);
1722           if (i == Op.ResNo)
1723             RetVal = Tmp2;
1724         }
1725         assert(RetVal.Val && "Illegal result number");
1726         return RetVal;
1727       }
1728       break;
1729     }
1730
1731     // Since these produce multiple values, make sure to remember that we
1732     // legalized all of them.
1733     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1734       AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
1735     return Result.getValue(Op.ResNo);
1736   }
1737
1738     // Binary operators
1739   case ISD::ADD:
1740   case ISD::SUB:
1741   case ISD::MUL:
1742   case ISD::MULHS:
1743   case ISD::MULHU:
1744   case ISD::UDIV:
1745   case ISD::SDIV:
1746   case ISD::AND:
1747   case ISD::OR:
1748   case ISD::XOR:
1749   case ISD::SHL:
1750   case ISD::SRL:
1751   case ISD::SRA:
1752   case ISD::FADD:
1753   case ISD::FSUB:
1754   case ISD::FMUL:
1755   case ISD::FDIV:
1756     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
1757     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1758     case Expand: assert(0 && "Not possible");
1759     case Legal:
1760       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
1761       break;
1762     case Promote:
1763       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
1764       break;
1765     }
1766     
1767     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1768       
1769     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1770     default: assert(0 && "Operation not supported");
1771     case TargetLowering::Legal: break;
1772     case TargetLowering::Custom:
1773       Tmp1 = TLI.LowerOperation(Result, DAG);
1774       if (Tmp1.Val) Result = Tmp1;
1775       break;
1776     }
1777     break;
1778     
1779   case ISD::FCOPYSIGN:  // FCOPYSIGN does not require LHS/RHS to match type!
1780     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
1781     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1782       case Expand: assert(0 && "Not possible");
1783       case Legal:
1784         Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
1785         break;
1786       case Promote:
1787         Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
1788         break;
1789     }
1790       
1791     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1792     
1793     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1794     default: assert(0 && "Operation not supported");
1795     case TargetLowering::Custom:
1796       Tmp1 = TLI.LowerOperation(Result, DAG);
1797       if (Tmp1.Val) Result = Tmp1;
1798       break;
1799     case TargetLowering::Legal: break;
1800     case TargetLowering::Expand:
1801       // If this target supports fabs/fneg natively, do this efficiently.
1802       if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
1803           TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
1804         // Get the sign bit of the RHS.
1805         MVT::ValueType IVT = 
1806           Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
1807         SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
1808         SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
1809                                SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
1810         // Get the absolute value of the result.
1811         SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
1812         // Select between the nabs and abs value based on the sign bit of
1813         // the input.
1814         Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
1815                              DAG.getNode(ISD::FNEG, AbsVal.getValueType(), 
1816                                          AbsVal),
1817                              AbsVal);
1818         Result = LegalizeOp(Result);
1819         break;
1820       }
1821       
1822       // Otherwise, do bitwise ops!
1823       
1824       // copysign -> copysignf/copysign libcall.
1825       const char *FnName;
1826       if (Node->getValueType(0) == MVT::f32) {
1827         FnName = "copysignf";
1828         if (Tmp2.getValueType() != MVT::f32)  // Force operands to match type.
1829           Result = DAG.UpdateNodeOperands(Result, Tmp1, 
1830                                     DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
1831       } else {
1832         FnName = "copysign";
1833         if (Tmp2.getValueType() != MVT::f64)  // Force operands to match type.
1834           Result = DAG.UpdateNodeOperands(Result, Tmp1, 
1835                                    DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
1836       }
1837       SDOperand Dummy;
1838       Result = ExpandLibCall(FnName, Node, Dummy);
1839       break;
1840     }
1841     break;
1842     
1843   case ISD::ADDC:
1844   case ISD::SUBC:
1845     Tmp1 = LegalizeOp(Node->getOperand(0));
1846     Tmp2 = LegalizeOp(Node->getOperand(1));
1847     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1848     // Since this produces two values, make sure to remember that we legalized
1849     // both of them.
1850     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1851     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1852     return Result;
1853     break;
1854
1855   case ISD::ADDE:
1856   case ISD::SUBE:
1857     Tmp1 = LegalizeOp(Node->getOperand(0));
1858     Tmp2 = LegalizeOp(Node->getOperand(1));
1859     Tmp3 = LegalizeOp(Node->getOperand(2));
1860     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1861     // Since this produces two values, make sure to remember that we legalized
1862     // both of them.
1863     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1864     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1865     return Result;
1866     break;
1867     
1868   case ISD::BUILD_PAIR: {
1869     MVT::ValueType PairTy = Node->getValueType(0);
1870     // TODO: handle the case where the Lo and Hi operands are not of legal type
1871     Tmp1 = LegalizeOp(Node->getOperand(0));   // Lo
1872     Tmp2 = LegalizeOp(Node->getOperand(1));   // Hi
1873     switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
1874     case TargetLowering::Promote:
1875     case TargetLowering::Custom:
1876       assert(0 && "Cannot promote/custom this yet!");
1877     case TargetLowering::Legal:
1878       if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
1879         Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
1880       break;
1881     case TargetLowering::Expand:
1882       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
1883       Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
1884       Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
1885                          DAG.getConstant(MVT::getSizeInBits(PairTy)/2, 
1886                                          TLI.getShiftAmountTy()));
1887       Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
1888       break;
1889     }
1890     break;
1891   }
1892
1893   case ISD::UREM:
1894   case ISD::SREM:
1895   case ISD::FREM:
1896     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
1897     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
1898
1899     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1900     case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
1901     case TargetLowering::Custom:
1902       isCustom = true;
1903       // FALLTHROUGH
1904     case TargetLowering::Legal:
1905       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1906       if (isCustom) {
1907         Tmp1 = TLI.LowerOperation(Result, DAG);
1908         if (Tmp1.Val) Result = Tmp1;
1909       }
1910       break;
1911     case TargetLowering::Expand:
1912       if (MVT::isInteger(Node->getValueType(0))) {
1913         // X % Y -> X-X/Y*Y
1914         MVT::ValueType VT = Node->getValueType(0);
1915         unsigned Opc = Node->getOpcode() == ISD::UREM ? ISD::UDIV : ISD::SDIV;
1916         Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
1917         Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
1918         Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
1919       } else {
1920         // Floating point mod -> fmod libcall.
1921         const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
1922         SDOperand Dummy;
1923         Result = ExpandLibCall(FnName, Node, Dummy);
1924       }
1925       break;
1926     }
1927     break;
1928   case ISD::VAARG: {
1929     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1930     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
1931
1932     MVT::ValueType VT = Node->getValueType(0);
1933     switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
1934     default: assert(0 && "This action is not supported yet!");
1935     case TargetLowering::Custom:
1936       isCustom = true;
1937       // FALLTHROUGH
1938     case TargetLowering::Legal:
1939       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1940       Result = Result.getValue(0);
1941       Tmp1 = Result.getValue(1);
1942
1943       if (isCustom) {
1944         Tmp2 = TLI.LowerOperation(Result, DAG);
1945         if (Tmp2.Val) {
1946           Result = LegalizeOp(Tmp2);
1947           Tmp1 = LegalizeOp(Tmp2.getValue(1));
1948         }
1949       }
1950       break;
1951     case TargetLowering::Expand: {
1952       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
1953                                      Node->getOperand(2));
1954       // Increment the pointer, VAList, to the next vaarg
1955       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
1956                          DAG.getConstant(MVT::getSizeInBits(VT)/8, 
1957                                          TLI.getPointerTy()));
1958       // Store the incremented VAList to the legalized pointer
1959       Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2, 
1960                          Node->getOperand(2));
1961       // Load the actual argument out of the pointer VAList
1962       Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
1963       Tmp1 = LegalizeOp(Result.getValue(1));
1964       Result = LegalizeOp(Result);
1965       break;
1966     }
1967     }
1968     // Since VAARG produces two values, make sure to remember that we 
1969     // legalized both of them.
1970     AddLegalizedOperand(SDOperand(Node, 0), Result);
1971     AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
1972     return Op.ResNo ? Tmp1 : Result;
1973   }
1974     
1975   case ISD::VACOPY: 
1976     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1977     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the dest pointer.
1978     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the source pointer.
1979
1980     switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
1981     default: assert(0 && "This action is not supported yet!");
1982     case TargetLowering::Custom:
1983       isCustom = true;
1984       // FALLTHROUGH
1985     case TargetLowering::Legal:
1986       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1987                                       Node->getOperand(3), Node->getOperand(4));
1988       if (isCustom) {
1989         Tmp1 = TLI.LowerOperation(Result, DAG);
1990         if (Tmp1.Val) Result = Tmp1;
1991       }
1992       break;
1993     case TargetLowering::Expand:
1994       // This defaults to loading a pointer from the input and storing it to the
1995       // output, returning the chain.
1996       Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
1997       Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
1998                            Node->getOperand(4));
1999       break;
2000     }
2001     break;
2002
2003   case ISD::VAEND: 
2004     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2005     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2006
2007     switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2008     default: assert(0 && "This action is not supported yet!");
2009     case TargetLowering::Custom:
2010       isCustom = true;
2011       // FALLTHROUGH
2012     case TargetLowering::Legal:
2013       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2014       if (isCustom) {
2015         Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2016         if (Tmp1.Val) Result = Tmp1;
2017       }
2018       break;
2019     case TargetLowering::Expand:
2020       Result = Tmp1; // Default to a no-op, return the chain
2021       break;
2022     }
2023     break;
2024     
2025   case ISD::VASTART: 
2026     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2027     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2028
2029     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2030     
2031     switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2032     default: assert(0 && "This action is not supported yet!");
2033     case TargetLowering::Legal: break;
2034     case TargetLowering::Custom:
2035       Tmp1 = TLI.LowerOperation(Result, DAG);
2036       if (Tmp1.Val) Result = Tmp1;
2037       break;
2038     }
2039     break;
2040     
2041   case ISD::ROTL:
2042   case ISD::ROTR:
2043     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2044     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
2045     
2046     assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2047            "Cannot handle this yet!");
2048     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2049     break;
2050     
2051   case ISD::BSWAP:
2052     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
2053     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2054     case TargetLowering::Custom:
2055       assert(0 && "Cannot custom legalize this yet!");
2056     case TargetLowering::Legal:
2057       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2058       break;
2059     case TargetLowering::Promote: {
2060       MVT::ValueType OVT = Tmp1.getValueType();
2061       MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2062       unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
2063
2064       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2065       Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2066       Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2067                            DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2068       break;
2069     }
2070     case TargetLowering::Expand:
2071       Result = ExpandBSWAP(Tmp1);
2072       break;
2073     }
2074     break;
2075     
2076   case ISD::CTPOP:
2077   case ISD::CTTZ:
2078   case ISD::CTLZ:
2079     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
2080     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2081     case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
2082     case TargetLowering::Legal:
2083       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2084       break;
2085     case TargetLowering::Promote: {
2086       MVT::ValueType OVT = Tmp1.getValueType();
2087       MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2088
2089       // Zero extend the argument.
2090       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2091       // Perform the larger operation, then subtract if needed.
2092       Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
2093       switch (Node->getOpcode()) {
2094       case ISD::CTPOP:
2095         Result = Tmp1;
2096         break;
2097       case ISD::CTTZ:
2098         //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
2099         Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2100                             DAG.getConstant(getSizeInBits(NVT), NVT),
2101                             ISD::SETEQ);
2102         Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
2103                            DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2104         break;
2105       case ISD::CTLZ:
2106         // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
2107         Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2108                              DAG.getConstant(getSizeInBits(NVT) -
2109                                              getSizeInBits(OVT), NVT));
2110         break;
2111       }
2112       break;
2113     }
2114     case TargetLowering::Expand:
2115       Result = ExpandBitCount(Node->getOpcode(), Tmp1);
2116       break;
2117     }
2118     break;
2119
2120     // Unary operators
2121   case ISD::FABS:
2122   case ISD::FNEG:
2123   case ISD::FSQRT:
2124   case ISD::FSIN:
2125   case ISD::FCOS:
2126     Tmp1 = LegalizeOp(Node->getOperand(0));
2127     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2128     case TargetLowering::Promote:
2129     case TargetLowering::Custom:
2130      isCustom = true;
2131      // FALLTHROUGH
2132     case TargetLowering::Legal:
2133       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2134       if (isCustom) {
2135         Tmp1 = TLI.LowerOperation(Result, DAG);
2136         if (Tmp1.Val) Result = Tmp1;
2137       }
2138       break;
2139     case TargetLowering::Expand:
2140       switch (Node->getOpcode()) {
2141       default: assert(0 && "Unreachable!");
2142       case ISD::FNEG:
2143         // Expand Y = FNEG(X) ->  Y = SUB -0.0, X
2144         Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
2145         Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
2146         break;
2147       case ISD::FABS: {
2148         // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2149         MVT::ValueType VT = Node->getValueType(0);
2150         Tmp2 = DAG.getConstantFP(0.0, VT);
2151         Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
2152         Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2153         Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
2154         break;
2155       }
2156       case ISD::FSQRT:
2157       case ISD::FSIN:
2158       case ISD::FCOS: {
2159         MVT::ValueType VT = Node->getValueType(0);
2160         const char *FnName = 0;
2161         switch(Node->getOpcode()) {
2162         case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2163         case ISD::FSIN:  FnName = VT == MVT::f32 ? "sinf"  : "sin"; break;
2164         case ISD::FCOS:  FnName = VT == MVT::f32 ? "cosf"  : "cos"; break;
2165         default: assert(0 && "Unreachable!");
2166         }
2167         SDOperand Dummy;
2168         Result = ExpandLibCall(FnName, Node, Dummy);
2169         break;
2170       }
2171       }
2172       break;
2173     }
2174     break;
2175     
2176   case ISD::BIT_CONVERT:
2177     if (!isTypeLegal(Node->getOperand(0).getValueType())) {
2178       Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2179     } else {
2180       switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2181                                      Node->getOperand(0).getValueType())) {
2182       default: assert(0 && "Unknown operation action!");
2183       case TargetLowering::Expand:
2184         Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2185         break;
2186       case TargetLowering::Legal:
2187         Tmp1 = LegalizeOp(Node->getOperand(0));
2188         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2189         break;
2190       }
2191     }
2192     break;
2193     // Conversion operators.  The source and destination have different types.
2194   case ISD::SINT_TO_FP:
2195   case ISD::UINT_TO_FP: {
2196     bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
2197     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2198     case Legal:
2199       switch (TLI.getOperationAction(Node->getOpcode(),
2200                                      Node->getOperand(0).getValueType())) {
2201       default: assert(0 && "Unknown operation action!");
2202       case TargetLowering::Custom:
2203         isCustom = true;
2204         // FALLTHROUGH
2205       case TargetLowering::Legal:
2206         Tmp1 = LegalizeOp(Node->getOperand(0));
2207         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2208         if (isCustom) {
2209           Tmp1 = TLI.LowerOperation(Result, DAG);
2210           if (Tmp1.Val) Result = Tmp1;
2211         }
2212         break;
2213       case TargetLowering::Expand:
2214         Result = ExpandLegalINT_TO_FP(isSigned,
2215                                       LegalizeOp(Node->getOperand(0)),
2216                                       Node->getValueType(0));
2217         break;
2218       case TargetLowering::Promote:
2219         Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2220                                        Node->getValueType(0),
2221                                        isSigned);
2222         break;
2223       }
2224       break;
2225     case Expand:
2226       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2227                              Node->getValueType(0), Node->getOperand(0));
2228       break;
2229     case Promote:
2230       Tmp1 = PromoteOp(Node->getOperand(0));
2231       if (isSigned) {
2232         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2233                  Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
2234       } else {
2235         Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2236                                       Node->getOperand(0).getValueType());
2237       }
2238       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2239       Result = LegalizeOp(Result);  // The 'op' is not necessarily legal!
2240       break;
2241     }
2242     break;
2243   }
2244   case ISD::TRUNCATE:
2245     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2246     case Legal:
2247       Tmp1 = LegalizeOp(Node->getOperand(0));
2248       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2249       break;
2250     case Expand:
2251       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2252
2253       // Since the result is legal, we should just be able to truncate the low
2254       // part of the source.
2255       Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2256       break;
2257     case Promote:
2258       Result = PromoteOp(Node->getOperand(0));
2259       Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2260       break;
2261     }
2262     break;
2263
2264   case ISD::FP_TO_SINT:
2265   case ISD::FP_TO_UINT:
2266     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2267     case Legal:
2268       Tmp1 = LegalizeOp(Node->getOperand(0));
2269
2270       switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2271       default: assert(0 && "Unknown operation action!");
2272       case TargetLowering::Custom:
2273         isCustom = true;
2274         // FALLTHROUGH
2275       case TargetLowering::Legal:
2276         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2277         if (isCustom) {
2278           Tmp1 = TLI.LowerOperation(Result, DAG);
2279           if (Tmp1.Val) Result = Tmp1;
2280         }
2281         break;
2282       case TargetLowering::Promote:
2283         Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2284                                        Node->getOpcode() == ISD::FP_TO_SINT);
2285         break;
2286       case TargetLowering::Expand:
2287         if (Node->getOpcode() == ISD::FP_TO_UINT) {
2288           SDOperand True, False;
2289           MVT::ValueType VT =  Node->getOperand(0).getValueType();
2290           MVT::ValueType NVT = Node->getValueType(0);
2291           unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2292           Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2293           Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2294                             Node->getOperand(0), Tmp2, ISD::SETLT);
2295           True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2296           False = DAG.getNode(ISD::FP_TO_SINT, NVT,
2297                               DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
2298                                           Tmp2));
2299           False = DAG.getNode(ISD::XOR, NVT, False, 
2300                               DAG.getConstant(1ULL << ShiftAmt, NVT));
2301           Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2302           break;
2303         } else {
2304           assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2305         }
2306         break;
2307       }
2308       break;
2309     case Expand:
2310       assert(0 && "Shouldn't need to expand other operators here!");
2311     case Promote:
2312       Tmp1 = PromoteOp(Node->getOperand(0));
2313       Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2314       Result = LegalizeOp(Result);
2315       break;
2316     }
2317     break;
2318
2319   case ISD::ANY_EXTEND:
2320   case ISD::ZERO_EXTEND:
2321   case ISD::SIGN_EXTEND:
2322   case ISD::FP_EXTEND:
2323   case ISD::FP_ROUND:
2324     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2325     case Expand: assert(0 && "Shouldn't need to expand other operators here!");
2326     case Legal:
2327       Tmp1 = LegalizeOp(Node->getOperand(0));
2328       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2329       break;
2330     case Promote:
2331       switch (Node->getOpcode()) {
2332       case ISD::ANY_EXTEND:
2333         Tmp1 = PromoteOp(Node->getOperand(0));
2334         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
2335         break;
2336       case ISD::ZERO_EXTEND:
2337         Result = PromoteOp(Node->getOperand(0));
2338         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
2339         Result = DAG.getZeroExtendInReg(Result,
2340                                         Node->getOperand(0).getValueType());
2341         break;
2342       case ISD::SIGN_EXTEND:
2343         Result = PromoteOp(Node->getOperand(0));
2344         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
2345         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2346                              Result,
2347                           DAG.getValueType(Node->getOperand(0).getValueType()));
2348         break;
2349       case ISD::FP_EXTEND:
2350         Result = PromoteOp(Node->getOperand(0));
2351         if (Result.getValueType() != Op.getValueType())
2352           // Dynamically dead while we have only 2 FP types.
2353           Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2354         break;
2355       case ISD::FP_ROUND:
2356         Result = PromoteOp(Node->getOperand(0));
2357         Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2358         break;
2359       }
2360     }
2361     break;
2362   case ISD::FP_ROUND_INREG:
2363   case ISD::SIGN_EXTEND_INREG: {
2364     Tmp1 = LegalizeOp(Node->getOperand(0));
2365     MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
2366
2367     // If this operation is not supported, convert it to a shl/shr or load/store
2368     // pair.
2369     switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2370     default: assert(0 && "This action not supported for this op yet!");
2371     case TargetLowering::Legal:
2372       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2373       break;
2374     case TargetLowering::Expand:
2375       // If this is an integer extend and shifts are supported, do that.
2376       if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
2377         // NOTE: we could fall back on load/store here too for targets without
2378         // SAR.  However, it is doubtful that any exist.
2379         unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2380                             MVT::getSizeInBits(ExtraVT);
2381         SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
2382         Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2383                              Node->getOperand(0), ShiftCst);
2384         Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2385                              Result, ShiftCst);
2386       } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2387         // The only way we can lower this is to turn it into a STORETRUNC,
2388         // EXTLOAD pair, targetting a temporary location (a stack slot).
2389
2390         // NOTE: there is a choice here between constantly creating new stack
2391         // slots and always reusing the same one.  We currently always create
2392         // new ones, as reuse may inhibit scheduling.
2393         const Type *Ty = MVT::getTypeForValueType(ExtraVT);
2394         unsigned TySize = (unsigned)TLI.getTargetData().getTypeSize(Ty);
2395         unsigned Align  = TLI.getTargetData().getTypeAlignment(Ty);
2396         MachineFunction &MF = DAG.getMachineFunction();
2397         int SSFI =
2398           MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2399         SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2400         Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
2401                              Node->getOperand(0), StackSlot,
2402                              DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
2403         Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2404                                 Result, StackSlot, DAG.getSrcValue(NULL),
2405                                 ExtraVT);
2406       } else {
2407         assert(0 && "Unknown op");
2408       }
2409       break;
2410     }
2411     break;
2412   }
2413   }
2414   
2415   // Make sure that the generated code is itself legal.
2416   if (Result != Op)
2417     Result = LegalizeOp(Result);
2418
2419   // Note that LegalizeOp may be reentered even from single-use nodes, which
2420   // means that we always must cache transformed nodes.
2421   AddLegalizedOperand(Op, Result);
2422   return Result;
2423 }
2424
2425 /// PromoteOp - Given an operation that produces a value in an invalid type,
2426 /// promote it to compute the value into a larger type.  The produced value will
2427 /// have the correct bits for the low portion of the register, but no guarantee
2428 /// is made about the top bits: it may be zero, sign-extended, or garbage.
2429 SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2430   MVT::ValueType VT = Op.getValueType();
2431   MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
2432   assert(getTypeAction(VT) == Promote &&
2433          "Caller should expand or legalize operands that are not promotable!");
2434   assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2435          "Cannot promote to smaller type!");
2436
2437   SDOperand Tmp1, Tmp2, Tmp3;
2438   SDOperand Result;
2439   SDNode *Node = Op.Val;
2440
2441   std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2442   if (I != PromotedNodes.end()) return I->second;
2443
2444   switch (Node->getOpcode()) {
2445   case ISD::CopyFromReg:
2446     assert(0 && "CopyFromReg must be legal!");
2447   default:
2448     std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
2449     assert(0 && "Do not know how to promote this operator!");
2450     abort();
2451   case ISD::UNDEF:
2452     Result = DAG.getNode(ISD::UNDEF, NVT);
2453     break;
2454   case ISD::Constant:
2455     if (VT != MVT::i1)
2456       Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2457     else
2458       Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
2459     assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2460     break;
2461   case ISD::ConstantFP:
2462     Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2463     assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2464     break;
2465
2466   case ISD::SETCC:
2467     assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
2468     Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2469                          Node->getOperand(1), Node->getOperand(2));
2470     break;
2471
2472   case ISD::TRUNCATE:
2473     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2474     case Legal:
2475       Result = LegalizeOp(Node->getOperand(0));
2476       assert(Result.getValueType() >= NVT &&
2477              "This truncation doesn't make sense!");
2478       if (Result.getValueType() > NVT)    // Truncate to NVT instead of VT
2479         Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2480       break;
2481     case Promote:
2482       // The truncation is not required, because we don't guarantee anything
2483       // about high bits anyway.
2484       Result = PromoteOp(Node->getOperand(0));
2485       break;
2486     case Expand:
2487       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2488       // Truncate the low part of the expanded value to the result type
2489       Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
2490     }
2491     break;
2492   case ISD::SIGN_EXTEND:
2493   case ISD::ZERO_EXTEND:
2494   case ISD::ANY_EXTEND:
2495     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2496     case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2497     case Legal:
2498       // Input is legal?  Just do extend all the way to the larger type.
2499       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
2500       break;
2501     case Promote:
2502       // Promote the reg if it's smaller.
2503       Result = PromoteOp(Node->getOperand(0));
2504       // The high bits are not guaranteed to be anything.  Insert an extend.
2505       if (Node->getOpcode() == ISD::SIGN_EXTEND)
2506         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
2507                          DAG.getValueType(Node->getOperand(0).getValueType()));
2508       else if (Node->getOpcode() == ISD::ZERO_EXTEND)
2509         Result = DAG.getZeroExtendInReg(Result,
2510                                         Node->getOperand(0).getValueType());
2511       break;
2512     }
2513     break;
2514   case ISD::BIT_CONVERT:
2515     Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2516     Result = PromoteOp(Result);
2517     break;
2518     
2519   case ISD::FP_EXTEND:
2520     assert(0 && "Case not implemented.  Dynamically dead with 2 FP types!");
2521   case ISD::FP_ROUND:
2522     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2523     case Expand: assert(0 && "BUG: Cannot expand FP regs!");
2524     case Promote:  assert(0 && "Unreachable with 2 FP types!");
2525     case Legal:
2526       // Input is legal?  Do an FP_ROUND_INREG.
2527       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
2528                            DAG.getValueType(VT));
2529       break;
2530     }
2531     break;
2532
2533   case ISD::SINT_TO_FP:
2534   case ISD::UINT_TO_FP:
2535     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2536     case Legal:
2537       // No extra round required here.
2538       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
2539       break;
2540
2541     case Promote:
2542       Result = PromoteOp(Node->getOperand(0));
2543       if (Node->getOpcode() == ISD::SINT_TO_FP)
2544         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2545                              Result,
2546                          DAG.getValueType(Node->getOperand(0).getValueType()));
2547       else
2548         Result = DAG.getZeroExtendInReg(Result,
2549                                         Node->getOperand(0).getValueType());
2550       // No extra round required here.
2551       Result = DAG.getNode(Node->getOpcode(), NVT, Result);
2552       break;
2553     case Expand:
2554       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
2555                              Node->getOperand(0));
2556       // Round if we cannot tolerate excess precision.
2557       if (NoExcessFPPrecision)
2558         Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2559                              DAG.getValueType(VT));
2560       break;
2561     }
2562     break;
2563
2564   case ISD::SIGN_EXTEND_INREG:
2565     Result = PromoteOp(Node->getOperand(0));
2566     Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, 
2567                          Node->getOperand(1));
2568     break;
2569   case ISD::FP_TO_SINT:
2570   case ISD::FP_TO_UINT:
2571     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2572     case Legal:
2573       Tmp1 = Node->getOperand(0);
2574       break;
2575     case Promote:
2576       // The input result is prerounded, so we don't have to do anything
2577       // special.
2578       Tmp1 = PromoteOp(Node->getOperand(0));
2579       break;
2580     case Expand:
2581       assert(0 && "not implemented");
2582     }
2583     // If we're promoting a UINT to a larger size, check to see if the new node
2584     // will be legal.  If it isn't, check to see if FP_TO_SINT is legal, since
2585     // we can use that instead.  This allows us to generate better code for
2586     // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
2587     // legal, such as PowerPC.
2588     if (Node->getOpcode() == ISD::FP_TO_UINT && 
2589         !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
2590         (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
2591          TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
2592       Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
2593     } else {
2594       Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2595     }
2596     break;
2597
2598   case ISD::FABS:
2599   case ISD::FNEG:
2600     Tmp1 = PromoteOp(Node->getOperand(0));
2601     assert(Tmp1.getValueType() == NVT);
2602     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2603     // NOTE: we do not have to do any extra rounding here for
2604     // NoExcessFPPrecision, because we know the input will have the appropriate
2605     // precision, and these operations don't modify precision at all.
2606     break;
2607
2608   case ISD::FSQRT:
2609   case ISD::FSIN:
2610   case ISD::FCOS:
2611     Tmp1 = PromoteOp(Node->getOperand(0));
2612     assert(Tmp1.getValueType() == NVT);
2613     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2614     if (NoExcessFPPrecision)
2615       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2616                            DAG.getValueType(VT));
2617     break;
2618
2619   case ISD::AND:
2620   case ISD::OR:
2621   case ISD::XOR:
2622   case ISD::ADD:
2623   case ISD::SUB:
2624   case ISD::MUL:
2625     // The input may have strange things in the top bits of the registers, but
2626     // these operations don't care.  They may have weird bits going out, but
2627     // that too is okay if they are integer operations.
2628     Tmp1 = PromoteOp(Node->getOperand(0));
2629     Tmp2 = PromoteOp(Node->getOperand(1));
2630     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2631     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2632     break;
2633   case ISD::FADD:
2634   case ISD::FSUB:
2635   case ISD::FMUL:
2636     Tmp1 = PromoteOp(Node->getOperand(0));
2637     Tmp2 = PromoteOp(Node->getOperand(1));
2638     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
2639     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2640     
2641     // Floating point operations will give excess precision that we may not be
2642     // able to tolerate.  If we DO allow excess precision, just leave it,
2643     // otherwise excise it.
2644     // FIXME: Why would we need to round FP ops more than integer ones?
2645     //     Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
2646     if (NoExcessFPPrecision)
2647       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2648                            DAG.getValueType(VT));
2649     break;
2650
2651   case ISD::SDIV:
2652   case ISD::SREM:
2653     // These operators require that their input be sign extended.
2654     Tmp1 = PromoteOp(Node->getOperand(0));
2655     Tmp2 = PromoteOp(Node->getOperand(1));
2656     if (MVT::isInteger(NVT)) {
2657       Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2658                          DAG.getValueType(VT));
2659       Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2660                          DAG.getValueType(VT));
2661     }
2662     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2663
2664     // Perform FP_ROUND: this is probably overly pessimistic.
2665     if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
2666       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2667                            DAG.getValueType(VT));
2668     break;
2669   case ISD::FDIV:
2670   case ISD::FREM:
2671   case ISD::FCOPYSIGN:
2672     // These operators require that their input be fp extended.
2673     Tmp1 = PromoteOp(Node->getOperand(0));
2674     Tmp2 = PromoteOp(Node->getOperand(1));
2675     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2676     
2677     // Perform FP_ROUND: this is probably overly pessimistic.
2678     if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
2679       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
2680                            DAG.getValueType(VT));
2681     break;
2682
2683   case ISD::UDIV:
2684   case ISD::UREM:
2685     // These operators require that their input be zero extended.
2686     Tmp1 = PromoteOp(Node->getOperand(0));
2687     Tmp2 = PromoteOp(Node->getOperand(1));
2688     assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
2689     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2690     Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
2691     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2692     break;
2693
2694   case ISD::SHL:
2695     Tmp1 = PromoteOp(Node->getOperand(0));
2696     Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
2697     break;
2698   case ISD::SRA:
2699     // The input value must be properly sign extended.
2700     Tmp1 = PromoteOp(Node->getOperand(0));
2701     Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2702                        DAG.getValueType(VT));
2703     Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
2704     break;
2705   case ISD::SRL:
2706     // The input value must be properly zero extended.
2707     Tmp1 = PromoteOp(Node->getOperand(0));
2708     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2709     Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
2710     break;
2711
2712   case ISD::VAARG:
2713     Tmp1 = Node->getOperand(0);   // Get the chain.
2714     Tmp2 = Node->getOperand(1);   // Get the pointer.
2715     if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
2716       Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
2717       Result = TLI.CustomPromoteOperation(Tmp3, DAG);
2718     } else {
2719       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2720                                      Node->getOperand(2));
2721       // Increment the pointer, VAList, to the next vaarg
2722       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
2723                          DAG.getConstant(MVT::getSizeInBits(VT)/8, 
2724                                          TLI.getPointerTy()));
2725       // Store the incremented VAList to the legalized pointer
2726       Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2, 
2727                          Node->getOperand(2));
2728       // Load the actual argument out of the pointer VAList
2729       Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
2730                               DAG.getSrcValue(0), VT);
2731     }
2732     // Remember that we legalized the chain.
2733     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
2734     break;
2735
2736   case ISD::LOAD:
2737     Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
2738                             Node->getOperand(1), Node->getOperand(2), VT);
2739     // Remember that we legalized the chain.
2740     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
2741     break;
2742   case ISD::SEXTLOAD:
2743   case ISD::ZEXTLOAD:
2744   case ISD::EXTLOAD:
2745     Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
2746                             Node->getOperand(1), Node->getOperand(2),
2747                             cast<VTSDNode>(Node->getOperand(3))->getVT());
2748     // Remember that we legalized the chain.
2749     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
2750     break;
2751   case ISD::SELECT:
2752     Tmp2 = PromoteOp(Node->getOperand(1));   // Legalize the op0
2753     Tmp3 = PromoteOp(Node->getOperand(2));   // Legalize the op1
2754     Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
2755     break;
2756   case ISD::SELECT_CC:
2757     Tmp2 = PromoteOp(Node->getOperand(2));   // True
2758     Tmp3 = PromoteOp(Node->getOperand(3));   // False
2759     Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
2760                          Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
2761     break;
2762   case ISD::BSWAP:
2763     Tmp1 = Node->getOperand(0);
2764     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2765     Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2766     Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2767                          DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
2768                                          TLI.getShiftAmountTy()));
2769     break;
2770   case ISD::CTPOP:
2771   case ISD::CTTZ:
2772   case ISD::CTLZ:
2773     // Zero extend the argument
2774     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
2775     // Perform the larger operation, then subtract if needed.
2776     Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
2777     switch(Node->getOpcode()) {
2778     case ISD::CTPOP:
2779       Result = Tmp1;
2780       break;
2781     case ISD::CTTZ:
2782       // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
2783       Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2784                           DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
2785       Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
2786                            DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
2787       break;
2788     case ISD::CTLZ:
2789       //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
2790       Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2791                            DAG.getConstant(getSizeInBits(NVT) -
2792                                            getSizeInBits(VT), NVT));
2793       break;
2794     }
2795     break;
2796   }
2797
2798   assert(Result.Val && "Didn't set a result!");
2799
2800   // Make sure the result is itself legal.
2801   Result = LegalizeOp(Result);
2802   
2803   // Remember that we promoted this!
2804   AddPromotedOperand(Op, Result);
2805   return Result;
2806 }
2807
2808 /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
2809 /// with condition CC on the current target.  This usually involves legalizing
2810 /// or promoting the arguments.  In the case where LHS and RHS must be expanded,
2811 /// there may be no choice but to create a new SetCC node to represent the
2812 /// legalized value of setcc lhs, rhs.  In this case, the value is returned in
2813 /// LHS, and the SDOperand returned in RHS has a nil SDNode value.
2814 void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
2815                                                  SDOperand &RHS,
2816                                                  SDOperand &CC) {
2817   SDOperand Tmp1, Tmp2, Result;    
2818   
2819   switch (getTypeAction(LHS.getValueType())) {
2820   case Legal:
2821     Tmp1 = LegalizeOp(LHS);   // LHS
2822     Tmp2 = LegalizeOp(RHS);   // RHS
2823     break;
2824   case Promote:
2825     Tmp1 = PromoteOp(LHS);   // LHS
2826     Tmp2 = PromoteOp(RHS);   // RHS
2827
2828     // If this is an FP compare, the operands have already been extended.
2829     if (MVT::isInteger(LHS.getValueType())) {
2830       MVT::ValueType VT = LHS.getValueType();
2831       MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
2832
2833       // Otherwise, we have to insert explicit sign or zero extends.  Note
2834       // that we could insert sign extends for ALL conditions, but zero extend
2835       // is cheaper on many machines (an AND instead of two shifts), so prefer
2836       // it.
2837       switch (cast<CondCodeSDNode>(CC)->get()) {
2838       default: assert(0 && "Unknown integer comparison!");
2839       case ISD::SETEQ:
2840       case ISD::SETNE:
2841       case ISD::SETUGE:
2842       case ISD::SETUGT:
2843       case ISD::SETULE:
2844       case ISD::SETULT:
2845         // ALL of these operations will work if we either sign or zero extend
2846         // the operands (including the unsigned comparisons!).  Zero extend is
2847         // usually a simpler/cheaper operation, so prefer it.
2848         Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
2849         Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
2850         break;
2851       case ISD::SETGE:
2852       case ISD::SETGT:
2853       case ISD::SETLT:
2854       case ISD::SETLE:
2855         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
2856                            DAG.getValueType(VT));
2857         Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
2858                            DAG.getValueType(VT));
2859         break;
2860       }
2861     }
2862     break;
2863   case Expand:
2864     SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
2865     ExpandOp(LHS, LHSLo, LHSHi);
2866     ExpandOp(RHS, RHSLo, RHSHi);
2867     switch (cast<CondCodeSDNode>(CC)->get()) {
2868     case ISD::SETEQ:
2869     case ISD::SETNE:
2870       if (RHSLo == RHSHi)
2871         if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
2872           if (RHSCST->isAllOnesValue()) {
2873             // Comparison to -1.
2874             Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
2875             Tmp2 = RHSLo;
2876             break;
2877           }
2878
2879       Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
2880       Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
2881       Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
2882       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2883       break;
2884     default:
2885       // If this is a comparison of the sign bit, just look at the top part.
2886       // X > -1,  x < 0
2887       if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
2888         if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && 
2889              CST->getValue() == 0) ||             // X < 0
2890             (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
2891              CST->isAllOnesValue())) {            // X > -1
2892           Tmp1 = LHSHi;
2893           Tmp2 = RHSHi;
2894           break;
2895         }
2896
2897       // FIXME: This generated code sucks.
2898       ISD::CondCode LowCC;
2899       switch (cast<CondCodeSDNode>(CC)->get()) {
2900       default: assert(0 && "Unknown integer setcc!");
2901       case ISD::SETLT:
2902       case ISD::SETULT: LowCC = ISD::SETULT; break;
2903       case ISD::SETGT:
2904       case ISD::SETUGT: LowCC = ISD::SETUGT; break;
2905       case ISD::SETLE:
2906       case ISD::SETULE: LowCC = ISD::SETULE; break;
2907       case ISD::SETGE:
2908       case ISD::SETUGE: LowCC = ISD::SETUGE; break;
2909       }
2910
2911       // Tmp1 = lo(op1) < lo(op2)   // Always unsigned comparison
2912       // Tmp2 = hi(op1) < hi(op2)   // Signedness depends on operands
2913       // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
2914
2915       // NOTE: on targets without efficient SELECT of bools, we can always use
2916       // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
2917       Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
2918       Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
2919       Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
2920       Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
2921                                       Result, Tmp1, Tmp2));
2922       Tmp1 = Result;
2923       Tmp2 = SDOperand();
2924     }
2925   }
2926   LHS = Tmp1;
2927   RHS = Tmp2;
2928 }
2929
2930 /// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
2931 /// The resultant code need not be legal.  Note that SrcOp is the input operand
2932 /// to the BIT_CONVERT, not the BIT_CONVERT node itself.
2933 SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT, 
2934                                                   SDOperand SrcOp) {
2935   // Create the stack frame object.
2936   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
2937   unsigned ByteSize = MVT::getSizeInBits(DestVT)/8;
2938   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
2939   SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
2940   
2941   // Emit a store to the stack slot.
2942   SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
2943                                 SrcOp, FIPtr, DAG.getSrcValue(NULL));
2944   // Result is a load from the stack slot.
2945   return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
2946 }
2947
2948 void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
2949                                             SDOperand Op, SDOperand Amt,
2950                                             SDOperand &Lo, SDOperand &Hi) {
2951   // Expand the subcomponents.
2952   SDOperand LHSL, LHSH;
2953   ExpandOp(Op, LHSL, LHSH);
2954
2955   std::vector<SDOperand> Ops;
2956   Ops.push_back(LHSL);
2957   Ops.push_back(LHSH);
2958   Ops.push_back(Amt);
2959   std::vector<MVT::ValueType> VTs(2, LHSL.getValueType());
2960   Lo = DAG.getNode(NodeOp, VTs, Ops);
2961   Hi = Lo.getValue(1);
2962 }
2963
2964
2965 /// ExpandShift - Try to find a clever way to expand this shift operation out to
2966 /// smaller elements.  If we can't find a way that is more efficient than a
2967 /// libcall on this target, return false.  Otherwise, return true with the
2968 /// low-parts expanded into Lo and Hi.
2969 bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
2970                                        SDOperand &Lo, SDOperand &Hi) {
2971   assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
2972          "This is not a shift!");
2973
2974   MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
2975   SDOperand ShAmt = LegalizeOp(Amt);
2976   MVT::ValueType ShTy = ShAmt.getValueType();
2977   unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
2978   unsigned NVTBits = MVT::getSizeInBits(NVT);
2979
2980   // Handle the case when Amt is an immediate.  Other cases are currently broken
2981   // and are disabled.
2982   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
2983     unsigned Cst = CN->getValue();
2984     // Expand the incoming operand to be shifted, so that we have its parts
2985     SDOperand InL, InH;
2986     ExpandOp(Op, InL, InH);
2987     switch(Opc) {
2988     case ISD::SHL:
2989       if (Cst > VTBits) {
2990         Lo = DAG.getConstant(0, NVT);
2991         Hi = DAG.getConstant(0, NVT);
2992       } else if (Cst > NVTBits) {
2993         Lo = DAG.getConstant(0, NVT);
2994         Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
2995       } else if (Cst == NVTBits) {
2996         Lo = DAG.getConstant(0, NVT);
2997         Hi = InL;
2998       } else {
2999         Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3000         Hi = DAG.getNode(ISD::OR, NVT,
3001            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3002            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3003       }
3004       return true;
3005     case ISD::SRL:
3006       if (Cst > VTBits) {
3007         Lo = DAG.getConstant(0, NVT);
3008         Hi = DAG.getConstant(0, NVT);
3009       } else if (Cst > NVTBits) {
3010         Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3011         Hi = DAG.getConstant(0, NVT);
3012       } else if (Cst == NVTBits) {
3013         Lo = InH;
3014         Hi = DAG.getConstant(0, NVT);
3015       } else {
3016         Lo = DAG.getNode(ISD::OR, NVT,
3017            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3018            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3019         Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3020       }
3021       return true;
3022     case ISD::SRA:
3023       if (Cst > VTBits) {
3024         Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
3025                               DAG.getConstant(NVTBits-1, ShTy));
3026       } else if (Cst > NVTBits) {
3027         Lo = DAG.getNode(ISD::SRA, NVT, InH,
3028                            DAG.getConstant(Cst-NVTBits, ShTy));
3029         Hi = DAG.getNode(ISD::SRA, NVT, InH,
3030                               DAG.getConstant(NVTBits-1, ShTy));
3031       } else if (Cst == NVTBits) {
3032         Lo = InH;
3033         Hi = DAG.getNode(ISD::SRA, NVT, InH,
3034                               DAG.getConstant(NVTBits-1, ShTy));
3035       } else {
3036         Lo = DAG.getNode(ISD::OR, NVT,
3037            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3038            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3039         Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3040       }
3041       return true;
3042     }
3043   }
3044   return false;
3045 }
3046
3047
3048 // ExpandLibCall - Expand a node into a call to a libcall.  If the result value
3049 // does not fit into a register, return the lo part and set the hi part to the
3050 // by-reg argument.  If it does fit into a single register, return the result
3051 // and leave the Hi part unset.
3052 SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3053                                               SDOperand &Hi) {
3054   assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3055   // The input chain to this libcall is the entry node of the function. 
3056   // Legalizing the call will automatically add the previous call to the
3057   // dependence.
3058   SDOperand InChain = DAG.getEntryNode();
3059   
3060   TargetLowering::ArgListTy Args;
3061   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3062     MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3063     const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3064     Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3065   }
3066   SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
3067
3068   // Splice the libcall in wherever FindInputOutputChains tells us to.
3069   const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
3070   std::pair<SDOperand,SDOperand> CallInfo =
3071     TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3072                     Callee, Args, DAG);
3073
3074   // Legalize the call sequence, starting with the chain.  This will advance
3075   // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3076   // was added by LowerCallTo (guaranteeing proper serialization of calls).
3077   LegalizeOp(CallInfo.second);
3078   SDOperand Result;
3079   switch (getTypeAction(CallInfo.first.getValueType())) {
3080   default: assert(0 && "Unknown thing");
3081   case Legal:
3082     Result = CallInfo.first;
3083     break;
3084   case Expand:
3085     ExpandOp(CallInfo.first, Result, Hi);
3086     break;
3087   }
3088   return Result;
3089 }
3090
3091
3092 /// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3093 /// destination type is legal.
3094 SDOperand SelectionDAGLegalize::
3095 ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
3096   assert(isTypeLegal(DestTy) && "Destination type is not legal!");
3097   assert(getTypeAction(Source.getValueType()) == Expand &&
3098          "This is not an expansion!");
3099   assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3100
3101   if (!isSigned) {
3102     assert(Source.getValueType() == MVT::i64 &&
3103            "This only works for 64-bit -> FP");
3104     // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3105     // incoming integer is set.  To handle this, we dynamically test to see if
3106     // it is set, and, if so, add a fudge factor.
3107     SDOperand Lo, Hi;
3108     ExpandOp(Source, Lo, Hi);
3109
3110     // If this is unsigned, and not supported, first perform the conversion to
3111     // signed, then adjust the result if the sign bit is set.
3112     SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3113                    DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3114
3115     SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3116                                      DAG.getConstant(0, Hi.getValueType()),
3117                                      ISD::SETLT);
3118     SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3119     SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3120                                       SignSet, Four, Zero);
3121     uint64_t FF = 0x5f800000ULL;
3122     if (TLI.isLittleEndian()) FF <<= 32;
3123     static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3124
3125     SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
3126     CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3127     SDOperand FudgeInReg;
3128     if (DestTy == MVT::f32)
3129       FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3130                                DAG.getSrcValue(NULL));
3131     else {
3132       assert(DestTy == MVT::f64 && "Unexpected conversion");
3133       FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3134                                   CPIdx, DAG.getSrcValue(NULL), MVT::f32);
3135     }
3136     return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
3137   }
3138
3139   // Check to see if the target has a custom way to lower this.  If so, use it.
3140   switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3141   default: assert(0 && "This action not implemented for this operation!");
3142   case TargetLowering::Legal:
3143   case TargetLowering::Expand:
3144     break;   // This case is handled below.
3145   case TargetLowering::Custom: {
3146     SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3147                                                   Source), DAG);
3148     if (NV.Val)
3149       return LegalizeOp(NV);
3150     break;   // The target decided this was legal after all
3151   }
3152   }
3153
3154   // Expand the source, then glue it back together for the call.  We must expand
3155   // the source in case it is shared (this pass of legalize must traverse it).
3156   SDOperand SrcLo, SrcHi;
3157   ExpandOp(Source, SrcLo, SrcHi);
3158   Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3159
3160   const char *FnName = 0;
3161   if (DestTy == MVT::f32)
3162     FnName = "__floatdisf";
3163   else {
3164     assert(DestTy == MVT::f64 && "Unknown fp value type!");
3165     FnName = "__floatdidf";
3166   }
3167   
3168   Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3169   SDOperand UnusedHiPart;
3170   return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
3171 }
3172
3173 /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3174 /// INT_TO_FP operation of the specified operand when the target requests that
3175 /// we expand it.  At this point, we know that the result and operand types are
3176 /// legal for the target.
3177 SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3178                                                      SDOperand Op0,
3179                                                      MVT::ValueType DestVT) {
3180   if (Op0.getValueType() == MVT::i32) {
3181     // simple 32-bit [signed|unsigned] integer to float/double expansion
3182     
3183     // get the stack frame index of a 8 byte buffer
3184     MachineFunction &MF = DAG.getMachineFunction();
3185     int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3186     // get address of 8 byte buffer
3187     SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3188     // word offset constant for Hi/Lo address computation
3189     SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3190     // set up Hi and Lo (into buffer) address based on endian
3191     SDOperand Hi, Lo;
3192     if (TLI.isLittleEndian()) {
3193       Hi = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3194       Lo = StackSlot;
3195     } else {
3196       Hi = StackSlot;
3197       Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot, WordOff);
3198     }
3199     // if signed map to unsigned space
3200     SDOperand Op0Mapped;
3201     if (isSigned) {
3202       // constant used to invert sign bit (signed to unsigned mapping)
3203       SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
3204       Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
3205     } else {
3206       Op0Mapped = Op0;
3207     }
3208     // store the lo of the constructed double - based on integer input
3209     SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3210                                    Op0Mapped, Lo, DAG.getSrcValue(NULL));
3211     // initial hi portion of constructed double
3212     SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
3213     // store the hi of the constructed double - biased exponent
3214     SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
3215                                    InitialHi, Hi, DAG.getSrcValue(NULL));
3216     // load the constructed double
3217     SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
3218                                DAG.getSrcValue(NULL));
3219     // FP constant to bias correct the final result
3220     SDOperand Bias = DAG.getConstantFP(isSigned ?
3221                                             BitsToDouble(0x4330000080000000ULL)
3222                                           : BitsToDouble(0x4330000000000000ULL),
3223                                      MVT::f64);
3224     // subtract the bias
3225     SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
3226     // final result
3227     SDOperand Result;
3228     // handle final rounding
3229     if (DestVT == MVT::f64) {
3230       // do nothing
3231       Result = Sub;
3232     } else {
3233      // if f32 then cast to f32
3234       Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
3235     }
3236     return Result;
3237   }
3238   assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
3239   SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
3240
3241   SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
3242                                    DAG.getConstant(0, Op0.getValueType()),
3243                                    ISD::SETLT);
3244   SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3245   SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3246                                     SignSet, Four, Zero);
3247
3248   // If the sign bit of the integer is set, the large number will be treated
3249   // as a negative number.  To counteract this, the dynamic code adds an
3250   // offset depending on the data type.
3251   uint64_t FF;
3252   switch (Op0.getValueType()) {
3253   default: assert(0 && "Unsupported integer type!");
3254   case MVT::i8 : FF = 0x43800000ULL; break;  // 2^8  (as a float)
3255   case MVT::i16: FF = 0x47800000ULL; break;  // 2^16 (as a float)
3256   case MVT::i32: FF = 0x4F800000ULL; break;  // 2^32 (as a float)
3257   case MVT::i64: FF = 0x5F800000ULL; break;  // 2^64 (as a float)
3258   }
3259   if (TLI.isLittleEndian()) FF <<= 32;
3260   static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3261
3262   SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
3263   CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3264   SDOperand FudgeInReg;
3265   if (DestVT == MVT::f32)
3266     FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3267                              DAG.getSrcValue(NULL));
3268   else {
3269     assert(DestVT == MVT::f64 && "Unexpected conversion");
3270     FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
3271                                            DAG.getEntryNode(), CPIdx,
3272                                            DAG.getSrcValue(NULL), MVT::f32));
3273   }
3274
3275   return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
3276 }
3277
3278 /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
3279 /// *INT_TO_FP operation of the specified operand when the target requests that
3280 /// we promote it.  At this point, we know that the result and operand types are
3281 /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
3282 /// operation that takes a larger input.
3283 SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
3284                                                       MVT::ValueType DestVT,
3285                                                       bool isSigned) {
3286   // First step, figure out the appropriate *INT_TO_FP operation to use.
3287   MVT::ValueType NewInTy = LegalOp.getValueType();
3288
3289   unsigned OpToUse = 0;
3290
3291   // Scan for the appropriate larger type to use.
3292   while (1) {
3293     NewInTy = (MVT::ValueType)(NewInTy+1);
3294     assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
3295
3296     // If the target supports SINT_TO_FP of this type, use it.
3297     switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
3298       default: break;
3299       case TargetLowering::Legal:
3300         if (!TLI.isTypeLegal(NewInTy))
3301           break;  // Can't use this datatype.
3302         // FALL THROUGH.
3303       case TargetLowering::Custom:
3304         OpToUse = ISD::SINT_TO_FP;
3305         break;
3306     }
3307     if (OpToUse) break;
3308     if (isSigned) continue;
3309
3310     // If the target supports UINT_TO_FP of this type, use it.
3311     switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
3312       default: break;
3313       case TargetLowering::Legal:
3314         if (!TLI.isTypeLegal(NewInTy))
3315           break;  // Can't use this datatype.
3316         // FALL THROUGH.
3317       case TargetLowering::Custom:
3318         OpToUse = ISD::UINT_TO_FP;
3319         break;
3320     }
3321     if (OpToUse) break;
3322
3323     // Otherwise, try a larger type.
3324   }
3325
3326   // Okay, we found the operation and type to use.  Zero extend our input to the
3327   // desired type then run the operation on it.
3328   return DAG.getNode(OpToUse, DestVT,
3329                      DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
3330                                  NewInTy, LegalOp));
3331 }
3332
3333 /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
3334 /// FP_TO_*INT operation of the specified operand when the target requests that
3335 /// we promote it.  At this point, we know that the result and operand types are
3336 /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
3337 /// operation that returns a larger result.
3338 SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
3339                                                       MVT::ValueType DestVT,
3340                                                       bool isSigned) {
3341   // First step, figure out the appropriate FP_TO*INT operation to use.
3342   MVT::ValueType NewOutTy = DestVT;
3343
3344   unsigned OpToUse = 0;
3345
3346   // Scan for the appropriate larger type to use.
3347   while (1) {
3348     NewOutTy = (MVT::ValueType)(NewOutTy+1);
3349     assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
3350
3351     // If the target supports FP_TO_SINT returning this type, use it.
3352     switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
3353     default: break;
3354     case TargetLowering::Legal:
3355       if (!TLI.isTypeLegal(NewOutTy))
3356         break;  // Can't use this datatype.
3357       // FALL THROUGH.
3358     case TargetLowering::Custom:
3359       OpToUse = ISD::FP_TO_SINT;
3360       break;
3361     }
3362     if (OpToUse) break;
3363
3364     // If the target supports FP_TO_UINT of this type, use it.
3365     switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
3366     default: break;
3367     case TargetLowering::Legal:
3368       if (!TLI.isTypeLegal(NewOutTy))
3369         break;  // Can't use this datatype.
3370       // FALL THROUGH.
3371     case TargetLowering::Custom:
3372       OpToUse = ISD::FP_TO_UINT;
3373       break;
3374     }
3375     if (OpToUse) break;
3376
3377     // Otherwise, try a larger type.
3378   }
3379
3380   // Okay, we found the operation and type to use.  Truncate the result of the
3381   // extended FP_TO_*INT operation to the desired size.
3382   return DAG.getNode(ISD::TRUNCATE, DestVT,
3383                      DAG.getNode(OpToUse, NewOutTy, LegalOp));
3384 }
3385
3386 /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
3387 ///
3388 SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
3389   MVT::ValueType VT = Op.getValueType();
3390   MVT::ValueType SHVT = TLI.getShiftAmountTy();
3391   SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
3392   switch (VT) {
3393   default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
3394   case MVT::i16:
3395     Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3396     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3397     return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
3398   case MVT::i32:
3399     Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3400     Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3401     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3402     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3403     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
3404     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
3405     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3406     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3407     return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3408   case MVT::i64:
3409     Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
3410     Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
3411     Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
3412     Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
3413     Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
3414     Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
3415     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
3416     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
3417     Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
3418     Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
3419     Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
3420     Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
3421     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
3422     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
3423     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
3424     Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
3425     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
3426     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
3427     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
3428     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
3429     return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
3430   }
3431 }
3432
3433 /// ExpandBitCount - Expand the specified bitcount instruction into operations.
3434 ///
3435 SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
3436   switch (Opc) {
3437   default: assert(0 && "Cannot expand this yet!");
3438   case ISD::CTPOP: {
3439     static const uint64_t mask[6] = {
3440       0x5555555555555555ULL, 0x3333333333333333ULL,
3441       0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
3442       0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
3443     };
3444     MVT::ValueType VT = Op.getValueType();
3445     MVT::ValueType ShVT = TLI.getShiftAmountTy();
3446     unsigned len = getSizeInBits(VT);
3447     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3448       //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
3449       SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
3450       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3451       Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
3452                        DAG.getNode(ISD::AND, VT,
3453                                    DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
3454     }
3455     return Op;
3456   }
3457   case ISD::CTLZ: {
3458     // for now, we do this:
3459     // x = x | (x >> 1);
3460     // x = x | (x >> 2);
3461     // ...
3462     // x = x | (x >>16);
3463     // x = x | (x >>32); // for 64-bit input
3464     // return popcount(~x);
3465     //
3466     // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
3467     MVT::ValueType VT = Op.getValueType();
3468     MVT::ValueType ShVT = TLI.getShiftAmountTy();
3469     unsigned len = getSizeInBits(VT);
3470     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
3471       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
3472       Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
3473     }
3474     Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
3475     return DAG.getNode(ISD::CTPOP, VT, Op);
3476   }
3477   case ISD::CTTZ: {
3478     // for now, we use: { return popcount(~x & (x - 1)); }
3479     // unless the target has ctlz but not ctpop, in which case we use:
3480     // { return 32 - nlz(~x & (x-1)); }
3481     // see also http://www.hackersdelight.org/HDcode/ntz.cc
3482     MVT::ValueType VT = Op.getValueType();
3483     SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
3484     SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
3485                        DAG.getNode(ISD::XOR, VT, Op, Tmp2),
3486                        DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
3487     // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
3488     if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
3489         TLI.isOperationLegal(ISD::CTLZ, VT))
3490       return DAG.getNode(ISD::SUB, VT,
3491                          DAG.getConstant(getSizeInBits(VT), VT),
3492                          DAG.getNode(ISD::CTLZ, VT, Tmp3));
3493     return DAG.getNode(ISD::CTPOP, VT, Tmp3);
3494   }
3495   }
3496 }
3497
3498
3499 /// ExpandOp - Expand the specified SDOperand into its two component pieces
3500 /// Lo&Hi.  Note that the Op MUST be an expanded type.  As a result of this, the
3501 /// LegalizeNodes map is filled in for any results that are not expanded, the
3502 /// ExpandedNodes map is filled in for any results that are expanded, and the
3503 /// Lo/Hi values are returned.
3504 void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
3505   MVT::ValueType VT = Op.getValueType();
3506   MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3507   SDNode *Node = Op.Val;
3508   assert(getTypeAction(VT) == Expand && "Not an expanded type!");
3509   assert((MVT::isInteger(VT) || VT == MVT::Vector) && 
3510          "Cannot expand FP values!");
3511   assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
3512          "Cannot expand to FP value or to larger int value!");
3513
3514   // See if we already expanded it.
3515   std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
3516     = ExpandedNodes.find(Op);
3517   if (I != ExpandedNodes.end()) {
3518     Lo = I->second.first;
3519     Hi = I->second.second;
3520     return;
3521   }
3522
3523   switch (Node->getOpcode()) {
3524   case ISD::CopyFromReg:
3525     assert(0 && "CopyFromReg must be legal!");
3526   default:
3527     std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
3528     assert(0 && "Do not know how to expand this operator!");
3529     abort();
3530   case ISD::UNDEF:
3531     Lo = DAG.getNode(ISD::UNDEF, NVT);
3532     Hi = DAG.getNode(ISD::UNDEF, NVT);
3533     break;
3534   case ISD::Constant: {
3535     uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
3536     Lo = DAG.getConstant(Cst, NVT);
3537     Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
3538     break;
3539   }
3540   case ISD::VConstant: {
3541     unsigned NumElements =
3542       cast<ConstantSDNode>(Node->getOperand(0))->getValue() / 2;
3543     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3544     MVT::ValueType TVT = (NumElements > 1)
3545                          ? getVectorType(EVT, NumElements) : EVT;
3546     // If type of bisected vector is legal, turn it into a ConstantVec (which
3547     // will be lowered to a ConstantPool or something else). Otherwise, bisect
3548     // the VConstant, and return each half as a new VConstant.
3549     unsigned Opc = ISD::ConstantVec;
3550     std::vector<SDOperand> LoOps, HiOps;
3551     if (!(TVT != MVT::Other &&
3552           (!MVT::isVector(TVT) || TLI.isTypeLegal(TVT)))) {
3553       Opc = ISD::VConstant;
3554       TVT = MVT::Vector;
3555       SDOperand Num = DAG.getConstant(NumElements, MVT::i32);
3556       SDOperand Typ = DAG.getValueType(EVT);
3557       HiOps.push_back(Num);
3558       HiOps.push_back(Typ);
3559       LoOps.push_back(Num);
3560       LoOps.push_back(Typ);
3561     }
3562
3563     if (NumElements == 1) {
3564       Hi = Node->getOperand(2);
3565       Lo = Node->getOperand(3);
3566     } else {
3567       for (unsigned I = 0, E = NumElements; I < E; ++I) {
3568         HiOps.push_back(Node->getOperand(I+2));
3569         LoOps.push_back(Node->getOperand(I+2+NumElements));
3570       }
3571       Hi = DAG.getNode(Opc, TVT, HiOps);
3572       Lo = DAG.getNode(Opc, TVT, LoOps);
3573     }
3574     break;
3575   }
3576
3577   case ISD::BUILD_PAIR:
3578     // Return the operands.
3579     Lo = Node->getOperand(0);
3580     Hi = Node->getOperand(1);
3581     break;
3582     
3583   case ISD::SIGN_EXTEND_INREG:
3584     ExpandOp(Node->getOperand(0), Lo, Hi);
3585     // Sign extend the lo-part.
3586     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3587                      DAG.getConstant(MVT::getSizeInBits(NVT)-1,
3588                                      TLI.getShiftAmountTy()));
3589     // sext_inreg the low part if needed.
3590     Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
3591     break;
3592
3593   case ISD::BSWAP: {
3594     ExpandOp(Node->getOperand(0), Lo, Hi);
3595     SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
3596     Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
3597     Lo = TempLo;
3598     break;
3599   }
3600     
3601   case ISD::CTPOP:
3602     ExpandOp(Node->getOperand(0), Lo, Hi);
3603     Lo = DAG.getNode(ISD::ADD, NVT,          // ctpop(HL) -> ctpop(H)+ctpop(L)
3604                      DAG.getNode(ISD::CTPOP, NVT, Lo),
3605                      DAG.getNode(ISD::CTPOP, NVT, Hi));
3606     Hi = DAG.getConstant(0, NVT);
3607     break;
3608
3609   case ISD::CTLZ: {
3610     // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
3611     ExpandOp(Node->getOperand(0), Lo, Hi);
3612     SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3613     SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
3614     SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
3615                                         ISD::SETNE);
3616     SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
3617     LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
3618
3619     Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
3620     Hi = DAG.getConstant(0, NVT);
3621     break;
3622   }
3623
3624   case ISD::CTTZ: {
3625     // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
3626     ExpandOp(Node->getOperand(0), Lo, Hi);
3627     SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
3628     SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
3629     SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
3630                                         ISD::SETNE);
3631     SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
3632     HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
3633
3634     Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
3635     Hi = DAG.getConstant(0, NVT);
3636     break;
3637   }
3638
3639   case ISD::VAARG: {
3640     SDOperand Ch = Node->getOperand(0);   // Legalize the chain.
3641     SDOperand Ptr = Node->getOperand(1);  // Legalize the pointer.
3642     Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
3643     Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
3644
3645     // Remember that we legalized the chain.
3646     Hi = LegalizeOp(Hi);
3647     AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
3648     if (!TLI.isLittleEndian())
3649       std::swap(Lo, Hi);
3650     break;
3651   }
3652     
3653   case ISD::LOAD: {
3654     SDOperand Ch = Node->getOperand(0);   // Legalize the chain.
3655     SDOperand Ptr = Node->getOperand(1);  // Legalize the pointer.
3656     Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
3657
3658     // Increment the pointer to the other half.
3659     unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
3660     Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3661                       getIntPtrConstant(IncrementSize));
3662     // FIXME: This creates a bogus srcvalue!
3663     Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
3664
3665     // Build a factor node to remember that this load is independent of the
3666     // other one.
3667     SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3668                                Hi.getValue(1));
3669
3670     // Remember that we legalized the chain.
3671     AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
3672     if (!TLI.isLittleEndian())
3673       std::swap(Lo, Hi);
3674     break;
3675   }
3676   case ISD::VLOAD: {
3677     SDOperand Ch = Node->getOperand(2);   // Legalize the chain.
3678     SDOperand Ptr = Node->getOperand(3);  // Legalize the pointer.
3679     unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(0))->getValue();
3680     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3681     MVT::ValueType TVT = (NumElements/2 > 1)
3682       ? getVectorType(EVT, NumElements/2) : EVT;
3683     
3684     // If type of split vector is legal, turn into a pair of scalar or
3685     // packed loads.
3686     if (TVT != MVT::Other &&
3687         (!MVT::isVector(TVT) ||
3688          (TLI.isTypeLegal(TVT) && TLI.isOperationLegal(ISD::LOAD, TVT)))) {
3689       Lo = DAG.getLoad(TVT, Ch, Ptr, Node->getOperand(4));
3690       // Increment the pointer to the other half.
3691       unsigned IncrementSize = MVT::getSizeInBits(TVT)/8;
3692       Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3693                         getIntPtrConstant(IncrementSize));
3694       // FIXME: This creates a bogus srcvalue!
3695       Hi = DAG.getLoad(TVT, Ch, Ptr, Node->getOperand(4));
3696     } else {
3697       NumElements /= 2; // Split the vector in half
3698       Lo = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3699       unsigned IncrementSize = NumElements * MVT::getSizeInBits(EVT)/8;
3700       Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
3701                         getIntPtrConstant(IncrementSize));
3702       // FIXME: This creates a bogus srcvalue!
3703       Hi = DAG.getVecLoad(NumElements, EVT, Ch, Ptr, Node->getOperand(4));
3704     }
3705     
3706     // Build a factor node to remember that this load is independent of the
3707     // other one.
3708     SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
3709                                Hi.getValue(1));
3710     
3711     // Remember that we legalized the chain.
3712     AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
3713     if (!TLI.isLittleEndian())
3714       std::swap(Lo, Hi);
3715     break;
3716   }
3717   case ISD::VADD:
3718   case ISD::VSUB:
3719   case ISD::VMUL:
3720   case ISD::VSDIV:
3721   case ISD::VUDIV:
3722   case ISD::VAND:
3723   case ISD::VOR:
3724   case ISD::VXOR: {
3725     unsigned NumElements =cast<ConstantSDNode>(Node->getOperand(0))->getValue();
3726     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3727     MVT::ValueType TVT = (NumElements/2 > 1)
3728                          ? getVectorType(EVT, NumElements/2) : EVT;
3729     SDOperand LL, LH, RL, RH;
3730     
3731     ExpandOp(Node->getOperand(2), LL, LH);
3732     ExpandOp(Node->getOperand(3), RL, RH);
3733
3734     // If type of split vector is legal, turn into a pair of scalar / packed
3735     // ADD, SUB, or MUL.
3736     unsigned Opc = getScalarizedOpcode(Node->getOpcode(), EVT);
3737     if (TVT != MVT::Other &&
3738         (!MVT::isVector(TVT) ||
3739          (TLI.isTypeLegal(TVT) && TLI.isOperationLegal(Opc, TVT)))) {
3740       Lo = DAG.getNode(Opc, TVT, LL, RL);
3741       Hi = DAG.getNode(Opc, TVT, LH, RH);
3742     } else {
3743       SDOperand Num = DAG.getConstant(NumElements/2, MVT::i32);
3744       SDOperand Typ = DAG.getValueType(EVT);
3745       Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, Num, Typ, LL, RL);
3746       Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, Num, Typ, LH, RH);
3747     }
3748     break;
3749   }
3750   case ISD::AND:
3751   case ISD::OR:
3752   case ISD::XOR: {   // Simple logical operators -> two trivial pieces.
3753     SDOperand LL, LH, RL, RH;
3754     ExpandOp(Node->getOperand(0), LL, LH);
3755     ExpandOp(Node->getOperand(1), RL, RH);
3756     Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
3757     Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
3758     break;
3759   }
3760   case ISD::SELECT: {
3761     SDOperand LL, LH, RL, RH;
3762     ExpandOp(Node->getOperand(1), LL, LH);
3763     ExpandOp(Node->getOperand(2), RL, RH);
3764     Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
3765     Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
3766     break;
3767   }
3768   case ISD::SELECT_CC: {
3769     SDOperand TL, TH, FL, FH;
3770     ExpandOp(Node->getOperand(2), TL, TH);
3771     ExpandOp(Node->getOperand(3), FL, FH);
3772     Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3773                      Node->getOperand(1), TL, FL, Node->getOperand(4));
3774     Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3775                      Node->getOperand(1), TH, FH, Node->getOperand(4));
3776     break;
3777   }
3778   case ISD::SEXTLOAD: {
3779     SDOperand Chain = Node->getOperand(0);
3780     SDOperand Ptr   = Node->getOperand(1);
3781     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3782     
3783     if (EVT == NVT)
3784       Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3785     else
3786       Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3787                           EVT);
3788     
3789     // Remember that we legalized the chain.
3790     AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
3791     
3792     // The high part is obtained by SRA'ing all but one of the bits of the lo
3793     // part.
3794     unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
3795     Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
3796                                                        TLI.getShiftAmountTy()));
3797     break;
3798   }
3799   case ISD::ZEXTLOAD: {
3800     SDOperand Chain = Node->getOperand(0);
3801     SDOperand Ptr   = Node->getOperand(1);
3802     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3803     
3804     if (EVT == NVT)
3805       Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3806     else
3807       Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3808                           EVT);
3809     
3810     // Remember that we legalized the chain.
3811     AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
3812
3813     // The high part is just a zero.
3814     Hi = DAG.getConstant(0, NVT);
3815     break;
3816   }
3817   case ISD::EXTLOAD: {
3818     SDOperand Chain = Node->getOperand(0);
3819     SDOperand Ptr   = Node->getOperand(1);
3820     MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
3821     
3822     if (EVT == NVT)
3823       Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
3824     else
3825       Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
3826                           EVT);
3827     
3828     // Remember that we legalized the chain.
3829     AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
3830     
3831     // The high part is undefined.
3832     Hi = DAG.getNode(ISD::UNDEF, NVT);
3833     break;
3834   }
3835   case ISD::ANY_EXTEND:
3836     // The low part is any extension of the input (which degenerates to a copy).
3837     Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
3838     // The high part is undefined.
3839     Hi = DAG.getNode(ISD::UNDEF, NVT);
3840     break;
3841   case ISD::SIGN_EXTEND: {
3842     // The low part is just a sign extension of the input (which degenerates to
3843     // a copy).
3844     Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
3845
3846     // The high part is obtained by SRA'ing all but one of the bits of the lo
3847     // part.
3848     unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
3849     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
3850                      DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
3851     break;
3852   }
3853   case ISD::ZERO_EXTEND:
3854     // The low part is just a zero extension of the input (which degenerates to
3855     // a copy).
3856     Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
3857
3858     // The high part is just a zero.
3859     Hi = DAG.getConstant(0, NVT);
3860     break;
3861     
3862   case ISD::BIT_CONVERT: {
3863     SDOperand Tmp = ExpandBIT_CONVERT(Node->getValueType(0), 
3864                                       Node->getOperand(0));
3865     ExpandOp(Tmp, Lo, Hi);
3866     break;
3867   }
3868
3869   case ISD::READCYCLECOUNTER:
3870     assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == 
3871                  TargetLowering::Custom &&
3872            "Must custom expand ReadCycleCounter");
3873     Lo = TLI.LowerOperation(Op, DAG);
3874     assert(Lo.Val && "Node must be custom expanded!");
3875     Hi = Lo.getValue(1);
3876     AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
3877                         LegalizeOp(Lo.getValue(2)));
3878     break;
3879
3880     // These operators cannot be expanded directly, emit them as calls to
3881     // library functions.
3882   case ISD::FP_TO_SINT:
3883     if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
3884       SDOperand Op;
3885       switch (getTypeAction(Node->getOperand(0).getValueType())) {
3886       case Expand: assert(0 && "cannot expand FP!");
3887       case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
3888       case Promote: Op = PromoteOp (Node->getOperand(0)); break;
3889       }
3890
3891       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
3892
3893       // Now that the custom expander is done, expand the result, which is still
3894       // VT.
3895       if (Op.Val) {
3896         ExpandOp(Op, Lo, Hi);
3897         break;
3898       }
3899     }
3900
3901     if (Node->getOperand(0).getValueType() == MVT::f32)
3902       Lo = ExpandLibCall("__fixsfdi", Node, Hi);
3903     else
3904       Lo = ExpandLibCall("__fixdfdi", Node, Hi);
3905     break;
3906
3907   case ISD::FP_TO_UINT:
3908     if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
3909       SDOperand Op;
3910       switch (getTypeAction(Node->getOperand(0).getValueType())) {
3911         case Expand: assert(0 && "cannot expand FP!");
3912         case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
3913         case Promote: Op = PromoteOp (Node->getOperand(0)); break;
3914       }
3915         
3916       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
3917
3918       // Now that the custom expander is done, expand the result.
3919       if (Op.Val) {
3920         ExpandOp(Op, Lo, Hi);
3921         break;
3922       }
3923     }
3924
3925     if (Node->getOperand(0).getValueType() == MVT::f32)
3926       Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
3927     else
3928       Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
3929     break;
3930
3931   case ISD::SHL: {
3932     // If the target wants custom lowering, do so.
3933     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
3934     if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
3935       SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
3936       Op = TLI.LowerOperation(Op, DAG);
3937       if (Op.Val) {
3938         // Now that the custom expander is done, expand the result, which is
3939         // still VT.
3940         ExpandOp(Op, Lo, Hi);
3941         break;
3942       }
3943     }
3944     
3945     // If we can emit an efficient shift operation, do so now.
3946     if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
3947       break;
3948
3949     // If this target supports SHL_PARTS, use it.
3950     TargetLowering::LegalizeAction Action =
3951       TLI.getOperationAction(ISD::SHL_PARTS, NVT);
3952     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3953         Action == TargetLowering::Custom) {
3954       ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
3955       break;
3956     }
3957
3958     // Otherwise, emit a libcall.
3959     Lo = ExpandLibCall("__ashldi3", Node, Hi);
3960     break;
3961   }
3962
3963   case ISD::SRA: {
3964     // If the target wants custom lowering, do so.
3965     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
3966     if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
3967       SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
3968       Op = TLI.LowerOperation(Op, DAG);
3969       if (Op.Val) {
3970         // Now that the custom expander is done, expand the result, which is
3971         // still VT.
3972         ExpandOp(Op, Lo, Hi);
3973         break;
3974       }
3975     }
3976     
3977     // If we can emit an efficient shift operation, do so now.
3978     if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
3979       break;
3980
3981     // If this target supports SRA_PARTS, use it.
3982     TargetLowering::LegalizeAction Action =
3983       TLI.getOperationAction(ISD::SRA_PARTS, NVT);
3984     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
3985         Action == TargetLowering::Custom) {
3986       ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
3987       break;
3988     }
3989
3990     // Otherwise, emit a libcall.
3991     Lo = ExpandLibCall("__ashrdi3", Node, Hi);
3992     break;
3993   }
3994
3995   case ISD::SRL: {
3996     // If the target wants custom lowering, do so.
3997     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
3998     if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
3999       SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
4000       Op = TLI.LowerOperation(Op, DAG);
4001       if (Op.Val) {
4002         // Now that the custom expander is done, expand the result, which is
4003         // still VT.
4004         ExpandOp(Op, Lo, Hi);
4005         break;
4006       }
4007     }
4008
4009     // If we can emit an efficient shift operation, do so now.
4010     if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
4011       break;
4012
4013     // If this target supports SRL_PARTS, use it.
4014     TargetLowering::LegalizeAction Action =
4015       TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4016     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4017         Action == TargetLowering::Custom) {
4018       ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
4019       break;
4020     }
4021
4022     // Otherwise, emit a libcall.
4023     Lo = ExpandLibCall("__lshrdi3", Node, Hi);
4024     break;
4025   }
4026
4027   case ISD::ADD:
4028   case ISD::SUB: {
4029     // If the target wants to custom expand this, let them.
4030     if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4031             TargetLowering::Custom) {
4032       Op = TLI.LowerOperation(Op, DAG);
4033       if (Op.Val) {
4034         ExpandOp(Op, Lo, Hi);
4035         break;
4036       }
4037     }
4038     
4039     // Expand the subcomponents.
4040     SDOperand LHSL, LHSH, RHSL, RHSH;
4041     ExpandOp(Node->getOperand(0), LHSL, LHSH);
4042     ExpandOp(Node->getOperand(1), RHSL, RHSH);
4043     std::vector<MVT::ValueType> VTs;
4044     std::vector<SDOperand> LoOps, HiOps;
4045     VTs.push_back(LHSL.getValueType());
4046     VTs.push_back(MVT::Flag);
4047     LoOps.push_back(LHSL);
4048     LoOps.push_back(RHSL);
4049     HiOps.push_back(LHSH);
4050     HiOps.push_back(RHSH);
4051     if (Node->getOpcode() == ISD::ADD) {
4052       Lo = DAG.getNode(ISD::ADDC, VTs, LoOps);
4053       HiOps.push_back(Lo.getValue(1));
4054       Hi = DAG.getNode(ISD::ADDE, VTs, HiOps);
4055     } else {
4056       Lo = DAG.getNode(ISD::SUBC, VTs, LoOps);
4057       HiOps.push_back(Lo.getValue(1));
4058       Hi = DAG.getNode(ISD::SUBE, VTs, HiOps);
4059     }
4060     break;
4061   }
4062   case ISD::MUL: {
4063     if (TLI.isOperationLegal(ISD::MULHU, NVT)) {
4064       SDOperand LL, LH, RL, RH;
4065       ExpandOp(Node->getOperand(0), LL, LH);
4066       ExpandOp(Node->getOperand(1), RL, RH);
4067       unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4068       // MULHS implicitly sign extends its inputs.  Check to see if ExpandOp
4069       // extended the sign bit of the low half through the upper half, and if so
4070       // emit a MULHS instead of the alternate sequence that is valid for any
4071       // i64 x i64 multiply.
4072       if (TLI.isOperationLegal(ISD::MULHS, NVT) &&
4073           // is RH an extension of the sign bit of RL?
4074           RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4075           RH.getOperand(1).getOpcode() == ISD::Constant &&
4076           cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4077           // is LH an extension of the sign bit of LL?
4078           LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4079           LH.getOperand(1).getOpcode() == ISD::Constant &&
4080           cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
4081         Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
4082       } else {
4083         Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4084         RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4085         LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4086         Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4087         Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
4088       }
4089       Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4090     } else {
4091       Lo = ExpandLibCall("__muldi3" , Node, Hi);
4092     }
4093     break;
4094   }
4095   case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4096   case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4097   case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4098   case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
4099   }
4100
4101   // Make sure the resultant values have been legalized themselves, unless this
4102   // is a type that requires multi-step expansion.
4103   if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4104     Lo = LegalizeOp(Lo);
4105     Hi = LegalizeOp(Hi);
4106   }
4107
4108   // Remember in a map if the values will be reused later.
4109   bool isNew =
4110     ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4111   assert(isNew && "Value already expanded?!?");
4112 }
4113
4114
4115 // SelectionDAG::Legalize - This is the entry point for the file.
4116 //
4117 void SelectionDAG::Legalize() {
4118   /// run - This is the main entry point to this class.
4119   ///
4120   SelectionDAGLegalize(*this).LegalizeDAG();
4121 }
4122