Allow the target to override the ISD::CondCode that's to be used to test the
[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/CodeGen/MachineJumpTableInfo.h"
18 #include "llvm/Target/TargetLowering.h"
19 #include "llvm/Target/TargetData.h"
20 #include "llvm/Target/TargetMachine.h"
21 #include "llvm/Target/TargetOptions.h"
22 #include "llvm/CallingConv.h"
23 #include "llvm/Constants.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/Support/MathExtras.h"
26 #include "llvm/Support/CommandLine.h"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/ADT/SmallVector.h"
29 #include <map>
30 using namespace llvm;
31
32 #ifndef NDEBUG
33 static cl::opt<bool>
34 ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
35                  cl::desc("Pop up a window to show dags before legalize"));
36 #else
37 static const bool ViewLegalizeDAGs = 0;
38 #endif
39
40 //===----------------------------------------------------------------------===//
41 /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
42 /// hacks on it until the target machine can handle it.  This involves
43 /// eliminating value sizes the machine cannot handle (promoting small sizes to
44 /// large sizes or splitting up large values into small values) as well as
45 /// eliminating operations the machine cannot handle.
46 ///
47 /// This code also does a small amount of optimization and recognition of idioms
48 /// as part of its processing.  For example, if a target does not support a
49 /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
50 /// will attempt merge setcc and brc instructions into brcc's.
51 ///
52 namespace {
53 class VISIBILITY_HIDDEN SelectionDAGLegalize {
54   TargetLowering &TLI;
55   SelectionDAG &DAG;
56
57   // Libcall insertion helpers.
58   
59   /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
60   /// legalized.  We use this to ensure that calls are properly serialized
61   /// against each other, including inserted libcalls.
62   SDOperand LastCALLSEQ_END;
63   
64   /// IsLegalizingCall - This member is used *only* for purposes of providing
65   /// helpful assertions that a libcall isn't created while another call is 
66   /// being legalized (which could lead to non-serialized call sequences).
67   bool IsLegalizingCall;
68   
69   enum LegalizeAction {
70     Legal,      // The target natively supports this operation.
71     Promote,    // This operation should be executed in a larger type.
72     Expand      // Try to expand this to other ops, otherwise use a libcall.
73   };
74   
75   /// ValueTypeActions - This is a bitvector that contains two bits for each
76   /// value type, where the two bits correspond to the LegalizeAction enum.
77   /// This can be queried with "getTypeAction(VT)".
78   TargetLowering::ValueTypeActionImpl ValueTypeActions;
79
80   /// LegalizedNodes - For nodes that are of legal width, and that have more
81   /// than one use, this map indicates what regularized operand to use.  This
82   /// allows us to avoid legalizing the same thing more than once.
83   std::map<SDOperand, SDOperand> LegalizedNodes;
84
85   /// PromotedNodes - For nodes that are below legal width, and that have more
86   /// than one use, this map indicates what promoted value to use.  This allows
87   /// us to avoid promoting the same thing more than once.
88   std::map<SDOperand, SDOperand> PromotedNodes;
89
90   /// ExpandedNodes - For nodes that need to be expanded this map indicates
91   /// which which operands are the expanded version of the input.  This allows
92   /// us to avoid expanding the same node more than once.
93   std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
94
95   /// SplitNodes - For vector nodes that need to be split, this map indicates
96   /// which which operands are the split version of the input.  This allows us
97   /// to avoid splitting the same node more than once.
98   std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
99   
100   /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
101   /// concrete packed types, this contains the mapping of ones we have already
102   /// processed to the result.
103   std::map<SDOperand, SDOperand> PackedNodes;
104   
105   void AddLegalizedOperand(SDOperand From, SDOperand To) {
106     LegalizedNodes.insert(std::make_pair(From, To));
107     // If someone requests legalization of the new node, return itself.
108     if (From != To)
109       LegalizedNodes.insert(std::make_pair(To, To));
110   }
111   void AddPromotedOperand(SDOperand From, SDOperand To) {
112     bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
113     assert(isNew && "Got into the map somehow?");
114     // If someone requests legalization of the new node, return itself.
115     LegalizedNodes.insert(std::make_pair(To, To));
116   }
117
118 public:
119
120   SelectionDAGLegalize(SelectionDAG &DAG);
121
122   /// getTypeAction - Return how we should legalize values of this type, either
123   /// it is already legal or we need to expand it into multiple registers of
124   /// smaller integer type, or we need to promote it to a larger type.
125   LegalizeAction getTypeAction(MVT::ValueType VT) const {
126     return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
127   }
128
129   /// isTypeLegal - Return true if this type is legal on this target.
130   ///
131   bool isTypeLegal(MVT::ValueType VT) const {
132     return getTypeAction(VT) == Legal;
133   }
134
135   void LegalizeDAG();
136
137 private:
138   /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
139   /// appropriate for its type.
140   void HandleOp(SDOperand Op);
141     
142   /// LegalizeOp - We know that the specified value has a legal type.
143   /// Recursively ensure that the operands have legal types, then return the
144   /// result.
145   SDOperand LegalizeOp(SDOperand O);
146   
147   /// PromoteOp - Given an operation that produces a value in an invalid type,
148   /// promote it to compute the value into a larger type.  The produced value
149   /// will have the correct bits for the low portion of the register, but no
150   /// guarantee is made about the top bits: it may be zero, sign-extended, or
151   /// garbage.
152   SDOperand PromoteOp(SDOperand O);
153
154   /// ExpandOp - Expand the specified SDOperand into its two component pieces
155   /// Lo&Hi.  Note that the Op MUST be an expanded type.  As a result of this,
156   /// the LegalizeNodes map is filled in for any results that are not expanded,
157   /// the ExpandedNodes map is filled in for any results that are expanded, and
158   /// the Lo/Hi values are returned.   This applies to integer types and Vector
159   /// types.
160   void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
161
162   /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
163   /// two smaller values of MVT::Vector type.
164   void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
165   
166   /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
167   /// equivalent operation that returns a packed value (e.g. MVT::V4F32).  When
168   /// this is called, we know that PackedVT is the right type for the result and
169   /// we know that this type is legal for the target.
170   SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
171   
172   /// isShuffleLegal - Return true if a vector shuffle is legal with the
173   /// specified mask and type.  Targets can specify exactly which masks they
174   /// support and the code generator is tasked with not creating illegal masks.
175   ///
176   /// Note that this will also return true for shuffles that are promoted to a
177   /// different type.
178   ///
179   /// If this is a legal shuffle, this method returns the (possibly promoted)
180   /// build_vector Mask.  If it's not a legal shuffle, it returns null.
181   SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
182   
183   bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
184                                     std::set<SDNode*> &NodesLeadingTo);
185
186   void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
187     
188   SDOperand CreateStackTemporary(MVT::ValueType VT);
189
190   SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
191                           SDOperand &Hi);
192   SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
193                           SDOperand Source);
194
195   SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
196   SDOperand ExpandBUILD_VECTOR(SDNode *Node);
197   SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
198   SDOperand ExpandLegalINT_TO_FP(bool isSigned,
199                                  SDOperand LegalOp,
200                                  MVT::ValueType DestVT);
201   SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
202                                   bool isSigned);
203   SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
204                                   bool isSigned);
205
206   SDOperand ExpandBSWAP(SDOperand Op);
207   SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
208   bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
209                    SDOperand &Lo, SDOperand &Hi);
210   void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
211                         SDOperand &Lo, SDOperand &Hi);
212
213   SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
214   SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
215   
216   SDOperand getIntPtrConstant(uint64_t Val) {
217     return DAG.getConstant(Val, TLI.getPointerTy());
218   }
219 };
220 }
221
222 /// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
223 /// specified mask and type.  Targets can specify exactly which masks they
224 /// support and the code generator is tasked with not creating illegal masks.
225 ///
226 /// Note that this will also return true for shuffles that are promoted to a
227 /// different type.
228 SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT, 
229                                              SDOperand Mask) const {
230   switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
231   default: return 0;
232   case TargetLowering::Legal:
233   case TargetLowering::Custom:
234     break;
235   case TargetLowering::Promote: {
236     // If this is promoted to a different type, convert the shuffle mask and
237     // ask if it is legal in the promoted type!
238     MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
239
240     // If we changed # elements, change the shuffle mask.
241     unsigned NumEltsGrowth =
242       MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
243     assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
244     if (NumEltsGrowth > 1) {
245       // Renumber the elements.
246       SmallVector<SDOperand, 8> Ops;
247       for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
248         SDOperand InOp = Mask.getOperand(i);
249         for (unsigned j = 0; j != NumEltsGrowth; ++j) {
250           if (InOp.getOpcode() == ISD::UNDEF)
251             Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
252           else {
253             unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
254             Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
255           }
256         }
257       }
258       Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
259     }
260     VT = NVT;
261     break;
262   }
263   }
264   return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
265 }
266
267 /// getScalarizedOpcode - Return the scalar opcode that corresponds to the
268 /// specified vector opcode.
269 static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
270   switch (VecOp) {
271   default: assert(0 && "Don't know how to scalarize this opcode!");
272   case ISD::VADD:  return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
273   case ISD::VSUB:  return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
274   case ISD::VMUL:  return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
275   case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
276   case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
277   case ISD::VAND:  return MVT::isInteger(VT) ? ISD::AND : 0;
278   case ISD::VOR:   return MVT::isInteger(VT) ? ISD::OR  : 0;
279   case ISD::VXOR:  return MVT::isInteger(VT) ? ISD::XOR : 0;
280   }
281 }
282
283 SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
284   : TLI(dag.getTargetLoweringInfo()), DAG(dag),
285     ValueTypeActions(TLI.getValueTypeActions()) {
286   assert(MVT::LAST_VALUETYPE <= 32 &&
287          "Too many value types for ValueTypeActions to hold!");
288 }
289
290 /// ComputeTopDownOrdering - Add the specified node to the Order list if it has
291 /// not been visited yet and if all of its operands have already been visited.
292 static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
293                                    std::map<SDNode*, unsigned> &Visited) {
294   if (++Visited[N] != N->getNumOperands())
295     return;  // Haven't visited all operands yet
296   
297   Order.push_back(N);
298   
299   if (N->hasOneUse()) { // Tail recurse in common case.
300     ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
301     return;
302   }
303   
304   // Now that we have N in, add anything that uses it if all of their operands
305   // are now done.
306   for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
307     ComputeTopDownOrdering(*UI, Order, Visited);
308 }
309
310
311 void SelectionDAGLegalize::LegalizeDAG() {
312   LastCALLSEQ_END = DAG.getEntryNode();
313   IsLegalizingCall = false;
314   
315   // The legalize process is inherently a bottom-up recursive process (users
316   // legalize their uses before themselves).  Given infinite stack space, we
317   // could just start legalizing on the root and traverse the whole graph.  In
318   // practice however, this causes us to run out of stack space on large basic
319   // blocks.  To avoid this problem, compute an ordering of the nodes where each
320   // node is only legalized after all of its operands are legalized.
321   std::map<SDNode*, unsigned> Visited;
322   std::vector<SDNode*> Order;
323   
324   // Compute ordering from all of the leaves in the graphs, those (like the
325   // entry node) that have no operands.
326   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
327        E = DAG.allnodes_end(); I != E; ++I) {
328     if (I->getNumOperands() == 0) {
329       Visited[I] = 0 - 1U;
330       ComputeTopDownOrdering(I, Order, Visited);
331     }
332   }
333   
334   assert(Order.size() == Visited.size() &&
335          Order.size() == 
336             (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
337          "Error: DAG is cyclic!");
338   Visited.clear();
339   
340   for (unsigned i = 0, e = Order.size(); i != e; ++i)
341     HandleOp(SDOperand(Order[i], 0));
342
343   // Finally, it's possible the root changed.  Get the new root.
344   SDOperand OldRoot = DAG.getRoot();
345   assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
346   DAG.setRoot(LegalizedNodes[OldRoot]);
347
348   ExpandedNodes.clear();
349   LegalizedNodes.clear();
350   PromotedNodes.clear();
351   SplitNodes.clear();
352   PackedNodes.clear();
353
354   // Remove dead nodes now.
355   DAG.RemoveDeadNodes();
356 }
357
358
359 /// FindCallEndFromCallStart - Given a chained node that is part of a call
360 /// sequence, find the CALLSEQ_END node that terminates the call sequence.
361 static SDNode *FindCallEndFromCallStart(SDNode *Node) {
362   if (Node->getOpcode() == ISD::CALLSEQ_END)
363     return Node;
364   if (Node->use_empty())
365     return 0;   // No CallSeqEnd
366   
367   // The chain is usually at the end.
368   SDOperand TheChain(Node, Node->getNumValues()-1);
369   if (TheChain.getValueType() != MVT::Other) {
370     // Sometimes it's at the beginning.
371     TheChain = SDOperand(Node, 0);
372     if (TheChain.getValueType() != MVT::Other) {
373       // Otherwise, hunt for it.
374       for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
375         if (Node->getValueType(i) == MVT::Other) {
376           TheChain = SDOperand(Node, i);
377           break;
378         }
379           
380       // Otherwise, we walked into a node without a chain.  
381       if (TheChain.getValueType() != MVT::Other)
382         return 0;
383     }
384   }
385   
386   for (SDNode::use_iterator UI = Node->use_begin(),
387        E = Node->use_end(); UI != E; ++UI) {
388     
389     // Make sure to only follow users of our token chain.
390     SDNode *User = *UI;
391     for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
392       if (User->getOperand(i) == TheChain)
393         if (SDNode *Result = FindCallEndFromCallStart(User))
394           return Result;
395   }
396   return 0;
397 }
398
399 /// FindCallStartFromCallEnd - Given a chained node that is part of a call 
400 /// sequence, find the CALLSEQ_START node that initiates the call sequence.
401 static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
402   assert(Node && "Didn't find callseq_start for a call??");
403   if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
404   
405   assert(Node->getOperand(0).getValueType() == MVT::Other &&
406          "Node doesn't have a token chain argument!");
407   return FindCallStartFromCallEnd(Node->getOperand(0).Val);
408 }
409
410 /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
411 /// see if any uses can reach Dest.  If no dest operands can get to dest, 
412 /// legalize them, legalize ourself, and return false, otherwise, return true.
413 ///
414 /// Keep track of the nodes we fine that actually do lead to Dest in
415 /// NodesLeadingTo.  This avoids retraversing them exponential number of times.
416 ///
417 bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
418                                             std::set<SDNode*> &NodesLeadingTo) {
419   if (N == Dest) return true;  // N certainly leads to Dest :)
420   
421   // If we've already processed this node and it does lead to Dest, there is no
422   // need to reprocess it.
423   if (NodesLeadingTo.count(N)) return true;
424   
425   // If the first result of this node has been already legalized, then it cannot
426   // reach N.
427   switch (getTypeAction(N->getValueType(0))) {
428   case Legal: 
429     if (LegalizedNodes.count(SDOperand(N, 0))) return false;
430     break;
431   case Promote:
432     if (PromotedNodes.count(SDOperand(N, 0))) return false;
433     break;
434   case Expand:
435     if (ExpandedNodes.count(SDOperand(N, 0))) return false;
436     break;
437   }
438   
439   // Okay, this node has not already been legalized.  Check and legalize all
440   // operands.  If none lead to Dest, then we can legalize this node.
441   bool OperandsLeadToDest = false;
442   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
443     OperandsLeadToDest |=     // If an operand leads to Dest, so do we.
444       LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
445
446   if (OperandsLeadToDest) {
447     NodesLeadingTo.insert(N);
448     return true;
449   }
450
451   // Okay, this node looks safe, legalize it and return false.
452   HandleOp(SDOperand(N, 0));
453   return false;
454 }
455
456 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
457 /// appropriate for its type.
458 void SelectionDAGLegalize::HandleOp(SDOperand Op) {
459   switch (getTypeAction(Op.getValueType())) {
460   default: assert(0 && "Bad type action!");
461   case Legal:   LegalizeOp(Op); break;
462   case Promote: PromoteOp(Op);  break;
463   case Expand:
464     if (Op.getValueType() != MVT::Vector) {
465       SDOperand X, Y;
466       ExpandOp(Op, X, Y);
467     } else {
468       SDNode *N = Op.Val;
469       unsigned NumOps = N->getNumOperands();
470       unsigned NumElements =
471         cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
472       MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
473       MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
474       if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
475         // In the common case, this is a legal vector type, convert it to the
476         // packed operation and type now.
477         PackVectorOp(Op, PackedVT);
478       } else if (NumElements == 1) {
479         // Otherwise, if this is a single element vector, convert it to a
480         // scalar operation.
481         PackVectorOp(Op, EVT);
482       } else {
483         // Otherwise, this is a multiple element vector that isn't supported.
484         // Split it in half and legalize both parts.
485         SDOperand X, Y;
486         SplitVectorOp(Op, X, Y);
487       }
488     }
489     break;
490   }
491 }
492
493 /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
494 /// a load from the constant pool.
495 static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
496                                   SelectionDAG &DAG, TargetLowering &TLI) {
497   bool Extend = false;
498
499   // If a FP immediate is precise when represented as a float and if the
500   // target can do an extending load from float to double, we put it into
501   // the constant pool as a float, even if it's is statically typed as a
502   // double.
503   MVT::ValueType VT = CFP->getValueType(0);
504   bool isDouble = VT == MVT::f64;
505   ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
506                                       Type::FloatTy, CFP->getValue());
507   if (!UseCP) {
508     double Val = LLVMC->getValue();
509     return isDouble
510       ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
511       : DAG.getConstant(FloatToBits(Val), MVT::i32);
512   }
513
514   if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
515       // Only do this if the target has a native EXTLOAD instruction from f32.
516       TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
517     LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
518     VT = MVT::f32;
519     Extend = true;
520   }
521
522   SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
523   if (Extend) {
524     return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
525                           CPIdx, NULL, 0, MVT::f32);
526   } else {
527     return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
528   }
529 }
530
531
532 /// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
533 /// operations.
534 static
535 SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
536                                       SelectionDAG &DAG, TargetLowering &TLI) {
537   MVT::ValueType VT = Node->getValueType(0);
538   MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
539   MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
540
541   // First get the sign bit of second operand.
542   SDOperand Mask1 = (SrcVT == MVT::f64)
543     ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
544     : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
545   Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
546   SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
547   SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
548   // Shift right or sign-extend it if the two operands have different types.
549   int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
550   if (SizeDiff > 0) {
551     SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
552                           DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
553     SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
554   } else if (SizeDiff < 0)
555     SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
556
557   // Clear the sign bit of first operand.
558   SDOperand Mask2 = (VT == MVT::f64)
559     ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
560     : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
561   Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
562   SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
563   Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
564
565   // Or the value with the sign bit.
566   Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
567   return Result;
568 }
569
570
571 /// LegalizeOp - We know that the specified value has a legal type.
572 /// Recursively ensure that the operands have legal types, then return the
573 /// result.
574 SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
575   assert(isTypeLegal(Op.getValueType()) &&
576          "Caller should expand or promote operands that are not legal!");
577   SDNode *Node = Op.Val;
578
579   // If this operation defines any values that cannot be represented in a
580   // register on this target, make sure to expand or promote them.
581   if (Node->getNumValues() > 1) {
582     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
583       if (getTypeAction(Node->getValueType(i)) != Legal) {
584         HandleOp(Op.getValue(i));
585         assert(LegalizedNodes.count(Op) &&
586                "Handling didn't add legal operands!");
587         return LegalizedNodes[Op];
588       }
589   }
590
591   // Note that LegalizeOp may be reentered even from single-use nodes, which
592   // means that we always must cache transformed nodes.
593   std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
594   if (I != LegalizedNodes.end()) return I->second;
595
596   SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
597   SDOperand Result = Op;
598   bool isCustom = false;
599   
600   switch (Node->getOpcode()) {
601   case ISD::FrameIndex:
602   case ISD::EntryToken:
603   case ISD::Register:
604   case ISD::BasicBlock:
605   case ISD::TargetFrameIndex:
606   case ISD::TargetJumpTable:
607   case ISD::TargetConstant:
608   case ISD::TargetConstantFP:
609   case ISD::TargetConstantPool:
610   case ISD::TargetGlobalAddress:
611   case ISD::TargetExternalSymbol:
612   case ISD::VALUETYPE:
613   case ISD::SRCVALUE:
614   case ISD::STRING:
615   case ISD::CONDCODE:
616   case ISD::GLOBAL_OFFSET_TABLE:
617     // Primitives must all be legal.
618     assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
619            "This must be legal!");
620     break;
621   default:
622     if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
623       // If this is a target node, legalize it by legalizing the operands then
624       // passing it through.
625       SmallVector<SDOperand, 8> Ops;
626       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
627         Ops.push_back(LegalizeOp(Node->getOperand(i)));
628
629       Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
630
631       for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
632         AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
633       return Result.getValue(Op.ResNo);
634     }
635     // Otherwise this is an unhandled builtin node.  splat.
636 #ifndef NDEBUG
637     cerr << "NODE: "; Node->dump(); cerr << "\n";
638 #endif
639     assert(0 && "Do not know how to legalize this operator!");
640     abort();
641   case ISD::GlobalAddress:
642   case ISD::ExternalSymbol:
643   case ISD::ConstantPool:
644   case ISD::JumpTable: // Nothing to do.
645     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
646     default: assert(0 && "This action is not supported yet!");
647     case TargetLowering::Custom:
648       Tmp1 = TLI.LowerOperation(Op, DAG);
649       if (Tmp1.Val) Result = Tmp1;
650       // FALLTHROUGH if the target doesn't want to lower this op after all.
651     case TargetLowering::Legal:
652       break;
653     }
654     break;
655   case ISD::FRAMEADDR:
656   case ISD::RETURNADDR:
657     // The only option for these nodes is to custom lower them.  If the target
658     // does not custom lower them, then return zero.
659     Tmp1 = TLI.LowerOperation(Op, DAG);
660     if (Tmp1.Val) 
661       Result = Tmp1;
662     else
663       Result = DAG.getConstant(0, TLI.getPointerTy());
664     break;
665   case ISD::AssertSext:
666   case ISD::AssertZext:
667     Tmp1 = LegalizeOp(Node->getOperand(0));
668     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
669     break;
670   case ISD::MERGE_VALUES:
671     // Legalize eliminates MERGE_VALUES nodes.
672     Result = Node->getOperand(Op.ResNo);
673     break;
674   case ISD::CopyFromReg:
675     Tmp1 = LegalizeOp(Node->getOperand(0));
676     Result = Op.getValue(0);
677     if (Node->getNumValues() == 2) {
678       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
679     } else {
680       assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
681       if (Node->getNumOperands() == 3) {
682         Tmp2 = LegalizeOp(Node->getOperand(2));
683         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
684       } else {
685         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
686       }
687       AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
688     }
689     // Since CopyFromReg produces two values, make sure to remember that we
690     // legalized both of them.
691     AddLegalizedOperand(Op.getValue(0), Result);
692     AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
693     return Result.getValue(Op.ResNo);
694   case ISD::UNDEF: {
695     MVT::ValueType VT = Op.getValueType();
696     switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
697     default: assert(0 && "This action is not supported yet!");
698     case TargetLowering::Expand:
699       if (MVT::isInteger(VT))
700         Result = DAG.getConstant(0, VT);
701       else if (MVT::isFloatingPoint(VT))
702         Result = DAG.getConstantFP(0, VT);
703       else
704         assert(0 && "Unknown value type!");
705       break;
706     case TargetLowering::Legal:
707       break;
708     }
709     break;
710   }
711     
712   case ISD::INTRINSIC_W_CHAIN:
713   case ISD::INTRINSIC_WO_CHAIN:
714   case ISD::INTRINSIC_VOID: {
715     SmallVector<SDOperand, 8> Ops;
716     for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
717       Ops.push_back(LegalizeOp(Node->getOperand(i)));
718     Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
719     
720     // Allow the target to custom lower its intrinsics if it wants to.
721     if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) == 
722         TargetLowering::Custom) {
723       Tmp3 = TLI.LowerOperation(Result, DAG);
724       if (Tmp3.Val) Result = Tmp3;
725     }
726
727     if (Result.Val->getNumValues() == 1) break;
728
729     // Must have return value and chain result.
730     assert(Result.Val->getNumValues() == 2 &&
731            "Cannot return more than two values!");
732
733     // Since loads produce two values, make sure to remember that we 
734     // legalized both of them.
735     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
736     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
737     return Result.getValue(Op.ResNo);
738   }    
739
740   case ISD::LOCATION:
741     assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
742     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the input chain.
743     
744     switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
745     case TargetLowering::Promote:
746     default: assert(0 && "This action is not supported yet!");
747     case TargetLowering::Expand: {
748       MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
749       bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
750       bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
751       
752       if (MMI && (useDEBUG_LOC || useLABEL)) {
753         const std::string &FName =
754           cast<StringSDNode>(Node->getOperand(3))->getValue();
755         const std::string &DirName = 
756           cast<StringSDNode>(Node->getOperand(4))->getValue();
757         unsigned SrcFile = MMI->RecordSource(DirName, FName);
758
759         SmallVector<SDOperand, 8> Ops;
760         Ops.push_back(Tmp1);  // chain
761         SDOperand LineOp = Node->getOperand(1);
762         SDOperand ColOp = Node->getOperand(2);
763         
764         if (useDEBUG_LOC) {
765           Ops.push_back(LineOp);  // line #
766           Ops.push_back(ColOp);  // col #
767           Ops.push_back(DAG.getConstant(SrcFile, MVT::i32));  // source file id
768           Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
769         } else {
770           unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
771           unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
772           unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
773           Ops.push_back(DAG.getConstant(ID, MVT::i32));
774           Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
775         }
776       } else {
777         Result = Tmp1;  // chain
778       }
779       break;
780     }
781     case TargetLowering::Legal:
782       if (Tmp1 != Node->getOperand(0) ||
783           getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
784         SmallVector<SDOperand, 8> Ops;
785         Ops.push_back(Tmp1);
786         if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
787           Ops.push_back(Node->getOperand(1));  // line # must be legal.
788           Ops.push_back(Node->getOperand(2));  // col # must be legal.
789         } else {
790           // Otherwise promote them.
791           Ops.push_back(PromoteOp(Node->getOperand(1)));
792           Ops.push_back(PromoteOp(Node->getOperand(2)));
793         }
794         Ops.push_back(Node->getOperand(3));  // filename must be legal.
795         Ops.push_back(Node->getOperand(4));  // working dir # must be legal.
796         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
797       }
798       break;
799     }
800     break;
801     
802   case ISD::DEBUG_LOC:
803     assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
804     switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
805     default: assert(0 && "This action is not supported yet!");
806     case TargetLowering::Legal:
807       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
808       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the line #.
809       Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the col #.
810       Tmp4 = LegalizeOp(Node->getOperand(3));  // Legalize the source file id.
811       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
812       break;
813     }
814     break;    
815
816   case ISD::LABEL:
817     assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
818     switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
819     default: assert(0 && "This action is not supported yet!");
820     case TargetLowering::Legal:
821       Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
822       Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the label id.
823       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
824       break;
825     }
826     break;
827
828   case ISD::Constant:
829     // We know we don't need to expand constants here, constants only have one
830     // value and we check that it is fine above.
831
832     // FIXME: Maybe we should handle things like targets that don't support full
833     // 32-bit immediates?
834     break;
835   case ISD::ConstantFP: {
836     // Spill FP immediates to the constant pool if the target cannot directly
837     // codegen them.  Targets often have some immediate values that can be
838     // efficiently generated into an FP register without a load.  We explicitly
839     // leave these constants as ConstantFP nodes for the target to deal with.
840     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
841
842     // Check to see if this FP immediate is already legal.
843     bool isLegal = false;
844     for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
845            E = TLI.legal_fpimm_end(); I != E; ++I)
846       if (CFP->isExactlyValue(*I)) {
847         isLegal = true;
848         break;
849       }
850
851     // If this is a legal constant, turn it into a TargetConstantFP node.
852     if (isLegal) {
853       Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
854       break;
855     }
856
857     switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
858     default: assert(0 && "This action is not supported yet!");
859     case TargetLowering::Custom:
860       Tmp3 = TLI.LowerOperation(Result, DAG);
861       if (Tmp3.Val) {
862         Result = Tmp3;
863         break;
864       }
865       // FALLTHROUGH
866     case TargetLowering::Expand:
867       Result = ExpandConstantFP(CFP, true, DAG, TLI);
868     }
869     break;
870   }
871   case ISD::TokenFactor:
872     if (Node->getNumOperands() == 2) {
873       Tmp1 = LegalizeOp(Node->getOperand(0));
874       Tmp2 = LegalizeOp(Node->getOperand(1));
875       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
876     } else if (Node->getNumOperands() == 3) {
877       Tmp1 = LegalizeOp(Node->getOperand(0));
878       Tmp2 = LegalizeOp(Node->getOperand(1));
879       Tmp3 = LegalizeOp(Node->getOperand(2));
880       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
881     } else {
882       SmallVector<SDOperand, 8> Ops;
883       // Legalize the operands.
884       for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
885         Ops.push_back(LegalizeOp(Node->getOperand(i)));
886       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
887     }
888     break;
889     
890   case ISD::FORMAL_ARGUMENTS:
891   case ISD::CALL:
892     // The only option for this is to custom lower it.
893     Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
894     assert(Tmp3.Val && "Target didn't custom lower this node!");
895     assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
896            "Lowering call/formal_arguments produced unexpected # results!");
897     
898     // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
899     // remember that we legalized all of them, so it doesn't get relegalized.
900     for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
901       Tmp1 = LegalizeOp(Tmp3.getValue(i));
902       if (Op.ResNo == i)
903         Tmp2 = Tmp1;
904       AddLegalizedOperand(SDOperand(Node, i), Tmp1);
905     }
906     return Tmp2;
907         
908   case ISD::BUILD_VECTOR:
909     switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
910     default: assert(0 && "This action is not supported yet!");
911     case TargetLowering::Custom:
912       Tmp3 = TLI.LowerOperation(Result, DAG);
913       if (Tmp3.Val) {
914         Result = Tmp3;
915         break;
916       }
917       // FALLTHROUGH
918     case TargetLowering::Expand:
919       Result = ExpandBUILD_VECTOR(Result.Val);
920       break;
921     }
922     break;
923   case ISD::INSERT_VECTOR_ELT:
924     Tmp1 = LegalizeOp(Node->getOperand(0));  // InVec
925     Tmp2 = LegalizeOp(Node->getOperand(1));  // InVal
926     Tmp3 = LegalizeOp(Node->getOperand(2));  // InEltNo
927     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
928     
929     switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
930                                    Node->getValueType(0))) {
931     default: assert(0 && "This action is not supported yet!");
932     case TargetLowering::Legal:
933       break;
934     case TargetLowering::Custom:
935       Tmp3 = TLI.LowerOperation(Result, DAG);
936       if (Tmp3.Val) {
937         Result = Tmp3;
938         break;
939       }
940       // FALLTHROUGH
941     case TargetLowering::Expand: {
942       // If the insert index is a constant, codegen this as a scalar_to_vector,
943       // then a shuffle that inserts it into the right position in the vector.
944       if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
945         SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, 
946                                       Tmp1.getValueType(), Tmp2);
947         
948         unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
949         MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
950         MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
951         
952         // We generate a shuffle of InVec and ScVec, so the shuffle mask should
953         // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
954         // the RHS.
955         SmallVector<SDOperand, 8> ShufOps;
956         for (unsigned i = 0; i != NumElts; ++i) {
957           if (i != InsertPos->getValue())
958             ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
959           else
960             ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
961         }
962         SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
963                                          &ShufOps[0], ShufOps.size());
964         
965         Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
966                              Tmp1, ScVec, ShufMask);
967         Result = LegalizeOp(Result);
968         break;
969       }
970       
971       // If the target doesn't support this, we have to spill the input vector
972       // to a temporary stack slot, update the element, then reload it.  This is
973       // badness.  We could also load the value into a vector register (either
974       // with a "move to register" or "extload into register" instruction, then
975       // permute it into place, if the idx is a constant and if the idx is
976       // supported by the target.
977       MVT::ValueType VT    = Tmp1.getValueType();
978       MVT::ValueType EltVT = Tmp2.getValueType();
979       MVT::ValueType IdxVT = Tmp3.getValueType();
980       MVT::ValueType PtrVT = TLI.getPointerTy();
981       SDOperand StackPtr = CreateStackTemporary(VT);
982       // Store the vector.
983       SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
984
985       // Truncate or zero extend offset to target pointer type.
986       unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
987       Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
988       // Add the offset to the index.
989       unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
990       Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
991       SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
992       // Store the scalar value.
993       Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
994       // Load the updated vector.
995       Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
996       break;
997     }
998     }
999     break;
1000   case ISD::SCALAR_TO_VECTOR:
1001     if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1002       Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1003       break;
1004     }
1005     
1006     Tmp1 = LegalizeOp(Node->getOperand(0));  // InVal
1007     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1008     switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1009                                    Node->getValueType(0))) {
1010     default: assert(0 && "This action is not supported yet!");
1011     case TargetLowering::Legal:
1012       break;
1013     case TargetLowering::Custom:
1014       Tmp3 = TLI.LowerOperation(Result, DAG);
1015       if (Tmp3.Val) {
1016         Result = Tmp3;
1017         break;
1018       }
1019       // FALLTHROUGH
1020     case TargetLowering::Expand:
1021       Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1022       break;
1023     }
1024     break;
1025   case ISD::VECTOR_SHUFFLE:
1026     Tmp1 = LegalizeOp(Node->getOperand(0));   // Legalize the input vectors,
1027     Tmp2 = LegalizeOp(Node->getOperand(1));   // but not the shuffle mask.
1028     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1029
1030     // Allow targets to custom lower the SHUFFLEs they support.
1031     switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1032     default: assert(0 && "Unknown operation action!");
1033     case TargetLowering::Legal:
1034       assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1035              "vector shuffle should not be created if not legal!");
1036       break;
1037     case TargetLowering::Custom:
1038       Tmp3 = TLI.LowerOperation(Result, DAG);
1039       if (Tmp3.Val) {
1040         Result = Tmp3;
1041         break;
1042       }
1043       // FALLTHROUGH
1044     case TargetLowering::Expand: {
1045       MVT::ValueType VT = Node->getValueType(0);
1046       MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
1047       MVT::ValueType PtrVT = TLI.getPointerTy();
1048       SDOperand Mask = Node->getOperand(2);
1049       unsigned NumElems = Mask.getNumOperands();
1050       SmallVector<SDOperand,8> Ops;
1051       for (unsigned i = 0; i != NumElems; ++i) {
1052         SDOperand Arg = Mask.getOperand(i);
1053         if (Arg.getOpcode() == ISD::UNDEF) {
1054           Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1055         } else {
1056           assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1057           unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1058           if (Idx < NumElems)
1059             Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1060                                       DAG.getConstant(Idx, PtrVT)));
1061           else
1062             Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1063                                       DAG.getConstant(Idx - NumElems, PtrVT)));
1064         }
1065       }
1066       Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1067       break;
1068     }
1069     case TargetLowering::Promote: {
1070       // Change base type to a different vector type.
1071       MVT::ValueType OVT = Node->getValueType(0);
1072       MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1073
1074       // Cast the two input vectors.
1075       Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1076       Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1077       
1078       // Convert the shuffle mask to the right # elements.
1079       Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1080       assert(Tmp3.Val && "Shuffle not legal?");
1081       Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1082       Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1083       break;
1084     }
1085     }
1086     break;
1087   
1088   case ISD::EXTRACT_VECTOR_ELT:
1089     Tmp1 = LegalizeOp(Node->getOperand(0));
1090     Tmp2 = LegalizeOp(Node->getOperand(1));
1091     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1092     
1093     switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1094                                    Tmp1.getValueType())) {
1095     default: assert(0 && "This action is not supported yet!");
1096     case TargetLowering::Legal:
1097       break;
1098     case TargetLowering::Custom:
1099       Tmp3 = TLI.LowerOperation(Result, DAG);
1100       if (Tmp3.Val) {
1101         Result = Tmp3;
1102         break;
1103       }
1104       // FALLTHROUGH
1105     case TargetLowering::Expand:
1106       Result = ExpandEXTRACT_VECTOR_ELT(Result);
1107       break;
1108     }
1109     break;
1110
1111   case ISD::VEXTRACT_VECTOR_ELT: 
1112     Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
1113     break;
1114     
1115   case ISD::CALLSEQ_START: {
1116     SDNode *CallEnd = FindCallEndFromCallStart(Node);
1117     
1118     // Recursively Legalize all of the inputs of the call end that do not lead
1119     // to this call start.  This ensures that any libcalls that need be inserted
1120     // are inserted *before* the CALLSEQ_START.
1121     {std::set<SDNode*> NodesLeadingTo;
1122     for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
1123       LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1124                                    NodesLeadingTo);
1125     }
1126
1127     // Now that we legalized all of the inputs (which may have inserted
1128     // libcalls) create the new CALLSEQ_START node.
1129     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1130
1131     // Merge in the last call, to ensure that this call start after the last
1132     // call ended.
1133     if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
1134       Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1135       Tmp1 = LegalizeOp(Tmp1);
1136     }
1137       
1138     // Do not try to legalize the target-specific arguments (#1+).
1139     if (Tmp1 != Node->getOperand(0)) {
1140       SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1141       Ops[0] = Tmp1;
1142       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1143     }
1144     
1145     // Remember that the CALLSEQ_START is legalized.
1146     AddLegalizedOperand(Op.getValue(0), Result);
1147     if (Node->getNumValues() == 2)    // If this has a flag result, remember it.
1148       AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1149     
1150     // Now that the callseq_start and all of the non-call nodes above this call
1151     // sequence have been legalized, legalize the call itself.  During this 
1152     // process, no libcalls can/will be inserted, guaranteeing that no calls
1153     // can overlap.
1154     assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1155     SDOperand InCallSEQ = LastCALLSEQ_END;
1156     // Note that we are selecting this call!
1157     LastCALLSEQ_END = SDOperand(CallEnd, 0);
1158     IsLegalizingCall = true;
1159     
1160     // Legalize the call, starting from the CALLSEQ_END.
1161     LegalizeOp(LastCALLSEQ_END);
1162     assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1163     return Result;
1164   }
1165   case ISD::CALLSEQ_END:
1166     // If the CALLSEQ_START node hasn't been legalized first, legalize it.  This
1167     // will cause this node to be legalized as well as handling libcalls right.
1168     if (LastCALLSEQ_END.Val != Node) {
1169       LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1170       std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1171       assert(I != LegalizedNodes.end() &&
1172              "Legalizing the call start should have legalized this node!");
1173       return I->second;
1174     }
1175     
1176     // Otherwise, the call start has been legalized and everything is going 
1177     // according to plan.  Just legalize ourselves normally here.
1178     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1179     // Do not try to legalize the target-specific arguments (#1+), except for
1180     // an optional flag input.
1181     if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1182       if (Tmp1 != Node->getOperand(0)) {
1183         SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1184         Ops[0] = Tmp1;
1185         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1186       }
1187     } else {
1188       Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1189       if (Tmp1 != Node->getOperand(0) ||
1190           Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
1191         SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1192         Ops[0] = Tmp1;
1193         Ops.back() = Tmp2;
1194         Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1195       }
1196     }
1197     assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1198     // This finishes up call legalization.
1199     IsLegalizingCall = false;
1200     
1201     // If the CALLSEQ_END node has a flag, remember that we legalized it.
1202     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1203     if (Node->getNumValues() == 2)
1204       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1205     return Result.getValue(Op.ResNo);
1206   case ISD::DYNAMIC_STACKALLOC: {
1207     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1208     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the size.
1209     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the alignment.
1210     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1211
1212     Tmp1 = Result.getValue(0);
1213     Tmp2 = Result.getValue(1);
1214     switch (TLI.getOperationAction(Node->getOpcode(),
1215                                    Node->getValueType(0))) {
1216     default: assert(0 && "This action is not supported yet!");
1217     case TargetLowering::Expand: {
1218       unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1219       assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1220              " not tell us which reg is the stack pointer!");
1221       SDOperand Chain = Tmp1.getOperand(0);
1222       SDOperand Size  = Tmp2.getOperand(1);
1223       SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1224       Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size);    // Value
1225       Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1);      // Output chain
1226       Tmp1 = LegalizeOp(Tmp1);
1227       Tmp2 = LegalizeOp(Tmp2);
1228       break;
1229     }
1230     case TargetLowering::Custom:
1231       Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1232       if (Tmp3.Val) {
1233         Tmp1 = LegalizeOp(Tmp3);
1234         Tmp2 = LegalizeOp(Tmp3.getValue(1));
1235       }
1236       break;
1237     case TargetLowering::Legal:
1238       break;
1239     }
1240     // Since this op produce two values, make sure to remember that we
1241     // legalized both of them.
1242     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1243     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1244     return Op.ResNo ? Tmp2 : Tmp1;
1245   }
1246   case ISD::INLINEASM: {
1247     SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
1248     bool Changed = false;
1249     // Legalize all of the operands of the inline asm, in case they are nodes
1250     // that need to be expanded or something.  Note we skip the asm string and
1251     // all of the TargetConstant flags.
1252     SDOperand Op = LegalizeOp(Ops[0]);
1253     Changed = Op != Ops[0];
1254     Ops[0] = Op;
1255
1256     bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1257     for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1258       unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1259       for (++i; NumVals; ++i, --NumVals) {
1260         SDOperand Op = LegalizeOp(Ops[i]);
1261         if (Op != Ops[i]) {
1262           Changed = true;
1263           Ops[i] = Op;
1264         }
1265       }
1266     }
1267
1268     if (HasInFlag) {
1269       Op = LegalizeOp(Ops.back());
1270       Changed |= Op != Ops.back();
1271       Ops.back() = Op;
1272     }
1273     
1274     if (Changed)
1275       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1276       
1277     // INLINE asm returns a chain and flag, make sure to add both to the map.
1278     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1279     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1280     return Result.getValue(Op.ResNo);
1281   }
1282   case ISD::BR:
1283     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1284     // Ensure that libcalls are emitted before a branch.
1285     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1286     Tmp1 = LegalizeOp(Tmp1);
1287     LastCALLSEQ_END = DAG.getEntryNode();
1288     
1289     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1290     break;
1291   case ISD::BRIND:
1292     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1293     // Ensure that libcalls are emitted before a branch.
1294     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1295     Tmp1 = LegalizeOp(Tmp1);
1296     LastCALLSEQ_END = DAG.getEntryNode();
1297     
1298     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1299     default: assert(0 && "Indirect target must be legal type (pointer)!");
1300     case Legal:
1301       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1302       break;
1303     }
1304     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1305     break;
1306   case ISD::BR_JT:
1307     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1308     // Ensure that libcalls are emitted before a branch.
1309     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1310     Tmp1 = LegalizeOp(Tmp1);
1311     LastCALLSEQ_END = DAG.getEntryNode();
1312
1313     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the jumptable node.
1314     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1315
1316     switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {  
1317     default: assert(0 && "This action is not supported yet!");
1318     case TargetLowering::Legal: break;
1319     case TargetLowering::Custom:
1320       Tmp1 = TLI.LowerOperation(Result, DAG);
1321       if (Tmp1.Val) Result = Tmp1;
1322       break;
1323     case TargetLowering::Expand: {
1324       SDOperand Chain = Result.getOperand(0);
1325       SDOperand Table = Result.getOperand(1);
1326       SDOperand Index = Result.getOperand(2);
1327
1328       MVT::ValueType PTy = TLI.getPointerTy();
1329       MachineFunction &MF = DAG.getMachineFunction();
1330       unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
1331       Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1332       SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
1333       
1334       SDOperand LD;
1335       switch (EntrySize) {
1336       default: assert(0 && "Size of jump table not supported yet."); break;
1337       case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1338       case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1339       }
1340
1341       if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1342         // For PIC, the sequence is:
1343         // BRIND(load(Jumptable + index) + RelocBase)
1344         // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1345         SDOperand Reloc;
1346         if (TLI.usesGlobalOffsetTable())
1347           Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1348         else
1349           Reloc = Table;
1350         Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
1351         Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1352         Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1353       } else {
1354         Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1355       }
1356     }
1357     }
1358     break;
1359   case ISD::BRCOND:
1360     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1361     // Ensure that libcalls are emitted before a return.
1362     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1363     Tmp1 = LegalizeOp(Tmp1);
1364     LastCALLSEQ_END = DAG.getEntryNode();
1365
1366     switch (getTypeAction(Node->getOperand(1).getValueType())) {
1367     case Expand: assert(0 && "It's impossible to expand bools");
1368     case Legal:
1369       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1370       break;
1371     case Promote:
1372       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the condition.
1373       
1374       // The top bits of the promoted condition are not necessarily zero, ensure
1375       // that the value is properly zero extended.
1376       if (!TLI.MaskedValueIsZero(Tmp2, 
1377                                  MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1378         Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
1379       break;
1380     }
1381
1382     // Basic block destination (Op#2) is always legal.
1383     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1384       
1385     switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {  
1386     default: assert(0 && "This action is not supported yet!");
1387     case TargetLowering::Legal: break;
1388     case TargetLowering::Custom:
1389       Tmp1 = TLI.LowerOperation(Result, DAG);
1390       if (Tmp1.Val) Result = Tmp1;
1391       break;
1392     case TargetLowering::Expand:
1393       // Expand brcond's setcc into its constituent parts and create a BR_CC
1394       // Node.
1395       if (Tmp2.getOpcode() == ISD::SETCC) {
1396         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1397                              Tmp2.getOperand(0), Tmp2.getOperand(1),
1398                              Node->getOperand(2));
1399       } else {
1400         Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, 
1401                              DAG.getCondCode(ISD::SETNE), Tmp2,
1402                              DAG.getConstant(0, Tmp2.getValueType()),
1403                              Node->getOperand(2));
1404       }
1405       break;
1406     }
1407     break;
1408   case ISD::BR_CC:
1409     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1410     // Ensure that libcalls are emitted before a branch.
1411     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1412     Tmp1 = LegalizeOp(Tmp1);
1413     Tmp2 = Node->getOperand(2);              // LHS 
1414     Tmp3 = Node->getOperand(3);              // RHS
1415     Tmp4 = Node->getOperand(1);              // CC
1416
1417     LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1418     LastCALLSEQ_END = DAG.getEntryNode();
1419
1420     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1421     // the LHS is a legal SETCC itself.  In this case, we need to compare
1422     // the result against zero to select between true and false values.
1423     if (Tmp3.Val == 0) {
1424       Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1425       Tmp4 = DAG.getCondCode(ISD::SETNE);
1426     }
1427     
1428     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, 
1429                                     Node->getOperand(4));
1430       
1431     switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1432     default: assert(0 && "Unexpected action for BR_CC!");
1433     case TargetLowering::Legal: break;
1434     case TargetLowering::Custom:
1435       Tmp4 = TLI.LowerOperation(Result, DAG);
1436       if (Tmp4.Val) Result = Tmp4;
1437       break;
1438     }
1439     break;
1440   case ISD::LOAD: {
1441     LoadSDNode *LD = cast<LoadSDNode>(Node);
1442     Tmp1 = LegalizeOp(LD->getChain());   // Legalize the chain.
1443     Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
1444
1445     ISD::LoadExtType ExtType = LD->getExtensionType();
1446     if (ExtType == ISD::NON_EXTLOAD) {
1447       MVT::ValueType VT = Node->getValueType(0);
1448       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1449       Tmp3 = Result.getValue(0);
1450       Tmp4 = Result.getValue(1);
1451     
1452       switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1453       default: assert(0 && "This action is not supported yet!");
1454       case TargetLowering::Legal: break;
1455       case TargetLowering::Custom:
1456         Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1457         if (Tmp1.Val) {
1458           Tmp3 = LegalizeOp(Tmp1);
1459           Tmp4 = LegalizeOp(Tmp1.getValue(1));
1460         }
1461         break;
1462       case TargetLowering::Promote: {
1463         // Only promote a load of vector type to another.
1464         assert(MVT::isVector(VT) && "Cannot promote this load!");
1465         // Change base type to a different vector type.
1466         MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1467
1468         Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1469                            LD->getSrcValueOffset());
1470         Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1471         Tmp4 = LegalizeOp(Tmp1.getValue(1));
1472         break;
1473       }
1474       }
1475       // Since loads produce two values, make sure to remember that we 
1476       // legalized both of them.
1477       AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1478       AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1479       return Op.ResNo ? Tmp4 : Tmp3;
1480     } else {
1481       MVT::ValueType SrcVT = LD->getLoadedVT();
1482       switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1483       default: assert(0 && "This action is not supported yet!");
1484       case TargetLowering::Promote:
1485         assert(SrcVT == MVT::i1 &&
1486                "Can only promote extending LOAD from i1 -> i8!");
1487         Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1488                                 LD->getSrcValue(), LD->getSrcValueOffset(),
1489                                 MVT::i8);
1490       Tmp1 = Result.getValue(0);
1491       Tmp2 = Result.getValue(1);
1492       break;
1493       case TargetLowering::Custom:
1494         isCustom = true;
1495         // FALLTHROUGH
1496       case TargetLowering::Legal:
1497         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1498         Tmp1 = Result.getValue(0);
1499         Tmp2 = Result.getValue(1);
1500       
1501         if (isCustom) {
1502           Tmp3 = TLI.LowerOperation(Result, DAG);
1503           if (Tmp3.Val) {
1504             Tmp1 = LegalizeOp(Tmp3);
1505             Tmp2 = LegalizeOp(Tmp3.getValue(1));
1506           }
1507         }
1508         break;
1509       case TargetLowering::Expand:
1510         // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1511         if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1512           SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1513                                        LD->getSrcValueOffset());
1514           Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1515           Tmp1 = LegalizeOp(Result);  // Relegalize new nodes.
1516           Tmp2 = LegalizeOp(Load.getValue(1));
1517           break;
1518         }
1519         assert(ExtType != ISD::EXTLOAD && "EXTLOAD should always be supported!");
1520         // Turn the unsupported load into an EXTLOAD followed by an explicit
1521         // zero/sign extend inreg.
1522         Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1523                                 Tmp1, Tmp2, LD->getSrcValue(),
1524                                 LD->getSrcValueOffset(), SrcVT);
1525         SDOperand ValRes;
1526         if (ExtType == ISD::SEXTLOAD)
1527           ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1528                                Result, DAG.getValueType(SrcVT));
1529         else
1530           ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1531         Tmp1 = LegalizeOp(ValRes);  // Relegalize new nodes.
1532         Tmp2 = LegalizeOp(Result.getValue(1));  // Relegalize new nodes.
1533         break;
1534       }
1535       // Since loads produce two values, make sure to remember that we legalized
1536       // both of them.
1537       AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1538       AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1539       return Op.ResNo ? Tmp2 : Tmp1;
1540     }
1541   }
1542   case ISD::EXTRACT_ELEMENT: {
1543     MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1544     switch (getTypeAction(OpTy)) {
1545     default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
1546     case Legal:
1547       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1548         // 1 -> Hi
1549         Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1550                              DAG.getConstant(MVT::getSizeInBits(OpTy)/2, 
1551                                              TLI.getShiftAmountTy()));
1552         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1553       } else {
1554         // 0 -> Lo
1555         Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), 
1556                              Node->getOperand(0));
1557       }
1558       break;
1559     case Expand:
1560       // Get both the low and high parts.
1561       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1562       if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1563         Result = Tmp2;  // 1 -> Hi
1564       else
1565         Result = Tmp1;  // 0 -> Lo
1566       break;
1567     }
1568     break;
1569   }
1570
1571   case ISD::CopyToReg:
1572     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1573
1574     assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
1575            "Register type must be legal!");
1576     // Legalize the incoming value (must be a legal type).
1577     Tmp2 = LegalizeOp(Node->getOperand(2));
1578     if (Node->getNumValues() == 1) {
1579       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
1580     } else {
1581       assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
1582       if (Node->getNumOperands() == 4) {
1583         Tmp3 = LegalizeOp(Node->getOperand(3));
1584         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1585                                         Tmp3);
1586       } else {
1587         Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1588       }
1589       
1590       // Since this produces two values, make sure to remember that we legalized
1591       // both of them.
1592       AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1593       AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1594       return Result;
1595     }
1596     break;
1597
1598   case ISD::RET:
1599     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1600
1601     // Ensure that libcalls are emitted before a return.
1602     Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1603     Tmp1 = LegalizeOp(Tmp1);
1604     LastCALLSEQ_END = DAG.getEntryNode();
1605       
1606     switch (Node->getNumOperands()) {
1607     case 3:  // ret val
1608       Tmp2 = Node->getOperand(1);
1609       Tmp3 = Node->getOperand(2);  // Signness
1610       switch (getTypeAction(Tmp2.getValueType())) {
1611       case Legal:
1612         Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
1613         break;
1614       case Expand:
1615         if (Tmp2.getValueType() != MVT::Vector) {
1616           SDOperand Lo, Hi;
1617           ExpandOp(Tmp2, Lo, Hi);
1618           if (Hi.Val)
1619             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1620           else
1621             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
1622           Result = LegalizeOp(Result);
1623         } else {
1624           SDNode *InVal = Tmp2.Val;
1625           unsigned NumElems =
1626             cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1627           MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1628           
1629           // Figure out if there is a Packed type corresponding to this Vector
1630           // type.  If so, convert to the packed type.
1631           MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1632           if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1633             // Turn this into a return of the packed type.
1634             Tmp2 = PackVectorOp(Tmp2, TVT);
1635             Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1636           } else if (NumElems == 1) {
1637             // Turn this into a return of the scalar type.
1638             Tmp2 = PackVectorOp(Tmp2, EVT);
1639             Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1640             
1641             // FIXME: Returns of gcc generic vectors smaller than a legal type
1642             // should be returned in integer registers!
1643             
1644             // The scalarized value type may not be legal, e.g. it might require
1645             // promotion or expansion.  Relegalize the return.
1646             Result = LegalizeOp(Result);
1647           } else {
1648             // FIXME: Returns of gcc generic vectors larger than a legal vector
1649             // type should be returned by reference!
1650             SDOperand Lo, Hi;
1651             SplitVectorOp(Tmp2, Lo, Hi);
1652             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
1653             Result = LegalizeOp(Result);
1654           }
1655         }
1656         break;
1657       case Promote:
1658         Tmp2 = PromoteOp(Node->getOperand(1));
1659         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1660         Result = LegalizeOp(Result);
1661         break;
1662       }
1663       break;
1664     case 1:  // ret void
1665       Result = DAG.UpdateNodeOperands(Result, Tmp1);
1666       break;
1667     default: { // ret <values>
1668       SmallVector<SDOperand, 8> NewValues;
1669       NewValues.push_back(Tmp1);
1670       for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
1671         switch (getTypeAction(Node->getOperand(i).getValueType())) {
1672         case Legal:
1673           NewValues.push_back(LegalizeOp(Node->getOperand(i)));
1674           NewValues.push_back(Node->getOperand(i+1));
1675           break;
1676         case Expand: {
1677           SDOperand Lo, Hi;
1678           assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1679                  "FIXME: TODO: implement returning non-legal vector types!");
1680           ExpandOp(Node->getOperand(i), Lo, Hi);
1681           NewValues.push_back(Lo);
1682           NewValues.push_back(Node->getOperand(i+1));
1683           if (Hi.Val) {
1684             NewValues.push_back(Hi);
1685             NewValues.push_back(Node->getOperand(i+1));
1686           }
1687           break;
1688         }
1689         case Promote:
1690           assert(0 && "Can't promote multiple return value yet!");
1691         }
1692           
1693       if (NewValues.size() == Node->getNumOperands())
1694         Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
1695       else
1696         Result = DAG.getNode(ISD::RET, MVT::Other,
1697                              &NewValues[0], NewValues.size());
1698       break;
1699     }
1700     }
1701
1702     if (Result.getOpcode() == ISD::RET) {
1703       switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1704       default: assert(0 && "This action is not supported yet!");
1705       case TargetLowering::Legal: break;
1706       case TargetLowering::Custom:
1707         Tmp1 = TLI.LowerOperation(Result, DAG);
1708         if (Tmp1.Val) Result = Tmp1;
1709         break;
1710       }
1711     }
1712     break;
1713   case ISD::STORE: {
1714     StoreSDNode *ST = cast<StoreSDNode>(Node);
1715     Tmp1 = LegalizeOp(ST->getChain());    // Legalize the chain.
1716     Tmp2 = LegalizeOp(ST->getBasePtr());  // Legalize the pointer.
1717
1718     if (!ST->isTruncatingStore()) {
1719       // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1720       // FIXME: We shouldn't do this for TargetConstantFP's.
1721       // FIXME: move this to the DAG Combiner!  Note that we can't regress due
1722       // to phase ordering between legalized code and the dag combiner.  This
1723       // probably means that we need to integrate dag combiner and legalizer
1724       // together.
1725       if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1726         if (CFP->getValueType(0) == MVT::f32) {
1727           Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1728         } else {
1729           assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1730           Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1731         }
1732         Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1733                               ST->getSrcValueOffset());
1734         break;
1735       }
1736       
1737       switch (getTypeAction(ST->getStoredVT())) {
1738       case Legal: {
1739         Tmp3 = LegalizeOp(ST->getValue());
1740         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, 
1741                                         ST->getOffset());
1742
1743         MVT::ValueType VT = Tmp3.getValueType();
1744         switch (TLI.getOperationAction(ISD::STORE, VT)) {
1745         default: assert(0 && "This action is not supported yet!");
1746         case TargetLowering::Legal:  break;
1747         case TargetLowering::Custom:
1748           Tmp1 = TLI.LowerOperation(Result, DAG);
1749           if (Tmp1.Val) Result = Tmp1;
1750           break;
1751         case TargetLowering::Promote:
1752           assert(MVT::isVector(VT) && "Unknown legal promote case!");
1753           Tmp3 = DAG.getNode(ISD::BIT_CONVERT, 
1754                              TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1755           Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1756                                 ST->getSrcValue(), ST->getSrcValueOffset());
1757           break;
1758         }
1759         break;
1760       }
1761       case Promote:
1762         // Truncate the value and store the result.
1763         Tmp3 = PromoteOp(ST->getValue());
1764         Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1765                                    ST->getSrcValueOffset(), ST->getStoredVT());
1766         break;
1767
1768       case Expand:
1769         unsigned IncrementSize = 0;
1770         SDOperand Lo, Hi;
1771       
1772         // If this is a vector type, then we have to calculate the increment as
1773         // the product of the element size in bytes, and the number of elements
1774         // in the high half of the vector.
1775         if (ST->getValue().getValueType() == MVT::Vector) {
1776           SDNode *InVal = ST->getValue().Val;
1777           unsigned NumElems =
1778             cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1779           MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1780
1781           // Figure out if there is a Packed type corresponding to this Vector
1782           // type.  If so, convert to the packed type.
1783           MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1784           if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1785             // Turn this into a normal store of the packed type.
1786             Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1787             Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1788                                   ST->getSrcValueOffset());
1789             Result = LegalizeOp(Result);
1790             break;
1791           } else if (NumElems == 1) {
1792             // Turn this into a normal store of the scalar type.
1793             Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1794             Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1795                                   ST->getSrcValueOffset());
1796             // The scalarized value type may not be legal, e.g. it might require
1797             // promotion or expansion.  Relegalize the scalar store.
1798             Result = LegalizeOp(Result);
1799             break;
1800           } else {
1801             SplitVectorOp(Node->getOperand(1), Lo, Hi);
1802             IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1803           }
1804         } else {
1805           ExpandOp(Node->getOperand(1), Lo, Hi);
1806           IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
1807
1808           if (!TLI.isLittleEndian())
1809             std::swap(Lo, Hi);
1810         }
1811
1812         Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1813                           ST->getSrcValueOffset());
1814
1815         if (Hi.Val == NULL) {
1816           // Must be int <-> float one-to-one expansion.
1817           Result = Lo;
1818           break;
1819         }
1820
1821         Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1822                            getIntPtrConstant(IncrementSize));
1823         assert(isTypeLegal(Tmp2.getValueType()) &&
1824                "Pointers must be legal!");
1825         // FIXME: This sets the srcvalue of both halves to be the same, which is
1826         // wrong.
1827         Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1828                           ST->getSrcValueOffset());
1829         Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1830         break;
1831       }
1832     } else {
1833       // Truncating store
1834       assert(isTypeLegal(ST->getValue().getValueType()) &&
1835              "Cannot handle illegal TRUNCSTORE yet!");
1836       Tmp3 = LegalizeOp(ST->getValue());
1837     
1838       // The only promote case we handle is TRUNCSTORE:i1 X into
1839       //   -> TRUNCSTORE:i8 (and X, 1)
1840       if (ST->getStoredVT() == MVT::i1 &&
1841           TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1842         // Promote the bool to a mask then store.
1843         Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1844                            DAG.getConstant(1, Tmp3.getValueType()));
1845         Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1846                                    ST->getSrcValueOffset(), MVT::i8);
1847       } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1848                  Tmp2 != ST->getBasePtr()) {
1849         Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1850                                         ST->getOffset());
1851       }
1852
1853       MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1854       switch (TLI.getStoreXAction(StVT)) {
1855       default: assert(0 && "This action is not supported yet!");
1856       case TargetLowering::Legal: break;
1857       case TargetLowering::Custom:
1858         Tmp1 = TLI.LowerOperation(Result, DAG);
1859         if (Tmp1.Val) Result = Tmp1;
1860         break;
1861       }
1862     }
1863     break;
1864   }
1865   case ISD::PCMARKER:
1866     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1867     Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1868     break;
1869   case ISD::STACKSAVE:
1870     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1871     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1872     Tmp1 = Result.getValue(0);
1873     Tmp2 = Result.getValue(1);
1874     
1875     switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1876     default: assert(0 && "This action is not supported yet!");
1877     case TargetLowering::Legal: break;
1878     case TargetLowering::Custom:
1879       Tmp3 = TLI.LowerOperation(Result, DAG);
1880       if (Tmp3.Val) {
1881         Tmp1 = LegalizeOp(Tmp3);
1882         Tmp2 = LegalizeOp(Tmp3.getValue(1));
1883       }
1884       break;
1885     case TargetLowering::Expand:
1886       // Expand to CopyFromReg if the target set 
1887       // StackPointerRegisterToSaveRestore.
1888       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1889         Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
1890                                   Node->getValueType(0));
1891         Tmp2 = Tmp1.getValue(1);
1892       } else {
1893         Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1894         Tmp2 = Node->getOperand(0);
1895       }
1896       break;
1897     }
1898
1899     // Since stacksave produce two values, make sure to remember that we
1900     // legalized both of them.
1901     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1902     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1903     return Op.ResNo ? Tmp2 : Tmp1;
1904
1905   case ISD::STACKRESTORE:
1906     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
1907     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
1908     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1909       
1910     switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1911     default: assert(0 && "This action is not supported yet!");
1912     case TargetLowering::Legal: break;
1913     case TargetLowering::Custom:
1914       Tmp1 = TLI.LowerOperation(Result, DAG);
1915       if (Tmp1.Val) Result = Tmp1;
1916       break;
1917     case TargetLowering::Expand:
1918       // Expand to CopyToReg if the target set 
1919       // StackPointerRegisterToSaveRestore.
1920       if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1921         Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1922       } else {
1923         Result = Tmp1;
1924       }
1925       break;
1926     }
1927     break;
1928
1929   case ISD::READCYCLECOUNTER:
1930     Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
1931     Result = DAG.UpdateNodeOperands(Result, Tmp1);
1932     switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1933                                    Node->getValueType(0))) {
1934     default: assert(0 && "This action is not supported yet!");
1935     case TargetLowering::Legal:
1936       Tmp1 = Result.getValue(0);
1937       Tmp2 = Result.getValue(1);
1938       break;
1939     case TargetLowering::Custom:
1940       Result = TLI.LowerOperation(Result, DAG);
1941       Tmp1 = LegalizeOp(Result.getValue(0));
1942       Tmp2 = LegalizeOp(Result.getValue(1));
1943       break;
1944     }
1945
1946     // Since rdcc produce two values, make sure to remember that we legalized
1947     // both of them.
1948     AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1949     AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1950     return Result;
1951
1952   case ISD::SELECT:
1953     switch (getTypeAction(Node->getOperand(0).getValueType())) {
1954     case Expand: assert(0 && "It's impossible to expand bools");
1955     case Legal:
1956       Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1957       break;
1958     case Promote:
1959       Tmp1 = PromoteOp(Node->getOperand(0));  // Promote the condition.
1960       // Make sure the condition is either zero or one.
1961       if (!TLI.MaskedValueIsZero(Tmp1,
1962                                  MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1963         Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
1964       break;
1965     }
1966     Tmp2 = LegalizeOp(Node->getOperand(1));   // TrueVal
1967     Tmp3 = LegalizeOp(Node->getOperand(2));   // FalseVal
1968
1969     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1970       
1971     switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
1972     default: assert(0 && "This action is not supported yet!");
1973     case TargetLowering::Legal: break;
1974     case TargetLowering::Custom: {
1975       Tmp1 = TLI.LowerOperation(Result, DAG);
1976       if (Tmp1.Val) Result = Tmp1;
1977       break;
1978     }
1979     case TargetLowering::Expand:
1980       if (Tmp1.getOpcode() == ISD::SETCC) {
1981         Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), 
1982                               Tmp2, Tmp3,
1983                               cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1984       } else {
1985         Result = DAG.getSelectCC(Tmp1, 
1986                                  DAG.getConstant(0, Tmp1.getValueType()),
1987                                  Tmp2, Tmp3, ISD::SETNE);
1988       }
1989       break;
1990     case TargetLowering::Promote: {
1991       MVT::ValueType NVT =
1992         TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1993       unsigned ExtOp, TruncOp;
1994       if (MVT::isVector(Tmp2.getValueType())) {
1995         ExtOp   = ISD::BIT_CONVERT;
1996         TruncOp = ISD::BIT_CONVERT;
1997       } else if (MVT::isInteger(Tmp2.getValueType())) {
1998         ExtOp   = ISD::ANY_EXTEND;
1999         TruncOp = ISD::TRUNCATE;
2000       } else {
2001         ExtOp   = ISD::FP_EXTEND;
2002         TruncOp = ISD::FP_ROUND;
2003       }
2004       // Promote each of the values to the new type.
2005       Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2006       Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2007       // Perform the larger operation, then round down.
2008       Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2009       Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2010       break;
2011     }
2012     }
2013     break;
2014   case ISD::SELECT_CC: {
2015     Tmp1 = Node->getOperand(0);               // LHS
2016     Tmp2 = Node->getOperand(1);               // RHS
2017     Tmp3 = LegalizeOp(Node->getOperand(2));   // True
2018     Tmp4 = LegalizeOp(Node->getOperand(3));   // False
2019     SDOperand CC = Node->getOperand(4);
2020     
2021     LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2022     
2023     // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2024     // the LHS is a legal SETCC itself.  In this case, we need to compare
2025     // the result against zero to select between true and false values.
2026     if (Tmp2.Val == 0) {
2027       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2028       CC = DAG.getCondCode(ISD::SETNE);
2029     }
2030     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2031
2032     // Everything is legal, see if we should expand this op or something.
2033     switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2034     default: assert(0 && "This action is not supported yet!");
2035     case TargetLowering::Legal: break;
2036     case TargetLowering::Custom:
2037       Tmp1 = TLI.LowerOperation(Result, DAG);
2038       if (Tmp1.Val) Result = Tmp1;
2039       break;
2040     }
2041     break;
2042   }
2043   case ISD::SETCC:
2044     Tmp1 = Node->getOperand(0);
2045     Tmp2 = Node->getOperand(1);
2046     Tmp3 = Node->getOperand(2);
2047     LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2048     
2049     // If we had to Expand the SetCC operands into a SELECT node, then it may 
2050     // not always be possible to return a true LHS & RHS.  In this case, just 
2051     // return the value we legalized, returned in the LHS
2052     if (Tmp2.Val == 0) {
2053       Result = Tmp1;
2054       break;
2055     }
2056
2057     switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
2058     default: assert(0 && "Cannot handle this action for SETCC yet!");
2059     case TargetLowering::Custom:
2060       isCustom = true;
2061       // FALLTHROUGH.
2062     case TargetLowering::Legal:
2063       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2064       if (isCustom) {
2065         Tmp4 = TLI.LowerOperation(Result, DAG);
2066         if (Tmp4.Val) Result = Tmp4;
2067       }
2068       break;
2069     case TargetLowering::Promote: {
2070       // First step, figure out the appropriate operation to use.
2071       // Allow SETCC to not be supported for all legal data types
2072       // Mostly this targets FP
2073       MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
2074       MVT::ValueType OldVT = NewInTy;
2075
2076       // Scan for the appropriate larger type to use.
2077       while (1) {
2078         NewInTy = (MVT::ValueType)(NewInTy+1);
2079
2080         assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2081                "Fell off of the edge of the integer world");
2082         assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2083                "Fell off of the edge of the floating point world");
2084           
2085         // If the target supports SETCC of this type, use it.
2086         if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
2087           break;
2088       }
2089       if (MVT::isInteger(NewInTy))
2090         assert(0 && "Cannot promote Legal Integer SETCC yet");
2091       else {
2092         Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2093         Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2094       }
2095       Tmp1 = LegalizeOp(Tmp1);
2096       Tmp2 = LegalizeOp(Tmp2);
2097       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2098       Result = LegalizeOp(Result);
2099       break;
2100     }
2101     case TargetLowering::Expand:
2102       // Expand a setcc node into a select_cc of the same condition, lhs, and
2103       // rhs that selects between const 1 (true) and const 0 (false).
2104       MVT::ValueType VT = Node->getValueType(0);
2105       Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, 
2106                            DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2107                            Tmp3);
2108       break;
2109     }
2110     break;
2111   case ISD::MEMSET:
2112   case ISD::MEMCPY:
2113   case ISD::MEMMOVE: {
2114     Tmp1 = LegalizeOp(Node->getOperand(0));      // Chain
2115     Tmp2 = LegalizeOp(Node->getOperand(1));      // Pointer
2116
2117     if (Node->getOpcode() == ISD::MEMSET) {      // memset = ubyte
2118       switch (getTypeAction(Node->getOperand(2).getValueType())) {
2119       case Expand: assert(0 && "Cannot expand a byte!");
2120       case Legal:
2121         Tmp3 = LegalizeOp(Node->getOperand(2));
2122         break;
2123       case Promote:
2124         Tmp3 = PromoteOp(Node->getOperand(2));
2125         break;
2126       }
2127     } else {
2128       Tmp3 = LegalizeOp(Node->getOperand(2));    // memcpy/move = pointer,
2129     }
2130
2131     SDOperand Tmp4;
2132     switch (getTypeAction(Node->getOperand(3).getValueType())) {
2133     case Expand: {
2134       // Length is too big, just take the lo-part of the length.
2135       SDOperand HiPart;
2136       ExpandOp(Node->getOperand(3), Tmp4, HiPart);
2137       break;
2138     }
2139     case Legal:
2140       Tmp4 = LegalizeOp(Node->getOperand(3));
2141       break;
2142     case Promote:
2143       Tmp4 = PromoteOp(Node->getOperand(3));
2144       break;
2145     }
2146
2147     SDOperand Tmp5;
2148     switch (getTypeAction(Node->getOperand(4).getValueType())) {  // uint
2149     case Expand: assert(0 && "Cannot expand this yet!");
2150     case Legal:
2151       Tmp5 = LegalizeOp(Node->getOperand(4));
2152       break;
2153     case Promote:
2154       Tmp5 = PromoteOp(Node->getOperand(4));
2155       break;
2156     }
2157
2158     switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2159     default: assert(0 && "This action not implemented for this operation!");
2160     case TargetLowering::Custom:
2161       isCustom = true;
2162       // FALLTHROUGH
2163     case TargetLowering::Legal:
2164       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
2165       if (isCustom) {
2166         Tmp1 = TLI.LowerOperation(Result, DAG);
2167         if (Tmp1.Val) Result = Tmp1;
2168       }
2169       break;
2170     case TargetLowering::Expand: {
2171       // Otherwise, the target does not support this operation.  Lower the
2172       // operation to an explicit libcall as appropriate.
2173       MVT::ValueType IntPtr = TLI.getPointerTy();
2174       const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
2175       TargetLowering::ArgListTy Args;
2176       TargetLowering::ArgListEntry Entry;
2177
2178       const char *FnName = 0;
2179       if (Node->getOpcode() == ISD::MEMSET) {
2180         Entry.Node = Tmp2; Entry.isSigned = false; Entry.Ty = IntPtrTy;
2181         Entry.isInReg = false;
2182         Args.push_back(Entry);
2183         // Extend the (previously legalized) ubyte argument to be an int value
2184         // for the call.
2185         if (Tmp3.getValueType() > MVT::i32)
2186           Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2187         else
2188           Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
2189         Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSigned = true;
2190         Entry.isInReg = false;
2191         Args.push_back(Entry);
2192         Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSigned = false;
2193         Args.push_back(Entry);
2194
2195         FnName = "memset";
2196       } else if (Node->getOpcode() == ISD::MEMCPY ||
2197                  Node->getOpcode() == ISD::MEMMOVE) {
2198         Entry.Ty = IntPtrTy; Entry.isSigned = false; Entry.isInReg = false;
2199         Entry.Node = Tmp2; Args.push_back(Entry);
2200         Entry.Node = Tmp3; Args.push_back(Entry);
2201         Entry.Node = Tmp4; Args.push_back(Entry);
2202         FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2203       } else {
2204         assert(0 && "Unknown op!");
2205       }
2206
2207       std::pair<SDOperand,SDOperand> CallResult =
2208         TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
2209                         DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
2210       Result = CallResult.second;
2211       break;
2212     }
2213     }
2214     break;
2215   }
2216
2217   case ISD::SHL_PARTS:
2218   case ISD::SRA_PARTS:
2219   case ISD::SRL_PARTS: {
2220     SmallVector<SDOperand, 8> Ops;
2221     bool Changed = false;
2222     for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2223       Ops.push_back(LegalizeOp(Node->getOperand(i)));
2224       Changed |= Ops.back() != Node->getOperand(i);
2225     }
2226     if (Changed)
2227       Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
2228
2229     switch (TLI.getOperationAction(Node->getOpcode(),
2230                                    Node->getValueType(0))) {
2231     default: assert(0 && "This action is not supported yet!");
2232     case TargetLowering::Legal: break;
2233     case TargetLowering::Custom:
2234       Tmp1 = TLI.LowerOperation(Result, DAG);
2235       if (Tmp1.Val) {
2236         SDOperand Tmp2, RetVal(0, 0);
2237         for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
2238           Tmp2 = LegalizeOp(Tmp1.getValue(i));
2239           AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2240           if (i == Op.ResNo)
2241             RetVal = Tmp2;
2242         }
2243         assert(RetVal.Val && "Illegal result number");
2244         return RetVal;
2245       }
2246       break;
2247     }
2248
2249     // Since these produce multiple values, make sure to remember that we
2250     // legalized all of them.
2251     for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2252       AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2253     return Result.getValue(Op.ResNo);
2254   }
2255
2256     // Binary operators
2257   case ISD::ADD:
2258   case ISD::SUB:
2259   case ISD::MUL:
2260   case ISD::MULHS:
2261   case ISD::MULHU:
2262   case ISD::UDIV:
2263   case ISD::SDIV:
2264   case ISD::AND:
2265   case ISD::OR:
2266   case ISD::XOR:
2267   case ISD::SHL:
2268   case ISD::SRL:
2269   case ISD::SRA:
2270   case ISD::FADD:
2271   case ISD::FSUB:
2272   case ISD::FMUL:
2273   case ISD::FDIV:
2274     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2275     switch (getTypeAction(Node->getOperand(1).getValueType())) {
2276     case Expand: assert(0 && "Not possible");
2277     case Legal:
2278       Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2279       break;
2280     case Promote:
2281       Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
2282       break;
2283     }
2284     
2285     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2286       
2287     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2288     default: assert(0 && "BinOp legalize operation not supported");
2289     case TargetLowering::Legal: break;
2290     case TargetLowering::Custom:
2291       Tmp1 = TLI.LowerOperation(Result, DAG);
2292       if (Tmp1.Val) Result = Tmp1;
2293       break;
2294     case TargetLowering::Expand: {
2295       if (Node->getValueType(0) == MVT::i32) {
2296         switch (Node->getOpcode()) {
2297         default:  assert(0 && "Do not know how to expand this integer BinOp!");
2298         case ISD::UDIV:
2299         case ISD::SDIV:
2300           RTLIB::Libcall LC = Node->getOpcode() == ISD::UDIV
2301             ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
2302           SDOperand Dummy;
2303           bool isSigned = Node->getOpcode() == ISD::SDIV;
2304           Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
2305         };
2306         break;
2307       }
2308
2309       assert(MVT::isVector(Node->getValueType(0)) &&
2310              "Cannot expand this binary operator!");
2311       // Expand the operation into a bunch of nasty scalar code.
2312       SmallVector<SDOperand, 8> Ops;
2313       MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2314       MVT::ValueType PtrVT = TLI.getPointerTy();
2315       for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2316            i != e; ++i) {
2317         SDOperand Idx = DAG.getConstant(i, PtrVT);
2318         SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2319         SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2320         Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2321       }
2322       Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0), 
2323                            &Ops[0], Ops.size());
2324       break;
2325     }
2326     case TargetLowering::Promote: {
2327       switch (Node->getOpcode()) {
2328       default:  assert(0 && "Do not know how to promote this BinOp!");
2329       case ISD::AND:
2330       case ISD::OR:
2331       case ISD::XOR: {
2332         MVT::ValueType OVT = Node->getValueType(0);
2333         MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2334         assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2335         // Bit convert each of the values to the new type.
2336         Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2337         Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2338         Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2339         // Bit convert the result back the original type.
2340         Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2341         break;
2342       }
2343       }
2344     }
2345     }
2346     break;
2347     
2348   case ISD::FCOPYSIGN:  // FCOPYSIGN does not require LHS/RHS to match type!
2349     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2350     switch (getTypeAction(Node->getOperand(1).getValueType())) {
2351       case Expand: assert(0 && "Not possible");
2352       case Legal:
2353         Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2354         break;
2355       case Promote:
2356         Tmp2 = PromoteOp(Node->getOperand(1));  // Promote the RHS.
2357         break;
2358     }
2359       
2360     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2361     
2362     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2363     default: assert(0 && "Operation not supported");
2364     case TargetLowering::Custom:
2365       Tmp1 = TLI.LowerOperation(Result, DAG);
2366       if (Tmp1.Val) Result = Tmp1;
2367       break;
2368     case TargetLowering::Legal: break;
2369     case TargetLowering::Expand: {
2370       // If this target supports fabs/fneg natively and select is cheap,
2371       // do this efficiently.
2372       if (!TLI.isSelectExpensive() &&
2373           TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2374           TargetLowering::Legal &&
2375           TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
2376           TargetLowering::Legal) {
2377         // Get the sign bit of the RHS.
2378         MVT::ValueType IVT = 
2379           Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2380         SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2381         SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2382                                SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2383         // Get the absolute value of the result.
2384         SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2385         // Select between the nabs and abs value based on the sign bit of
2386         // the input.
2387         Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2388                              DAG.getNode(ISD::FNEG, AbsVal.getValueType(), 
2389                                          AbsVal),
2390                              AbsVal);
2391         Result = LegalizeOp(Result);
2392         break;
2393       }
2394       
2395       // Otherwise, do bitwise ops!
2396       MVT::ValueType NVT = 
2397         Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2398       Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2399       Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2400       Result = LegalizeOp(Result);
2401       break;
2402     }
2403     }
2404     break;
2405     
2406   case ISD::ADDC:
2407   case ISD::SUBC:
2408     Tmp1 = LegalizeOp(Node->getOperand(0));
2409     Tmp2 = LegalizeOp(Node->getOperand(1));
2410     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2411     // Since this produces two values, make sure to remember that we legalized
2412     // both of them.
2413     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2414     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2415     return Result;
2416
2417   case ISD::ADDE:
2418   case ISD::SUBE:
2419     Tmp1 = LegalizeOp(Node->getOperand(0));
2420     Tmp2 = LegalizeOp(Node->getOperand(1));
2421     Tmp3 = LegalizeOp(Node->getOperand(2));
2422     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2423     // Since this produces two values, make sure to remember that we legalized
2424     // both of them.
2425     AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2426     AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2427     return Result;
2428     
2429   case ISD::BUILD_PAIR: {
2430     MVT::ValueType PairTy = Node->getValueType(0);
2431     // TODO: handle the case where the Lo and Hi operands are not of legal type
2432     Tmp1 = LegalizeOp(Node->getOperand(0));   // Lo
2433     Tmp2 = LegalizeOp(Node->getOperand(1));   // Hi
2434     switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
2435     case TargetLowering::Promote:
2436     case TargetLowering::Custom:
2437       assert(0 && "Cannot promote/custom this yet!");
2438     case TargetLowering::Legal:
2439       if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2440         Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2441       break;
2442     case TargetLowering::Expand:
2443       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2444       Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2445       Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2446                          DAG.getConstant(MVT::getSizeInBits(PairTy)/2, 
2447                                          TLI.getShiftAmountTy()));
2448       Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
2449       break;
2450     }
2451     break;
2452   }
2453
2454   case ISD::UREM:
2455   case ISD::SREM:
2456   case ISD::FREM:
2457     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2458     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
2459
2460     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2461     case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2462     case TargetLowering::Custom:
2463       isCustom = true;
2464       // FALLTHROUGH
2465     case TargetLowering::Legal:
2466       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2467       if (isCustom) {
2468         Tmp1 = TLI.LowerOperation(Result, DAG);
2469         if (Tmp1.Val) Result = Tmp1;
2470       }
2471       break;
2472     case TargetLowering::Expand:
2473       unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
2474       bool isSigned = DivOpc == ISD::SDIV;
2475       if (MVT::isInteger(Node->getValueType(0))) {
2476         if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2477             TargetLowering::Legal) {
2478           // X % Y -> X-X/Y*Y
2479           MVT::ValueType VT = Node->getValueType(0);
2480           Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
2481           Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2482           Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2483         } else {
2484           assert(Node->getValueType(0) == MVT::i32 &&
2485                  "Cannot expand this binary operator!");
2486           RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2487             ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
2488           SDOperand Dummy;
2489           Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
2490         }
2491       } else {
2492         // Floating point mod -> fmod libcall.
2493         RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2494           ? RTLIB::REM_F32 : RTLIB::REM_F64;
2495         SDOperand Dummy;
2496         Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2497                                false/*sign irrelevant*/, Dummy);
2498       }
2499       break;
2500     }
2501     break;
2502   case ISD::VAARG: {
2503     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2504     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2505
2506     MVT::ValueType VT = Node->getValueType(0);
2507     switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2508     default: assert(0 && "This action is not supported yet!");
2509     case TargetLowering::Custom:
2510       isCustom = true;
2511       // FALLTHROUGH
2512     case TargetLowering::Legal:
2513       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2514       Result = Result.getValue(0);
2515       Tmp1 = Result.getValue(1);
2516
2517       if (isCustom) {
2518         Tmp2 = TLI.LowerOperation(Result, DAG);
2519         if (Tmp2.Val) {
2520           Result = LegalizeOp(Tmp2);
2521           Tmp1 = LegalizeOp(Tmp2.getValue(1));
2522         }
2523       }
2524       break;
2525     case TargetLowering::Expand: {
2526       SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
2527       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2528                                      SV->getValue(), SV->getOffset());
2529       // Increment the pointer, VAList, to the next vaarg
2530       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
2531                          DAG.getConstant(MVT::getSizeInBits(VT)/8, 
2532                                          TLI.getPointerTy()));
2533       // Store the incremented VAList to the legalized pointer
2534       Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2535                           SV->getOffset());
2536       // Load the actual argument out of the pointer VAList
2537       Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
2538       Tmp1 = LegalizeOp(Result.getValue(1));
2539       Result = LegalizeOp(Result);
2540       break;
2541     }
2542     }
2543     // Since VAARG produces two values, make sure to remember that we 
2544     // legalized both of them.
2545     AddLegalizedOperand(SDOperand(Node, 0), Result);
2546     AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2547     return Op.ResNo ? Tmp1 : Result;
2548   }
2549     
2550   case ISD::VACOPY: 
2551     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2552     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the dest pointer.
2553     Tmp3 = LegalizeOp(Node->getOperand(2));  // Legalize the source pointer.
2554
2555     switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2556     default: assert(0 && "This action is not supported yet!");
2557     case TargetLowering::Custom:
2558       isCustom = true;
2559       // FALLTHROUGH
2560     case TargetLowering::Legal:
2561       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2562                                       Node->getOperand(3), Node->getOperand(4));
2563       if (isCustom) {
2564         Tmp1 = TLI.LowerOperation(Result, DAG);
2565         if (Tmp1.Val) Result = Tmp1;
2566       }
2567       break;
2568     case TargetLowering::Expand:
2569       // This defaults to loading a pointer from the input and storing it to the
2570       // output, returning the chain.
2571       SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
2572       SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
2573       Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2574                          SVD->getOffset());
2575       Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2576                             SVS->getOffset());
2577       break;
2578     }
2579     break;
2580
2581   case ISD::VAEND: 
2582     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2583     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2584
2585     switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2586     default: assert(0 && "This action is not supported yet!");
2587     case TargetLowering::Custom:
2588       isCustom = true;
2589       // FALLTHROUGH
2590     case TargetLowering::Legal:
2591       Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2592       if (isCustom) {
2593         Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2594         if (Tmp1.Val) Result = Tmp1;
2595       }
2596       break;
2597     case TargetLowering::Expand:
2598       Result = Tmp1; // Default to a no-op, return the chain
2599       break;
2600     }
2601     break;
2602     
2603   case ISD::VASTART: 
2604     Tmp1 = LegalizeOp(Node->getOperand(0));  // Legalize the chain.
2605     Tmp2 = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
2606
2607     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2608     
2609     switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2610     default: assert(0 && "This action is not supported yet!");
2611     case TargetLowering::Legal: break;
2612     case TargetLowering::Custom:
2613       Tmp1 = TLI.LowerOperation(Result, DAG);
2614       if (Tmp1.Val) Result = Tmp1;
2615       break;
2616     }
2617     break;
2618     
2619   case ISD::ROTL:
2620   case ISD::ROTR:
2621     Tmp1 = LegalizeOp(Node->getOperand(0));   // LHS
2622     Tmp2 = LegalizeOp(Node->getOperand(1));   // RHS
2623     
2624     assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2625            "Cannot handle this yet!");
2626     Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2627     break;
2628     
2629   case ISD::BSWAP:
2630     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
2631     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2632     case TargetLowering::Custom:
2633       assert(0 && "Cannot custom legalize this yet!");
2634     case TargetLowering::Legal:
2635       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2636       break;
2637     case TargetLowering::Promote: {
2638       MVT::ValueType OVT = Tmp1.getValueType();
2639       MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2640       unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
2641
2642       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2643       Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2644       Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2645                            DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2646       break;
2647     }
2648     case TargetLowering::Expand:
2649       Result = ExpandBSWAP(Tmp1);
2650       break;
2651     }
2652     break;
2653     
2654   case ISD::CTPOP:
2655   case ISD::CTTZ:
2656   case ISD::CTLZ:
2657     Tmp1 = LegalizeOp(Node->getOperand(0));   // Op
2658     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2659     case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
2660     case TargetLowering::Legal:
2661       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2662       break;
2663     case TargetLowering::Promote: {
2664       MVT::ValueType OVT = Tmp1.getValueType();
2665       MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2666
2667       // Zero extend the argument.
2668       Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2669       // Perform the larger operation, then subtract if needed.
2670       Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
2671       switch (Node->getOpcode()) {
2672       case ISD::CTPOP:
2673         Result = Tmp1;
2674         break;
2675       case ISD::CTTZ:
2676         //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
2677         Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2678                             DAG.getConstant(getSizeInBits(NVT), NVT),
2679                             ISD::SETEQ);
2680         Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
2681                            DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2682         break;
2683       case ISD::CTLZ:
2684         // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
2685         Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2686                              DAG.getConstant(getSizeInBits(NVT) -
2687                                              getSizeInBits(OVT), NVT));
2688         break;
2689       }
2690       break;
2691     }
2692     case TargetLowering::Expand:
2693       Result = ExpandBitCount(Node->getOpcode(), Tmp1);
2694       break;
2695     }
2696     break;
2697
2698     // Unary operators
2699   case ISD::FABS:
2700   case ISD::FNEG:
2701   case ISD::FSQRT:
2702   case ISD::FSIN:
2703   case ISD::FCOS:
2704     Tmp1 = LegalizeOp(Node->getOperand(0));
2705     switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2706     case TargetLowering::Promote:
2707     case TargetLowering::Custom:
2708      isCustom = true;
2709      // FALLTHROUGH
2710     case TargetLowering::Legal:
2711       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2712       if (isCustom) {
2713         Tmp1 = TLI.LowerOperation(Result, DAG);
2714         if (Tmp1.Val) Result = Tmp1;
2715       }
2716       break;
2717     case TargetLowering::Expand:
2718       switch (Node->getOpcode()) {
2719       default: assert(0 && "Unreachable!");
2720       case ISD::FNEG:
2721         // Expand Y = FNEG(X) ->  Y = SUB -0.0, X
2722         Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
2723         Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
2724         break;
2725       case ISD::FABS: {
2726         // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2727         MVT::ValueType VT = Node->getValueType(0);
2728         Tmp2 = DAG.getConstantFP(0.0, VT);
2729         Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
2730         Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2731         Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
2732         break;
2733       }
2734       case ISD::FSQRT:
2735       case ISD::FSIN:
2736       case ISD::FCOS: {
2737         MVT::ValueType VT = Node->getValueType(0);
2738         RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2739         switch(Node->getOpcode()) {
2740         case ISD::FSQRT:
2741           LC = VT == MVT::f32 ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
2742           break;
2743         case ISD::FSIN:
2744           LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
2745           break;
2746         case ISD::FCOS:
2747           LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
2748           break;
2749         default: assert(0 && "Unreachable!");
2750         }
2751         SDOperand Dummy;
2752         Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2753                                false/*sign irrelevant*/, Dummy);
2754         break;
2755       }
2756       }
2757       break;
2758     }
2759     break;
2760   case ISD::FPOWI: {
2761     // We always lower FPOWI into a libcall.  No target support it yet.
2762     RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2763       ? RTLIB::POWI_F32 : RTLIB::POWI_F64;
2764     SDOperand Dummy;
2765     Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2766                            false/*sign irrelevant*/, Dummy);
2767     break;
2768   }
2769   case ISD::BIT_CONVERT:
2770     if (!isTypeLegal(Node->getOperand(0).getValueType())) {
2771       Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2772     } else {
2773       switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2774                                      Node->getOperand(0).getValueType())) {
2775       default: assert(0 && "Unknown operation action!");
2776       case TargetLowering::Expand:
2777         Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2778         break;
2779       case TargetLowering::Legal:
2780         Tmp1 = LegalizeOp(Node->getOperand(0));
2781         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2782         break;
2783       }
2784     }
2785     break;
2786   case ISD::VBIT_CONVERT: {
2787     assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2788            "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2789     
2790     // The input has to be a vector type, we have to either scalarize it, pack
2791     // it, or convert it based on whether the input vector type is legal.
2792     SDNode *InVal = Node->getOperand(0).Val;
2793     unsigned NumElems =
2794       cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2795     MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2796     
2797     // Figure out if there is a Packed type corresponding to this Vector
2798     // type.  If so, convert to the packed type.
2799     MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2800     if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2801       // Turn this into a bit convert of the packed input.
2802       Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), 
2803                            PackVectorOp(Node->getOperand(0), TVT));
2804       break;
2805     } else if (NumElems == 1) {
2806       // Turn this into a bit convert of the scalar input.
2807       Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), 
2808                            PackVectorOp(Node->getOperand(0), EVT));
2809       break;
2810     } else {
2811       // FIXME: UNIMP!  Store then reload
2812       assert(0 && "Cast from unsupported vector type not implemented yet!");
2813     }
2814   }
2815       
2816     // Conversion operators.  The source and destination have different types.
2817   case ISD::SINT_TO_FP:
2818   case ISD::UINT_TO_FP: {
2819     bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
2820     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2821     case Legal:
2822       switch (TLI.getOperationAction(Node->getOpcode(),
2823                                      Node->getOperand(0).getValueType())) {
2824       default: assert(0 && "Unknown operation action!");
2825       case TargetLowering::Custom:
2826         isCustom = true;
2827         // FALLTHROUGH
2828       case TargetLowering::Legal:
2829         Tmp1 = LegalizeOp(Node->getOperand(0));
2830         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2831         if (isCustom) {
2832           Tmp1 = TLI.LowerOperation(Result, DAG);
2833           if (Tmp1.Val) Result = Tmp1;
2834         }
2835         break;
2836       case TargetLowering::Expand:
2837         Result = ExpandLegalINT_TO_FP(isSigned,
2838                                       LegalizeOp(Node->getOperand(0)),
2839                                       Node->getValueType(0));
2840         break;
2841       case TargetLowering::Promote:
2842         Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2843                                        Node->getValueType(0),
2844                                        isSigned);
2845         break;
2846       }
2847       break;
2848     case Expand:
2849       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2850                              Node->getValueType(0), Node->getOperand(0));
2851       break;
2852     case Promote:
2853       Tmp1 = PromoteOp(Node->getOperand(0));
2854       if (isSigned) {
2855         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2856                  Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
2857       } else {
2858         Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2859                                       Node->getOperand(0).getValueType());
2860       }
2861       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2862       Result = LegalizeOp(Result);  // The 'op' is not necessarily legal!
2863       break;
2864     }
2865     break;
2866   }
2867   case ISD::TRUNCATE:
2868     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2869     case Legal:
2870       Tmp1 = LegalizeOp(Node->getOperand(0));
2871       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2872       break;
2873     case Expand:
2874       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2875
2876       // Since the result is legal, we should just be able to truncate the low
2877       // part of the source.
2878       Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2879       break;
2880     case Promote:
2881       Result = PromoteOp(Node->getOperand(0));
2882       Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2883       break;
2884     }
2885     break;
2886
2887   case ISD::FP_TO_SINT:
2888   case ISD::FP_TO_UINT:
2889     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2890     case Legal:
2891       Tmp1 = LegalizeOp(Node->getOperand(0));
2892
2893       switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2894       default: assert(0 && "Unknown operation action!");
2895       case TargetLowering::Custom:
2896         isCustom = true;
2897         // FALLTHROUGH
2898       case TargetLowering::Legal:
2899         Result = DAG.UpdateNodeOperands(Result, Tmp1);
2900         if (isCustom) {
2901           Tmp1 = TLI.LowerOperation(Result, DAG);
2902           if (Tmp1.Val) Result = Tmp1;
2903         }
2904         break;
2905       case TargetLowering::Promote:
2906         Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2907                                        Node->getOpcode() == ISD::FP_TO_SINT);
2908         break;
2909       case TargetLowering::Expand:
2910         if (Node->getOpcode() == ISD::FP_TO_UINT) {
2911           SDOperand True, False;
2912           MVT::ValueType VT =  Node->getOperand(0).getValueType();
2913           MVT::ValueType NVT = Node->getValueType(0);
2914           unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2915           Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2916           Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2917                             Node->getOperand(0), Tmp2, ISD::SETLT);
2918           True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2919           False = DAG.getNode(ISD::FP_TO_SINT, NVT,
2920                               DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
2921                                           Tmp2));
2922           False = DAG.getNode(ISD::XOR, NVT, False, 
2923                               DAG.getConstant(1ULL << ShiftAmt, NVT));
2924           Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2925           break;
2926         } else {
2927           assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2928         }
2929         break;
2930       }
2931       break;
2932     case Expand: {
2933       // Convert f32 / f64 to i32 / i64.
2934       MVT::ValueType VT = Op.getValueType();
2935       RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2936       switch (Node->getOpcode()) {
2937       case ISD::FP_TO_SINT:
2938         if (Node->getOperand(0).getValueType() == MVT::f32)
2939           LC = (VT == MVT::i32)
2940             ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
2941         else
2942           LC = (VT == MVT::i32)
2943             ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
2944         break;
2945       case ISD::FP_TO_UINT:
2946         if (Node->getOperand(0).getValueType() == MVT::f32)
2947           LC = (VT == MVT::i32)
2948             ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
2949         else
2950           LC = (VT == MVT::i32)
2951             ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
2952         break;
2953       default: assert(0 && "Unreachable!");
2954       }
2955       SDOperand Dummy;
2956       Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2957                              false/*sign irrelevant*/, Dummy);
2958       break;
2959     }
2960     case Promote:
2961       Tmp1 = PromoteOp(Node->getOperand(0));
2962       Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2963       Result = LegalizeOp(Result);
2964       break;
2965     }
2966     break;
2967
2968   case ISD::ANY_EXTEND:
2969   case ISD::ZERO_EXTEND:
2970   case ISD::SIGN_EXTEND:
2971   case ISD::FP_EXTEND:
2972   case ISD::FP_ROUND:
2973     switch (getTypeAction(Node->getOperand(0).getValueType())) {
2974     case Expand: assert(0 && "Shouldn't need to expand other operators here!");
2975     case Legal:
2976       Tmp1 = LegalizeOp(Node->getOperand(0));
2977       Result = DAG.UpdateNodeOperands(Result, Tmp1);
2978       break;
2979     case Promote:
2980       switch (Node->getOpcode()) {
2981       case ISD::ANY_EXTEND:
2982         Tmp1 = PromoteOp(Node->getOperand(0));
2983         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
2984         break;
2985       case ISD::ZERO_EXTEND:
2986         Result = PromoteOp(Node->getOperand(0));
2987         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
2988         Result = DAG.getZeroExtendInReg(Result,
2989                                         Node->getOperand(0).getValueType());
2990         break;
2991       case ISD::SIGN_EXTEND:
2992         Result = PromoteOp(Node->getOperand(0));
2993         Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
2994         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2995                              Result,
2996                           DAG.getValueType(Node->getOperand(0).getValueType()));
2997         break;
2998       case ISD::FP_EXTEND:
2999         Result = PromoteOp(Node->getOperand(0));
3000         if (Result.getValueType() != Op.getValueType())
3001           // Dynamically dead while we have only 2 FP types.
3002           Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3003         break;
3004       case ISD::FP_ROUND:
3005         Result = PromoteOp(Node->getOperand(0));
3006         Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3007         break;
3008       }
3009     }
3010     break;
3011   case ISD::FP_ROUND_INREG:
3012   case ISD::SIGN_EXTEND_INREG: {
3013     Tmp1 = LegalizeOp(Node->getOperand(0));
3014     MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
3015
3016     // If this operation is not supported, convert it to a shl/shr or load/store
3017     // pair.
3018     switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3019     default: assert(0 && "This action not supported for this op yet!");
3020     case TargetLowering::Legal:
3021       Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3022       break;
3023     case TargetLowering::Expand:
3024       // If this is an integer extend and shifts are supported, do that.
3025       if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
3026         // NOTE: we could fall back on load/store here too for targets without
3027         // SAR.  However, it is doubtful that any exist.
3028         unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3029                             MVT::getSizeInBits(ExtraVT);
3030         SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
3031         Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3032                              Node->getOperand(0), ShiftCst);
3033         Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3034                              Result, ShiftCst);
3035       } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
3036         // The only way we can lower this is to turn it into a TRUNCSTORE,
3037         // EXTLOAD pair, targetting a temporary location (a stack slot).
3038
3039         // NOTE: there is a choice here between constantly creating new stack
3040         // slots and always reusing the same one.  We currently always create
3041         // new ones, as reuse may inhibit scheduling.
3042         const Type *Ty = MVT::getTypeForValueType(ExtraVT);
3043         unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
3044         unsigned Align  = TLI.getTargetData()->getTypeAlignmentPref(Ty);
3045         MachineFunction &MF = DAG.getMachineFunction();
3046         int SSFI =
3047           MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
3048         SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3049         Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3050                                    StackSlot, NULL, 0, ExtraVT);
3051         Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
3052                                 Result, StackSlot, NULL, 0, ExtraVT);
3053       } else {
3054         assert(0 && "Unknown op");
3055       }
3056       break;
3057     }
3058     break;
3059   }
3060   }
3061   
3062   assert(Result.getValueType() == Op.getValueType() &&
3063          "Bad legalization!");
3064   
3065   // Make sure that the generated code is itself legal.
3066   if (Result != Op)
3067     Result = LegalizeOp(Result);
3068
3069   // Note that LegalizeOp may be reentered even from single-use nodes, which
3070   // means that we always must cache transformed nodes.
3071   AddLegalizedOperand(Op, Result);
3072   return Result;
3073 }
3074
3075 /// PromoteOp - Given an operation that produces a value in an invalid type,
3076 /// promote it to compute the value into a larger type.  The produced value will
3077 /// have the correct bits for the low portion of the register, but no guarantee
3078 /// is made about the top bits: it may be zero, sign-extended, or garbage.
3079 SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3080   MVT::ValueType VT = Op.getValueType();
3081   MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3082   assert(getTypeAction(VT) == Promote &&
3083          "Caller should expand or legalize operands that are not promotable!");
3084   assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3085          "Cannot promote to smaller type!");
3086
3087   SDOperand Tmp1, Tmp2, Tmp3;
3088   SDOperand Result;
3089   SDNode *Node = Op.Val;
3090
3091   std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
3092   if (I != PromotedNodes.end()) return I->second;
3093
3094   switch (Node->getOpcode()) {
3095   case ISD::CopyFromReg:
3096     assert(0 && "CopyFromReg must be legal!");
3097   default:
3098 #ifndef NDEBUG
3099     cerr << "NODE: "; Node->dump(); cerr << "\n";
3100 #endif
3101     assert(0 && "Do not know how to promote this operator!");
3102     abort();
3103   case ISD::UNDEF:
3104     Result = DAG.getNode(ISD::UNDEF, NVT);
3105     break;
3106   case ISD::Constant:
3107     if (VT != MVT::i1)
3108       Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3109     else
3110       Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
3111     assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3112     break;
3113   case ISD::ConstantFP:
3114     Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3115     assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3116     break;
3117
3118   case ISD::SETCC:
3119     assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
3120     Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3121                          Node->getOperand(1), Node->getOperand(2));
3122     break;
3123     
3124   case ISD::TRUNCATE:
3125     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3126     case Legal:
3127       Result = LegalizeOp(Node->getOperand(0));
3128       assert(Result.getValueType() >= NVT &&
3129              "This truncation doesn't make sense!");
3130       if (Result.getValueType() > NVT)    // Truncate to NVT instead of VT
3131         Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3132       break;
3133     case Promote:
3134       // The truncation is not required, because we don't guarantee anything
3135       // about high bits anyway.
3136       Result = PromoteOp(Node->getOperand(0));
3137       break;
3138     case Expand:
3139       ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3140       // Truncate the low part of the expanded value to the result type
3141       Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
3142     }
3143     break;
3144   case ISD::SIGN_EXTEND:
3145   case ISD::ZERO_EXTEND:
3146   case ISD::ANY_EXTEND:
3147     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3148     case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3149     case Legal:
3150       // Input is legal?  Just do extend all the way to the larger type.
3151       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
3152       break;
3153     case Promote:
3154       // Promote the reg if it's smaller.
3155       Result = PromoteOp(Node->getOperand(0));
3156       // The high bits are not guaranteed to be anything.  Insert an extend.
3157       if (Node->getOpcode() == ISD::SIGN_EXTEND)
3158         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3159                          DAG.getValueType(Node->getOperand(0).getValueType()));
3160       else if (Node->getOpcode() == ISD::ZERO_EXTEND)
3161         Result = DAG.getZeroExtendInReg(Result,
3162                                         Node->getOperand(0).getValueType());
3163       break;
3164     }
3165     break;
3166   case ISD::BIT_CONVERT:
3167     Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3168     Result = PromoteOp(Result);
3169     break;
3170     
3171   case ISD::FP_EXTEND:
3172     assert(0 && "Case not implemented.  Dynamically dead with 2 FP types!");
3173   case ISD::FP_ROUND:
3174     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3175     case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3176     case Promote:  assert(0 && "Unreachable with 2 FP types!");
3177     case Legal:
3178       // Input is legal?  Do an FP_ROUND_INREG.
3179       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
3180                            DAG.getValueType(VT));
3181       break;
3182     }
3183     break;
3184
3185   case ISD::SINT_TO_FP:
3186   case ISD::UINT_TO_FP:
3187     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3188     case Legal:
3189       // No extra round required here.
3190       Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
3191       break;
3192
3193     case Promote:
3194       Result = PromoteOp(Node->getOperand(0));
3195       if (Node->getOpcode() == ISD::SINT_TO_FP)
3196         Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
3197                              Result,
3198                          DAG.getValueType(Node->getOperand(0).getValueType()));
3199       else
3200         Result = DAG.getZeroExtendInReg(Result,
3201                                         Node->getOperand(0).getValueType());
3202       // No extra round required here.
3203       Result = DAG.getNode(Node->getOpcode(), NVT, Result);
3204       break;
3205     case Expand:
3206       Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3207                              Node->getOperand(0));
3208       // Round if we cannot tolerate excess precision.
3209       if (NoExcessFPPrecision)
3210         Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3211                              DAG.getValueType(VT));
3212       break;
3213     }
3214     break;
3215
3216   case ISD::SIGN_EXTEND_INREG:
3217     Result = PromoteOp(Node->getOperand(0));
3218     Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, 
3219                          Node->getOperand(1));
3220     break;
3221   case ISD::FP_TO_SINT:
3222   case ISD::FP_TO_UINT:
3223     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3224     case Legal:
3225     case Expand:
3226       Tmp1 = Node->getOperand(0);
3227       break;
3228     case Promote:
3229       // The input result is prerounded, so we don't have to do anything
3230       // special.
3231       Tmp1 = PromoteOp(Node->getOperand(0));
3232       break;
3233     }
3234     // If we're promoting a UINT to a larger size, check to see if the new node
3235     // will be legal.  If it isn't, check to see if FP_TO_SINT is legal, since
3236     // we can use that instead.  This allows us to generate better code for
3237     // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3238     // legal, such as PowerPC.
3239     if (Node->getOpcode() == ISD::FP_TO_UINT && 
3240         !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
3241         (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3242          TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
3243       Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3244     } else {
3245       Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3246     }
3247     break;
3248
3249   case ISD::FABS:
3250   case ISD::FNEG:
3251     Tmp1 = PromoteOp(Node->getOperand(0));
3252     assert(Tmp1.getValueType() == NVT);
3253     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3254     // NOTE: we do not have to do any extra rounding here for
3255     // NoExcessFPPrecision, because we know the input will have the appropriate
3256     // precision, and these operations don't modify precision at all.
3257     break;
3258
3259   case ISD::FSQRT:
3260   case ISD::FSIN:
3261   case ISD::FCOS:
3262     Tmp1 = PromoteOp(Node->getOperand(0));
3263     assert(Tmp1.getValueType() == NVT);
3264     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3265     if (NoExcessFPPrecision)
3266       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3267                            DAG.getValueType(VT));
3268     break;
3269
3270   case ISD::AND:
3271   case ISD::OR:
3272   case ISD::XOR:
3273   case ISD::ADD:
3274   case ISD::SUB:
3275   case ISD::MUL:
3276     // The input may have strange things in the top bits of the registers, but
3277     // these operations don't care.  They may have weird bits going out, but
3278     // that too is okay if they are integer operations.
3279     Tmp1 = PromoteOp(Node->getOperand(0));
3280     Tmp2 = PromoteOp(Node->getOperand(1));
3281     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3282     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3283     break;
3284   case ISD::FADD:
3285   case ISD::FSUB:
3286   case ISD::FMUL:
3287     Tmp1 = PromoteOp(Node->getOperand(0));
3288     Tmp2 = PromoteOp(Node->getOperand(1));
3289     assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3290     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3291     
3292     // Floating point operations will give excess precision that we may not be
3293     // able to tolerate.  If we DO allow excess precision, just leave it,
3294     // otherwise excise it.
3295     // FIXME: Why would we need to round FP ops more than integer ones?
3296     //     Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
3297     if (NoExcessFPPrecision)
3298       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3299                            DAG.getValueType(VT));
3300     break;
3301
3302   case ISD::SDIV:
3303   case ISD::SREM:
3304     // These operators require that their input be sign extended.
3305     Tmp1 = PromoteOp(Node->getOperand(0));
3306     Tmp2 = PromoteOp(Node->getOperand(1));
3307     if (MVT::isInteger(NVT)) {
3308       Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3309                          DAG.getValueType(VT));
3310       Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3311                          DAG.getValueType(VT));
3312     }
3313     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3314
3315     // Perform FP_ROUND: this is probably overly pessimistic.
3316     if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
3317       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3318                            DAG.getValueType(VT));
3319     break;
3320   case ISD::FDIV:
3321   case ISD::FREM:
3322   case ISD::FCOPYSIGN:
3323     // These operators require that their input be fp extended.
3324     switch (getTypeAction(Node->getOperand(0).getValueType())) {
3325       case Legal:
3326         Tmp1 = LegalizeOp(Node->getOperand(0));
3327         break;
3328       case Promote:
3329         Tmp1 = PromoteOp(Node->getOperand(0));
3330         break;
3331       case Expand:
3332         assert(0 && "not implemented");
3333     }
3334     switch (getTypeAction(Node->getOperand(1).getValueType())) {
3335       case Legal:
3336         Tmp2 = LegalizeOp(Node->getOperand(1));
3337         break;
3338       case Promote:
3339         Tmp2 = PromoteOp(Node->getOperand(1));
3340         break;
3341       case Expand:
3342         assert(0 && "not implemented");
3343     }
3344     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3345     
3346     // Perform FP_ROUND: this is probably overly pessimistic.
3347     if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
3348       Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3349                            DAG.getValueType(VT));
3350     break;
3351
3352   case ISD::UDIV:
3353   case ISD::UREM:
3354     // These operators require that their input be zero extended.
3355     Tmp1 = PromoteOp(Node->getOperand(0));
3356     Tmp2 = PromoteOp(Node->getOperand(1));
3357     assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
3358     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3359     Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3360     Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3361     break;
3362
3363   case ISD::SHL:
3364     Tmp1 = PromoteOp(Node->getOperand(0));
3365     Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
3366     break;
3367   case ISD::SRA:
3368     // The input value must be properly sign extended.
3369     Tmp1 = PromoteOp(Node->getOperand(0));
3370     Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3371                        DAG.getValueType(VT));
3372     Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
3373     break;
3374   case ISD::SRL:
3375     // The input value must be properly zero extended.
3376     Tmp1 = PromoteOp(Node->getOperand(0));
3377     Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3378     Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
3379     break;
3380
3381   case ISD::VAARG:
3382     Tmp1 = Node->getOperand(0);   // Get the chain.
3383     Tmp2 = Node->getOperand(1);   // Get the pointer.
3384     if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3385       Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3386       Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3387     } else {
3388       SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
3389       SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
3390                                      SV->getValue(), SV->getOffset());
3391       // Increment the pointer, VAList, to the next vaarg
3392       Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, 
3393                          DAG.getConstant(MVT::getSizeInBits(VT)/8, 
3394                                          TLI.getPointerTy()));
3395       // Store the incremented VAList to the legalized pointer
3396       Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3397                           SV->getOffset());
3398       // Load the actual argument out of the pointer VAList
3399       Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
3400     }
3401     // Remember that we legalized the chain.
3402     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
3403     break;
3404
3405   case ISD::LOAD: {
3406     LoadSDNode *LD = cast<LoadSDNode>(Node);
3407     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3408       ? ISD::EXTLOAD : LD->getExtensionType();
3409     Result = DAG.getExtLoad(ExtType, NVT,
3410                             LD->getChain(), LD->getBasePtr(),
3411                             LD->getSrcValue(), LD->getSrcValueOffset(),
3412                             LD->getLoadedVT());
3413     // Remember that we legalized the chain.
3414     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
3415     break;
3416   }
3417   case ISD::SELECT:
3418     Tmp2 = PromoteOp(Node->getOperand(1));   // Legalize the op0
3419     Tmp3 = PromoteOp(Node->getOperand(2));   // Legalize the op1
3420     Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
3421     break;
3422   case ISD::SELECT_CC:
3423     Tmp2 = PromoteOp(Node->getOperand(2));   // True
3424     Tmp3 = PromoteOp(Node->getOperand(3));   // False
3425     Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
3426                          Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
3427     break;
3428   case ISD::BSWAP:
3429     Tmp1 = Node->getOperand(0);
3430     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3431     Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3432     Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3433                          DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3434                                          TLI.getShiftAmountTy()));
3435     break;
3436   case ISD::CTPOP:
3437   case ISD::CTTZ:
3438   case ISD::CTLZ:
3439     // Zero extend the argument
3440     Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
3441     // Perform the larger operation, then subtract if needed.
3442     Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3443     switch(Node->getOpcode()) {
3444     case ISD::CTPOP:
3445       Result = Tmp1;
3446       break;
3447     case ISD::CTTZ:
3448       // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
3449       Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
3450                           DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
3451       Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
3452                            DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
3453       break;
3454     case ISD::CTLZ:
3455       //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3456       Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3457                            DAG.getConstant(getSizeInBits(NVT) -
3458                                            getSizeInBits(VT), NVT));
3459       break;
3460     }
3461     break;
3462   case ISD::VEXTRACT_VECTOR_ELT:
3463     Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3464     break;
3465   case ISD::EXTRACT_VECTOR_ELT:
3466     Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3467     break;
3468   }
3469
3470   assert(Result.Val && "Didn't set a result!");
3471
3472   // Make sure the result is itself legal.
3473   Result = LegalizeOp(Result);
3474   
3475   // Remember that we promoted this!
3476   AddPromotedOperand(Op, Result);
3477   return Result;
3478 }
3479
3480 /// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3481 /// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3482 /// on the vector type.  The return type of this matches the element type of the
3483 /// vector, which may not be legal for the target.
3484 SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3485   // We know that operand #0 is the Vec vector.  If the index is a constant
3486   // or if the invec is a supported hardware type, we can use it.  Otherwise,
3487   // lower to a store then an indexed load.
3488   SDOperand Vec = Op.getOperand(0);
3489   SDOperand Idx = LegalizeOp(Op.getOperand(1));
3490   
3491   SDNode *InVal = Vec.Val;
3492   unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3493   MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3494   
3495   // Figure out if there is a Packed type corresponding to this Vector
3496   // type.  If so, convert to the packed type.
3497   MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3498   if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3499     // Turn this into a packed extract_vector_elt operation.
3500     Vec = PackVectorOp(Vec, TVT);
3501     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3502   } else if (NumElems == 1) {
3503     // This must be an access of the only element.  Return it.
3504     return PackVectorOp(Vec, EVT);
3505   } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3506     SDOperand Lo, Hi;
3507     SplitVectorOp(Vec, Lo, Hi);
3508     if (CIdx->getValue() < NumElems/2) {
3509       Vec = Lo;
3510     } else {
3511       Vec = Hi;
3512       Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3513     }
3514     
3515     // It's now an extract from the appropriate high or low part.  Recurse.
3516     Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3517     return LowerVEXTRACT_VECTOR_ELT(Op);
3518   } else {
3519     // Variable index case for extract element.
3520     // FIXME: IMPLEMENT STORE/LOAD lowering.  Need alignment of stack slot!!
3521     assert(0 && "unimp!");
3522     return SDOperand();
3523   }
3524 }
3525
3526 /// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3527 /// memory traffic.
3528 SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3529   SDOperand Vector = Op.getOperand(0);
3530   SDOperand Idx    = Op.getOperand(1);
3531   
3532   // If the target doesn't support this, store the value to a temporary
3533   // stack slot, then LOAD the scalar element back out.
3534   SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
3535   SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
3536   
3537   // Add the offset to the index.
3538   unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3539   Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3540                     DAG.getConstant(EltSize, Idx.getValueType()));
3541   StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3542   
3543   return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
3544 }
3545
3546
3547 /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3548 /// with condition CC on the current target.  This usually involves legalizing
3549 /// or promoting the arguments.  In the case where LHS and RHS must be expanded,
3550 /// there may be no choice but to create a new SetCC node to represent the
3551 /// legalized value of setcc lhs, rhs.  In this case, the value is returned in
3552 /// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3553 void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3554                                                  SDOperand &RHS,
3555                                                  SDOperand &CC) {
3556   SDOperand Tmp1, Tmp2, Result;    
3557   
3558   switch (getTypeAction(LHS.getValueType())) {
3559   case Legal:
3560     Tmp1 = LegalizeOp(LHS);   // LHS
3561     Tmp2 = LegalizeOp(RHS);   // RHS
3562     break;
3563   case Promote:
3564     Tmp1 = PromoteOp(LHS);   // LHS
3565     Tmp2 = PromoteOp(RHS);   // RHS
3566
3567     // If this is an FP compare, the operands have already been extended.
3568     if (MVT::isInteger(LHS.getValueType())) {
3569       MVT::ValueType VT = LHS.getValueType();
3570       MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3571
3572       // Otherwise, we have to insert explicit sign or zero extends.  Note
3573       // that we could insert sign extends for ALL conditions, but zero extend
3574       // is cheaper on many machines (an AND instead of two shifts), so prefer
3575       // it.
3576       switch (cast<CondCodeSDNode>(CC)->get()) {
3577       default: assert(0 && "Unknown integer comparison!");
3578       case ISD::SETEQ:
3579       case ISD::SETNE:
3580       case ISD::SETUGE:
3581       case ISD::SETUGT:
3582       case ISD::SETULE:
3583       case ISD::SETULT:
3584         // ALL of these operations will work if we either sign or zero extend
3585         // the operands (including the unsigned comparisons!).  Zero extend is
3586         // usually a simpler/cheaper operation, so prefer it.
3587         Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3588         Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3589         break;
3590       case ISD::SETGE:
3591       case ISD::SETGT:
3592       case ISD::SETLT:
3593       case ISD::SETLE:
3594         Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3595                            DAG.getValueType(VT));
3596         Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3597                            DAG.getValueType(VT));
3598         break;
3599       }
3600     }
3601     break;
3602   case Expand: {
3603     MVT::ValueType VT = LHS.getValueType();
3604     if (VT == MVT::f32 || VT == MVT::f64) {
3605       // Expand into one or more soft-fp libcall(s).
3606       RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
3607       switch (cast<CondCodeSDNode>(CC)->get()) {
3608       case ISD::SETEQ:
3609       case ISD::SETOEQ:
3610         LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
3611         break;
3612       case ISD::SETNE:
3613       case ISD::SETUNE:
3614         LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
3615         break;
3616       case ISD::SETGE:
3617       case ISD::SETOGE:
3618         LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
3619         break;
3620       case ISD::SETLT:
3621       case ISD::SETOLT:
3622         LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
3623         break;
3624       case ISD::SETLE:
3625       case ISD::SETOLE:
3626         LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
3627         break;
3628       case ISD::SETGT:
3629       case ISD::SETOGT:
3630         LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
3631         break;
3632       case ISD::SETUO:
3633         LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3634         break;
3635       case ISD::SETO:
3636         LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3637         break;
3638       default:
3639         LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3640         switch (cast<CondCodeSDNode>(CC)->get()) {
3641         case ISD::SETONE:
3642           // SETONE = SETOLT | SETOGT
3643           LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
3644           // Fallthrough
3645         case ISD::SETUGT:
3646           LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
3647           break;
3648         case ISD::SETUGE:
3649           LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
3650           break;
3651         case ISD::SETULT:
3652           LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
3653           break;
3654         case ISD::SETULE:
3655           LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
3656           break;
3657         case ISD::SETUEQ:
3658           LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
3659           break;
3660         default: assert(0 && "Unsupported FP setcc!");
3661         }
3662       }
3663       
3664       SDOperand Dummy;
3665       Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
3666                            DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val, 
3667                            false /*sign irrelevant*/, Dummy);
3668       Tmp2 = DAG.getConstant(0, MVT::i32);
3669       CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
3670       if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
3671         Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
3672         LHS = ExpandLibCall(TLI.getLibcallName(LC2),
3673                             DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val, 
3674                             false /*sign irrelevant*/, Dummy);
3675         Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
3676                            DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
3677         Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3678         Tmp2 = SDOperand();
3679       }
3680       LHS = Tmp1;
3681       RHS = Tmp2;
3682       return;
3683     }
3684
3685     SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3686     ExpandOp(LHS, LHSLo, LHSHi);
3687     ExpandOp(RHS, RHSLo, RHSHi);    
3688     switch (cast<CondCodeSDNode>(CC)->get()) {
3689     case ISD::SETEQ:
3690     case ISD::SETNE:
3691       if (RHSLo == RHSHi)
3692         if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3693           if (RHSCST->isAllOnesValue()) {
3694             // Comparison to -1.
3695             Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3696             Tmp2 = RHSLo;
3697             break;
3698           }
3699
3700       Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3701       Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3702       Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3703       Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3704       break;
3705     default:
3706       // If this is a comparison of the sign bit, just look at the top part.
3707       // X > -1,  x < 0
3708       if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3709         if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && 
3710              CST->getValue() == 0) ||             // X < 0
3711             (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3712              CST->isAllOnesValue())) {            // X > -1
3713           Tmp1 = LHSHi;
3714           Tmp2 = RHSHi;
3715           break;
3716         }
3717
3718       // FIXME: This generated code sucks.
3719       ISD::CondCode LowCC;
3720       switch (cast<CondCodeSDNode>(CC)->get()) {
3721       default: assert(0 && "Unknown integer setcc!");
3722       case ISD::SETLT:
3723       case ISD::SETULT: LowCC = ISD::SETULT; break;
3724       case ISD::SETGT:
3725       case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3726       case ISD::SETLE:
3727       case ISD::SETULE: LowCC = ISD::SETULE; break;
3728       case ISD::SETGE:
3729       case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3730       }
3731
3732       // Tmp1 = lo(op1) < lo(op2)   // Always unsigned comparison
3733       // Tmp2 = hi(op1) < hi(op2)   // Signedness depends on operands
3734       // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3735
3736       // NOTE: on targets without efficient SELECT of bools, we can always use
3737       // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3738       Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3739       Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3740       Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3741       Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3742                                       Result, Tmp1, Tmp2));
3743       Tmp1 = Result;
3744       Tmp2 = SDOperand();
3745     }
3746   }
3747   }
3748   LHS = Tmp1;
3749   RHS = Tmp2;
3750 }
3751
3752 /// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
3753 /// The resultant code need not be legal.  Note that SrcOp is the input operand
3754 /// to the BIT_CONVERT, not the BIT_CONVERT node itself.
3755 SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT, 
3756                                                   SDOperand SrcOp) {
3757   // Create the stack frame object.
3758   SDOperand FIPtr = CreateStackTemporary(DestVT);
3759   
3760   // Emit a store to the stack slot.
3761   SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
3762   // Result is a load from the stack slot.
3763   return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
3764 }
3765
3766 SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3767   // Create a vector sized/aligned stack slot, store the value to element #0,
3768   // then load the whole vector back out.
3769   SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
3770   SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
3771                               NULL, 0);
3772   return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
3773 }
3774
3775
3776 /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3777 /// support the operation, but do support the resultant packed vector type.
3778 SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3779   
3780   // If the only non-undef value is the low element, turn this into a 
3781   // SCALAR_TO_VECTOR node.  If this is { X, X, X, X }, determine X.
3782   unsigned NumElems = Node->getNumOperands();
3783   bool isOnlyLowElement = true;
3784   SDOperand SplatValue = Node->getOperand(0);
3785   std::map<SDOperand, std::vector<unsigned> > Values;
3786   Values[SplatValue].push_back(0);
3787   bool isConstant = true;
3788   if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3789       SplatValue.getOpcode() != ISD::UNDEF)
3790     isConstant = false;
3791   
3792   for (unsigned i = 1; i < NumElems; ++i) {
3793     SDOperand V = Node->getOperand(i);
3794     Values[V].push_back(i);
3795     if (V.getOpcode() != ISD::UNDEF)
3796       isOnlyLowElement = false;
3797     if (SplatValue != V)
3798       SplatValue = SDOperand(0,0);
3799
3800     // If this isn't a constant element or an undef, we can't use a constant
3801     // pool load.
3802     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3803         V.getOpcode() != ISD::UNDEF)
3804       isConstant = false;
3805   }
3806   
3807   if (isOnlyLowElement) {
3808     // If the low element is an undef too, then this whole things is an undef.
3809     if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3810       return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3811     // Otherwise, turn this into a scalar_to_vector node.
3812     return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3813                        Node->getOperand(0));
3814   }
3815   
3816   // If all elements are constants, create a load from the constant pool.
3817   if (isConstant) {
3818     MVT::ValueType VT = Node->getValueType(0);
3819     const Type *OpNTy = 
3820       MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3821     std::vector<Constant*> CV;
3822     for (unsigned i = 0, e = NumElems; i != e; ++i) {
3823       if (ConstantFPSDNode *V = 
3824           dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3825         CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3826       } else if (ConstantSDNode *V = 
3827                  dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
3828         CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
3829       } else {
3830         assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3831         CV.push_back(UndefValue::get(OpNTy));
3832       }
3833     }
3834     Constant *CP = ConstantPacked::get(CV);
3835     SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
3836     return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
3837   }
3838   
3839   if (SplatValue.Val) {   // Splat of one value?
3840     // Build the shuffle constant vector: <0, 0, 0, 0>
3841     MVT::ValueType MaskVT = 
3842       MVT::getIntVectorWithNumElements(NumElems);
3843     SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
3844     std::vector<SDOperand> ZeroVec(NumElems, Zero);
3845     SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3846                                       &ZeroVec[0], ZeroVec.size());
3847
3848     // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
3849     if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
3850       // Get the splatted value into the low element of a vector register.
3851       SDOperand LowValVec = 
3852         DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3853     
3854       // Return shuffle(LowValVec, undef, <0,0,0,0>)
3855       return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3856                          DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3857                          SplatMask);
3858     }
3859   }
3860   
3861   // If there are only two unique elements, we may be able to turn this into a
3862   // vector shuffle.
3863   if (Values.size() == 2) {
3864     // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3865     MVT::ValueType MaskVT = 
3866       MVT::getIntVectorWithNumElements(NumElems);
3867     std::vector<SDOperand> MaskVec(NumElems);
3868     unsigned i = 0;
3869     for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3870            E = Values.end(); I != E; ++I) {
3871       for (std::vector<unsigned>::iterator II = I->second.begin(),
3872              EE = I->second.end(); II != EE; ++II)
3873         MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3874       i += NumElems;
3875     }
3876     SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3877                                         &MaskVec[0], MaskVec.size());
3878
3879     // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
3880     if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3881         isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
3882       SmallVector<SDOperand, 8> Ops;
3883       for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3884             E = Values.end(); I != E; ++I) {
3885         SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3886                                    I->first);
3887         Ops.push_back(Op);
3888       }
3889       Ops.push_back(ShuffleMask);
3890
3891       // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
3892       return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), 
3893                          &Ops[0], Ops.size());
3894     }
3895   }
3896   
3897   // Otherwise, we can't handle this case efficiently.  Allocate a sufficiently
3898   // aligned object on the stack, store each element into it, then load
3899   // the result as a vector.
3900   MVT::ValueType VT = Node->getValueType(0);
3901   // Create the stack frame object.
3902   SDOperand FIPtr = CreateStackTemporary(VT);
3903   
3904   // Emit a store of each element to the stack slot.
3905   SmallVector<SDOperand, 8> Stores;
3906   unsigned TypeByteSize = 
3907     MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
3908   // Store (in the right endianness) the elements to memory.
3909   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3910     // Ignore undef elements.
3911     if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3912     
3913     unsigned Offset = TypeByteSize*i;
3914     
3915     SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3916     Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3917     
3918     Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx, 
3919                                   NULL, 0));
3920   }
3921   
3922   SDOperand StoreChain;
3923   if (!Stores.empty())    // Not all undef elements?
3924     StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3925                              &Stores[0], Stores.size());
3926   else
3927     StoreChain = DAG.getEntryNode();
3928   
3929   // Result is a load from the stack slot.
3930   return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
3931 }
3932
3933 /// CreateStackTemporary - Create a stack temporary, suitable for holding the
3934 /// specified value type.
3935 SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3936   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3937   unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3938   const Type *Ty = MVT::getTypeForValueType(VT);
3939   unsigned StackAlign = (unsigned)TLI.getTargetData()->getTypeAlignmentPref(Ty);
3940   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
3941   return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3942 }
3943
3944 void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3945                                             SDOperand Op, SDOperand Amt,
3946                                             SDOperand &Lo, SDOperand &Hi) {
3947   // Expand the subcomponents.
3948   SDOperand LHSL, LHSH;
3949   ExpandOp(Op, LHSL, LHSH);
3950
3951   SDOperand Ops[] = { LHSL, LHSH, Amt };
3952   MVT::ValueType VT = LHSL.getValueType();
3953   Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
3954   Hi = Lo.getValue(1);
3955 }
3956
3957
3958 /// ExpandShift - Try to find a clever way to expand this shift operation out to
3959 /// smaller elements.  If we can't find a way that is more efficient than a
3960 /// libcall on this target, return false.  Otherwise, return true with the
3961 /// low-parts expanded into Lo and Hi.
3962 bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3963                                        SDOperand &Lo, SDOperand &Hi) {
3964   assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3965          "This is not a shift!");
3966
3967   MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
3968   SDOperand ShAmt = LegalizeOp(Amt);
3969   MVT::ValueType ShTy = ShAmt.getValueType();
3970   unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3971   unsigned NVTBits = MVT::getSizeInBits(NVT);
3972
3973   // Handle the case when Amt is an immediate.  Other cases are currently broken
3974   // and are disabled.
3975   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3976     unsigned Cst = CN->getValue();
3977     // Expand the incoming operand to be shifted, so that we have its parts
3978     SDOperand InL, InH;
3979     ExpandOp(Op, InL, InH);
3980     switch(Opc) {
3981     case ISD::SHL:
3982       if (Cst > VTBits) {
3983         Lo = DAG.getConstant(0, NVT);
3984         Hi = DAG.getConstant(0, NVT);
3985       } else if (Cst > NVTBits) {
3986         Lo = DAG.getConstant(0, NVT);
3987         Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
3988       } else if (Cst == NVTBits) {
3989         Lo = DAG.getConstant(0, NVT);
3990         Hi = InL;
3991       } else {
3992         Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3993         Hi = DAG.getNode(ISD::OR, NVT,
3994            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3995            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3996       }
3997       return true;
3998     case ISD::SRL:
3999       if (Cst > VTBits) {
4000         Lo = DAG.getConstant(0, NVT);
4001         Hi = DAG.getConstant(0, NVT);
4002       } else if (Cst > NVTBits) {
4003         Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4004         Hi = DAG.getConstant(0, NVT);
4005       } else if (Cst == NVTBits) {
4006         Lo = InH;
4007         Hi = DAG.getConstant(0, NVT);
4008       } else {
4009         Lo = DAG.getNode(ISD::OR, NVT,
4010            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4011            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4012         Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4013       }
4014       return true;
4015     case ISD::SRA:
4016       if (Cst > VTBits) {
4017         Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
4018                               DAG.getConstant(NVTBits-1, ShTy));
4019       } else if (Cst > NVTBits) {
4020         Lo = DAG.getNode(ISD::SRA, NVT, InH,
4021                            DAG.getConstant(Cst-NVTBits, ShTy));
4022         Hi = DAG.getNode(ISD::SRA, NVT, InH,
4023                               DAG.getConstant(NVTBits-1, ShTy));
4024       } else if (Cst == NVTBits) {
4025         Lo = InH;
4026         Hi = DAG.getNode(ISD::SRA, NVT, InH,
4027                               DAG.getConstant(NVTBits-1, ShTy));
4028       } else {
4029         Lo = DAG.getNode(ISD::OR, NVT,
4030            DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4031            DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4032         Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4033       }
4034       return true;
4035     }
4036   }
4037   
4038   // Okay, the shift amount isn't constant.  However, if we can tell that it is
4039   // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4040   uint64_t Mask = NVTBits, KnownZero, KnownOne;
4041   TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
4042   
4043   // If we know that the high bit of the shift amount is one, then we can do
4044   // this as a couple of simple shifts.
4045   if (KnownOne & Mask) {
4046     // Mask out the high bit, which we know is set.
4047     Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4048                       DAG.getConstant(NVTBits-1, Amt.getValueType()));
4049     
4050     // Expand the incoming operand to be shifted, so that we have its parts
4051     SDOperand InL, InH;
4052     ExpandOp(Op, InL, InH);
4053     switch(Opc) {
4054     case ISD::SHL:
4055       Lo = DAG.getConstant(0, NVT);              // Low part is zero.
4056       Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4057       return true;
4058     case ISD::SRL:
4059       Hi = DAG.getConstant(0, NVT);              // Hi part is zero.
4060       Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4061       return true;
4062     case ISD::SRA:
4063       Hi = DAG.getNode(ISD::SRA, NVT, InH,       // Sign extend high part.
4064                        DAG.getConstant(NVTBits-1, Amt.getValueType()));
4065       Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4066       return true;
4067     }
4068   }
4069   
4070   // If we know that the high bit of the shift amount is zero, then we can do
4071   // this as a couple of simple shifts.
4072   if (KnownZero & Mask) {
4073     // Compute 32-amt.
4074     SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4075                                  DAG.getConstant(NVTBits, Amt.getValueType()),
4076                                  Amt);
4077     
4078     // Expand the incoming operand to be shifted, so that we have its parts
4079     SDOperand InL, InH;
4080     ExpandOp(Op, InL, InH);
4081     switch(Opc) {
4082     case ISD::SHL:
4083       Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4084       Hi = DAG.getNode(ISD::OR, NVT,
4085                        DAG.getNode(ISD::SHL, NVT, InH, Amt),
4086                        DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4087       return true;
4088     case ISD::SRL:
4089       Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4090       Lo = DAG.getNode(ISD::OR, NVT,
4091                        DAG.getNode(ISD::SRL, NVT, InL, Amt),
4092                        DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4093       return true;
4094     case ISD::SRA:
4095       Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4096       Lo = DAG.getNode(ISD::OR, NVT,
4097                        DAG.getNode(ISD::SRL, NVT, InL, Amt),
4098                        DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4099       return true;
4100     }
4101   }
4102   
4103   return false;
4104 }
4105
4106
4107 // ExpandLibCall - Expand a node into a call to a libcall.  If the result value
4108 // does not fit into a register, return the lo part and set the hi part to the
4109 // by-reg argument.  If it does fit into a single register, return the result
4110 // and leave the Hi part unset.
4111 SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
4112                                               bool isSigned, SDOperand &Hi) {
4113   assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4114   // The input chain to this libcall is the entry node of the function. 
4115   // Legalizing the call will automatically add the previous call to the
4116   // dependence.
4117   SDOperand InChain = DAG.getEntryNode();
4118   
4119   TargetLowering::ArgListTy Args;
4120   TargetLowering::ArgListEntry Entry;
4121   for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4122     MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4123     const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
4124     Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy; 
4125     Entry.isSigned = isSigned; Entry.isInReg = false;
4126     Args.push_back(Entry);
4127   }
4128   SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
4129
4130   // Splice the libcall in wherever FindInputOutputChains tells us to.
4131   const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
4132   std::pair<SDOperand,SDOperand> CallInfo =
4133     TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
4134                     Callee, Args, DAG);
4135
4136   // Legalize the call sequence, starting with the chain.  This will advance
4137   // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4138   // was added by LowerCallTo (guaranteeing proper serialization of calls).
4139   LegalizeOp(CallInfo.second);
4140   SDOperand Result;
4141   switch (getTypeAction(CallInfo.first.getValueType())) {
4142   default: assert(0 && "Unknown thing");
4143   case Legal:
4144     Result = CallInfo.first;
4145     break;
4146   case Expand:
4147     ExpandOp(CallInfo.first, Result, Hi);
4148     break;
4149   }
4150   return Result;
4151 }
4152
4153
4154 /// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
4155 /// destination type is legal.
4156 SDOperand SelectionDAGLegalize::
4157 ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
4158   assert(isTypeLegal(DestTy) && "Destination type is not legal!");
4159   assert(getTypeAction(Source.getValueType()) == Expand &&
4160          "This is not an expansion!");
4161   assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4162
4163   if (!isSigned) {
4164     assert(Source.getValueType() == MVT::i64 &&
4165            "This only works for 64-bit -> FP");
4166     // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4167     // incoming integer is set.  To handle this, we dynamically test to see if
4168     // it is set, and, if so, add a fudge factor.
4169     SDOperand Lo, Hi;
4170     ExpandOp(Source, Lo, Hi);
4171
4172     // If this is unsigned, and not supported, first perform the conversion to
4173     // signed, then adjust the result if the sign bit is set.
4174     SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4175                    DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4176
4177     SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4178                                      DAG.getConstant(0, Hi.getValueType()),
4179                                      ISD::SETLT);
4180     SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4181     SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4182                                       SignSet, Four, Zero);
4183     uint64_t FF = 0x5f800000ULL;
4184     if (TLI.isLittleEndian()) FF <<= 32;
4185     static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
4186
4187     SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4188     CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4189     SDOperand FudgeInReg;
4190     if (DestTy == MVT::f32)
4191       FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
4192     else {
4193       assert(DestTy == MVT::f64 && "Unexpected conversion");
4194       FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
4195                                   CPIdx, NULL, 0, MVT::f32);
4196     }
4197     return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
4198   }
4199
4200   // Check to see if the target has a custom way to lower this.  If so, use it.
4201   switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4202   default: assert(0 && "This action not implemented for this operation!");
4203   case TargetLowering::Legal:
4204   case TargetLowering::Expand:
4205     break;   // This case is handled below.
4206   case TargetLowering::Custom: {
4207     SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4208                                                   Source), DAG);
4209     if (NV.Val)
4210       return LegalizeOp(NV);
4211     break;   // The target decided this was legal after all
4212   }
4213   }
4214
4215   // Expand the source, then glue it back together for the call.  We must expand
4216   // the source in case it is shared (this pass of legalize must traverse it).
4217   SDOperand SrcLo, SrcHi;
4218   ExpandOp(Source, SrcLo, SrcHi);
4219   Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4220
4221   RTLIB::Libcall LC;
4222   if (DestTy == MVT::f32)
4223     LC = RTLIB::SINTTOFP_I64_F32;
4224   else {
4225     assert(DestTy == MVT::f64 && "Unknown fp value type!");
4226     LC = RTLIB::SINTTOFP_I64_F64;
4227   }
4228   
4229   Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4230   SDOperand UnusedHiPart;
4231   return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4232                        UnusedHiPart);
4233 }
4234
4235 /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4236 /// INT_TO_FP operation of the specified operand when the target requests that
4237 /// we expand it.  At this point, we know that the result and operand types are
4238 /// legal for the target.
4239 SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4240                                                      SDOperand Op0,
4241                                                      MVT::ValueType DestVT) {
4242   if (Op0.getValueType() == MVT::i32) {
4243     // simple 32-bit [signed|unsigned] integer to float/double expansion
4244     
4245     // get the stack frame index of a 8 byte buffer, pessimistically aligned
4246     MachineFunction &MF = DAG.getMachineFunction();
4247     const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4248     unsigned StackAlign =
4249       (unsigned)TLI.getTargetData()->getTypeAlignmentPref(F64Type);
4250     int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
4251     // get address of 8 byte buffer
4252     SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4253     // word offset constant for Hi/Lo address computation
4254     SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4255     // set up Hi and Lo (into buffer) address based on endian
4256     SDOperand Hi = StackSlot;
4257     SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4258     if (TLI.isLittleEndian())
4259       std::swap(Hi, Lo);
4260     
4261     // if signed map to unsigned space
4262     SDOperand Op0Mapped;
4263     if (isSigned) {
4264       // constant used to invert sign bit (signed to unsigned mapping)
4265       SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4266       Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4267     } else {
4268       Op0Mapped = Op0;
4269     }
4270     // store the lo of the constructed double - based on integer input
4271     SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
4272                                     Op0Mapped, Lo, NULL, 0);
4273     // initial hi portion of constructed double
4274     SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4275     // store the hi of the constructed double - biased exponent
4276     SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
4277     // load the constructed double
4278     SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
4279     // FP constant to bias correct the final result
4280     SDOperand Bias = DAG.getConstantFP(isSigned ?
4281                                             BitsToDouble(0x4330000080000000ULL)
4282                                           : BitsToDouble(0x4330000000000000ULL),
4283                                      MVT::f64);
4284     // subtract the bias
4285     SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4286     // final result
4287     SDOperand Result;
4288     // handle final rounding
4289     if (DestVT == MVT::f64) {
4290       // do nothing
4291       Result = Sub;
4292     } else {
4293      // if f32 then cast to f32
4294       Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4295     }
4296     return Result;
4297   }
4298   assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4299   SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4300
4301   SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4302                                    DAG.getConstant(0, Op0.getValueType()),
4303                                    ISD::SETLT);
4304   SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4305   SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4306                                     SignSet, Four, Zero);
4307
4308   // If the sign bit of the integer is set, the large number will be treated
4309   // as a negative number.  To counteract this, the dynamic code adds an
4310   // offset depending on the data type.
4311   uint64_t FF;
4312   switch (Op0.getValueType()) {
4313   default: assert(0 && "Unsupported integer type!");
4314   case MVT::i8 : FF = 0x43800000ULL; break;  // 2^8  (as a float)
4315   case MVT::i16: FF = 0x47800000ULL; break;  // 2^16 (as a float)
4316   case MVT::i32: FF = 0x4F800000ULL; break;  // 2^32 (as a float)
4317   case MVT::i64: FF = 0x5F800000ULL; break;  // 2^64 (as a float)
4318   }
4319   if (TLI.isLittleEndian()) FF <<= 32;
4320   static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
4321
4322   SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4323   CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4324   SDOperand FudgeInReg;
4325   if (DestVT == MVT::f32)
4326     FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
4327   else {
4328     assert(DestVT == MVT::f64 && "Unexpected conversion");
4329     FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4330                                            DAG.getEntryNode(), CPIdx,
4331                                            NULL, 0, MVT::f32));
4332   }
4333
4334   return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4335 }
4336
4337 /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4338 /// *INT_TO_FP operation of the specified operand when the target requests that
4339 /// we promote it.  At this point, we know that the result and operand types are
4340 /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4341 /// operation that takes a larger input.
4342 SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4343                                                       MVT::ValueType DestVT,
4344                                                       bool isSigned) {
4345   // First step, figure out the appropriate *INT_TO_FP operation to use.
4346   MVT::ValueType NewInTy = LegalOp.getValueType();
4347
4348   unsigned OpToUse = 0;
4349
4350   // Scan for the appropriate larger type to use.
4351   while (1) {
4352     NewInTy = (MVT::ValueType)(NewInTy+1);
4353     assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4354
4355     // If the target supports SINT_TO_FP of this type, use it.
4356     switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4357       default: break;
4358       case TargetLowering::Legal:
4359         if (!TLI.isTypeLegal(NewInTy))
4360           break;  // Can't use this datatype.
4361         // FALL THROUGH.
4362       case TargetLowering::Custom:
4363         OpToUse = ISD::SINT_TO_FP;
4364         break;
4365     }
4366     if (OpToUse) break;
4367     if (isSigned) continue;
4368
4369     // If the target supports UINT_TO_FP of this type, use it.
4370     switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4371       default: break;
4372       case TargetLowering::Legal:
4373         if (!TLI.isTypeLegal(NewInTy))
4374           break;  // Can't use this datatype.
4375         // FALL THROUGH.
4376       case TargetLowering::Custom:
4377         OpToUse = ISD::UINT_TO_FP;
4378         break;
4379     }
4380     if (OpToUse) break;
4381
4382     // Otherwise, try a larger type.
4383   }
4384
4385   // Okay, we found the operation and type to use.  Zero extend our input to the
4386   // desired type then run the operation on it.
4387   return DAG.getNode(OpToUse, DestVT,
4388                      DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4389                                  NewInTy, LegalOp));
4390 }
4391
4392 /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4393 /// FP_TO_*INT operation of the specified operand when the target requests that
4394 /// we promote it.  At this point, we know that the result and operand types are
4395 /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4396 /// operation that returns a larger result.
4397 SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4398                                                       MVT::ValueType DestVT,
4399                                                       bool isSigned) {
4400   // First step, figure out the appropriate FP_TO*INT operation to use.
4401   MVT::ValueType NewOutTy = DestVT;
4402
4403   unsigned OpToUse = 0;
4404
4405   // Scan for the appropriate larger type to use.
4406   while (1) {
4407     NewOutTy = (MVT::ValueType)(NewOutTy+1);
4408     assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4409
4410     // If the target supports FP_TO_SINT returning this type, use it.
4411     switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4412     default: break;
4413     case TargetLowering::Legal:
4414       if (!TLI.isTypeLegal(NewOutTy))
4415         break;  // Can't use this datatype.
4416       // FALL THROUGH.
4417     case TargetLowering::Custom:
4418       OpToUse = ISD::FP_TO_SINT;
4419       break;
4420     }
4421     if (OpToUse) break;
4422
4423     // If the target supports FP_TO_UINT of this type, use it.
4424     switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4425     default: break;
4426     case TargetLowering::Legal:
4427       if (!TLI.isTypeLegal(NewOutTy))
4428         break;  // Can't use this datatype.
4429       // FALL THROUGH.
4430     case TargetLowering::Custom:
4431       OpToUse = ISD::FP_TO_UINT;
4432       break;
4433     }
4434     if (OpToUse) break;
4435
4436     // Otherwise, try a larger type.
4437   }
4438
4439   // Okay, we found the operation and type to use.  Truncate the result of the
4440   // extended FP_TO_*INT operation to the desired size.
4441   return DAG.getNode(ISD::TRUNCATE, DestVT,
4442                      DAG.getNode(OpToUse, NewOutTy, LegalOp));
4443 }
4444
4445 /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4446 ///
4447 SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4448   MVT::ValueType VT = Op.getValueType();
4449   MVT::ValueType SHVT = TLI.getShiftAmountTy();
4450   SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4451   switch (VT) {
4452   default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4453   case MVT::i16:
4454     Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4455     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4456     return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4457   case MVT::i32:
4458     Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4459     Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4460     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4461     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4462     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4463     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4464     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4465     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4466     return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4467   case MVT::i64:
4468     Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4469     Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4470     Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4471     Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4472     Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4473     Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4474     Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4475     Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4476     Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4477     Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4478     Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4479     Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4480     Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4481     Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4482     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4483     Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4484     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4485     Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4486     Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4487     Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4488     return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4489   }
4490 }
4491
4492 /// ExpandBitCount - Expand the specified bitcount instruction into operations.
4493 ///
4494 SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4495   switch (Opc) {
4496   default: assert(0 && "Cannot expand this yet!");
4497   case ISD::CTPOP: {
4498     static const uint64_t mask[6] = {
4499       0x5555555555555555ULL, 0x3333333333333333ULL,
4500       0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4501       0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4502     };
4503     MVT::ValueType VT = Op.getValueType();
4504     MVT::ValueType ShVT = TLI.getShiftAmountTy();
4505     unsigned len = getSizeInBits(VT);
4506     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4507       //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4508       SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4509       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4510       Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4511                        DAG.getNode(ISD::AND, VT,
4512                                    DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4513     }
4514     return Op;
4515   }
4516   case ISD::CTLZ: {
4517     // for now, we do this:
4518     // x = x | (x >> 1);
4519     // x = x | (x >> 2);
4520     // ...
4521     // x = x | (x >>16);
4522     // x = x | (x >>32); // for 64-bit input
4523     // return popcount(~x);
4524     //
4525     // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4526     MVT::ValueType VT = Op.getValueType();
4527     MVT::ValueType ShVT = TLI.getShiftAmountTy();
4528     unsigned len = getSizeInBits(VT);
4529     for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4530       SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4531       Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4532     }
4533     Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4534     return DAG.getNode(ISD::CTPOP, VT, Op);
4535   }
4536   case ISD::CTTZ: {
4537     // for now, we use: { return popcount(~x & (x - 1)); }
4538     // unless the target has ctlz but not ctpop, in which case we use:
4539     // { return 32 - nlz(~x & (x-1)); }
4540     // see also http://www.hackersdelight.org/HDcode/ntz.cc
4541     MVT::ValueType VT = Op.getValueType();
4542     SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4543     SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4544                        DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4545                        DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4546     // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4547     if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4548         TLI.isOperationLegal(ISD::CTLZ, VT))
4549       return DAG.getNode(ISD::SUB, VT,
4550                          DAG.getConstant(getSizeInBits(VT), VT),
4551                          DAG.getNode(ISD::CTLZ, VT, Tmp3));
4552     return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4553   }
4554   }
4555 }
4556
4557 /// ExpandOp - Expand the specified SDOperand into its two component pieces
4558 /// Lo&Hi.  Note that the Op MUST be an expanded type.  As a result of this, the
4559 /// LegalizeNodes map is filled in for any results that are not expanded, the
4560 /// ExpandedNodes map is filled in for any results that are expanded, and the
4561 /// Lo/Hi values are returned.
4562 void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4563   MVT::ValueType VT = Op.getValueType();
4564   MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4565   SDNode *Node = Op.Val;
4566   assert(getTypeAction(VT) == Expand && "Not an expanded type!");
4567   assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4568          VT == MVT::Vector) &&
4569          "Cannot expand to FP value or to larger int value!");
4570
4571   // See if we already expanded it.
4572   std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4573     = ExpandedNodes.find(Op);
4574   if (I != ExpandedNodes.end()) {
4575     Lo = I->second.first;
4576     Hi = I->second.second;
4577     return;
4578   }
4579
4580   switch (Node->getOpcode()) {
4581   case ISD::CopyFromReg:
4582     assert(0 && "CopyFromReg must be legal!");
4583   default:
4584 #ifndef NDEBUG
4585     cerr << "NODE: "; Node->dump(); cerr << "\n";
4586 #endif
4587     assert(0 && "Do not know how to expand this operator!");
4588     abort();
4589   case ISD::UNDEF:
4590     NVT = TLI.getTypeToExpandTo(VT);
4591     Lo = DAG.getNode(ISD::UNDEF, NVT);
4592     Hi = DAG.getNode(ISD::UNDEF, NVT);
4593     break;
4594   case ISD::Constant: {
4595     uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4596     Lo = DAG.getConstant(Cst, NVT);
4597     Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4598     break;
4599   }
4600   case ISD::ConstantFP: {
4601     ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
4602     Lo = ExpandConstantFP(CFP, false, DAG, TLI);
4603     if (getTypeAction(Lo.getValueType()) == Expand)
4604       ExpandOp(Lo, Lo, Hi);
4605     break;
4606   }
4607   case ISD::BUILD_PAIR:
4608     // Return the operands.
4609     Lo = Node->getOperand(0);
4610     Hi = Node->getOperand(1);
4611     break;
4612     
4613   case ISD::SIGN_EXTEND_INREG:
4614     ExpandOp(Node->getOperand(0), Lo, Hi);
4615     // sext_inreg the low part if needed.
4616     Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4617     
4618     // The high part gets the sign extension from the lo-part.  This handles
4619     // things like sextinreg V:i64 from i8.
4620     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4621                      DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4622                                      TLI.getShiftAmountTy()));
4623     break;
4624
4625   case ISD::BSWAP: {
4626     ExpandOp(Node->getOperand(0), Lo, Hi);
4627     SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4628     Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4629     Lo = TempLo;
4630     break;
4631   }
4632     
4633   case ISD::CTPOP:
4634     ExpandOp(Node->getOperand(0), Lo, Hi);
4635     Lo = DAG.getNode(ISD::ADD, NVT,          // ctpop(HL) -> ctpop(H)+ctpop(L)
4636                      DAG.getNode(ISD::CTPOP, NVT, Lo),
4637                      DAG.getNode(ISD::CTPOP, NVT, Hi));
4638     Hi = DAG.getConstant(0, NVT);
4639     break;
4640
4641   case ISD::CTLZ: {
4642     // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
4643     ExpandOp(Node->getOperand(0), Lo, Hi);
4644     SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4645     SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
4646     SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4647                                         ISD::SETNE);
4648     SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4649     LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4650
4651     Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4652     Hi = DAG.getConstant(0, NVT);
4653     break;
4654   }
4655
4656   case ISD::CTTZ: {
4657     // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
4658     ExpandOp(Node->getOperand(0), Lo, Hi);
4659     SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4660     SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
4661     SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4662                                         ISD::SETNE);
4663     SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4664     HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4665
4666     Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4667     Hi = DAG.getConstant(0, NVT);
4668     break;
4669   }
4670
4671   case ISD::VAARG: {
4672     SDOperand Ch = Node->getOperand(0);   // Legalize the chain.
4673     SDOperand Ptr = Node->getOperand(1);  // Legalize the pointer.
4674     Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4675     Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4676
4677     // Remember that we legalized the chain.
4678     Hi = LegalizeOp(Hi);
4679     AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4680     if (!TLI.isLittleEndian())
4681       std::swap(Lo, Hi);
4682     break;
4683   }
4684     
4685   case ISD::LOAD: {
4686     LoadSDNode *LD = cast<LoadSDNode>(Node);
4687     SDOperand Ch  = LD->getChain();    // Legalize the chain.
4688     SDOperand Ptr = LD->getBasePtr();  // Legalize the pointer.
4689     ISD::LoadExtType ExtType = LD->getExtensionType();
4690
4691     if (ExtType == ISD::NON_EXTLOAD) {
4692       Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
4693       if (VT == MVT::f32 || VT == MVT::f64) {
4694         // f32->i32 or f64->i64 one to one expansion.
4695         // Remember that we legalized the chain.
4696         AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4697         // Recursively expand the new load.
4698         if (getTypeAction(NVT) == Expand)
4699           ExpandOp(Lo, Lo, Hi);
4700         break;
4701       }
4702
4703       // Increment the pointer to the other half.
4704       unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4705       Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4706                         getIntPtrConstant(IncrementSize));
4707       // FIXME: This creates a bogus srcvalue!
4708       Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), LD->getSrcValueOffset());
4709
4710       // Build a factor node to remember that this load is independent of the
4711       // other one.
4712       SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4713                                  Hi.getValue(1));
4714
4715       // Remember that we legalized the chain.
4716       AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4717       if (!TLI.isLittleEndian())
4718         std::swap(Lo, Hi);
4719     } else {
4720       MVT::ValueType EVT = LD->getLoadedVT();
4721
4722       if (VT == MVT::f64 && EVT == MVT::f32) {
4723         // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
4724         SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
4725                                      LD->getSrcValueOffset());
4726         // Remember that we legalized the chain.
4727         AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
4728         ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
4729         break;
4730       }
4731     
4732       if (EVT == NVT)
4733         Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4734                          LD->getSrcValueOffset());
4735       else
4736         Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4737                             LD->getSrcValueOffset(), EVT);
4738     
4739       // Remember that we legalized the chain.
4740       AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4741
4742       if (ExtType == ISD::SEXTLOAD) {
4743         // The high part is obtained by SRA'ing all but one of the bits of the
4744         // lo part.
4745         unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4746         Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4747                          DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4748       } else if (ExtType == ISD::ZEXTLOAD) {
4749         // The high part is just a zero.
4750         Hi = DAG.getConstant(0, NVT);
4751       } else /* if (ExtType == ISD::EXTLOAD) */ {
4752         // The high part is undefined.
4753         Hi = DAG.getNode(ISD::UNDEF, NVT);
4754       }
4755     }
4756     break;
4757   }
4758   case ISD::AND:
4759   case ISD::OR:
4760   case ISD::XOR: {   // Simple logical operators -> two trivial pieces.
4761     SDOperand LL, LH, RL, RH;
4762     ExpandOp(Node->getOperand(0), LL, LH);
4763     ExpandOp(Node->getOperand(1), RL, RH);
4764     Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4765     Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4766     break;
4767   }
4768   case ISD::SELECT: {
4769     SDOperand LL, LH, RL, RH;
4770     ExpandOp(Node->getOperand(1), LL, LH);
4771     ExpandOp(Node->getOperand(2), RL, RH);
4772     if (getTypeAction(NVT) == Expand)
4773       NVT = TLI.getTypeToExpandTo(NVT);
4774     Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4775     if (VT != MVT::f32)
4776       Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
4777     break;
4778   }
4779   case ISD::SELECT_CC: {
4780     SDOperand TL, TH, FL, FH;
4781     ExpandOp(Node->getOperand(2), TL, TH);
4782     ExpandOp(Node->getOperand(3), FL, FH);
4783     if (getTypeAction(NVT) == Expand)
4784       NVT = TLI.getTypeToExpandTo(NVT);
4785     Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4786                      Node->getOperand(1), TL, FL, Node->getOperand(4));
4787     if (VT != MVT::f32)
4788       Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4789                        Node->getOperand(1), TH, FH, Node->getOperand(4));
4790     break;
4791   }
4792   case ISD::ANY_EXTEND:
4793     // The low part is any extension of the input (which degenerates to a copy).
4794     Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4795     // The high part is undefined.
4796     Hi = DAG.getNode(ISD::UNDEF, NVT);
4797     break;
4798   case ISD::SIGN_EXTEND: {
4799     // The low part is just a sign extension of the input (which degenerates to
4800     // a copy).
4801     Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
4802
4803     // The high part is obtained by SRA'ing all but one of the bits of the lo
4804     // part.
4805     unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4806     Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4807                      DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4808     break;
4809   }
4810   case ISD::ZERO_EXTEND:
4811     // The low part is just a zero extension of the input (which degenerates to
4812     // a copy).
4813     Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
4814
4815     // The high part is just a zero.
4816     Hi = DAG.getConstant(0, NVT);
4817     break;
4818     
4819   case ISD::BIT_CONVERT: {
4820     SDOperand Tmp;
4821     if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4822       // If the target wants to, allow it to lower this itself.
4823       switch (getTypeAction(Node->getOperand(0).getValueType())) {
4824       case Expand: assert(0 && "cannot expand FP!");
4825       case Legal:   Tmp = LegalizeOp(Node->getOperand(0)); break;
4826       case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4827       }
4828       Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4829     }
4830
4831     // f32 / f64 must be expanded to i32 / i64.
4832     if (VT == MVT::f32 || VT == MVT::f64) {
4833       Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
4834       if (getTypeAction(NVT) == Expand)
4835         ExpandOp(Lo, Lo, Hi);
4836       break;
4837     }
4838
4839     // If source operand will be expanded to the same type as VT, i.e.
4840     // i64 <- f64, i32 <- f32, expand the source operand instead.
4841     MVT::ValueType VT0 = Node->getOperand(0).getValueType();
4842     if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
4843       ExpandOp(Node->getOperand(0), Lo, Hi);
4844       break;
4845     }
4846
4847     // Turn this into a load/store pair by default.
4848     if (Tmp.Val == 0)
4849       Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
4850     
4851     ExpandOp(Tmp, Lo, Hi);
4852     break;
4853   }
4854
4855   case ISD::READCYCLECOUNTER:
4856     assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == 
4857                  TargetLowering::Custom &&
4858            "Must custom expand ReadCycleCounter");
4859     Lo = TLI.LowerOperation(Op, DAG);
4860     assert(Lo.Val && "Node must be custom expanded!");
4861     Hi = Lo.getValue(1);
4862     AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
4863                         LegalizeOp(Lo.getValue(2)));
4864     break;
4865
4866     // These operators cannot be expanded directly, emit them as calls to
4867     // library functions.
4868   case ISD::FP_TO_SINT: {
4869     if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
4870       SDOperand Op;
4871       switch (getTypeAction(Node->getOperand(0).getValueType())) {
4872       case Expand: assert(0 && "cannot expand FP!");
4873       case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
4874       case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4875       }
4876
4877       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4878
4879       // Now that the custom expander is done, expand the result, which is still
4880       // VT.
4881       if (Op.Val) {
4882         ExpandOp(Op, Lo, Hi);
4883         break;
4884       }
4885     }
4886
4887     RTLIB::Libcall LC;
4888     if (Node->getOperand(0).getValueType() == MVT::f32)
4889       LC = RTLIB::FPTOSINT_F32_I64;
4890     else
4891       LC = RTLIB::FPTOSINT_F64_I64;
4892     Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
4893                        false/*sign irrelevant*/, Hi);
4894     break;
4895   }
4896
4897   case ISD::FP_TO_UINT: {
4898     if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
4899       SDOperand Op;
4900       switch (getTypeAction(Node->getOperand(0).getValueType())) {
4901         case Expand: assert(0 && "cannot expand FP!");
4902         case Legal:   Op = LegalizeOp(Node->getOperand(0)); break;
4903         case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4904       }
4905         
4906       Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4907
4908       // Now that the custom expander is done, expand the result.
4909       if (Op.Val) {
4910         ExpandOp(Op, Lo, Hi);
4911         break;
4912       }
4913     }
4914
4915     RTLIB::Libcall LC;
4916     if (Node->getOperand(0).getValueType() == MVT::f32)
4917       LC = RTLIB::FPTOUINT_F32_I64;
4918     else
4919       LC = RTLIB::FPTOUINT_F64_I64;
4920     Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
4921                        false/*sign irrelevant*/, Hi);
4922     break;
4923   }
4924
4925   case ISD::SHL: {
4926     // If the target wants custom lowering, do so.
4927     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
4928     if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
4929       SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
4930       Op = TLI.LowerOperation(Op, DAG);
4931       if (Op.Val) {
4932         // Now that the custom expander is done, expand the result, which is
4933         // still VT.
4934         ExpandOp(Op, Lo, Hi);
4935         break;
4936       }
4937     }
4938     
4939     // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit 
4940     // this X << 1 as X+X.
4941     if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4942       if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) && 
4943           TLI.isOperationLegal(ISD::ADDE, NVT)) {
4944         SDOperand LoOps[2], HiOps[3];
4945         ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4946         SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4947         LoOps[1] = LoOps[0];
4948         Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4949
4950         HiOps[1] = HiOps[0];
4951         HiOps[2] = Lo.getValue(1);
4952         Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4953         break;
4954       }
4955     }
4956     
4957     // If we can emit an efficient shift operation, do so now.
4958     if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
4959       break;
4960
4961     // If this target supports SHL_PARTS, use it.
4962     TargetLowering::LegalizeAction Action =
4963       TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4964     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4965         Action == TargetLowering::Custom) {
4966       ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
4967       break;
4968     }
4969
4970     // Otherwise, emit a libcall.
4971     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
4972                        false/*left shift=unsigned*/, Hi);
4973     break;
4974   }
4975
4976   case ISD::SRA: {
4977     // If the target wants custom lowering, do so.
4978     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
4979     if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
4980       SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
4981       Op = TLI.LowerOperation(Op, DAG);
4982       if (Op.Val) {
4983         // Now that the custom expander is done, expand the result, which is
4984         // still VT.
4985         ExpandOp(Op, Lo, Hi);
4986         break;
4987       }
4988     }
4989     
4990     // If we can emit an efficient shift operation, do so now.
4991     if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
4992       break;
4993
4994     // If this target supports SRA_PARTS, use it.
4995     TargetLowering::LegalizeAction Action =
4996       TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4997     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4998         Action == TargetLowering::Custom) {
4999       ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
5000       break;
5001     }
5002
5003     // Otherwise, emit a libcall.
5004     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5005                        true/*ashr is signed*/, Hi);
5006     break;
5007   }
5008
5009   case ISD::SRL: {
5010     // If the target wants custom lowering, do so.
5011     SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
5012     if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
5013       SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
5014       Op = TLI.LowerOperation(Op, DAG);
5015       if (Op.Val) {
5016         // Now that the custom expander is done, expand the result, which is
5017         // still VT.
5018         ExpandOp(Op, Lo, Hi);
5019         break;
5020       }
5021     }
5022
5023     // If we can emit an efficient shift operation, do so now.
5024     if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
5025       break;
5026
5027     // If this target supports SRL_PARTS, use it.
5028     TargetLowering::LegalizeAction Action =
5029       TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5030     if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5031         Action == TargetLowering::Custom) {
5032       ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
5033       break;
5034     }
5035
5036     // Otherwise, emit a libcall.
5037     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5038                        false/*lshr is unsigned*/, Hi);
5039     break;
5040   }
5041
5042   case ISD::ADD:
5043   case ISD::SUB: {
5044     // If the target wants to custom expand this, let them.
5045     if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5046             TargetLowering::Custom) {
5047       Op = TLI.LowerOperation(Op, DAG);
5048       if (Op.Val) {
5049         ExpandOp(Op, Lo, Hi);
5050         break;
5051       }
5052     }
5053     
5054     // Expand the subcomponents.
5055     SDOperand LHSL, LHSH, RHSL, RHSH;
5056     ExpandOp(Node->getOperand(0), LHSL, LHSH);
5057     ExpandOp(Node->getOperand(1), RHSL, RHSH);
5058     SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5059     SDOperand LoOps[2], HiOps[3];
5060     LoOps[0] = LHSL;
5061     LoOps[1] = RHSL;
5062     HiOps[0] = LHSH;
5063     HiOps[1] = RHSH;
5064     if (Node->getOpcode() == ISD::ADD) {
5065       Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5066       HiOps[2] = Lo.getValue(1);
5067       Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5068     } else {
5069       Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
5070       HiOps[2] = Lo.getValue(1);
5071       Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
5072     }
5073     break;
5074   }
5075   case ISD::MUL: {
5076     // If the target wants to custom expand this, let them.
5077     if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
5078       SDOperand New = TLI.LowerOperation(Op, DAG);
5079       if (New.Val) {
5080         ExpandOp(New, Lo, Hi);
5081         break;
5082       }
5083     }
5084     
5085     bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5086     bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
5087     if (HasMULHS || HasMULHU) {
5088       SDOperand LL, LH, RL, RH;
5089       ExpandOp(Node->getOperand(0), LL, LH);
5090       ExpandOp(Node->getOperand(1), RL, RH);
5091       unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
5092       // FIXME: Move this to the dag combiner.
5093       // MULHS implicitly sign extends its inputs.  Check to see if ExpandOp
5094       // extended the sign bit of the low half through the upper half, and if so
5095       // emit a MULHS instead of the alternate sequence that is valid for any
5096       // i64 x i64 multiply.
5097       if (HasMULHS &&
5098           // is RH an extension of the sign bit of RL?
5099           RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
5100           RH.getOperand(1).getOpcode() == ISD::Constant &&
5101           cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
5102           // is LH an extension of the sign bit of LL?
5103           LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
5104           LH.getOperand(1).getOpcode() == ISD::Constant &&
5105           cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
5106         // Low part:
5107         Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5108         // High part:
5109         Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
5110         break;
5111       } else if (HasMULHU) {
5112         // Low part:
5113         Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5114         
5115         // High part:
5116         Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5117         RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5118         LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5119         Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5120         Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
5121         break;
5122       }
5123     }
5124
5125     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5126                        false/*sign irrelevant*/, Hi);
5127     break;
5128   }
5129   case ISD::SDIV:
5130     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5131     break;
5132   case ISD::UDIV:
5133     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5134     break;
5135   case ISD::SREM:
5136     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5137     break;
5138   case ISD::UREM:
5139     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5140     break;
5141
5142   case ISD::FADD:
5143     Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5144                                           ? RTLIB::ADD_F32 : RTLIB::ADD_F64),
5145                        Node, false, Hi);
5146     break;
5147   case ISD::FSUB:
5148     Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5149                                           ? RTLIB::SUB_F32 : RTLIB::SUB_F64),
5150                        Node, false, Hi);
5151     break;
5152   case ISD::FMUL:
5153     Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5154                                           ? RTLIB::MUL_F32 : RTLIB::MUL_F64),
5155                        Node, false, Hi);
5156     break;
5157   case ISD::FDIV:
5158     Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5159                                           ? RTLIB::DIV_F32 : RTLIB::DIV_F64),
5160                        Node, false, Hi);
5161     break;
5162   case ISD::FP_EXTEND:
5163     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
5164     break;
5165   case ISD::FP_ROUND:
5166     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
5167     break;
5168   case ISD::FSQRT:
5169   case ISD::FSIN:
5170   case ISD::FCOS: {
5171     RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
5172     switch(Node->getOpcode()) {
5173     case ISD::FSQRT:
5174       LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
5175       break;
5176     case ISD::FSIN:
5177       LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
5178       break;
5179     case ISD::FCOS:
5180       LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
5181       break;
5182     default: assert(0 && "Unreachable!");
5183     }
5184     Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
5185     break;
5186   }
5187   case ISD::FABS: {
5188     SDOperand Mask = (VT == MVT::f64)
5189       ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
5190       : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
5191     Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5192     Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5193     Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
5194     if (getTypeAction(NVT) == Expand)
5195       ExpandOp(Lo, Lo, Hi);
5196     break;
5197   }
5198   case ISD::FNEG: {
5199     SDOperand Mask = (VT == MVT::f64)
5200       ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
5201       : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
5202     Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5203     Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5204     Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
5205     if (getTypeAction(NVT) == Expand)
5206       ExpandOp(Lo, Lo, Hi);
5207     break;
5208   }
5209   case ISD::FCOPYSIGN: {
5210     Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
5211     if (getTypeAction(NVT) == Expand)
5212       ExpandOp(Lo, Lo, Hi);
5213     break;
5214   }
5215   case ISD::SINT_TO_FP:
5216   case ISD::UINT_TO_FP: {
5217     bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
5218     MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
5219     RTLIB::Libcall LC;
5220     if (Node->getOperand(0).getValueType() == MVT::i64) {
5221       if (VT == MVT::f32)
5222         LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
5223       else
5224         LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
5225     } else {
5226       if (VT == MVT::f32)
5227         LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
5228       else
5229         LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5230     }
5231
5232     // Promote the operand if needed.
5233     if (getTypeAction(SrcVT) == Promote) {
5234       SDOperand Tmp = PromoteOp(Node->getOperand(0));
5235       Tmp = isSigned
5236         ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
5237                       DAG.getValueType(SrcVT))
5238         : DAG.getZeroExtendInReg(Tmp, SrcVT);
5239       Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
5240     }
5241     Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
5242     break;
5243   }
5244   }
5245
5246   // Make sure the resultant values have been legalized themselves, unless this
5247   // is a type that requires multi-step expansion.
5248   if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5249     Lo = LegalizeOp(Lo);
5250     if (Hi.Val)
5251       // Don't legalize the high part if it is expanded to a single node.
5252       Hi = LegalizeOp(Hi);
5253   }
5254
5255   // Remember in a map if the values will be reused later.
5256   bool isNew =
5257     ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5258   assert(isNew && "Value already expanded?!?");
5259 }
5260
5261 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
5262 /// two smaller values of MVT::Vector type.
5263 void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5264                                          SDOperand &Hi) {
5265   assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
5266   SDNode *Node = Op.Val;
5267   unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
5268   assert(NumElements > 1 && "Cannot split a single element vector!");
5269   unsigned NewNumElts = NumElements/2;
5270   SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
5271   SDOperand TypeNode = *(Node->op_end()-1);
5272   
5273   // See if we already split it.
5274   std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5275     = SplitNodes.find(Op);
5276   if (I != SplitNodes.end()) {
5277     Lo = I->second.first;
5278     Hi = I->second.second;
5279     return;
5280   }
5281   
5282   switch (Node->getOpcode()) {
5283   default: 
5284 #ifndef NDEBUG
5285     Node->dump();
5286 #endif
5287     assert(0 && "Unhandled operation in SplitVectorOp!");
5288   case ISD::VBUILD_VECTOR: {
5289     SmallVector<SDOperand, 8> LoOps(Node->op_begin(), 
5290                                     Node->op_begin()+NewNumElts);
5291     LoOps.push_back(NewNumEltsNode);
5292     LoOps.push_back(TypeNode);
5293     Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
5294
5295     SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts, 
5296                                     Node->op_end()-2);
5297     HiOps.push_back(NewNumEltsNode);
5298     HiOps.push_back(TypeNode);
5299     Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
5300     break;
5301   }
5302   case ISD::VADD:
5303   case ISD::VSUB:
5304   case ISD::VMUL:
5305   case ISD::VSDIV:
5306   case ISD::VUDIV:
5307   case ISD::VAND:
5308   case ISD::VOR:
5309   case ISD::VXOR: {
5310     SDOperand LL, LH, RL, RH;
5311     SplitVectorOp(Node->getOperand(0), LL, LH);
5312     SplitVectorOp(Node->getOperand(1), RL, RH);
5313     
5314     Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
5315                      NewNumEltsNode, TypeNode);
5316     Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
5317                      NewNumEltsNode, TypeNode);
5318     break;
5319   }
5320   case ISD::VLOAD: {
5321     SDOperand Ch = Node->getOperand(0);   // Legalize the chain.
5322     SDOperand Ptr = Node->getOperand(1);  // Legalize the pointer.
5323     MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5324     
5325     Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5326     unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
5327     Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5328                       getIntPtrConstant(IncrementSize));
5329     // FIXME: This creates a bogus srcvalue!
5330     Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5331     
5332     // Build a factor node to remember that this load is independent of the
5333     // other one.
5334     SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5335                                Hi.getValue(1));
5336     
5337     // Remember that we legalized the chain.
5338     AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5339     break;
5340   }
5341   case ISD::VBIT_CONVERT: {
5342     // We know the result is a vector.  The input may be either a vector or a
5343     // scalar value.
5344     if (Op.getOperand(0).getValueType() != MVT::Vector) {
5345       // Lower to a store/load.  FIXME: this could be improved probably.
5346       SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
5347
5348       SDOperand St = DAG.getStore(DAG.getEntryNode(),
5349                                   Op.getOperand(0), Ptr, NULL, 0);
5350       MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5351       St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
5352       SplitVectorOp(St, Lo, Hi);
5353     } else {
5354       // If the input is a vector type, we have to either scalarize it, pack it
5355       // or convert it based on whether the input vector type is legal.
5356       SDNode *InVal = Node->getOperand(0).Val;
5357       unsigned NumElems =
5358         cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5359       MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5360
5361       // If the input is from a single element vector, scalarize the vector,
5362       // then treat like a scalar.
5363       if (NumElems == 1) {
5364         SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
5365         Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
5366                              Op.getOperand(1), Op.getOperand(2));
5367         SplitVectorOp(Scalar, Lo, Hi);
5368       } else {
5369         // Split the input vector.
5370         SplitVectorOp(Op.getOperand(0), Lo, Hi);
5371
5372         // Convert each of the pieces now.
5373         Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5374                          NewNumEltsNode, TypeNode);
5375         Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5376                          NewNumEltsNode, TypeNode);
5377       }
5378       break;
5379     }
5380   }
5381   }
5382       
5383   // Remember in a map if the values will be reused later.
5384   bool isNew =
5385     SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5386   assert(isNew && "Value already expanded?!?");
5387 }
5388
5389
5390 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5391 /// equivalent operation that returns a scalar (e.g. F32) or packed value
5392 /// (e.g. MVT::V4F32).  When this is called, we know that PackedVT is the right
5393 /// type for the result.
5394 SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op, 
5395                                              MVT::ValueType NewVT) {
5396   assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5397   SDNode *Node = Op.Val;
5398   
5399   // See if we already packed it.
5400   std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5401   if (I != PackedNodes.end()) return I->second;
5402   
5403   SDOperand Result;
5404   switch (Node->getOpcode()) {
5405   default: 
5406 #ifndef NDEBUG
5407     Node->dump(); cerr << "\n";
5408 #endif
5409     assert(0 && "Unknown vector operation in PackVectorOp!");
5410   case ISD::VADD:
5411   case ISD::VSUB:
5412   case ISD::VMUL:
5413   case ISD::VSDIV:
5414   case ISD::VUDIV:
5415   case ISD::VAND:
5416   case ISD::VOR:
5417   case ISD::VXOR:
5418     Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5419                          NewVT, 
5420                          PackVectorOp(Node->getOperand(0), NewVT),
5421                          PackVectorOp(Node->getOperand(1), NewVT));
5422     break;
5423   case ISD::VLOAD: {
5424     SDOperand Ch = LegalizeOp(Node->getOperand(0));   // Legalize the chain.
5425     SDOperand Ptr = LegalizeOp(Node->getOperand(1));  // Legalize the pointer.
5426     
5427     SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5428     Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
5429     
5430     // Remember that we legalized the chain.
5431     AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5432     break;
5433   }
5434   case ISD::VBUILD_VECTOR:
5435     if (Node->getOperand(0).getValueType() == NewVT) {
5436       // Returning a scalar?
5437       Result = Node->getOperand(0);
5438     } else {
5439       // Returning a BUILD_VECTOR?
5440       
5441       // If all elements of the build_vector are undefs, return an undef.
5442       bool AllUndef = true;
5443       for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5444         if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5445           AllUndef = false;
5446           break;
5447         }
5448       if (AllUndef) {
5449         Result = DAG.getNode(ISD::UNDEF, NewVT);
5450       } else {
5451         Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5452                              Node->getNumOperands()-2);
5453       }
5454     }
5455     break;
5456   case ISD::VINSERT_VECTOR_ELT:
5457     if (!MVT::isVector(NewVT)) {
5458       // Returning a scalar?  Must be the inserted element.
5459       Result = Node->getOperand(1);
5460     } else {
5461       Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5462                            PackVectorOp(Node->getOperand(0), NewVT),
5463                            Node->getOperand(1), Node->getOperand(2));
5464     }
5465     break;
5466   case ISD::VVECTOR_SHUFFLE:
5467     if (!MVT::isVector(NewVT)) {
5468       // Returning a scalar?  Figure out if it is the LHS or RHS and return it.
5469       SDOperand EltNum = Node->getOperand(2).getOperand(0);
5470       if (cast<ConstantSDNode>(EltNum)->getValue())
5471         Result = PackVectorOp(Node->getOperand(1), NewVT);
5472       else
5473         Result = PackVectorOp(Node->getOperand(0), NewVT);
5474     } else {
5475       // Otherwise, return a VECTOR_SHUFFLE node.  First convert the index
5476       // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5477       std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5478                                          Node->getOperand(2).Val->op_end()-2);
5479       MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
5480       SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5481                                  Node->getOperand(2).Val->op_begin(),
5482                                  Node->getOperand(2).Val->getNumOperands()-2);
5483       
5484       Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5485                            PackVectorOp(Node->getOperand(0), NewVT),
5486                            PackVectorOp(Node->getOperand(1), NewVT), BV);
5487     }
5488     break;
5489   case ISD::VBIT_CONVERT:
5490     if (Op.getOperand(0).getValueType() != MVT::Vector)
5491       Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5492     else {
5493       // If the input is a vector type, we have to either scalarize it, pack it
5494       // or convert it based on whether the input vector type is legal.
5495       SDNode *InVal = Node->getOperand(0).Val;
5496       unsigned NumElems =
5497         cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5498       MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5499         
5500       // Figure out if there is a Packed type corresponding to this Vector
5501       // type.  If so, convert to the packed type.
5502       MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5503       if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5504         // Turn this into a bit convert of the packed input.
5505         Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, 
5506                              PackVectorOp(Node->getOperand(0), TVT));
5507         break;
5508       } else if (NumElems == 1) {
5509         // Turn this into a bit convert of the scalar input.
5510         Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, 
5511                              PackVectorOp(Node->getOperand(0), EVT));
5512         break;
5513       } else {
5514         // FIXME: UNIMP!
5515         assert(0 && "Cast from unsupported vector type not implemented yet!");
5516       }
5517     }
5518     break;
5519   case ISD::VSELECT:
5520     Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5521                          PackVectorOp(Op.getOperand(1), NewVT),
5522                          PackVectorOp(Op.getOperand(2), NewVT));
5523     break;
5524   }
5525
5526   if (TLI.isTypeLegal(NewVT))
5527     Result = LegalizeOp(Result);
5528   bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5529   assert(isNew && "Value already packed?");
5530   return Result;
5531 }
5532
5533
5534 // SelectionDAG::Legalize - This is the entry point for the file.
5535 //
5536 void SelectionDAG::Legalize() {
5537   if (ViewLegalizeDAGs) viewGraph();
5538
5539   /// run - This is the main entry point to this class.
5540   ///
5541   SelectionDAGLegalize(*this).LegalizeDAG();
5542 }
5543